@lingxiteam/theme-utils 0.2.12 → 0.2.14
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/Card.d.ts +4 -0
- package/dist/config/Card.js +6 -2
- package/dist/config/Form.js +2 -2
- package/dist/config/Radio.d.ts +54 -2
- package/dist/config/Radio.js +67 -1
- package/dist/config/Table.d.ts +2 -0
- package/dist/config/Table.js +6 -4
- package/dist/h5config/Accordion.d.ts +4 -0
- package/dist/h5config/Accordion.js +8 -1
- package/dist/h5config/Card.d.ts +6 -10
- package/dist/h5config/Card.js +123 -34
- package/dist/h5config/DForm.d.ts +8 -0
- package/dist/h5config/DForm.js +17 -3
- package/dist/h5config/DformInput.d.ts +1 -0
- package/dist/h5config/DformInput.js +3 -2
- package/dist/h5config/FilterItems.d.ts +4 -0
- package/dist/h5config/FilterItems.js +8 -1
- package/dist/h5config/Grid.d.ts +4 -0
- package/dist/h5config/Grid.js +8 -1
- package/dist/h5config/NoticeBarPlus.js +0 -1
- package/dist/h5config/SearchView.js +0 -1
- package/package.json +1 -1
package/dist/config/Card.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export declare const Card: {
|
|
|
46
46
|
type: string;
|
|
47
47
|
label: string;
|
|
48
48
|
groupsName: string;
|
|
49
|
+
followTheme: string;
|
|
49
50
|
};
|
|
50
51
|
tagSize: {
|
|
51
52
|
type: string;
|
|
@@ -91,6 +92,9 @@ export declare const Card: {
|
|
|
91
92
|
bodyColor: string;
|
|
92
93
|
lineColor: string;
|
|
93
94
|
}[];
|
|
95
|
+
followThemes: {
|
|
96
|
+
'@primary-color': string[];
|
|
97
|
+
};
|
|
94
98
|
tpl: string;
|
|
95
99
|
components: {
|
|
96
100
|
id: string;
|
package/dist/config/Card.js
CHANGED
|
@@ -63,7 +63,8 @@ export var Card = {
|
|
|
63
63
|
titleColor: {
|
|
64
64
|
type: 'color',
|
|
65
65
|
label: '装饰条颜色',
|
|
66
|
-
groupsName: '背景颜色'
|
|
66
|
+
groupsName: '背景颜色',
|
|
67
|
+
followTheme: '@primary-color'
|
|
67
68
|
},
|
|
68
69
|
tagSize: {
|
|
69
70
|
type: 'px',
|
|
@@ -101,7 +102,7 @@ export var Card = {
|
|
|
101
102
|
title: '卡片',
|
|
102
103
|
defaultValue: [{
|
|
103
104
|
backgroundColor: '#fff',
|
|
104
|
-
titleColor: '#
|
|
105
|
+
titleColor: '#47',
|
|
105
106
|
tagSize: '16px',
|
|
106
107
|
tagMargin: '8px',
|
|
107
108
|
borderColor: '#f0f0f0',
|
|
@@ -109,6 +110,9 @@ export var Card = {
|
|
|
109
110
|
bodyColor: '#fff',
|
|
110
111
|
lineColor: '#f0f0f0'
|
|
111
112
|
}],
|
|
113
|
+
followThemes: {
|
|
114
|
+
'@primary-color': ['titleColor']
|
|
115
|
+
},
|
|
112
116
|
tpl: "\n .pcfactory-card{\n border-radius: borderRadius;\n }\n .ued-card.pcfactory-card-bordered .pcfactory-card-head {\n background-color: backgroundColor;\n border-color: lineColor;\n border-top-left-radius: borderRadius;\n border-top-right-radius: borderRadius;\n }\n .ued-card.pcfactory-card-bordered {\n border-color: borderColor;\n }\n .ued-card.pcfactory-card-bordered {\n border-color: borderColor;\n }\n .ued-card .ued-card-title-icon-auto>i {\n color: titleColor;\n margin-right: tagMargin;\n }\n .ued-card .ued-card-title-icon-auto span{\n color: titleColor;\n margin-right: tagMargin;\n }\n .ued-card .ued-card-title::before {\n color: titleColor;\n background: titleColor;\n margin-right: tagMargin;\n }\n .ued-card .ued-card-title-icon-auto>i svg{\n width: tagSize;\n height: tagSize;\n }\n .ued-card .ued-card-title-icon-auto span svg{\n width: tagSize;\n height: tagSize;\n }\n .ued-card .pcfactory-card-body{\n background-color: bodyColor;\n border-bottom-right-radius: borderRadius;\n border-bottom-left-radius: borderRadius;\n }",
|
|
113
117
|
components: [{
|
|
114
118
|
id: 'Card_813627',
|
package/dist/config/Form.js
CHANGED
|
@@ -92,8 +92,8 @@ export var Form = {
|
|
|
92
92
|
// 下拉单选与下拉复选样式一致
|
|
93
93
|
// 滑动输入条没有边框样式
|
|
94
94
|
// TODO: 树选择器,联级选择器效果待确认
|
|
95
|
-
itemCustomTpl: ".pcFactory-from-component{\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n height: auto;\n }\n .verificationCodePC-inputContent .normalArea{\n height: auto;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemBorderColor;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-input:focus{\n box-shadow: none !important ;\n border-style: none !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n height:
|
|
96
|
-
tpl: ".ued-legacy-form-wrap{\n background-color: backgroundColor;\n .pcFactory-from-component{\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n height: auto;\n }\n .verificationCodePC-inputContent .normalArea{\n height: auto;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemBorderColor;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-input:focus{\n box-shadow: none !important ;\n border-style: none !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number
|
|
95
|
+
itemCustomTpl: ".pcFactory-from-component{\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n height: auto;\n }\n .verificationCodePC-inputContent .normalArea{\n height: auto;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemBorderColor;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-input:focus{\n box-shadow: none !important ;\n border-style: none !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-button-wrapper {\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n height:auto;\n min-height: 32px;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select.ued-select-wrap{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select.ued-select-wrap .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n line-height: 2;\n }\n .ued-datePicker-wrap.pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n }\n .pcfactory-picker-input>input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-open .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-item, .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-placeholder{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select-multiple .ued-select-checked-tag{\n color: textColor;\n font-size: fontSize;\n min-height: 24px;\n height: auto;\n padding: 4px 8px 4px 8px;\n line-height: 1.5715;\n }\n .pcfactory-select-single:not(.pcfactory-select-customize-input) .pcfactory-select-selector::after{\n line-height: fontSize;\n }\n span.pcfactory-radio+*{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-selector{\n height: auto;\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-wrap .pcfactory-select-selector {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap:hover .pcfactory-select-selector{\n border-color: itemBorderColor;\n }\n .pcfactory-checkbox+span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n height: auto;\n }\n .ued-cascader-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker-input > input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button>span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n \n .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-item, .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: 2;\n font-size: fontSize;\n }\n .pcfactory-select-multiple .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n }\n .ued-rateContainer .pcfactory-rate{\n font-size: fontSize;\n }\n .ued-rateContainer-rateText{\n color: textColor;\n font-size: fontSize;\n }\n \n }\n ",
|
|
96
|
+
tpl: ".ued-legacy-form-wrap{\n background-color: backgroundColor;\n .pcFactory-from-component{\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n height: auto;\n }\n .verificationCodePC-inputContent .normalArea{\n height: auto;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemBorderColor;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-input:focus{\n box-shadow: none !important ;\n border-style: none !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-button-wrapper {\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n height:auto;\n min-height: 32px;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select.ued-select-wrap{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select.ued-select-wrap .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n line-height: 2;\n }\n .ued-datePicker-wrap.pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n }\n .pcfactory-picker-input>input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-open .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-item, .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-placeholder{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select-multiple .ued-select-checked-tag{\n color: textColor;\n font-size: fontSize;\n min-height: 24px;\n height: auto;\n padding: 4px 8px 4px 8px;\n line-height: 1.5715;\n }\n .pcfactory-select-single:not(.pcfactory-select-customize-input) .pcfactory-select-selector::after{\n line-height: fontSize;\n }\n span.pcfactory-radio+*{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-selector{\n height: auto;\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-wrap .pcfactory-select-selector {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap:hover .pcfactory-select-selector{\n border-color: itemBorderColor;\n }\n .pcfactory-checkbox+span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n height: auto;\n }\n .ued-cascader-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker-input > input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button>span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n \n .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-item, .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: 2;\n font-size: fontSize;\n }\n .pcfactory-select-multiple .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n }\n .ued-rateContainer .pcfactory-rate{\n font-size: fontSize;\n }\n .ued-rateContainer-rateText{\n color: textColor;\n font-size: fontSize;\n }\n \n }\n }\n \n ",
|
|
97
97
|
components: [{
|
|
98
98
|
id: 'Form_180373',
|
|
99
99
|
label: '表单',
|
package/dist/config/Radio.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ export declare const Radio: {
|
|
|
117
117
|
engineApi: string[];
|
|
118
118
|
setEvents: never[];
|
|
119
119
|
isLabelDropBoxChild: boolean;
|
|
120
|
-
components: {
|
|
120
|
+
components: ({
|
|
121
121
|
id: string;
|
|
122
122
|
label: string;
|
|
123
123
|
compName: string;
|
|
@@ -151,6 +151,7 @@ export declare const Radio: {
|
|
|
151
151
|
label: string;
|
|
152
152
|
value: string;
|
|
153
153
|
}[];
|
|
154
|
+
selfSpan?: undefined;
|
|
154
155
|
};
|
|
155
156
|
style: {};
|
|
156
157
|
isContainer: boolean;
|
|
@@ -170,7 +171,58 @@ export declare const Radio: {
|
|
|
170
171
|
isLabelDropBoxChild: boolean;
|
|
171
172
|
components: never[];
|
|
172
173
|
path: string[];
|
|
173
|
-
}
|
|
174
|
+
} | {
|
|
175
|
+
id: string;
|
|
176
|
+
label: string;
|
|
177
|
+
compName: string;
|
|
178
|
+
type: string;
|
|
179
|
+
compType: number;
|
|
180
|
+
compLib: string;
|
|
181
|
+
props: {
|
|
182
|
+
name: string;
|
|
183
|
+
radioType: string;
|
|
184
|
+
optionMarginRight: number;
|
|
185
|
+
labelCol: number;
|
|
186
|
+
wrapperCol: number;
|
|
187
|
+
basicStatus: number;
|
|
188
|
+
titleTip: string;
|
|
189
|
+
tipSize: string;
|
|
190
|
+
tipWidth: string;
|
|
191
|
+
tipHeight: string;
|
|
192
|
+
required: boolean;
|
|
193
|
+
formItemIndex: number;
|
|
194
|
+
fieldName: string;
|
|
195
|
+
selfSpan: number;
|
|
196
|
+
staticData: {
|
|
197
|
+
data: {
|
|
198
|
+
id: string;
|
|
199
|
+
label: string;
|
|
200
|
+
value: string;
|
|
201
|
+
}[];
|
|
202
|
+
type: string;
|
|
203
|
+
};
|
|
204
|
+
options: {
|
|
205
|
+
id: string;
|
|
206
|
+
label: string;
|
|
207
|
+
value: string;
|
|
208
|
+
}[];
|
|
209
|
+
};
|
|
210
|
+
style: {};
|
|
211
|
+
isContainer: boolean;
|
|
212
|
+
isBusiObjContainer: boolean;
|
|
213
|
+
cmdgroup: string[];
|
|
214
|
+
platform: string;
|
|
215
|
+
icon: string;
|
|
216
|
+
description: string;
|
|
217
|
+
image: string;
|
|
218
|
+
groupsName: string;
|
|
219
|
+
isInlineBlock: boolean;
|
|
220
|
+
setEvents: never[];
|
|
221
|
+
isLabelDropBoxChild: boolean;
|
|
222
|
+
components: never[];
|
|
223
|
+
path: string[];
|
|
224
|
+
fieldProps?: undefined;
|
|
225
|
+
})[];
|
|
174
226
|
path: string[];
|
|
175
227
|
}[];
|
|
176
228
|
};
|
package/dist/config/Radio.js
CHANGED
|
@@ -82,7 +82,7 @@ export var Radio = {
|
|
|
82
82
|
followThemes: {
|
|
83
83
|
'@primary-color': ['radioSeBorderColor']
|
|
84
84
|
},
|
|
85
|
-
tpl: ".ued-radio-wrap {\n .pcfactory-radio-inner{\n width: radioSize;\n height: radioSize;\n border-color: radioBorderColor;\n background: radioBgColor;\n }\n .pcfactory-radio-checked .pcfactory-radio-inner{\n border-color: radioSeBorderColor;\n background: radioSeBgColor;\n }\n .pcfactory-radio-input:focus+.pcfactory-radio-inner{\n border-color: radioSeBorderColor;\n }\n .pcfactory-radio-wrapper:hover .pcfactory-radio{\n border-color: radioSeBorderColor;\n}\n .pcfactory-radio:hover .pcfactory-radio-inner {\n border-color: radioSeBorderColor;\n }\n .pcfactory-form-item input[type=checkbox]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-form-item input[type=radio]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-radio-checked .pcfactory-radio-inner:after{\n background: radioSeBorderColor;\n margin-left:0px;\n margin-top:0px;\n top:-1px;\n left:-1px;\n border-radius: radioSize;\n width: radioSize;\n height: radioSize;\n }\n}",
|
|
85
|
+
tpl: ".ued-radio-wrap {\n .pcfactory-radio-inner{\n width: radioSize;\n height: radioSize;\n border-color: radioBorderColor;\n background: radioBgColor;\n }\n .pcfactory-radio-checked .pcfactory-radio-inner{\n border-color: radioSeBorderColor;\n background: radioSeBgColor;\n }\n .pcfactory-radio-input:focus+.pcfactory-radio-inner{\n border-color: radioSeBorderColor;\n }\n .pcfactory-radio-wrapper:hover .pcfactory-radio{\n border-color: radioSeBorderColor;\n}\n .pcfactory-radio:hover .pcfactory-radio-inner {\n border-color: radioSeBorderColor;\n }\n .pcfactory-form-item input[type=checkbox]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-form-item input[type=radio]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-radio-checked .pcfactory-radio-inner:after{\n background: radioSeBorderColor;\n margin-left:0px;\n margin-top:0px;\n top:-1px;\n left:-1px;\n border-radius: radioSize;\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-radio-button-wrapper {\n border-top: 1px solid radioBorderColor;\n border-right: 1px solid radioBorderColor;\n border-bottom: 1px solid radioBorderColor;\n background: radioBgColor;\n }\n .pcfactory-radio-button-wrapper:first-child{\n border-left: 1px solid radioBorderColor;\n }\n .pcfactory-radio-button-wrapper-checked:not([class*=' pcfactory-radio-button-wrapper-disabled']).pcfactory-radio-button-wrapper:first-child{\n border-right-color: radioBorderColor;\n border-color: radioBorderColor;\n }\n .pcfactory-radio-button-wrapper-checked:not(.pcfactory-radio-button-wrapper-disabled){\n background: radioSeBorderColor;\n color: radioSeBgColor;\n }\n}",
|
|
86
86
|
components: [{
|
|
87
87
|
id: 'Form_180373',
|
|
88
88
|
label: '表单',
|
|
@@ -178,6 +178,72 @@ export var Radio = {
|
|
|
178
178
|
isLabelDropBoxChild: false,
|
|
179
179
|
components: [],
|
|
180
180
|
path: ['998509', 'Form_180373']
|
|
181
|
+
}, {
|
|
182
|
+
id: 'Radio_887385',
|
|
183
|
+
label: '单选组',
|
|
184
|
+
compName: 'Radio',
|
|
185
|
+
type: 'Radio',
|
|
186
|
+
compType: 2,
|
|
187
|
+
compLib: 'comm',
|
|
188
|
+
props: {
|
|
189
|
+
name: '单选组',
|
|
190
|
+
radioType: 'Radio.Button',
|
|
191
|
+
optionMarginRight: 0,
|
|
192
|
+
labelCol: 8,
|
|
193
|
+
wrapperCol: 16,
|
|
194
|
+
basicStatus: 1,
|
|
195
|
+
titleTip: 'notext',
|
|
196
|
+
tipSize: 'default',
|
|
197
|
+
tipWidth: '240px',
|
|
198
|
+
tipHeight: 'auto',
|
|
199
|
+
required: false,
|
|
200
|
+
formItemIndex: 0,
|
|
201
|
+
fieldName: 'ffd',
|
|
202
|
+
selfSpan: 24,
|
|
203
|
+
staticData: {
|
|
204
|
+
data: [{
|
|
205
|
+
id: '729572',
|
|
206
|
+
label: '选项A',
|
|
207
|
+
value: '选项A'
|
|
208
|
+
}, {
|
|
209
|
+
id: '106534',
|
|
210
|
+
label: '选项B',
|
|
211
|
+
value: '选项B'
|
|
212
|
+
}, {
|
|
213
|
+
id: '45647',
|
|
214
|
+
label: '选项C',
|
|
215
|
+
value: '选项C'
|
|
216
|
+
}],
|
|
217
|
+
type: 'custom'
|
|
218
|
+
},
|
|
219
|
+
options: [{
|
|
220
|
+
id: '729572',
|
|
221
|
+
label: '选项A',
|
|
222
|
+
value: '选项A'
|
|
223
|
+
}, {
|
|
224
|
+
id: '106534',
|
|
225
|
+
label: '选项B',
|
|
226
|
+
value: '选项B'
|
|
227
|
+
}, {
|
|
228
|
+
id: '45647',
|
|
229
|
+
label: '选项C',
|
|
230
|
+
value: '选项C'
|
|
231
|
+
}]
|
|
232
|
+
},
|
|
233
|
+
style: {},
|
|
234
|
+
isContainer: false,
|
|
235
|
+
isBusiObjContainer: false,
|
|
236
|
+
cmdgroup: ['basic'],
|
|
237
|
+
platform: 'pc',
|
|
238
|
+
icon: 'Radio',
|
|
239
|
+
description: '',
|
|
240
|
+
image: '',
|
|
241
|
+
groupsName: '数据录入',
|
|
242
|
+
isInlineBlock: true,
|
|
243
|
+
setEvents: [],
|
|
244
|
+
isLabelDropBoxChild: false,
|
|
245
|
+
components: [],
|
|
246
|
+
path: ['508679', 'View_508679_1', 'Form_6431685']
|
|
181
247
|
}],
|
|
182
248
|
path: ['998509']
|
|
183
249
|
}]
|
package/dist/config/Table.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const Table: {
|
|
2
2
|
type: string;
|
|
3
|
+
hasPrefixClass: boolean;
|
|
3
4
|
variable: {
|
|
4
5
|
textColor: {
|
|
5
6
|
type: string;
|
|
@@ -47,6 +48,7 @@ export declare const Table: {
|
|
|
47
48
|
type: string;
|
|
48
49
|
label: string;
|
|
49
50
|
groupsName: string;
|
|
51
|
+
followTheme: string;
|
|
50
52
|
};
|
|
51
53
|
selectPaginationRadius: {
|
|
52
54
|
type: string;
|
package/dist/config/Table.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export var Table = {
|
|
2
2
|
type: 'Table',
|
|
3
|
+
hasPrefixClass: true,
|
|
3
4
|
variable: {
|
|
4
5
|
textColor: {
|
|
5
6
|
type: 'color',
|
|
@@ -64,7 +65,8 @@ export var Table = {
|
|
|
64
65
|
selectPaginationBorder: {
|
|
65
66
|
type: 'color',
|
|
66
67
|
label: '选中项边框颜色',
|
|
67
|
-
groupsName: '表格分页'
|
|
68
|
+
groupsName: '表格分页',
|
|
69
|
+
followTheme: '@primary-color'
|
|
68
70
|
},
|
|
69
71
|
selectPaginationRadius: {
|
|
70
72
|
type: 'px',
|
|
@@ -224,7 +226,7 @@ export var Table = {
|
|
|
224
226
|
defaultValue: [{
|
|
225
227
|
selectPaginationColor: '#47e',
|
|
226
228
|
selectPaginationRadius: '2px',
|
|
227
|
-
selectPaginationBorder: '#
|
|
229
|
+
selectPaginationBorder: '#47e',
|
|
228
230
|
tbFontSize: '14px',
|
|
229
231
|
tbBorderColor: '#f0f0f0',
|
|
230
232
|
tbBorderRadius: '2px',
|
|
@@ -243,10 +245,10 @@ export var Table = {
|
|
|
243
245
|
zebraBgColor: '#fbfbfb'
|
|
244
246
|
}],
|
|
245
247
|
followThemes: {
|
|
246
|
-
'@primary-color': ['selectPaginationColor'],
|
|
248
|
+
'@primary-color': ['selectPaginationColor', 'selectPaginationBorder'],
|
|
247
249
|
'@font-size-base': ['tbFontSize']
|
|
248
250
|
},
|
|
249
|
-
tpl: "
|
|
251
|
+
tpl: ".ued-table-wrap {\n .pcfactory-table{\n font-size: tbFontSize;\n }\n .pcfactory-table-tbody{\n background: bodyBgColor;\n }\n .ued-table .pcfactory-table table {\n border-radius: tbBorderRadius;\n border: 1px solid #E8E8E8;\n overflow: hidden;\n }\n .ued-table .pcfactory-table-thead > tr:first-child > th:first-child{\n border-top-left-radius: tbBorderRadius;\n }\n .ued-table .pcfactory-table-thead > tr:first-child > th:last-child{\n border-top-right-radius: tbBorderRadius;\n }\n .ued-table .pcfactory-table table .pcfactory-table-thead th {\n background: headBgColor;\n padding: headPadding;\n color: headTextColor;\n font-weight: headFontWeight;\n text-align: headTextAlign;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-body>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-body>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-body>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>thead>tr>th{\n border-bottom: headLineSize solid headLineColor;\n }\n .ued-table-filters .ued-table .pcfactory-table-thead>tr>th{\n border-bottom: headLineSize solid headLineColor;\n }\n .ued-table .pcfactory-table-thead>tr>th{\n border-bottom: headLineSize solid headLineColor;\n }\n .ued-table-filters .ued-table .pcfactory-table-tbody>tr>td{\n border-color: tbBorderColor;\n padding: bodyPadding;\n color: bodyTextColor;\n font-weight: bodyFontWeight;\n text-align: bodyTextAlign;\n }\n .ued-table .pcfactory-table-tbody>tr>td{\n border-color: tbBorderColor;\n padding: bodyPadding;\n color: bodyTextColor;\n font-weight: bodyFontWeight;\n text-align: bodyTextAlign;\n }\n .ued-table-filters .ued-table .pcfactory-table-bordered{\n border-color: tbBorderColor;\n }\n .ued-table .pcfactory-table-bordered{\n border-color: tbBorderColor;\n border-radius: tbBorderRadius;\n }\n .ued-table-filters .ued-table-page .pcfactory-pagination-item-active{\n background: selectPaginationColor;\n }\n .ued-table-page .pcfactory-pagination-item-active{\n background: selectPaginationColor;\n border-style: solid;\n border-width: 1px;\n }\n .ued-table-page .pcfactory-pagination-item{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-page .pcfactory-pagination-item-link{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-page .pcfactory-pagination-options .pcfactory-select .pcfactory-select-selector{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-page .pcfactory-pagination-options .pcfactory-pagination-options-quick-jumper input{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-filters .ued-table-zebra-stripe .pcfactory-table-row:nth-child(2n){\n background: zebraBgColor;\n }\n .ued-table-zebra-stripe .pcfactory-table-row:nth-child(2n){\n background: zebraBgColor;\n }\n}",
|
|
250
252
|
components: [{
|
|
251
253
|
id: 'Table_2740384',
|
|
252
254
|
label: '表格',
|
package/dist/h5config/Card.d.ts
CHANGED
|
@@ -11,6 +11,10 @@ export declare const Card: {
|
|
|
11
11
|
type: string;
|
|
12
12
|
label: string;
|
|
13
13
|
groupsName: string;
|
|
14
|
+
options: {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}[];
|
|
14
18
|
};
|
|
15
19
|
fontSize: {
|
|
16
20
|
type: string;
|
|
@@ -130,17 +134,14 @@ export declare const Card: {
|
|
|
130
134
|
isIconFont: boolean;
|
|
131
135
|
iconFileInfo: {};
|
|
132
136
|
};
|
|
133
|
-
iconColor: string;
|
|
134
137
|
postfixIconPosition: string;
|
|
135
|
-
postFixColor: string;
|
|
136
|
-
postFixFontSize: number;
|
|
137
138
|
showContent: boolean;
|
|
138
139
|
showFooter: boolean;
|
|
139
140
|
status: string;
|
|
140
141
|
cardType: string;
|
|
141
142
|
title: string;
|
|
142
143
|
headerType: string;
|
|
143
|
-
|
|
144
|
+
postFixFontSize: number;
|
|
144
145
|
iconPosition: string;
|
|
145
146
|
$$ISNEW: boolean;
|
|
146
147
|
headerIcon?: undefined;
|
|
@@ -158,7 +159,6 @@ export declare const Card: {
|
|
|
158
159
|
description: string;
|
|
159
160
|
image: string;
|
|
160
161
|
groupsName: string;
|
|
161
|
-
engineApi: string[];
|
|
162
162
|
icon: string;
|
|
163
163
|
setEvents: never[];
|
|
164
164
|
isLabelDropBoxChild: boolean;
|
|
@@ -205,17 +205,14 @@ export declare const Card: {
|
|
|
205
205
|
isIconFont: boolean;
|
|
206
206
|
iconFileInfo: {};
|
|
207
207
|
};
|
|
208
|
-
iconColor: string;
|
|
209
208
|
postfixIconPosition: string;
|
|
210
|
-
postFixColor: string;
|
|
211
|
-
postFixFontSize: number;
|
|
212
209
|
showContent: boolean;
|
|
213
210
|
showFooter: boolean;
|
|
214
211
|
status: string;
|
|
215
212
|
cardType: string;
|
|
216
213
|
title: string;
|
|
217
214
|
headerType: string;
|
|
218
|
-
|
|
215
|
+
postFixFontSize: number;
|
|
219
216
|
iconPosition: string;
|
|
220
217
|
$$ISNEW: boolean;
|
|
221
218
|
headerIcon: {
|
|
@@ -239,7 +236,6 @@ export declare const Card: {
|
|
|
239
236
|
description: string;
|
|
240
237
|
image: string;
|
|
241
238
|
groupsName: string;
|
|
242
|
-
engineApi: string[];
|
|
243
239
|
icon: string;
|
|
244
240
|
setEvents: never[];
|
|
245
241
|
isLabelDropBoxChild: boolean;
|
package/dist/h5config/Card.js
CHANGED
|
@@ -10,7 +10,14 @@ export var Card = {
|
|
|
10
10
|
lineHeight: {
|
|
11
11
|
type: 'px',
|
|
12
12
|
label: '标题文本行高',
|
|
13
|
-
groupsName: '标题'
|
|
13
|
+
groupsName: '标题',
|
|
14
|
+
options: [{
|
|
15
|
+
label: 'px',
|
|
16
|
+
value: 'px'
|
|
17
|
+
}, {
|
|
18
|
+
label: '%',
|
|
19
|
+
value: '%'
|
|
20
|
+
}]
|
|
14
21
|
},
|
|
15
22
|
fontSize: {
|
|
16
23
|
type: 'px',
|
|
@@ -130,9 +137,9 @@ export var Card = {
|
|
|
130
137
|
followThemes: {
|
|
131
138
|
'@primary-color': ['titleColor']
|
|
132
139
|
},
|
|
133
|
-
tpl: ".lcdp-h5-card {\n border-radius: borderRadius;\n border: 1PX solid borderColor;\n\n .adm-card-header:not(:last-child){\n border-color: lineColor !important;\n }\n .adm-card-header{\n border-color: lineColor !important;\n background: backgroundColor
|
|
140
|
+
tpl: ".lcdp-h5-card {\n border-radius: borderRadius;\n border: 1PX solid borderColor;\n\n .adm-card-header:not(:last-child){\n border-color: lineColor !important;\n }\n .adm-card-header{\n border-color: lineColor !important;\n background: backgroundColor;\n }\n .adm-card-body{\n background: bodyBgColor;\n }\n\n .adm-card-header-title .lcdp-h5-card-title{\n color: textColor;\n font-weight: fontWeight;\n font-size: fontSize;\n line-height: lineHeight;\n }\n\n .lcdp-h5-card-hStyle{\n background: titleColor;\n margin-right: tagMargin;\n position: static;\n width: tagSize;\n }\n .lcdp-h5-card-vStyle{\n height: tagSize;\n background: titleColor;\n margin-right: tagMargin;\n }\n .lcdp-h5-card-icon{\n width: tagSize;\n height: tagSize;\n margin-right: tagMargin;\n margin-top: -1px;\n display: grid;\n }\n .lcdp-h5-card-icon svg{\n color: titleColor;\n width: tagSize;\n height: tagSize;\n }\n .lcdp-h5-card-extra-icon{\n width: arrowSize;\n height: arrowSize;\n }\n .lcdp-h5-card-extra-icon svg{\n color: arrowColor;\n width: arrowSize;\n height: arrowSize;\n }\n .lcdp-card-footer-draw-box-border{\n border-color: bodyLineColor;\n background: footBgColor;\n }\n }\n \n ",
|
|
134
141
|
components: [{
|
|
135
|
-
id: '
|
|
142
|
+
id: 'Card_194419',
|
|
136
143
|
label: '卡片',
|
|
137
144
|
compName: 'Card',
|
|
138
145
|
type: 'Card',
|
|
@@ -148,17 +155,108 @@ export var Card = {
|
|
|
148
155
|
isIconFont: false,
|
|
149
156
|
iconFileInfo: {}
|
|
150
157
|
},
|
|
151
|
-
iconColor: 'rgba(28, 36, 46, 0.55)',
|
|
152
158
|
postfixIconPosition: 'after',
|
|
153
|
-
|
|
159
|
+
showContent: true,
|
|
160
|
+
showFooter: true,
|
|
161
|
+
status: '1',
|
|
162
|
+
cardType: '1',
|
|
163
|
+
title: '卡片标题',
|
|
164
|
+
headerType: 'none',
|
|
154
165
|
postFixFontSize: 16,
|
|
166
|
+
iconPosition: 'after',
|
|
167
|
+
$$ISNEW: true
|
|
168
|
+
},
|
|
169
|
+
style: {
|
|
170
|
+
padding: '12px',
|
|
171
|
+
margin: '0px 0px 0px 0px',
|
|
172
|
+
width: '100%',
|
|
173
|
+
height: 'auto'
|
|
174
|
+
},
|
|
175
|
+
isContainer: true,
|
|
176
|
+
isBusiObjContainer: false,
|
|
177
|
+
cmdgroup: ['basic'],
|
|
178
|
+
platform: 'h5',
|
|
179
|
+
description: '',
|
|
180
|
+
image: '',
|
|
181
|
+
groupsName: '容器',
|
|
182
|
+
icon: 'Card',
|
|
183
|
+
setEvents: [],
|
|
184
|
+
isLabelDropBoxChild: false,
|
|
185
|
+
components: [{
|
|
186
|
+
id: 'CardBody_177647',
|
|
187
|
+
label: '卡片Body',
|
|
188
|
+
compName: 'CardBody',
|
|
189
|
+
type: 'CardBody',
|
|
190
|
+
compType: 0,
|
|
191
|
+
compLib: '@/components',
|
|
192
|
+
props: {
|
|
193
|
+
name: '卡片Body'
|
|
194
|
+
},
|
|
195
|
+
style: {},
|
|
196
|
+
isContainer: true,
|
|
197
|
+
isBusiObjContainer: false,
|
|
198
|
+
cmdgroup: ['basic'],
|
|
199
|
+
description: '',
|
|
200
|
+
image: '',
|
|
201
|
+
groupsName: '容器',
|
|
202
|
+
platform: 'h5',
|
|
203
|
+
icon: 'View',
|
|
204
|
+
deprecated: true,
|
|
205
|
+
setEvents: [],
|
|
206
|
+
isLabelDropBoxChild: false,
|
|
207
|
+
components: [],
|
|
208
|
+
path: ['0037538', 'View_0037538_1', 'Card_194419']
|
|
209
|
+
}, {
|
|
210
|
+
id: 'CardFooter_6657425',
|
|
211
|
+
label: '卡片Footer',
|
|
212
|
+
compName: 'CardFooter',
|
|
213
|
+
type: 'CardFooter',
|
|
214
|
+
compType: 1,
|
|
215
|
+
compLib: '@/components',
|
|
216
|
+
props: {
|
|
217
|
+
name: '卡片Footer'
|
|
218
|
+
},
|
|
219
|
+
style: {},
|
|
220
|
+
isContainer: true,
|
|
221
|
+
isBusiObjContainer: false,
|
|
222
|
+
cmdgroup: ['basic'],
|
|
223
|
+
description: '',
|
|
224
|
+
image: '',
|
|
225
|
+
groupsName: '容器',
|
|
226
|
+
platform: 'h5',
|
|
227
|
+
icon: 'View',
|
|
228
|
+
deprecated: true,
|
|
229
|
+
setEvents: [],
|
|
230
|
+
isLabelDropBoxChild: false,
|
|
231
|
+
components: [],
|
|
232
|
+
path: ['0037538', 'View_0037538_1', 'Card_194419']
|
|
233
|
+
}],
|
|
234
|
+
path: ['0037538', 'View_0037538_1']
|
|
235
|
+
}, {
|
|
236
|
+
id: 'Card_544701',
|
|
237
|
+
label: '卡片',
|
|
238
|
+
compName: 'Card',
|
|
239
|
+
type: 'Card',
|
|
240
|
+
compType: 0,
|
|
241
|
+
compLib: 'antd-mobile',
|
|
242
|
+
props: {
|
|
243
|
+
name: '卡片',
|
|
244
|
+
showHeader: true,
|
|
245
|
+
postfixIcon: {
|
|
246
|
+
type: 'right',
|
|
247
|
+
theme: 'outlined',
|
|
248
|
+
fontAddress: '',
|
|
249
|
+
isIconFont: false,
|
|
250
|
+
iconFileInfo: {}
|
|
251
|
+
},
|
|
252
|
+
postfixIconPosition: 'after',
|
|
155
253
|
showContent: true,
|
|
156
254
|
showFooter: true,
|
|
157
255
|
status: '1',
|
|
158
256
|
cardType: '1',
|
|
159
257
|
title: '卡片标题',
|
|
160
258
|
headerType: 'vStyle',
|
|
161
|
-
|
|
259
|
+
postFixFontSize: 16,
|
|
162
260
|
iconPosition: 'after',
|
|
163
261
|
$$ISNEW: true
|
|
164
262
|
},
|
|
@@ -175,12 +273,11 @@ export var Card = {
|
|
|
175
273
|
description: '',
|
|
176
274
|
image: '',
|
|
177
275
|
groupsName: '容器',
|
|
178
|
-
engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
|
|
179
276
|
icon: 'Card',
|
|
180
277
|
setEvents: [],
|
|
181
278
|
isLabelDropBoxChild: false,
|
|
182
279
|
components: [{
|
|
183
|
-
id: '
|
|
280
|
+
id: 'CardBody_4369334',
|
|
184
281
|
label: '卡片Body',
|
|
185
282
|
compName: 'CardBody',
|
|
186
283
|
type: 'CardBody',
|
|
@@ -202,9 +299,9 @@ export var Card = {
|
|
|
202
299
|
setEvents: [],
|
|
203
300
|
isLabelDropBoxChild: false,
|
|
204
301
|
components: [],
|
|
205
|
-
path: ['
|
|
302
|
+
path: ['0037538', 'View_0037538_1', 'Card_544701']
|
|
206
303
|
}, {
|
|
207
|
-
id: '
|
|
304
|
+
id: 'CardFooter_23558',
|
|
208
305
|
label: '卡片Footer',
|
|
209
306
|
compName: 'CardFooter',
|
|
210
307
|
type: 'CardFooter',
|
|
@@ -226,11 +323,11 @@ export var Card = {
|
|
|
226
323
|
setEvents: [],
|
|
227
324
|
isLabelDropBoxChild: false,
|
|
228
325
|
components: [],
|
|
229
|
-
path: ['
|
|
326
|
+
path: ['0037538', 'View_0037538_1', 'Card_544701']
|
|
230
327
|
}],
|
|
231
|
-
path: ['
|
|
328
|
+
path: ['0037538', 'View_0037538_1']
|
|
232
329
|
}, {
|
|
233
|
-
id: '
|
|
330
|
+
id: 'Card_025029',
|
|
234
331
|
label: '卡片',
|
|
235
332
|
compName: 'Card',
|
|
236
333
|
type: 'Card',
|
|
@@ -246,17 +343,14 @@ export var Card = {
|
|
|
246
343
|
isIconFont: false,
|
|
247
344
|
iconFileInfo: {}
|
|
248
345
|
},
|
|
249
|
-
iconColor: 'rgba(28, 36, 46, 0.55)',
|
|
250
346
|
postfixIconPosition: 'after',
|
|
251
|
-
postFixColor: 'rgba(28, 36, 46, 0.55)',
|
|
252
|
-
postFixFontSize: 16,
|
|
253
347
|
showContent: true,
|
|
254
348
|
showFooter: true,
|
|
255
349
|
status: '1',
|
|
256
350
|
cardType: '1',
|
|
257
351
|
title: '卡片标题',
|
|
258
352
|
headerType: 'hStyle',
|
|
259
|
-
|
|
353
|
+
postFixFontSize: 16,
|
|
260
354
|
iconPosition: 'after',
|
|
261
355
|
$$ISNEW: true
|
|
262
356
|
},
|
|
@@ -273,12 +367,11 @@ export var Card = {
|
|
|
273
367
|
description: '',
|
|
274
368
|
image: '',
|
|
275
369
|
groupsName: '容器',
|
|
276
|
-
engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
|
|
277
370
|
icon: 'Card',
|
|
278
371
|
setEvents: [],
|
|
279
372
|
isLabelDropBoxChild: false,
|
|
280
373
|
components: [{
|
|
281
|
-
id: '
|
|
374
|
+
id: 'CardBody_804802',
|
|
282
375
|
label: '卡片Body',
|
|
283
376
|
compName: 'CardBody',
|
|
284
377
|
type: 'CardBody',
|
|
@@ -300,9 +393,9 @@ export var Card = {
|
|
|
300
393
|
setEvents: [],
|
|
301
394
|
isLabelDropBoxChild: false,
|
|
302
395
|
components: [],
|
|
303
|
-
path: ['
|
|
396
|
+
path: ['0037538', 'View_0037538_1', 'Card_025029']
|
|
304
397
|
}, {
|
|
305
|
-
id: '
|
|
398
|
+
id: 'CardFooter_6257803',
|
|
306
399
|
label: '卡片Footer',
|
|
307
400
|
compName: 'CardFooter',
|
|
308
401
|
type: 'CardFooter',
|
|
@@ -324,11 +417,11 @@ export var Card = {
|
|
|
324
417
|
setEvents: [],
|
|
325
418
|
isLabelDropBoxChild: false,
|
|
326
419
|
components: [],
|
|
327
|
-
path: ['
|
|
420
|
+
path: ['0037538', 'View_0037538_1', 'Card_025029']
|
|
328
421
|
}],
|
|
329
|
-
path: ['
|
|
422
|
+
path: ['0037538', 'View_0037538_1']
|
|
330
423
|
}, {
|
|
331
|
-
id: '
|
|
424
|
+
id: 'Card_858901',
|
|
332
425
|
label: '卡片',
|
|
333
426
|
compName: 'Card',
|
|
334
427
|
type: 'Card',
|
|
@@ -344,17 +437,14 @@ export var Card = {
|
|
|
344
437
|
isIconFont: false,
|
|
345
438
|
iconFileInfo: {}
|
|
346
439
|
},
|
|
347
|
-
iconColor: 'rgba(28, 36, 46, 0.55)',
|
|
348
440
|
postfixIconPosition: 'after',
|
|
349
|
-
postFixColor: 'rgba(28, 36, 46, 0.55)',
|
|
350
|
-
postFixFontSize: 16,
|
|
351
441
|
showContent: true,
|
|
352
442
|
showFooter: true,
|
|
353
443
|
status: '1',
|
|
354
444
|
cardType: '1',
|
|
355
445
|
title: '卡片标题',
|
|
356
446
|
headerType: 'icon',
|
|
357
|
-
|
|
447
|
+
postFixFontSize: 16,
|
|
358
448
|
iconPosition: 'after',
|
|
359
449
|
$$ISNEW: true,
|
|
360
450
|
headerIcon: {
|
|
@@ -378,12 +468,11 @@ export var Card = {
|
|
|
378
468
|
description: '',
|
|
379
469
|
image: '',
|
|
380
470
|
groupsName: '容器',
|
|
381
|
-
engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
|
|
382
471
|
icon: 'Card',
|
|
383
472
|
setEvents: [],
|
|
384
473
|
isLabelDropBoxChild: false,
|
|
385
474
|
components: [{
|
|
386
|
-
id: '
|
|
475
|
+
id: 'CardBody_0578157',
|
|
387
476
|
label: '卡片Body',
|
|
388
477
|
compName: 'CardBody',
|
|
389
478
|
type: 'CardBody',
|
|
@@ -405,9 +494,9 @@ export var Card = {
|
|
|
405
494
|
setEvents: [],
|
|
406
495
|
isLabelDropBoxChild: false,
|
|
407
496
|
components: [],
|
|
408
|
-
path: ['
|
|
497
|
+
path: ['0037538', 'View_0037538_1', 'Card_858901']
|
|
409
498
|
}, {
|
|
410
|
-
id: '
|
|
499
|
+
id: 'CardFooter_76607',
|
|
411
500
|
label: '卡片Footer',
|
|
412
501
|
compName: 'CardFooter',
|
|
413
502
|
type: 'CardFooter',
|
|
@@ -429,8 +518,8 @@ export var Card = {
|
|
|
429
518
|
setEvents: [],
|
|
430
519
|
isLabelDropBoxChild: false,
|
|
431
520
|
components: [],
|
|
432
|
-
path: ['
|
|
521
|
+
path: ['0037538', 'View_0037538_1', 'Card_858901']
|
|
433
522
|
}],
|
|
434
|
-
path: ['
|
|
523
|
+
path: ['0037538', 'View_0037538_1']
|
|
435
524
|
}]
|
|
436
525
|
};
|
package/dist/h5config/DForm.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export declare const DForm: {
|
|
|
18
18
|
label: string;
|
|
19
19
|
groupsName: string;
|
|
20
20
|
desc: string;
|
|
21
|
+
options: {
|
|
22
|
+
label: string;
|
|
23
|
+
value: string;
|
|
24
|
+
}[];
|
|
21
25
|
};
|
|
22
26
|
labelFontSize: {
|
|
23
27
|
type: string;
|
|
@@ -52,6 +56,10 @@ export declare const DForm: {
|
|
|
52
56
|
label: string;
|
|
53
57
|
groupsName: string;
|
|
54
58
|
desc: string;
|
|
59
|
+
options: {
|
|
60
|
+
label: string;
|
|
61
|
+
value: string;
|
|
62
|
+
}[];
|
|
55
63
|
};
|
|
56
64
|
fontWeight: {
|
|
57
65
|
type: string;
|
package/dist/h5config/DForm.js
CHANGED
|
@@ -17,7 +17,14 @@ export var DForm = {
|
|
|
17
17
|
type: 'px',
|
|
18
18
|
label: '标题文本行高',
|
|
19
19
|
groupsName: '标签',
|
|
20
|
-
desc: '对所有[表单]类型组件生效'
|
|
20
|
+
desc: '对所有[表单]类型组件生效',
|
|
21
|
+
options: [{
|
|
22
|
+
label: 'px',
|
|
23
|
+
value: 'px'
|
|
24
|
+
}, {
|
|
25
|
+
label: '%',
|
|
26
|
+
value: '%'
|
|
27
|
+
}]
|
|
21
28
|
},
|
|
22
29
|
labelFontSize: {
|
|
23
30
|
type: 'px',
|
|
@@ -69,7 +76,14 @@ export var DForm = {
|
|
|
69
76
|
type: 'px',
|
|
70
77
|
label: '文本行高',
|
|
71
78
|
groupsName: '组件',
|
|
72
|
-
desc: '对所有[表单]类型组件生效'
|
|
79
|
+
desc: '对所有[表单]类型组件生效',
|
|
80
|
+
options: [{
|
|
81
|
+
label: 'px',
|
|
82
|
+
value: 'px'
|
|
83
|
+
}, {
|
|
84
|
+
label: '%',
|
|
85
|
+
value: '%'
|
|
86
|
+
}]
|
|
73
87
|
},
|
|
74
88
|
fontWeight: {
|
|
75
89
|
type: 'select',
|
|
@@ -164,7 +178,7 @@ export var DForm = {
|
|
|
164
178
|
iconColor: 'rgba(0, 0, 0, 0.45)',
|
|
165
179
|
iconSize: '16px'
|
|
166
180
|
}],
|
|
167
|
-
tpl: ".dynamic-form-wrapper {\n background-color: backgroundColor;\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 padding: paddingValue;\n text-align: headTextAlign;\n font-size: fontSize;\n }\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 }\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 }\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 .lingxiteam-dform-right-content{\n width: iconSize;\n height: iconSize;\n overflow: hidden;\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 ",
|
|
181
|
+
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 padding: paddingValue;\n text-align: headTextAlign;\n font-size: fontSize;\n }\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 }\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 }\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 .lingxiteam-dform-right-content{\n width: iconSize;\n height: iconSize;\n overflow: hidden;\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 ",
|
|
168
182
|
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 \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 }\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 }\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 .lingxiteam-dform-right-content{\n width: iconSize;\n height: iconSize;\n overflow: hidden;\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 }",
|
|
169
183
|
components: [{
|
|
170
184
|
id: 'DForm_458695',
|
|
@@ -153,7 +153,7 @@ export var DformInput = {
|
|
|
153
153
|
inputBgColor: 'rgba(0,0,0,0)',
|
|
154
154
|
inputBorderRadius: '0px'
|
|
155
155
|
}],
|
|
156
|
-
tpl: "\n .lingxiteam-dform-input-item-value {\n background-color: inputBgColor;\n border-radius: inputBorderRadius;\n }",
|
|
156
|
+
tpl: "\n .ued-DformInput .lingxiteam-dform-input-item-value {\n background-color: inputBgColor;\n border-radius: inputBorderRadius;\n }",
|
|
157
157
|
components: [{
|
|
158
158
|
id: 'DForm_333712',
|
|
159
159
|
label: '表单',
|
|
@@ -201,7 +201,8 @@ export var DformInput = {
|
|
|
201
201
|
positionType: 'horizontal',
|
|
202
202
|
status: '1',
|
|
203
203
|
inputType: 'text',
|
|
204
|
-
fieldProps: 'fcd'
|
|
204
|
+
fieldProps: 'fcd',
|
|
205
|
+
className: 'sadsa'
|
|
205
206
|
},
|
|
206
207
|
style: {
|
|
207
208
|
inputContent: '1',
|
|
@@ -31,7 +31,14 @@ export var FilterItems = {
|
|
|
31
31
|
lineHeight: {
|
|
32
32
|
type: 'px',
|
|
33
33
|
label: '标题文本行高',
|
|
34
|
-
groupsName: '文字'
|
|
34
|
+
groupsName: '文字',
|
|
35
|
+
options: [{
|
|
36
|
+
label: 'px',
|
|
37
|
+
value: 'px'
|
|
38
|
+
}, {
|
|
39
|
+
label: '%',
|
|
40
|
+
value: '%'
|
|
41
|
+
}]
|
|
35
42
|
},
|
|
36
43
|
fontWeight: {
|
|
37
44
|
type: 'select',
|
package/dist/h5config/Grid.d.ts
CHANGED
package/dist/h5config/Grid.js
CHANGED