@lingxiteam/theme-utils 0.3.10 → 0.3.12
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/config/Button.js +1 -1
- package/dist/config/Cascader.d.ts +9 -0
- package/dist/config/Cascader.js +9 -0
- package/dist/config/Checkbox.d.ts +9 -0
- package/dist/config/Checkbox.js +9 -0
- package/dist/config/DatePicker.d.ts +9 -0
- package/dist/config/DatePicker.js +9 -0
- package/dist/config/Input.d.ts +9 -0
- package/dist/config/Input.js +9 -0
- package/dist/config/InputNumber.d.ts +9 -0
- package/dist/config/InputNumber.js +9 -0
- package/dist/config/MultipleSelect.d.ts +9 -0
- package/dist/config/MultipleSelect.js +9 -0
- package/dist/config/Radio.d.ts +9 -0
- package/dist/config/Radio.js +9 -0
- package/dist/config/RangePicker.d.ts +9 -0
- package/dist/config/RangePicker.js +9 -0
- package/dist/config/Select.d.ts +9 -0
- package/dist/config/Select.js +9 -0
- package/dist/config/StdUpload.d.ts +9 -0
- package/dist/config/StdUpload.js +9 -0
- package/dist/config/Switch.d.ts +9 -0
- package/dist/config/Switch.js +9 -0
- package/dist/config/TextArea.d.ts +9 -0
- package/dist/config/TextArea.js +9 -0
- package/dist/config/TimePicker.d.ts +9 -0
- package/dist/config/TimePicker.js +9 -0
- package/dist/config/TreeSelect.d.ts +9 -0
- package/dist/config/TreeSelect.js +9 -0
- package/dist/h5config/DForm.d.ts +0 -14
- package/dist/h5config/DForm.js +3 -5
- package/dist/h5config/DformSelect.d.ts +1 -3
- package/dist/h5config/DformSelect.js +1 -3
- package/dist/h5config/Link.js +1 -1
- package/package.json +1 -1
package/dist/config/Button.js
CHANGED
|
@@ -67,7 +67,7 @@ export var Button = {
|
|
|
67
67
|
'@border-color-base': ['borderColor'],
|
|
68
68
|
'@text-color': []
|
|
69
69
|
},
|
|
70
|
-
tpl: "\n.ued-button-wrap.pcfactory-btn {\n line-height: lineHeight;\n font-size: fontSize;\n padding: paddingValue;\n margin: marginValue;\n }\n.ued-button-wrap.pcfactory-btn-primary {\n background-color: backgroundColor;\n border-color:
|
|
70
|
+
tpl: "\n.ued-button-wrap.pcfactory-btn {\n line-height: lineHeight;\n font-size: fontSize;\n padding: paddingValue;\n margin: marginValue;\n }\n.ued-button-wrap.pcfactory-btn-primary {\n background-color: backgroundColor;\n border-color: backgroundColor;\n border-radius: borderRadius;\n }\n.ued-button-wrap.pcfactory-btn-default {\n color: textColor;\n border-color: borderColor;\n border-radius: borderRadius;\n }\n.ued-button-wrap.pcfactory-btn-dashed {\n color: textColor;\n border-color: borderColor;\n border-radius: borderRadius;\n }\n.ued-button-wrap.pcfactory-btn.pcfactory-btn-dashed:hover {\n border-color: backgroundColor;\n color: backgroundColor;\n }\n.ued-button-wrap.pcfactory-btn.pcfactory-btn-default:hover {\n border-color: backgroundColor;\n color: backgroundColor;\n }\n.ued-button-wrap.pcfactory-btn-text {\n color: textColor;\n }\n.ued-button-wrap.pcfactory-btn-link {\n color: backgroundColor;\n }\n ",
|
|
71
71
|
components: [{
|
|
72
72
|
id: 'Button_1229334',
|
|
73
73
|
label: '按钮',
|
|
@@ -26,6 +26,15 @@ export declare const Cascader: {
|
|
|
26
26
|
canEdit: boolean;
|
|
27
27
|
extendsKey: string;
|
|
28
28
|
};
|
|
29
|
+
itemHoverBorderColor: {
|
|
30
|
+
type: string;
|
|
31
|
+
label: string;
|
|
32
|
+
groupsName: string;
|
|
33
|
+
hidden: boolean;
|
|
34
|
+
desc: string;
|
|
35
|
+
canEdit: boolean;
|
|
36
|
+
extendsKey: string;
|
|
37
|
+
};
|
|
29
38
|
labelLineHeight: {
|
|
30
39
|
type: string;
|
|
31
40
|
label: string;
|
package/dist/config/Cascader.js
CHANGED
|
@@ -26,6 +26,15 @@ export var Cascader = {
|
|
|
26
26
|
canEdit: false,
|
|
27
27
|
extendsKey: 'Form'
|
|
28
28
|
},
|
|
29
|
+
itemHoverBorderColor: {
|
|
30
|
+
type: 'color',
|
|
31
|
+
label: '组件激活边框颜色',
|
|
32
|
+
groupsName: '边框',
|
|
33
|
+
hidden: true,
|
|
34
|
+
desc: '继承自表单,此处不可编辑',
|
|
35
|
+
canEdit: false,
|
|
36
|
+
extendsKey: 'Form'
|
|
37
|
+
},
|
|
29
38
|
labelLineHeight: {
|
|
30
39
|
type: 'px',
|
|
31
40
|
label: '标题文本行高',
|
|
@@ -70,6 +70,15 @@ export declare const Checkbox: {
|
|
|
70
70
|
groupsName: string;
|
|
71
71
|
followTheme: string;
|
|
72
72
|
};
|
|
73
|
+
itemHoverBorderColor: {
|
|
74
|
+
type: string;
|
|
75
|
+
label: string;
|
|
76
|
+
groupsName: string;
|
|
77
|
+
hidden: boolean;
|
|
78
|
+
desc: string;
|
|
79
|
+
canEdit: boolean;
|
|
80
|
+
extendsKey: string;
|
|
81
|
+
};
|
|
73
82
|
};
|
|
74
83
|
groupsName: string;
|
|
75
84
|
icon: string;
|
package/dist/config/Checkbox.js
CHANGED
|
@@ -69,6 +69,15 @@ export var Checkbox = {
|
|
|
69
69
|
label: '选中背景颜色',
|
|
70
70
|
groupsName: '边框',
|
|
71
71
|
followTheme: '@primary-color'
|
|
72
|
+
},
|
|
73
|
+
itemHoverBorderColor: {
|
|
74
|
+
type: 'color',
|
|
75
|
+
label: '组件激活边框颜色',
|
|
76
|
+
groupsName: '边框',
|
|
77
|
+
hidden: true,
|
|
78
|
+
desc: '继承自表单,此处不可编辑',
|
|
79
|
+
canEdit: false,
|
|
80
|
+
extendsKey: 'Form'
|
|
72
81
|
}
|
|
73
82
|
},
|
|
74
83
|
groupsName: '数据录入',
|
|
@@ -70,6 +70,15 @@ export declare const DatePicker: {
|
|
|
70
70
|
canEdit: boolean;
|
|
71
71
|
extendsKey: string;
|
|
72
72
|
};
|
|
73
|
+
itemHoverBorderColor: {
|
|
74
|
+
type: string;
|
|
75
|
+
label: string;
|
|
76
|
+
groupsName: string;
|
|
77
|
+
hidden: boolean;
|
|
78
|
+
desc: string;
|
|
79
|
+
canEdit: boolean;
|
|
80
|
+
extendsKey: string;
|
|
81
|
+
};
|
|
73
82
|
};
|
|
74
83
|
groupsName: string;
|
|
75
84
|
icon: string;
|
|
@@ -69,6 +69,15 @@ export var DatePicker = {
|
|
|
69
69
|
desc: '继承自表单,此处不可编辑',
|
|
70
70
|
canEdit: false,
|
|
71
71
|
extendsKey: 'Form'
|
|
72
|
+
},
|
|
73
|
+
itemHoverBorderColor: {
|
|
74
|
+
type: 'color',
|
|
75
|
+
label: '组件激活边框颜色',
|
|
76
|
+
groupsName: '边框',
|
|
77
|
+
hidden: true,
|
|
78
|
+
desc: '继承自表单,此处不可编辑',
|
|
79
|
+
canEdit: false,
|
|
80
|
+
extendsKey: 'Form'
|
|
72
81
|
}
|
|
73
82
|
},
|
|
74
83
|
groupsName: '数据录入',
|
package/dist/config/Input.d.ts
CHANGED
|
@@ -57,6 +57,15 @@ export declare const Input: {
|
|
|
57
57
|
canEdit: boolean;
|
|
58
58
|
extendsKey: string;
|
|
59
59
|
};
|
|
60
|
+
itemHoverBorderColor: {
|
|
61
|
+
type: string;
|
|
62
|
+
label: string;
|
|
63
|
+
groupsName: string;
|
|
64
|
+
hidden: boolean;
|
|
65
|
+
desc: string;
|
|
66
|
+
canEdit: boolean;
|
|
67
|
+
extendsKey: string;
|
|
68
|
+
};
|
|
60
69
|
};
|
|
61
70
|
groupsName: string;
|
|
62
71
|
icon: string;
|
package/dist/config/Input.js
CHANGED
|
@@ -56,6 +56,15 @@ export var Input = {
|
|
|
56
56
|
desc: '继承自表单,此处不可编辑',
|
|
57
57
|
canEdit: false,
|
|
58
58
|
extendsKey: 'Form'
|
|
59
|
+
},
|
|
60
|
+
itemHoverBorderColor: {
|
|
61
|
+
type: 'color',
|
|
62
|
+
label: '组件激活边框颜色',
|
|
63
|
+
groupsName: '边框',
|
|
64
|
+
hidden: true,
|
|
65
|
+
desc: '继承自表单,此处不可编辑',
|
|
66
|
+
canEdit: false,
|
|
67
|
+
extendsKey: 'Form'
|
|
59
68
|
}
|
|
60
69
|
},
|
|
61
70
|
groupsName: '数据录入',
|
|
@@ -57,6 +57,15 @@ export declare const InputNumber: {
|
|
|
57
57
|
canEdit: boolean;
|
|
58
58
|
extendsKey: string;
|
|
59
59
|
};
|
|
60
|
+
itemHoverBorderColor: {
|
|
61
|
+
type: string;
|
|
62
|
+
label: string;
|
|
63
|
+
groupsName: string;
|
|
64
|
+
hidden: boolean;
|
|
65
|
+
desc: string;
|
|
66
|
+
canEdit: boolean;
|
|
67
|
+
extendsKey: string;
|
|
68
|
+
};
|
|
60
69
|
};
|
|
61
70
|
groupsName: string;
|
|
62
71
|
icon: string;
|
|
@@ -56,6 +56,15 @@ export var InputNumber = {
|
|
|
56
56
|
desc: '继承自表单,此处不可编辑',
|
|
57
57
|
canEdit: false,
|
|
58
58
|
extendsKey: 'Form'
|
|
59
|
+
},
|
|
60
|
+
itemHoverBorderColor: {
|
|
61
|
+
type: 'color',
|
|
62
|
+
label: '组件激活边框颜色',
|
|
63
|
+
groupsName: '边框',
|
|
64
|
+
hidden: true,
|
|
65
|
+
desc: '继承自表单,此处不可编辑',
|
|
66
|
+
canEdit: false,
|
|
67
|
+
extendsKey: 'Form'
|
|
59
68
|
}
|
|
60
69
|
},
|
|
61
70
|
groupsName: '数据录入',
|
|
@@ -57,6 +57,15 @@ export declare const MultipleSelect: {
|
|
|
57
57
|
canEdit: boolean;
|
|
58
58
|
extendsKey: string;
|
|
59
59
|
};
|
|
60
|
+
itemHoverBorderColor: {
|
|
61
|
+
type: string;
|
|
62
|
+
label: string;
|
|
63
|
+
groupsName: string;
|
|
64
|
+
hidden: boolean;
|
|
65
|
+
desc: string;
|
|
66
|
+
canEdit: boolean;
|
|
67
|
+
extendsKey: string;
|
|
68
|
+
};
|
|
60
69
|
};
|
|
61
70
|
groupsName: string;
|
|
62
71
|
icon: string;
|
|
@@ -56,6 +56,15 @@ export var MultipleSelect = {
|
|
|
56
56
|
desc: '继承自表单,此处不可编辑',
|
|
57
57
|
canEdit: false,
|
|
58
58
|
extendsKey: 'Form'
|
|
59
|
+
},
|
|
60
|
+
itemHoverBorderColor: {
|
|
61
|
+
type: 'color',
|
|
62
|
+
label: '组件激活边框颜色',
|
|
63
|
+
groupsName: '边框',
|
|
64
|
+
hidden: true,
|
|
65
|
+
desc: '继承自表单,此处不可编辑',
|
|
66
|
+
canEdit: false,
|
|
67
|
+
extendsKey: 'Form'
|
|
59
68
|
}
|
|
60
69
|
},
|
|
61
70
|
groupsName: '数据录入',
|
package/dist/config/Radio.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ export declare const Radio: {
|
|
|
42
42
|
canEdit: boolean;
|
|
43
43
|
extendsKey: string;
|
|
44
44
|
};
|
|
45
|
+
itemHoverBorderColor: {
|
|
46
|
+
type: string;
|
|
47
|
+
label: string;
|
|
48
|
+
groupsName: string;
|
|
49
|
+
hidden: boolean;
|
|
50
|
+
desc: string;
|
|
51
|
+
canEdit: boolean;
|
|
52
|
+
extendsKey: string;
|
|
53
|
+
};
|
|
45
54
|
radioSize: {
|
|
46
55
|
type: string;
|
|
47
56
|
label: string;
|
package/dist/config/Radio.js
CHANGED
|
@@ -42,6 +42,15 @@ export var Radio = {
|
|
|
42
42
|
canEdit: false,
|
|
43
43
|
extendsKey: 'Form'
|
|
44
44
|
},
|
|
45
|
+
itemHoverBorderColor: {
|
|
46
|
+
type: 'color',
|
|
47
|
+
label: '组件激活边框颜色',
|
|
48
|
+
groupsName: '边框',
|
|
49
|
+
hidden: true,
|
|
50
|
+
desc: '继承自表单,此处不可编辑',
|
|
51
|
+
canEdit: false,
|
|
52
|
+
extendsKey: 'Form'
|
|
53
|
+
},
|
|
45
54
|
radioSize: {
|
|
46
55
|
type: 'px',
|
|
47
56
|
label: '图标尺寸',
|
|
@@ -68,6 +68,15 @@ export declare const RangePicker: {
|
|
|
68
68
|
canEdit: boolean;
|
|
69
69
|
extendsKey: string;
|
|
70
70
|
};
|
|
71
|
+
itemHoverBorderColor: {
|
|
72
|
+
type: string;
|
|
73
|
+
label: string;
|
|
74
|
+
groupsName: string;
|
|
75
|
+
hidden: boolean;
|
|
76
|
+
desc: string;
|
|
77
|
+
canEdit: boolean;
|
|
78
|
+
extendsKey: string;
|
|
79
|
+
};
|
|
71
80
|
itemBorderRadius: {
|
|
72
81
|
type: string;
|
|
73
82
|
label: string;
|
|
@@ -68,6 +68,15 @@ export var RangePicker = {
|
|
|
68
68
|
canEdit: false,
|
|
69
69
|
extendsKey: 'Form'
|
|
70
70
|
},
|
|
71
|
+
itemHoverBorderColor: {
|
|
72
|
+
type: 'color',
|
|
73
|
+
label: '组件激活边框颜色',
|
|
74
|
+
groupsName: '边框',
|
|
75
|
+
hidden: true,
|
|
76
|
+
desc: '继承自表单,此处不可编辑',
|
|
77
|
+
canEdit: false,
|
|
78
|
+
extendsKey: 'Form'
|
|
79
|
+
},
|
|
71
80
|
itemBorderRadius: {
|
|
72
81
|
type: 'px',
|
|
73
82
|
label: '边框圆角',
|
package/dist/config/Select.d.ts
CHANGED
|
@@ -58,6 +58,15 @@ export declare const Select: {
|
|
|
58
58
|
canEdit: boolean;
|
|
59
59
|
extendsKey: string;
|
|
60
60
|
};
|
|
61
|
+
itemHoverBorderColor: {
|
|
62
|
+
type: string;
|
|
63
|
+
label: string;
|
|
64
|
+
groupsName: string;
|
|
65
|
+
hidden: boolean;
|
|
66
|
+
desc: string;
|
|
67
|
+
canEdit: boolean;
|
|
68
|
+
extendsKey: string;
|
|
69
|
+
};
|
|
61
70
|
iconFontSize: {
|
|
62
71
|
type: string;
|
|
63
72
|
label: string;
|
package/dist/config/Select.js
CHANGED
|
@@ -58,6 +58,15 @@ export var Select = {
|
|
|
58
58
|
canEdit: false,
|
|
59
59
|
extendsKey: 'Form'
|
|
60
60
|
},
|
|
61
|
+
itemHoverBorderColor: {
|
|
62
|
+
type: 'color',
|
|
63
|
+
label: '组件激活边框颜色',
|
|
64
|
+
groupsName: '边框',
|
|
65
|
+
hidden: true,
|
|
66
|
+
desc: '继承自表单,此处不可编辑',
|
|
67
|
+
canEdit: false,
|
|
68
|
+
extendsKey: 'Form'
|
|
69
|
+
},
|
|
61
70
|
iconFontSize: {
|
|
62
71
|
type: 'px',
|
|
63
72
|
label: '下拉图标尺寸',
|
|
@@ -66,6 +66,15 @@ export declare const StdUpload: {
|
|
|
66
66
|
canEdit: boolean;
|
|
67
67
|
extendsKey: string;
|
|
68
68
|
};
|
|
69
|
+
itemHoverBorderColor: {
|
|
70
|
+
type: string;
|
|
71
|
+
label: string;
|
|
72
|
+
groupsName: string;
|
|
73
|
+
hidden: boolean;
|
|
74
|
+
desc: string;
|
|
75
|
+
canEdit: boolean;
|
|
76
|
+
extendsKey: string;
|
|
77
|
+
};
|
|
69
78
|
};
|
|
70
79
|
groupsName: string;
|
|
71
80
|
icon: string;
|
package/dist/config/StdUpload.js
CHANGED
|
@@ -65,6 +65,15 @@ export var StdUpload = {
|
|
|
65
65
|
desc: '继承自表单,此处不可编辑',
|
|
66
66
|
canEdit: false,
|
|
67
67
|
extendsKey: 'Form'
|
|
68
|
+
},
|
|
69
|
+
itemHoverBorderColor: {
|
|
70
|
+
type: 'color',
|
|
71
|
+
label: '组件激活边框颜色',
|
|
72
|
+
groupsName: '边框',
|
|
73
|
+
hidden: true,
|
|
74
|
+
desc: '继承自表单,此处不可编辑',
|
|
75
|
+
canEdit: false,
|
|
76
|
+
extendsKey: 'Form'
|
|
68
77
|
}
|
|
69
78
|
},
|
|
70
79
|
groupsName: '数据录入',
|
package/dist/config/Switch.d.ts
CHANGED
|
@@ -36,6 +36,15 @@ export declare const Switch: {
|
|
|
36
36
|
label: string;
|
|
37
37
|
groupsName: string;
|
|
38
38
|
};
|
|
39
|
+
itemHoverBorderColor: {
|
|
40
|
+
type: string;
|
|
41
|
+
label: string;
|
|
42
|
+
groupsName: string;
|
|
43
|
+
hidden: boolean;
|
|
44
|
+
desc: string;
|
|
45
|
+
canEdit: boolean;
|
|
46
|
+
extendsKey: string;
|
|
47
|
+
};
|
|
39
48
|
};
|
|
40
49
|
groupsName: string;
|
|
41
50
|
icon: string;
|
package/dist/config/Switch.js
CHANGED
|
@@ -35,6 +35,15 @@ export var Switch = {
|
|
|
35
35
|
type: 'color',
|
|
36
36
|
label: '关闭颜色',
|
|
37
37
|
groupsName: '文字'
|
|
38
|
+
},
|
|
39
|
+
itemHoverBorderColor: {
|
|
40
|
+
type: 'color',
|
|
41
|
+
label: '组件激活边框颜色',
|
|
42
|
+
groupsName: '边框',
|
|
43
|
+
hidden: true,
|
|
44
|
+
desc: '继承自表单,此处不可编辑',
|
|
45
|
+
canEdit: false,
|
|
46
|
+
extendsKey: 'Form'
|
|
38
47
|
}
|
|
39
48
|
},
|
|
40
49
|
groupsName: '数据录入',
|
|
@@ -41,6 +41,15 @@ export declare const TextArea: {
|
|
|
41
41
|
canEdit: boolean;
|
|
42
42
|
extendsKey: string;
|
|
43
43
|
};
|
|
44
|
+
itemHoverBorderColor: {
|
|
45
|
+
type: string;
|
|
46
|
+
label: string;
|
|
47
|
+
groupsName: string;
|
|
48
|
+
hidden: boolean;
|
|
49
|
+
desc: string;
|
|
50
|
+
canEdit: boolean;
|
|
51
|
+
extendsKey: string;
|
|
52
|
+
};
|
|
44
53
|
itemBorderColor: {
|
|
45
54
|
type: string;
|
|
46
55
|
label: string;
|
package/dist/config/TextArea.js
CHANGED
|
@@ -41,6 +41,15 @@ export var TextArea = {
|
|
|
41
41
|
canEdit: false,
|
|
42
42
|
extendsKey: 'Form'
|
|
43
43
|
},
|
|
44
|
+
itemHoverBorderColor: {
|
|
45
|
+
type: 'color',
|
|
46
|
+
label: '组件激活边框颜色',
|
|
47
|
+
groupsName: '边框',
|
|
48
|
+
hidden: true,
|
|
49
|
+
desc: '继承自表单,此处不可编辑',
|
|
50
|
+
canEdit: false,
|
|
51
|
+
extendsKey: 'Form'
|
|
52
|
+
},
|
|
44
53
|
itemBorderColor: {
|
|
45
54
|
type: 'color',
|
|
46
55
|
label: '边框颜色',
|
|
@@ -70,6 +70,15 @@ export declare const TimePicker: {
|
|
|
70
70
|
canEdit: boolean;
|
|
71
71
|
extendsKey: string;
|
|
72
72
|
};
|
|
73
|
+
itemHoverBorderColor: {
|
|
74
|
+
type: string;
|
|
75
|
+
label: string;
|
|
76
|
+
groupsName: string;
|
|
77
|
+
hidden: boolean;
|
|
78
|
+
desc: string;
|
|
79
|
+
canEdit: boolean;
|
|
80
|
+
extendsKey: string;
|
|
81
|
+
};
|
|
73
82
|
};
|
|
74
83
|
groupsName: string;
|
|
75
84
|
icon: string;
|
|
@@ -69,6 +69,15 @@ export var TimePicker = {
|
|
|
69
69
|
desc: '继承自表单,此处不可编辑',
|
|
70
70
|
canEdit: false,
|
|
71
71
|
extendsKey: 'Form'
|
|
72
|
+
},
|
|
73
|
+
itemHoverBorderColor: {
|
|
74
|
+
type: 'color',
|
|
75
|
+
label: '组件激活边框颜色',
|
|
76
|
+
groupsName: '边框',
|
|
77
|
+
hidden: true,
|
|
78
|
+
desc: '继承自表单,此处不可编辑',
|
|
79
|
+
canEdit: false,
|
|
80
|
+
extendsKey: 'Form'
|
|
72
81
|
}
|
|
73
82
|
},
|
|
74
83
|
groupsName: '数据录入',
|
|
@@ -74,6 +74,15 @@ export declare const TreeSelect: {
|
|
|
74
74
|
canEdit: boolean;
|
|
75
75
|
extendsKey: string;
|
|
76
76
|
};
|
|
77
|
+
itemHoverBorderColor: {
|
|
78
|
+
type: string;
|
|
79
|
+
label: string;
|
|
80
|
+
groupsName: string;
|
|
81
|
+
hidden: boolean;
|
|
82
|
+
desc: string;
|
|
83
|
+
canEdit: boolean;
|
|
84
|
+
extendsKey: string;
|
|
85
|
+
};
|
|
77
86
|
};
|
|
78
87
|
groupsName: string;
|
|
79
88
|
icon: string;
|
|
@@ -73,6 +73,15 @@ export var TreeSelect = {
|
|
|
73
73
|
desc: '继承自表单,此处不可编辑',
|
|
74
74
|
canEdit: false,
|
|
75
75
|
extendsKey: 'Form'
|
|
76
|
+
},
|
|
77
|
+
itemHoverBorderColor: {
|
|
78
|
+
type: 'color',
|
|
79
|
+
label: '组件激活边框颜色',
|
|
80
|
+
groupsName: '边框',
|
|
81
|
+
hidden: true,
|
|
82
|
+
desc: '继承自表单,此处不可编辑',
|
|
83
|
+
canEdit: false,
|
|
84
|
+
extendsKey: 'Form'
|
|
76
85
|
}
|
|
77
86
|
},
|
|
78
87
|
groupsName: '数据录入',
|
package/dist/h5config/DForm.d.ts
CHANGED
|
@@ -232,7 +232,6 @@ export declare const DForm: {
|
|
|
232
232
|
style: {
|
|
233
233
|
inputContent: string;
|
|
234
234
|
lineHeight?: undefined;
|
|
235
|
-
textAlign?: undefined;
|
|
236
235
|
inputBorderRadius?: undefined;
|
|
237
236
|
};
|
|
238
237
|
isContainer: boolean;
|
|
@@ -333,7 +332,6 @@ export declare const DForm: {
|
|
|
333
332
|
style: {
|
|
334
333
|
lineHeight: string;
|
|
335
334
|
inputContent?: undefined;
|
|
336
|
-
textAlign?: undefined;
|
|
337
335
|
inputBorderRadius?: undefined;
|
|
338
336
|
};
|
|
339
337
|
isContainer: boolean;
|
|
@@ -430,7 +428,6 @@ export declare const DForm: {
|
|
|
430
428
|
style: {
|
|
431
429
|
inputContent?: undefined;
|
|
432
430
|
lineHeight?: undefined;
|
|
433
|
-
textAlign?: undefined;
|
|
434
431
|
inputBorderRadius?: undefined;
|
|
435
432
|
};
|
|
436
433
|
isContainer: boolean;
|
|
@@ -567,7 +564,6 @@ export declare const DForm: {
|
|
|
567
564
|
style: {
|
|
568
565
|
inputContent?: undefined;
|
|
569
566
|
lineHeight?: undefined;
|
|
570
|
-
textAlign?: undefined;
|
|
571
567
|
inputBorderRadius?: undefined;
|
|
572
568
|
};
|
|
573
569
|
isContainer: boolean;
|
|
@@ -678,7 +674,6 @@ export declare const DForm: {
|
|
|
678
674
|
selectedType?: undefined;
|
|
679
675
|
};
|
|
680
676
|
style: {
|
|
681
|
-
textAlign: string;
|
|
682
677
|
inputContent?: undefined;
|
|
683
678
|
lineHeight?: undefined;
|
|
684
679
|
inputBorderRadius?: undefined;
|
|
@@ -785,7 +780,6 @@ export declare const DForm: {
|
|
|
785
780
|
style: {
|
|
786
781
|
inputContent?: undefined;
|
|
787
782
|
lineHeight?: undefined;
|
|
788
|
-
textAlign?: undefined;
|
|
789
783
|
inputBorderRadius?: undefined;
|
|
790
784
|
};
|
|
791
785
|
isContainer: boolean;
|
|
@@ -882,7 +876,6 @@ export declare const DForm: {
|
|
|
882
876
|
style: {
|
|
883
877
|
inputContent: string;
|
|
884
878
|
lineHeight?: undefined;
|
|
885
|
-
textAlign?: undefined;
|
|
886
879
|
inputBorderRadius?: undefined;
|
|
887
880
|
};
|
|
888
881
|
isContainer: boolean;
|
|
@@ -987,7 +980,6 @@ export declare const DForm: {
|
|
|
987
980
|
style: {
|
|
988
981
|
inputContent?: undefined;
|
|
989
982
|
lineHeight?: undefined;
|
|
990
|
-
textAlign?: undefined;
|
|
991
983
|
inputBorderRadius?: undefined;
|
|
992
984
|
};
|
|
993
985
|
isContainer: boolean;
|
|
@@ -1092,7 +1084,6 @@ export declare const DForm: {
|
|
|
1092
1084
|
style: {
|
|
1093
1085
|
inputContent?: undefined;
|
|
1094
1086
|
lineHeight?: undefined;
|
|
1095
|
-
textAlign?: undefined;
|
|
1096
1087
|
inputBorderRadius?: undefined;
|
|
1097
1088
|
};
|
|
1098
1089
|
isContainer: boolean;
|
|
@@ -1197,7 +1188,6 @@ export declare const DForm: {
|
|
|
1197
1188
|
style: {
|
|
1198
1189
|
inputContent?: undefined;
|
|
1199
1190
|
lineHeight?: undefined;
|
|
1200
|
-
textAlign?: undefined;
|
|
1201
1191
|
inputBorderRadius?: undefined;
|
|
1202
1192
|
};
|
|
1203
1193
|
isContainer: boolean;
|
|
@@ -1302,7 +1292,6 @@ export declare const DForm: {
|
|
|
1302
1292
|
style: {
|
|
1303
1293
|
inputContent?: undefined;
|
|
1304
1294
|
lineHeight?: undefined;
|
|
1305
|
-
textAlign?: undefined;
|
|
1306
1295
|
inputBorderRadius?: undefined;
|
|
1307
1296
|
};
|
|
1308
1297
|
isContainer: boolean;
|
|
@@ -1399,7 +1388,6 @@ export declare const DForm: {
|
|
|
1399
1388
|
style: {
|
|
1400
1389
|
inputContent?: undefined;
|
|
1401
1390
|
lineHeight?: undefined;
|
|
1402
|
-
textAlign?: undefined;
|
|
1403
1391
|
inputBorderRadius?: undefined;
|
|
1404
1392
|
};
|
|
1405
1393
|
isContainer: boolean;
|
|
@@ -1500,7 +1488,6 @@ export declare const DForm: {
|
|
|
1500
1488
|
style: {
|
|
1501
1489
|
inputContent?: undefined;
|
|
1502
1490
|
lineHeight?: undefined;
|
|
1503
|
-
textAlign?: undefined;
|
|
1504
1491
|
inputBorderRadius?: undefined;
|
|
1505
1492
|
};
|
|
1506
1493
|
isContainer: boolean;
|
|
@@ -1598,7 +1585,6 @@ export declare const DForm: {
|
|
|
1598
1585
|
inputContent: string;
|
|
1599
1586
|
inputBorderRadius: string;
|
|
1600
1587
|
lineHeight?: undefined;
|
|
1601
|
-
textAlign?: undefined;
|
|
1602
1588
|
};
|
|
1603
1589
|
isContainer: boolean;
|
|
1604
1590
|
isBusiObjContainer: boolean;
|
package/dist/h5config/DForm.js
CHANGED
|
@@ -185,8 +185,8 @@ export var DForm = {
|
|
|
185
185
|
'@color-text-base': [],
|
|
186
186
|
'@border-color-base': []
|
|
187
187
|
},
|
|
188
|
-
tpl: ".dynamic-form-wrapper {\n background-color: backgroundColor;\n .lingxiteam-dform-text-item .lingxiteam-dform-placeholder .lingxiteam-dform-text-item-text div{\n text-align: headTextAlign;\n span{\n font-size: fontSize;\n line-height: lineHeight;\n font-weight: fontWeight;\n }\n }\n .lcdp-form-item {\n --color: textColor;\n --font-size: fontSize;\n .adm-text-area{\n --color: textColor;\n --font-size: fontSize;\n }\n .lingxiteam-dform-title {\n color: labelTextColor;\n font-size: labelFontSize !important;\n line-height: labelLineHeight;\n font-weight: labelFontWeight;\n text-align: headTextAlign;\n }\n .lingxiteam-dform-input-item-value input{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n
|
|
189
|
-
itemCustomTpl: ".lcdp-form-item {\n --color: textColor;\n --font-size: fontSize;\n .adm-text-area{\n --color: textColor;\n --font-size: fontSize;\n }\n .lingxiteam-dform-title {\n color: labelTextColor;\n font-size: labelFontSize !important;\n line-height: labelLineHeight;\n font-weight: labelFontWeight;\n text-align: headTextAlign;\n }\n .lingxiteam-dform-input-item-value input{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n
|
|
188
|
+
tpl: ".dynamic-form-wrapper {\n background-color: backgroundColor;\n .lingxiteam-dform-text-item .lingxiteam-dform-placeholder .lingxiteam-dform-text-item-text div{\n text-align: headTextAlign;\n span{\n font-size: fontSize;\n line-height: lineHeight;\n font-weight: fontWeight;\n }\n }\n .lcdp-form-item {\n --color: textColor;\n --font-size: fontSize;\n .adm-text-area{\n --color: textColor;\n --font-size: fontSize;\n }\n .lingxiteam-dform-rangdate-default{\n font-size: fontSize;\n }\n .lingxiteam-dform-text-item-value-wrapper{\n font-size: fontSize;\n }\n .lingxiteam-dform-title {\n color: labelTextColor;\n font-size: labelFontSize !important;\n line-height: labelLineHeight;\n font-weight: labelFontWeight;\n text-align: headTextAlign;\n }\n .lingxiteam-dform-input-item-value input{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n padding: paddingValue;\n text-align: headTextAlign;\n font-size: fontSize;\n }\n .lingxiteam-dform-radio-button{\n font-size: fontSize;\n }\n .lingxiteam-dform-radio-label{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n padding: paddingValue;\n text-align: headTextAlign;\n font-size: fontSize;\n }\n .lingxiteam-dform-check-box .lingxiteam-dform-box-content .lingxiteam-dform-box-wrapper .lingxiteam-dform-box-label{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n text-align: headTextAlign;\n font-size: fontSize;\n \n }\n .lingxiteam-dform-text-item-content .lingxiteam-dform-text-item-text{\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n text-align: headTextAlign;\n padding: paddingValue;\n font-weight: fontWeight;\n }\n .lingxiteam-dform-text-item-content .lingxiteam-dform-text-item-date-text{\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n text-align: headTextAlign;\n padding: paddingValue;\n font-weight: fontWeight;\n }\n .lingxiteam-dform-rangdate-h-value{\n color: textColor;\n line-height: lineHeight;\n text-align: headTextAlign;\n font-size: fontSize;\n padding: paddingValue;\n font-weight: fontWeight;\n }\n .lingxiteam-dform-area-group-value-area textarea{\n line-height: lineHeight;\n padding: paddingValue;\n font-weight: fontWeight;\n font-size: fontSize;\n color: textColor;\n text-align: headTextAlign;\n }\n .lingxiteam-dform-right-content{\n width: iconSize;\n height: iconSize;\n overflow: hidden;\n .cust-icon{\n width: iconSize;\n height: iconSize;\n }\n .cust-icon svg{\n color: iconColor;\n fill: iconColor;\n width: iconSize;\n height: iconSize;\n }\n }\n .lingxiteam-dform-arrow-horizontal{\n background-image: none;\n width: iconSize;\n height: iconSize;\n position: relative;\n }\n .lingxiteam-dform-arrow-horizontal::before {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: iconSize;\n height: iconSize;\n background-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2226%22%20viewBox%3D%220%200%2016%2026%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%20id%3D%22UI-KIT_%E5%9F%BA%E7%A1%80%E5%85%83%E4%BB%B6%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20id%3D%229.9%E5%9F%BA%E7%A1%80%E5%85%83%E4%BB%B6%22%20transform%3D%22translate%28-5809.000000%2C%20-8482.000000%29%22%20fill%3D%22%23C7C7CC%22%3E%3Cpolygon%20id%3D%22Disclosure-Indicator%22%20points%3D%225811%208482%205809%208484%205820.5%208495%205809%208506%205811%208508%205825%208495%22%3E%3C%2Fpolygon%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E\");\n background-repeat: round;\n transform: translateX(-100%);\n background-size: 100%;\n filter: drop-shadow(iconSize 0 iconColor);\n }\n }\n }\n ",
|
|
189
|
+
itemCustomTpl: ".lcdp-form-item {\n --color: textColor;\n --font-size: fontSize;\n .adm-text-area{\n --color: textColor;\n --font-size: fontSize;\n }\n .lingxiteam-dform-title {\n color: labelTextColor;\n font-size: labelFontSize !important;\n line-height: labelLineHeight;\n font-weight: labelFontWeight;\n text-align: headTextAlign;\n }\n .lingxiteam-dform-input-item-value input{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n padding: paddingValue;\n text-align: headTextAlign;\n font-size: fontSize;\n }\n .lingxiteam-dform-rangdate-default{\n font-size: fontSize;\n }\n .lingxiteam-dform-text-item-value-wrapper{\n font-size: fontSize;\n }\n .lingxiteam-dform-radio-button{\n font-size: fontSize;\n }\n .lingxiteam-dform-radio-label{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n padding: paddingValue;\n text-align: headTextAlign;\n font-size: fontSize;\n }\n .lingxiteam-dform-check-box .lingxiteam-dform-box-content .lingxiteam-dform-box-wrapper .lingxiteam-dform-box-label{\n color: textColor;\n line-height: lineHeight;\n font-weight: fontWeight;\n text-align: headTextAlign;\n font-size: fontSize;\n }\n .lingxiteam-dform-text-item-content .lingxiteam-dform-text-item-text{\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n text-align: headTextAlign;\n padding: paddingValue;\n font-weight: fontWeight;\n }\n .lingxiteam-dform-text-item-content .lingxiteam-dform-text-item-date-text{\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n text-align: headTextAlign;\n padding: paddingValue;\n font-weight: fontWeight;\n }\n .lingxiteam-dform-rangdate-h-value{\n color: textColor;\n line-height: lineHeight;\n text-align: headTextAlign;\n font-size: fontSize;\n padding: paddingValue;\n font-weight: fontWeight;\n }\n .lingxiteam-dform-area-group-value-area textarea{\n line-height: lineHeight;\n padding: paddingValue;\n font-weight: fontWeight;\n font-size: fontSize;\n color: textColor;\n text-align: headTextAlign;\n }\n .lingxiteam-dform-right-content{\n width: iconSize;\n height: iconSize;\n overflow: hidden;\n .cust-icon{\n width: iconSize;\n height: iconSize;\n }\n .cust-icon svg{\n color: iconColor;\n fill: iconColor;\n width: iconSize;\n height: iconSize;\n }\n }\n .lingxiteam-dform-arrow-horizontal{\n background-image: none;\n width: iconSize;\n height: iconSize;\n position: relative;\n }\n .lingxiteam-dform-arrow-horizontal::before {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: iconSize;\n height: iconSize;\n background-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2226%22%20viewBox%3D%220%200%2016%2026%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%20id%3D%22UI-KIT_%E5%9F%BA%E7%A1%80%E5%85%83%E4%BB%B6%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20id%3D%229.9%E5%9F%BA%E7%A1%80%E5%85%83%E4%BB%B6%22%20transform%3D%22translate%28-5809.000000%2C%20-8482.000000%29%22%20fill%3D%22%23C7C7CC%22%3E%3Cpolygon%20id%3D%22Disclosure-Indicator%22%20points%3D%225811%208482%205809%208484%205820.5%208495%205809%208506%205811%208508%205825%208495%22%3E%3C%2Fpolygon%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E\");\n background-repeat: round;\n transform: translateX(-100%);\n background-size: 100%;\n filter: drop-shadow(iconSize 0 iconColor);\n }\n }",
|
|
190
190
|
components: [{
|
|
191
191
|
id: 'DForm_458695',
|
|
192
192
|
label: '表单',
|
|
@@ -491,9 +491,7 @@ export var DForm = {
|
|
|
491
491
|
value: '638287'
|
|
492
492
|
}]
|
|
493
493
|
},
|
|
494
|
-
style: {
|
|
495
|
-
textAlign: 'right'
|
|
496
|
-
},
|
|
494
|
+
style: {},
|
|
497
495
|
isContainer: false,
|
|
498
496
|
isBusiObjContainer: false,
|
|
499
497
|
cmdgroup: ['basic'],
|
package/dist/h5config/Link.js
CHANGED
|
@@ -17,7 +17,7 @@ export var ALink = {
|
|
|
17
17
|
followThemes: {
|
|
18
18
|
'@color-link': ['textColor']
|
|
19
19
|
},
|
|
20
|
-
tpl: "\n
|
|
20
|
+
tpl: "\n .use-app-alink {\n color: textColor;\n }\n .use-app-alink:hover {\n color: textColor;\n opacity: 0.6;\n }",
|
|
21
21
|
components: [{
|
|
22
22
|
id: 'ALink_414643',
|
|
23
23
|
label: '超链接',
|