@byteluck-fe/model-driven-settings 2.7.0-alpha.11 → 2.7.0-alpha.13
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/default/createBaseFields.js +29 -29
- package/dist/esm/default/createFormBaseFields.js +45 -45
- package/dist/esm/default/index.js +2 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/initSettings.js +45 -21
- package/dist/esm/props/base.js +29 -6
- package/dist/esm/props/checkbox.js +19 -5
- package/dist/esm/props/custom.js +4 -4
- package/dist/esm/props/input-number.js +25 -9
- package/dist/esm/props/input.js +28 -11
- package/dist/esm/props/radio.js +22 -7
- package/dist/esm/props/select.js +22 -7
- package/dist/esm/props/switch.js +25 -9
- package/dist/esm/props/textarea.js +34 -15
- package/dist/esm/schema/group.js +26 -7
- package/dist/esm/schema/index.js +3 -3
- package/dist/esm/schema/setting.js +32 -9
- package/dist/esm/schema/tab.js +17 -2
- package/dist/index.umd.js +2 -2
- package/dist/types/defineInstance.d.ts +3 -3
- package/dist/types/initSettings.d.ts +2 -2
- package/dist/types/schema/setting.d.ts +2 -2
- package/package.json +4 -4
|
@@ -1,64 +1,64 @@
|
|
|
1
1
|
export function createBaseFields() {
|
|
2
2
|
return [
|
|
3
3
|
{
|
|
4
|
-
label:
|
|
5
|
-
key:
|
|
6
|
-
type:
|
|
7
|
-
component:
|
|
4
|
+
label: "隐藏",
|
|
5
|
+
key: "isHide",
|
|
6
|
+
type: "boolean",
|
|
7
|
+
component: "switch"
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
|
-
key:
|
|
11
|
-
component:
|
|
10
|
+
key: "superSetting",
|
|
11
|
+
component: "super-setting"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
key:
|
|
15
|
-
component:
|
|
14
|
+
key: "style.width",
|
|
15
|
+
component: "styleComponent",
|
|
16
16
|
props: {
|
|
17
|
-
configKey:
|
|
17
|
+
configKey: "style.widthConfig",
|
|
18
18
|
options: [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
"px",
|
|
20
|
+
"%",
|
|
21
|
+
"fill",
|
|
22
|
+
"hug"
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
25
|
scopeEffect: function scopeEffect(driven, payload) {
|
|
26
26
|
var oldParent = payload.oldParent, newParent = payload.newParent, instance = payload.instance;
|
|
27
|
-
if ((oldParent === null || oldParent === void 0 ? void 0 : oldParent.type) ===
|
|
28
|
-
driven.setInstance(instance,
|
|
29
|
-
driven.setInstance(instance,
|
|
27
|
+
if ((oldParent === null || oldParent === void 0 ? void 0 : oldParent.type) === "advanced-container" && newParent.type === "positioning-container") {
|
|
28
|
+
driven.setInstance(instance, "style.width", "");
|
|
29
|
+
driven.setInstance(instance, "style.widthConfig", "fill");
|
|
30
30
|
}
|
|
31
31
|
if (newParent) {
|
|
32
32
|
return {
|
|
33
|
-
visible: newParent.type ===
|
|
33
|
+
visible: newParent.type === "advanced-container"
|
|
34
34
|
};
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
key:
|
|
40
|
-
component:
|
|
39
|
+
key: "style.height",
|
|
40
|
+
component: "styleComponent",
|
|
41
41
|
props: {
|
|
42
|
-
configKey:
|
|
42
|
+
configKey: "style.heightConfig",
|
|
43
43
|
options: [
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
"px",
|
|
45
|
+
"%",
|
|
46
|
+
"fill",
|
|
47
|
+
"hug"
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
50
|
scopeEffect: function scopeEffect(driven, payload) {
|
|
51
51
|
var oldParent = payload.oldParent, newParent = payload.newParent, instance = payload.instance;
|
|
52
|
-
if ((oldParent === null || oldParent === void 0 ? void 0 : oldParent.type) ===
|
|
53
|
-
driven.setInstance(instance,
|
|
54
|
-
driven.setInstance(instance,
|
|
52
|
+
if ((oldParent === null || oldParent === void 0 ? void 0 : oldParent.type) === "advanced-container" && newParent.type === "positioning-container") {
|
|
53
|
+
driven.setInstance(instance, "style.height", "");
|
|
54
|
+
driven.setInstance(instance, "style.heightConfig", "fill");
|
|
55
55
|
}
|
|
56
56
|
if (payload.newParent) {
|
|
57
57
|
return {
|
|
58
|
-
visible: payload.newParent.type ===
|
|
58
|
+
visible: payload.newParent.type === "advanced-container"
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
}
|
|
63
63
|
];
|
|
64
64
|
}
|
|
@@ -23,19 +23,19 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
23
23
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
24
24
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
25
25
|
}
|
|
26
|
-
import { createBaseFields } from
|
|
26
|
+
import { createBaseFields } from "./createBaseFields";
|
|
27
27
|
export function createFormBaseFields(defaultValues) {
|
|
28
28
|
return _toConsumableArray(createBaseFields()).concat([
|
|
29
29
|
{
|
|
30
|
-
type:
|
|
31
|
-
key:
|
|
32
|
-
component:
|
|
30
|
+
type: "DataBind",
|
|
31
|
+
key: "dataBind",
|
|
32
|
+
component: "data-bind",
|
|
33
33
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.dataBind
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
key:
|
|
37
|
-
type:
|
|
38
|
-
component:
|
|
36
|
+
key: "caption",
|
|
37
|
+
type: "string",
|
|
38
|
+
component: "input",
|
|
39
39
|
props: {
|
|
40
40
|
maxLength: 80,
|
|
41
41
|
i18n: true
|
|
@@ -43,88 +43,88 @@ export function createFormBaseFields(defaultValues) {
|
|
|
43
43
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.caption,
|
|
44
44
|
validator: function validator(value) {
|
|
45
45
|
if (!value) {
|
|
46
|
-
return
|
|
46
|
+
return "标题必填";
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
label:
|
|
52
|
-
key:
|
|
53
|
-
type:
|
|
54
|
-
component:
|
|
51
|
+
label: "隐藏标题",
|
|
52
|
+
key: "isHideCaption",
|
|
53
|
+
type: "boolean",
|
|
54
|
+
component: "switch",
|
|
55
55
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.isHideCaption,
|
|
56
56
|
props: {
|
|
57
|
-
showType:
|
|
57
|
+
showType: "checkbox"
|
|
58
58
|
},
|
|
59
59
|
// 在明细表内隐藏
|
|
60
60
|
scopeEffect: function scopeEffect(driven, payload) {
|
|
61
|
-
var
|
|
62
|
-
if (((
|
|
61
|
+
var _payload_current, _payload_from;
|
|
62
|
+
if (((_payload_current = payload.current) === null || _payload_current === void 0 ? void 0 : _payload_current.type) !== ((_payload_from = payload.from) === null || _payload_from === void 0 ? void 0 : _payload_from.type)) {
|
|
63
63
|
//明细子表内默认开启
|
|
64
|
-
if (payload.current.type ===
|
|
65
|
-
driven.setInstance(payload.control,
|
|
64
|
+
if (payload.current.type === "subtable") {
|
|
65
|
+
driven.setInstance(payload.control, "isHideCaption", true);
|
|
66
66
|
}
|
|
67
67
|
return {
|
|
68
|
-
visible: payload.current.type !==
|
|
68
|
+
visible: payload.current.type !== "subtable"
|
|
69
69
|
};
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
key:
|
|
75
|
-
type:
|
|
76
|
-
component:
|
|
74
|
+
key: "labelPosition",
|
|
75
|
+
type: "string",
|
|
76
|
+
component: "radio",
|
|
77
77
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.labelPosition,
|
|
78
78
|
props: {
|
|
79
|
-
showType:
|
|
79
|
+
showType: "solid",
|
|
80
80
|
options: [
|
|
81
81
|
{
|
|
82
|
-
label:
|
|
83
|
-
value:
|
|
82
|
+
label: "上下布局",
|
|
83
|
+
value: "top"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
label:
|
|
87
|
-
value:
|
|
88
|
-
}
|
|
86
|
+
label: "左右布局",
|
|
87
|
+
value: "left"
|
|
88
|
+
}
|
|
89
89
|
]
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
key:
|
|
94
|
-
type:
|
|
95
|
-
component:
|
|
93
|
+
key: "defaultState",
|
|
94
|
+
type: "string",
|
|
95
|
+
component: "radio",
|
|
96
96
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.defaultState,
|
|
97
97
|
props: {
|
|
98
|
-
showType:
|
|
98
|
+
showType: "solid",
|
|
99
99
|
options: [
|
|
100
100
|
{
|
|
101
|
-
label:
|
|
102
|
-
value:
|
|
101
|
+
label: "普通",
|
|
102
|
+
value: "default"
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
|
-
label:
|
|
106
|
-
value:
|
|
107
|
-
}
|
|
105
|
+
label: "只读",
|
|
106
|
+
value: "readonly"
|
|
107
|
+
}
|
|
108
108
|
]
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
|
-
label:
|
|
113
|
-
key:
|
|
114
|
-
type:
|
|
115
|
-
component:
|
|
112
|
+
label: "必填",
|
|
113
|
+
key: "required",
|
|
114
|
+
type: "boolean",
|
|
115
|
+
component: "switch",
|
|
116
116
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.required
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
|
-
label:
|
|
120
|
-
key:
|
|
121
|
-
type:
|
|
122
|
-
component:
|
|
119
|
+
label: "提示文字",
|
|
120
|
+
key: "placeholder",
|
|
121
|
+
type: "string",
|
|
122
|
+
component: "input",
|
|
123
123
|
defaultValue: defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues.placeholder,
|
|
124
124
|
props: {
|
|
125
125
|
maxLength: 80,
|
|
126
126
|
i18n: true
|
|
127
127
|
}
|
|
128
|
-
}
|
|
128
|
+
}
|
|
129
129
|
]);
|
|
130
130
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from "./createBaseFields";
|
|
2
|
+
export * from "./createFormBaseFields";
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
1
|
+
export * from "./defineInstance";
|
|
2
|
+
export * from "./initSettings";
|
|
3
|
+
export * from "./schema";
|
|
4
|
+
export * from "./default";
|
package/dist/esm/initSettings.js
CHANGED
|
@@ -26,31 +26,55 @@ function _objectSpread(target) {
|
|
|
26
26
|
}
|
|
27
27
|
return target;
|
|
28
28
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
29
|
+
function ownKeys(object, enumerableOnly) {
|
|
30
|
+
var keys = Object.keys(object);
|
|
31
|
+
if (Object.getOwnPropertySymbols) {
|
|
32
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
33
|
+
if (enumerableOnly) {
|
|
34
|
+
symbols = symbols.filter(function(sym) {
|
|
35
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
keys.push.apply(keys, symbols);
|
|
39
|
+
}
|
|
40
|
+
return keys;
|
|
41
|
+
}
|
|
42
|
+
function _objectSpreadProps(target, source) {
|
|
43
|
+
source = source != null ? source : {};
|
|
44
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
45
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
46
|
+
} else {
|
|
47
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
48
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
return target;
|
|
52
|
+
}
|
|
53
|
+
import { Group, Setting } from "./schema";
|
|
54
|
+
import { CustomProps } from "./props/custom";
|
|
55
|
+
import { InputProps } from "./props/input";
|
|
56
|
+
import { InputNumberProps } from "./props/input-number";
|
|
57
|
+
import { SwitchProps } from "./props/switch";
|
|
58
|
+
import { CheckboxProps } from "./props/checkbox";
|
|
59
|
+
import { SelectProps } from "./props/select";
|
|
60
|
+
import { RadioProps } from "./props/radio";
|
|
61
|
+
import { TextareaProps } from "./props/textarea";
|
|
62
|
+
import { isTabSchema, Tab } from "./schema/tab";
|
|
39
63
|
function propsFactory(component, props) {
|
|
40
64
|
switch(component){
|
|
41
|
-
case
|
|
65
|
+
case "input":
|
|
42
66
|
return new InputProps(props);
|
|
43
|
-
case
|
|
67
|
+
case "textarea":
|
|
44
68
|
return new TextareaProps(props);
|
|
45
|
-
case
|
|
69
|
+
case "input-number":
|
|
46
70
|
return new InputNumberProps(props);
|
|
47
|
-
case
|
|
71
|
+
case "switch":
|
|
48
72
|
return new SwitchProps(props);
|
|
49
|
-
case
|
|
73
|
+
case "radio":
|
|
50
74
|
return new RadioProps(props);
|
|
51
|
-
case
|
|
75
|
+
case "checkbox":
|
|
52
76
|
return new CheckboxProps(props);
|
|
53
|
-
case
|
|
77
|
+
case "select":
|
|
54
78
|
return new SelectProps(props);
|
|
55
79
|
default:
|
|
56
80
|
return new CustomProps(props);
|
|
@@ -62,14 +86,14 @@ function buildSettingItem(settingMap) {
|
|
|
62
86
|
if (!schema) {
|
|
63
87
|
return;
|
|
64
88
|
}
|
|
65
|
-
return new Setting(_objectSpread({}, schema, {
|
|
66
|
-
props: propsFactory(schema.component,
|
|
89
|
+
return new Setting(_objectSpreadProps(_objectSpread({}, schema), {
|
|
90
|
+
props: propsFactory(schema.component, "props" in schema ? schema.props : undefined)
|
|
67
91
|
}));
|
|
68
92
|
};
|
|
69
93
|
}
|
|
70
94
|
export function initSettings(params) {
|
|
71
95
|
var generatorGroup = function generatorGroup(group) {
|
|
72
|
-
return new Group(_objectSpread({}, group, {
|
|
96
|
+
return new Group(_objectSpreadProps(_objectSpread({}, group), {
|
|
73
97
|
items: group.items.map(buildSettingItem(settingMap)).filter(Boolean)
|
|
74
98
|
}));
|
|
75
99
|
};
|
|
@@ -82,7 +106,7 @@ export function initSettings(params) {
|
|
|
82
106
|
}, new Map());
|
|
83
107
|
return params.groups.map(function(item) {
|
|
84
108
|
if (isTabSchema(item)) {
|
|
85
|
-
return new Tab(_objectSpread({}, item, {
|
|
109
|
+
return new Tab(_objectSpreadProps(_objectSpread({}, item), {
|
|
86
110
|
items: generatorGroups(item.items)
|
|
87
111
|
}));
|
|
88
112
|
} else {
|
package/dist/esm/props/base.js
CHANGED
|
@@ -17,16 +17,39 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
17
17
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
18
18
|
return Constructor;
|
|
19
19
|
}
|
|
20
|
+
function _defineProperty(obj, key, value) {
|
|
21
|
+
if (key in obj) {
|
|
22
|
+
Object.defineProperty(obj, key, {
|
|
23
|
+
value: value,
|
|
24
|
+
enumerable: true,
|
|
25
|
+
configurable: true,
|
|
26
|
+
writable: true
|
|
27
|
+
});
|
|
28
|
+
} else {
|
|
29
|
+
obj[key] = value;
|
|
30
|
+
}
|
|
31
|
+
return obj;
|
|
32
|
+
}
|
|
20
33
|
export var BaseProps = /*#__PURE__*/ function() {
|
|
21
34
|
"use strict";
|
|
22
35
|
function BaseProps(props) {
|
|
23
36
|
_classCallCheck(this, BaseProps);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
37
|
+
/**
|
|
38
|
+
* 显示隐藏
|
|
39
|
+
* */ _defineProperty(this, "visible", void 0);
|
|
40
|
+
/**
|
|
41
|
+
* 开启表达式
|
|
42
|
+
* */ _defineProperty(this, "expression", void 0);
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* 是否改变父属性
|
|
46
|
+
*/ _defineProperty(this, "updateParent", void 0);
|
|
47
|
+
var _props_visible;
|
|
48
|
+
this.visible = (_props_visible = props === null || props === void 0 ? void 0 : props.visible) !== null && _props_visible !== void 0 ? _props_visible : true;
|
|
49
|
+
var _props_expression;
|
|
50
|
+
this.expression = (_props_expression = props === null || props === void 0 ? void 0 : props.expression) !== null && _props_expression !== void 0 ? _props_expression : false;
|
|
51
|
+
var _props_updateParent;
|
|
52
|
+
this.updateParent = (_props_updateParent = props === null || props === void 0 ? void 0 : props.updateParent) !== null && _props_updateParent !== void 0 ? _props_updateParent : false;
|
|
30
53
|
}
|
|
31
54
|
_createClass(BaseProps, [
|
|
32
55
|
{
|
|
@@ -9,6 +9,19 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
function _defineProperty(obj, key, value) {
|
|
13
|
+
if (key in obj) {
|
|
14
|
+
Object.defineProperty(obj, key, {
|
|
15
|
+
value: value,
|
|
16
|
+
enumerable: true,
|
|
17
|
+
configurable: true,
|
|
18
|
+
writable: true
|
|
19
|
+
});
|
|
20
|
+
} else {
|
|
21
|
+
obj[key] = value;
|
|
22
|
+
}
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
12
25
|
function _getPrototypeOf(o) {
|
|
13
26
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
14
27
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -69,17 +82,18 @@ function _createSuper(Derived) {
|
|
|
69
82
|
return _possibleConstructorReturn(this, result);
|
|
70
83
|
};
|
|
71
84
|
}
|
|
72
|
-
import { BaseProps } from
|
|
73
|
-
export var CheckboxProps = /*#__PURE__*/ function(
|
|
85
|
+
import { BaseProps } from "./base";
|
|
86
|
+
export var CheckboxProps = /*#__PURE__*/ function(BaseProps) {
|
|
74
87
|
"use strict";
|
|
75
|
-
_inherits(CheckboxProps,
|
|
88
|
+
_inherits(CheckboxProps, BaseProps);
|
|
76
89
|
var _super = _createSuper(CheckboxProps);
|
|
77
90
|
function CheckboxProps(props) {
|
|
78
91
|
_classCallCheck(this, CheckboxProps);
|
|
79
92
|
var _this;
|
|
80
93
|
_this = _super.call(this, props);
|
|
81
|
-
|
|
82
|
-
|
|
94
|
+
_defineProperty(_assertThisInitialized(_this), "options", void 0);
|
|
95
|
+
var _props_options;
|
|
96
|
+
_this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
|
|
83
97
|
return _this;
|
|
84
98
|
}
|
|
85
99
|
return CheckboxProps;
|
package/dist/esm/props/custom.js
CHANGED
|
@@ -115,11 +115,11 @@ function _createSuper(Derived) {
|
|
|
115
115
|
return _possibleConstructorReturn(this, result);
|
|
116
116
|
};
|
|
117
117
|
}
|
|
118
|
-
import { isPlainObject } from
|
|
119
|
-
import { BaseProps } from
|
|
120
|
-
export var CustomProps = /*#__PURE__*/ function(
|
|
118
|
+
import { isPlainObject } from "@byteluck-fe/model-driven-shared";
|
|
119
|
+
import { BaseProps } from "./base";
|
|
120
|
+
export var CustomProps = /*#__PURE__*/ function(BaseProps) {
|
|
121
121
|
"use strict";
|
|
122
|
-
_inherits(CustomProps,
|
|
122
|
+
_inherits(CustomProps, BaseProps);
|
|
123
123
|
var _super = _createSuper(CustomProps);
|
|
124
124
|
function CustomProps(props) {
|
|
125
125
|
_classCallCheck(this, CustomProps);
|
|
@@ -9,6 +9,19 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
function _defineProperty(obj, key, value) {
|
|
13
|
+
if (key in obj) {
|
|
14
|
+
Object.defineProperty(obj, key, {
|
|
15
|
+
value: value,
|
|
16
|
+
enumerable: true,
|
|
17
|
+
configurable: true,
|
|
18
|
+
writable: true
|
|
19
|
+
});
|
|
20
|
+
} else {
|
|
21
|
+
obj[key] = value;
|
|
22
|
+
}
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
12
25
|
function _getPrototypeOf(o) {
|
|
13
26
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
14
27
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -69,21 +82,24 @@ function _createSuper(Derived) {
|
|
|
69
82
|
return _possibleConstructorReturn(this, result);
|
|
70
83
|
};
|
|
71
84
|
}
|
|
72
|
-
import { BaseProps } from
|
|
73
|
-
export var InputNumberProps = /*#__PURE__*/ function(
|
|
85
|
+
import { BaseProps } from "./base";
|
|
86
|
+
export var InputNumberProps = /*#__PURE__*/ function(BaseProps) {
|
|
74
87
|
"use strict";
|
|
75
|
-
_inherits(InputNumberProps,
|
|
88
|
+
_inherits(InputNumberProps, BaseProps);
|
|
76
89
|
var _super = _createSuper(InputNumberProps);
|
|
77
90
|
function InputNumberProps(props) {
|
|
78
91
|
_classCallCheck(this, InputNumberProps);
|
|
79
92
|
var _this;
|
|
80
93
|
_this = _super.call(this, props);
|
|
81
|
-
|
|
82
|
-
_this
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
94
|
+
_defineProperty(_assertThisInitialized(_this), "max", void 0);
|
|
95
|
+
_defineProperty(_assertThisInitialized(_this), "min", void 0);
|
|
96
|
+
_defineProperty(_assertThisInitialized(_this), "placeholder", void 0);
|
|
97
|
+
var _props_max;
|
|
98
|
+
_this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : "";
|
|
99
|
+
var _props_min;
|
|
100
|
+
_this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : "";
|
|
101
|
+
var _props_placeholder;
|
|
102
|
+
_this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : "";
|
|
87
103
|
return _this;
|
|
88
104
|
}
|
|
89
105
|
return InputNumberProps;
|
package/dist/esm/props/input.js
CHANGED
|
@@ -9,6 +9,19 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
function _defineProperty(obj, key, value) {
|
|
13
|
+
if (key in obj) {
|
|
14
|
+
Object.defineProperty(obj, key, {
|
|
15
|
+
value: value,
|
|
16
|
+
enumerable: true,
|
|
17
|
+
configurable: true,
|
|
18
|
+
writable: true
|
|
19
|
+
});
|
|
20
|
+
} else {
|
|
21
|
+
obj[key] = value;
|
|
22
|
+
}
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
12
25
|
function _getPrototypeOf(o) {
|
|
13
26
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
14
27
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -69,23 +82,27 @@ function _createSuper(Derived) {
|
|
|
69
82
|
return _possibleConstructorReturn(this, result);
|
|
70
83
|
};
|
|
71
84
|
}
|
|
72
|
-
import { BaseProps } from
|
|
73
|
-
export var InputProps = /*#__PURE__*/ function(
|
|
85
|
+
import { BaseProps } from "./base";
|
|
86
|
+
export var InputProps = /*#__PURE__*/ function(BaseProps) {
|
|
74
87
|
"use strict";
|
|
75
|
-
_inherits(InputProps,
|
|
88
|
+
_inherits(InputProps, BaseProps);
|
|
76
89
|
var _super = _createSuper(InputProps);
|
|
77
90
|
function InputProps(props) {
|
|
78
91
|
_classCallCheck(this, InputProps);
|
|
79
92
|
var _this;
|
|
80
93
|
_this = _super.call(this, props);
|
|
81
|
-
|
|
82
|
-
_this
|
|
83
|
-
|
|
84
|
-
_this
|
|
85
|
-
var
|
|
86
|
-
_this.
|
|
87
|
-
var
|
|
88
|
-
_this.
|
|
94
|
+
_defineProperty(_assertThisInitialized(_this), "maxLength", void 0);
|
|
95
|
+
_defineProperty(_assertThisInitialized(_this), "minLength", void 0);
|
|
96
|
+
_defineProperty(_assertThisInitialized(_this), "placeholder", void 0);
|
|
97
|
+
_defineProperty(_assertThisInitialized(_this), "i18n", void 0);
|
|
98
|
+
var _props_maxLength;
|
|
99
|
+
_this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : "";
|
|
100
|
+
var _props_minLength;
|
|
101
|
+
_this.minLength = (_props_minLength = props === null || props === void 0 ? void 0 : props.minLength) !== null && _props_minLength !== void 0 ? _props_minLength : "";
|
|
102
|
+
var _props_placeholder;
|
|
103
|
+
_this.placeholder = (_props_placeholder = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _props_placeholder !== void 0 ? _props_placeholder : "";
|
|
104
|
+
var _props_i18n;
|
|
105
|
+
_this.i18n = (_props_i18n = props === null || props === void 0 ? void 0 : props.i18n) !== null && _props_i18n !== void 0 ? _props_i18n : false;
|
|
89
106
|
return _this;
|
|
90
107
|
}
|
|
91
108
|
return InputProps;
|
package/dist/esm/props/radio.js
CHANGED
|
@@ -9,6 +9,19 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
+
function _defineProperty(obj, key, value) {
|
|
13
|
+
if (key in obj) {
|
|
14
|
+
Object.defineProperty(obj, key, {
|
|
15
|
+
value: value,
|
|
16
|
+
enumerable: true,
|
|
17
|
+
configurable: true,
|
|
18
|
+
writable: true
|
|
19
|
+
});
|
|
20
|
+
} else {
|
|
21
|
+
obj[key] = value;
|
|
22
|
+
}
|
|
23
|
+
return obj;
|
|
24
|
+
}
|
|
12
25
|
function _getPrototypeOf(o) {
|
|
13
26
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
14
27
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -69,19 +82,21 @@ function _createSuper(Derived) {
|
|
|
69
82
|
return _possibleConstructorReturn(this, result);
|
|
70
83
|
};
|
|
71
84
|
}
|
|
72
|
-
import { BaseProps } from
|
|
73
|
-
export var RadioProps = /*#__PURE__*/ function(
|
|
85
|
+
import { BaseProps } from "./base";
|
|
86
|
+
export var RadioProps = /*#__PURE__*/ function(BaseProps) {
|
|
74
87
|
"use strict";
|
|
75
|
-
_inherits(RadioProps,
|
|
88
|
+
_inherits(RadioProps, BaseProps);
|
|
76
89
|
var _super = _createSuper(RadioProps);
|
|
77
90
|
function RadioProps(props) {
|
|
78
91
|
_classCallCheck(this, RadioProps);
|
|
79
92
|
var _this;
|
|
80
93
|
_this = _super.call(this, props);
|
|
81
|
-
|
|
82
|
-
_this
|
|
83
|
-
var
|
|
84
|
-
_this.
|
|
94
|
+
_defineProperty(_assertThisInitialized(_this), "options", void 0);
|
|
95
|
+
_defineProperty(_assertThisInitialized(_this), "showType", void 0);
|
|
96
|
+
var _props_options;
|
|
97
|
+
_this.options = (_props_options = props === null || props === void 0 ? void 0 : props.options) !== null && _props_options !== void 0 ? _props_options : [];
|
|
98
|
+
var _props_showType;
|
|
99
|
+
_this.showType = (_props_showType = props === null || props === void 0 ? void 0 : props.showType) !== null && _props_showType !== void 0 ? _props_showType : "outline";
|
|
85
100
|
return _this;
|
|
86
101
|
}
|
|
87
102
|
return RadioProps;
|