@lingxiteam/theme-utils 0.2.6 → 0.2.9
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.d.ts +6 -0
- package/dist/config/Button.js +8 -2
- package/dist/config/Card.d.ts +0 -1
- package/dist/config/Card.js +0 -1
- package/dist/config/Checkbox.d.ts +5 -0
- package/dist/config/Checkbox.js +7 -2
- package/dist/config/CheckboxGroup.d.ts +5 -0
- package/dist/config/CheckboxGroup.js +7 -2
- package/dist/config/Collapse.d.ts +4 -0
- package/dist/config/Collapse.js +6 -2
- package/dist/config/DatePicker.d.ts +4 -0
- package/dist/config/DatePicker.js +5 -1
- package/dist/config/Form.d.ts +23 -372
- package/dist/config/Form.js +75 -63
- package/dist/config/Icon.d.ts +4 -0
- package/dist/config/Icon.js +5 -1
- package/dist/config/Link.d.ts +6 -0
- package/dist/config/Link.js +8 -2
- package/dist/config/MultipleSelect.js +3 -3
- package/dist/config/Radio.d.ts +4 -0
- package/dist/config/Radio.js +5 -1
- package/dist/config/RangePicker.d.ts +4 -0
- package/dist/config/RangePicker.js +5 -1
- package/dist/config/StdUpload.d.ts +5 -16
- package/dist/config/StdUpload.js +7 -18
- package/dist/config/Switch.d.ts +4 -0
- package/dist/config/Switch.js +5 -1
- package/dist/config/Table.d.ts +6 -0
- package/dist/config/Table.js +8 -2
- package/dist/config/Tabs.d.ts +4 -0
- package/dist/config/Tabs.js +5 -1
- package/dist/config/Text.d.ts +4 -0
- package/dist/config/Text.js +5 -1
- package/dist/config/TimePicker.d.ts +4 -0
- package/dist/config/TimePicker.js +5 -1
- package/dist/config/Tree.d.ts +7 -0
- package/dist/config/Tree.js +10 -3
- package/dist/h5config/Accordion.d.ts +4 -0
- package/dist/h5config/Accordion.js +5 -1
- package/dist/h5config/Card.d.ts +4 -0
- package/dist/h5config/Card.js +5 -1
- package/dist/h5config/DMultiplePicker.js +4 -4
- package/dist/h5config/FilterItems.d.ts +4 -0
- package/dist/h5config/FilterItems.js +5 -1
- package/dist/h5config/SearchView.d.ts +4 -0
- package/dist/h5config/SearchView.js +5 -1
- package/package.json +1 -1
package/dist/config/Form.js
CHANGED
|
@@ -25,21 +25,22 @@ export var Form = {
|
|
|
25
25
|
// },
|
|
26
26
|
labelTextColor: {
|
|
27
27
|
type: 'color',
|
|
28
|
-
label: '
|
|
28
|
+
label: '标题文本颜色',
|
|
29
29
|
groupsName: '文字',
|
|
30
30
|
desc: '对所有[数据录入]类型组件生效'
|
|
31
31
|
},
|
|
32
32
|
labelLineHeight: {
|
|
33
33
|
type: 'px',
|
|
34
|
-
label: '
|
|
34
|
+
label: '标题文本行高',
|
|
35
35
|
groupsName: '文字',
|
|
36
36
|
desc: '对所有[数据录入]类型组件生效'
|
|
37
37
|
},
|
|
38
38
|
labelFontSize: {
|
|
39
39
|
type: 'px',
|
|
40
|
-
label: '
|
|
40
|
+
label: '标题文本尺寸',
|
|
41
41
|
groupsName: '文字',
|
|
42
|
-
desc: '对所有[数据录入]类型组件生效'
|
|
42
|
+
desc: '对所有[数据录入]类型组件生效',
|
|
43
|
+
followTheme: '@font-size-base'
|
|
43
44
|
},
|
|
44
45
|
textColor: {
|
|
45
46
|
type: 'color',
|
|
@@ -51,7 +52,8 @@ export var Form = {
|
|
|
51
52
|
type: 'px',
|
|
52
53
|
label: '文本尺寸',
|
|
53
54
|
groupsName: '文字',
|
|
54
|
-
desc: '对所有[数据录入]类型组件生效'
|
|
55
|
+
desc: '对所有[数据录入]类型组件生效',
|
|
56
|
+
followTheme: '@font-size-base'
|
|
55
57
|
},
|
|
56
58
|
itemBorderColor: {
|
|
57
59
|
type: 'color',
|
|
@@ -79,6 +81,9 @@ export var Form = {
|
|
|
79
81
|
itemBorderColor: '#E5E5EA',
|
|
80
82
|
itemBorderRadius: '2px'
|
|
81
83
|
}],
|
|
84
|
+
followThemes: {
|
|
85
|
+
'@font-size-base': ['labelFontSize', 'fontSize']
|
|
86
|
+
},
|
|
82
87
|
// 标签是 form 表单里面才有的,单独拉数据录入组件是没有标签的。
|
|
83
88
|
// 为了 tpl 干净,不在下列添加注释,顺序是输入框、多行输入框、数字输入、验证码、单选组、复选组、下拉单选、下拉复选、日期选择、时间选择、开关、文件上传、滑动输入条、评星
|
|
84
89
|
// 密码输入框、输入框的颜色和字号也在.pcfactory-input 边框在 .pcfactory-input-affix-wrapper
|
|
@@ -87,8 +92,8 @@ export var Form = {
|
|
|
87
92
|
// 下拉单选与下拉复选样式一致
|
|
88
93
|
// 滑动输入条没有边框样式
|
|
89
94
|
// TODO: 树选择器,联级选择器效果待确认
|
|
90
|
-
itemCustomTpl: ".pcFactory-from-component{\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 .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\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-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 }\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-
|
|
91
|
-
tpl: ".ued-legacy-form-wrap{\n background-color: backgroundColor;\n .pcFactory-from-component{\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 .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\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-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 }\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-
|
|
95
|
+
itemCustomTpl: ".pcFactory-from-component{\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 .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\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 }\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 .ued-treeSelect-wrap .pcfactory-select-selector{\n height: 1000px\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 }",
|
|
96
|
+
tpl: ".ued-legacy-form-wrap{\n background-color: backgroundColor;\n .pcFactory-from-component{\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 .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\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 }\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 .ued-treeSelect-wrap .pcfactory-select-selector{\n height: 1000px\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 \n ",
|
|
92
97
|
components: [{
|
|
93
98
|
id: 'Form_180373',
|
|
94
99
|
label: '表单',
|
|
@@ -1122,62 +1127,69 @@ export var Form = {
|
|
|
1122
1127
|
isLabelDropBoxChild: false,
|
|
1123
1128
|
components: [],
|
|
1124
1129
|
path: ['998509', 'Form_180373']
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
}
|
|
1130
|
+
}
|
|
1131
|
+
// {
|
|
1132
|
+
// id: 'VerificationCode_6637723',
|
|
1133
|
+
// label: '验证码',
|
|
1134
|
+
// compName: 'VerificationCode',
|
|
1135
|
+
// type: 'VerificationCode',
|
|
1136
|
+
// compType: 2,
|
|
1137
|
+
// compLib: 'comm',
|
|
1138
|
+
// props: {
|
|
1139
|
+
// name: '验证码',
|
|
1140
|
+
// placeholderText: '请输入验证码',
|
|
1141
|
+
// displayStyle: 'countdownStyle',
|
|
1142
|
+
// countdownTime: 60,
|
|
1143
|
+
// random: false,
|
|
1144
|
+
// digit: 4,
|
|
1145
|
+
// formItemIndex: 16,
|
|
1146
|
+
// labelCol: 8,
|
|
1147
|
+
// wrapperCol: 16,
|
|
1148
|
+
// fieldName: 'asdcx',
|
|
1149
|
+
// },
|
|
1150
|
+
// style: {
|
|
1151
|
+
// borderSetting: 'border 1px solid #E5E5E5',
|
|
1152
|
+
// border: '1px solid #E5E5E5',
|
|
1153
|
+
// borderRadius: '4px 4px 4px 4px',
|
|
1154
|
+
// fontSize: '14',
|
|
1155
|
+
// color: '#4477EE',
|
|
1156
|
+
// backgroundColor: '#ffffff',
|
|
1157
|
+
// },
|
|
1158
|
+
// isContainer: false,
|
|
1159
|
+
// isBusiObjContainer: false,
|
|
1160
|
+
// cmdgroup: ['basic'],
|
|
1161
|
+
// platform: 'pc',
|
|
1162
|
+
// fieldProps: {
|
|
1163
|
+
// trigger: 'onChange',
|
|
1164
|
+
// valuePropName: 'value',
|
|
1165
|
+
// },
|
|
1166
|
+
// icon: 'VerificationCode',
|
|
1167
|
+
// description: '',
|
|
1168
|
+
// image: '',
|
|
1169
|
+
// groupsName: '数据录入',
|
|
1170
|
+
// engineApi: ['getValidateCodePicture'],
|
|
1171
|
+
// setEvents: [
|
|
1172
|
+
// {
|
|
1173
|
+
// dataName: 'event',
|
|
1174
|
+
// value: 'onChange',
|
|
1175
|
+
// params: [
|
|
1176
|
+
// {
|
|
1177
|
+
// title: '事件对象',
|
|
1178
|
+
// name: 'e',
|
|
1179
|
+
// value: '$e$',
|
|
1180
|
+
// },
|
|
1181
|
+
// ],
|
|
1182
|
+
// path: [],
|
|
1183
|
+
// dataId: '4056877',
|
|
1184
|
+
// children: [],
|
|
1185
|
+
// },
|
|
1186
|
+
// ],
|
|
1187
|
+
// isLabelDropBoxChild: false,
|
|
1188
|
+
// components: [],
|
|
1189
|
+
// path: ['998509', 'Form_180373'],
|
|
1190
|
+
// },
|
|
1191
|
+
],
|
|
1192
|
+
|
|
1181
1193
|
path: ['998509']
|
|
1182
1194
|
}, {
|
|
1183
1195
|
id: 'View_519882',
|
package/dist/config/Icon.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export declare const Icon: {
|
|
|
5
5
|
type: string;
|
|
6
6
|
label: string;
|
|
7
7
|
groupsName: string;
|
|
8
|
+
followTheme: string;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
groupsName: string;
|
|
@@ -13,6 +14,9 @@ export declare const Icon: {
|
|
|
13
14
|
defaultValue: {
|
|
14
15
|
iconSize: string;
|
|
15
16
|
}[];
|
|
17
|
+
followThemes: {
|
|
18
|
+
'@font-size-base': string[];
|
|
19
|
+
};
|
|
16
20
|
tpl: string;
|
|
17
21
|
components: {
|
|
18
22
|
id: string;
|
package/dist/config/Icon.js
CHANGED
|
@@ -4,7 +4,8 @@ export var Icon = {
|
|
|
4
4
|
iconSize: {
|
|
5
5
|
type: 'px',
|
|
6
6
|
label: '尺寸',
|
|
7
|
-
groupsName: '文字'
|
|
7
|
+
groupsName: '文字',
|
|
8
|
+
followTheme: '@font-size-base'
|
|
8
9
|
}
|
|
9
10
|
},
|
|
10
11
|
groupsName: '通用',
|
|
@@ -13,6 +14,9 @@ export var Icon = {
|
|
|
13
14
|
defaultValue: [{
|
|
14
15
|
iconSize: '14px'
|
|
15
16
|
}],
|
|
17
|
+
followThemes: {
|
|
18
|
+
'@font-size-base': ['iconSize']
|
|
19
|
+
},
|
|
16
20
|
tpl: ".ued-icon svg {\n width: iconSize;\n height: iconSize;\n }",
|
|
17
21
|
components: [{
|
|
18
22
|
id: 'Icon_913145',
|
package/dist/config/Link.d.ts
CHANGED
|
@@ -5,11 +5,13 @@ export declare const Link: {
|
|
|
5
5
|
type: string;
|
|
6
6
|
label: string;
|
|
7
7
|
groupsName: string;
|
|
8
|
+
followTheme: string;
|
|
8
9
|
};
|
|
9
10
|
fontSize: {
|
|
10
11
|
type: string;
|
|
11
12
|
label: string;
|
|
12
13
|
groupsName: string;
|
|
14
|
+
followTheme: string;
|
|
13
15
|
};
|
|
14
16
|
};
|
|
15
17
|
groupsName: string;
|
|
@@ -20,6 +22,10 @@ export declare const Link: {
|
|
|
20
22
|
lineHeight: string;
|
|
21
23
|
fontSize: string;
|
|
22
24
|
}[];
|
|
25
|
+
followThemes: {
|
|
26
|
+
'@font-size-base': string[];
|
|
27
|
+
'@link-color': string[];
|
|
28
|
+
};
|
|
23
29
|
tpl: string;
|
|
24
30
|
components: ({
|
|
25
31
|
id: string;
|
package/dist/config/Link.js
CHANGED
|
@@ -4,14 +4,16 @@ export var Link = {
|
|
|
4
4
|
textColor: {
|
|
5
5
|
type: 'color',
|
|
6
6
|
label: '文本颜色',
|
|
7
|
-
groupsName: '文字'
|
|
7
|
+
groupsName: '文字',
|
|
8
|
+
followTheme: '@link-color'
|
|
8
9
|
},
|
|
9
10
|
// TODO: 行高默认写死
|
|
10
11
|
// lineHeight: { type: 'px', label: '文本行高', groupsName: '文字' },
|
|
11
12
|
fontSize: {
|
|
12
13
|
type: 'px',
|
|
13
14
|
label: '文本尺寸',
|
|
14
|
-
groupsName: '文字'
|
|
15
|
+
groupsName: '文字',
|
|
16
|
+
followTheme: '@font-size-base'
|
|
15
17
|
}
|
|
16
18
|
},
|
|
17
19
|
groupsName: '通用',
|
|
@@ -22,6 +24,10 @@ export var Link = {
|
|
|
22
24
|
lineHeight: '22px',
|
|
23
25
|
fontSize: '14px'
|
|
24
26
|
}],
|
|
27
|
+
followThemes: {
|
|
28
|
+
'@font-size-base': ['fontSize'],
|
|
29
|
+
'@link-color': ['textColor']
|
|
30
|
+
},
|
|
25
31
|
tpl: ".ued-link {\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n }\n .ued-link:hover {\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n opacity: 0.6;\n }",
|
|
26
32
|
components: [{
|
|
27
33
|
id: 'Link_610976',
|
|
@@ -3,7 +3,7 @@ export var MultipleSelect = {
|
|
|
3
3
|
variable: {
|
|
4
4
|
labelTextColor: {
|
|
5
5
|
type: 'color',
|
|
6
|
-
label: '
|
|
6
|
+
label: '标题文本颜色',
|
|
7
7
|
groupsName: '文字',
|
|
8
8
|
desc: '继承自表单,此处不可编辑',
|
|
9
9
|
canEdit: false,
|
|
@@ -11,7 +11,7 @@ export var MultipleSelect = {
|
|
|
11
11
|
},
|
|
12
12
|
labelLineHeight: {
|
|
13
13
|
type: 'px',
|
|
14
|
-
label: '
|
|
14
|
+
label: '标题文本行高',
|
|
15
15
|
groupsName: '文字',
|
|
16
16
|
desc: '继承自表单,此处不可编辑',
|
|
17
17
|
canEdit: false,
|
|
@@ -19,7 +19,7 @@ export var MultipleSelect = {
|
|
|
19
19
|
},
|
|
20
20
|
labelFontSize: {
|
|
21
21
|
type: 'px',
|
|
22
|
-
label: '
|
|
22
|
+
label: '标题文本尺寸',
|
|
23
23
|
groupsName: '文字',
|
|
24
24
|
desc: '继承自表单,此处不可编辑',
|
|
25
25
|
canEdit: false,
|
package/dist/config/Radio.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export declare const Radio: {
|
|
|
61
61
|
type: string;
|
|
62
62
|
label: string;
|
|
63
63
|
groupsName: string;
|
|
64
|
+
followTheme: string;
|
|
64
65
|
};
|
|
65
66
|
radioSeBgColor: {
|
|
66
67
|
type: string;
|
|
@@ -78,6 +79,9 @@ export declare const Radio: {
|
|
|
78
79
|
radioSeBorderColor: string;
|
|
79
80
|
radioSeBgColor: string;
|
|
80
81
|
}[];
|
|
82
|
+
followThemes: {
|
|
83
|
+
'@primary-color': string[];
|
|
84
|
+
};
|
|
81
85
|
tpl: string;
|
|
82
86
|
components: {
|
|
83
87
|
id: string;
|
package/dist/config/Radio.js
CHANGED
|
@@ -60,7 +60,8 @@ export var Radio = {
|
|
|
60
60
|
radioSeBorderColor: {
|
|
61
61
|
type: 'color',
|
|
62
62
|
label: '选中边框颜色',
|
|
63
|
-
groupsName: '边框'
|
|
63
|
+
groupsName: '边框',
|
|
64
|
+
followTheme: '@primary-color'
|
|
64
65
|
},
|
|
65
66
|
radioSeBgColor: {
|
|
66
67
|
type: 'color',
|
|
@@ -78,6 +79,9 @@ export var Radio = {
|
|
|
78
79
|
radioSeBorderColor: '#47e',
|
|
79
80
|
radioSeBgColor: '#fff'
|
|
80
81
|
}],
|
|
82
|
+
followThemes: {
|
|
83
|
+
'@primary-color': ['radioSeBorderColor']
|
|
84
|
+
},
|
|
81
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}",
|
|
82
86
|
components: [{
|
|
83
87
|
id: 'Form_180373',
|
|
@@ -62,6 +62,7 @@ export declare const RangePicker: {
|
|
|
62
62
|
type: string;
|
|
63
63
|
label: string;
|
|
64
64
|
groupsName: string;
|
|
65
|
+
followTheme: string;
|
|
65
66
|
};
|
|
66
67
|
iconColor: {
|
|
67
68
|
type: string;
|
|
@@ -82,6 +83,9 @@ export declare const RangePicker: {
|
|
|
82
83
|
iconColor: string;
|
|
83
84
|
lineColor: string;
|
|
84
85
|
}[];
|
|
86
|
+
followThemes: {
|
|
87
|
+
'@font-size-base': string[];
|
|
88
|
+
};
|
|
85
89
|
tpl: string;
|
|
86
90
|
components: {
|
|
87
91
|
id: string;
|
|
@@ -61,7 +61,8 @@ export var RangePicker = {
|
|
|
61
61
|
iconFontSize: {
|
|
62
62
|
type: 'px',
|
|
63
63
|
label: '时间图标尺寸',
|
|
64
|
-
groupsName: '文字'
|
|
64
|
+
groupsName: '文字',
|
|
65
|
+
followTheme: '@font-size-base'
|
|
65
66
|
},
|
|
66
67
|
iconColor: {
|
|
67
68
|
type: 'color',
|
|
@@ -82,6 +83,9 @@ export var RangePicker = {
|
|
|
82
83
|
iconColor: '#0085D0',
|
|
83
84
|
lineColor: '#1c242e'
|
|
84
85
|
}],
|
|
86
|
+
followThemes: {
|
|
87
|
+
'@font-size-base': ['iconFontSize']
|
|
88
|
+
},
|
|
85
89
|
tpl: ".ued-datePicker-wrap {\n .pcfactory-picker-suffix{\n color: iconColor;\n width: iconFontSize;\n height: iconFontSize;\n .anticon>svg{\n width: iconFontSize;\n height: iconFontSize;\n }\n }\n .pcfactory-picker-clear{\n color: iconColor;\n width: iconFontSize;\n height: iconFontSize;\n .anticon>svg{\n width: iconFontSize;\n height: iconFontSize;\n }\n }\n .pcfactory-picker-range-separator{\n color: lineColor;\n }\n }",
|
|
86
90
|
components: [{
|
|
87
91
|
id: 'Form_180373',
|
|
@@ -42,22 +42,6 @@ export declare const StdUpload: {
|
|
|
42
42
|
canEdit: boolean;
|
|
43
43
|
extendsKey: string;
|
|
44
44
|
};
|
|
45
|
-
itemBorderColor: {
|
|
46
|
-
type: string;
|
|
47
|
-
label: string;
|
|
48
|
-
groupsName: string;
|
|
49
|
-
desc: string;
|
|
50
|
-
canEdit: boolean;
|
|
51
|
-
extendsKey: string;
|
|
52
|
-
};
|
|
53
|
-
itemBorderRadius: {
|
|
54
|
-
type: string;
|
|
55
|
-
label: string;
|
|
56
|
-
groupsName: string;
|
|
57
|
-
desc: string;
|
|
58
|
-
canEdit: boolean;
|
|
59
|
-
extendsKey: string;
|
|
60
|
-
};
|
|
61
45
|
listTextColor: {
|
|
62
46
|
type: string;
|
|
63
47
|
label: string;
|
|
@@ -67,6 +51,7 @@ export declare const StdUpload: {
|
|
|
67
51
|
type: string;
|
|
68
52
|
label: string;
|
|
69
53
|
groupsName: string;
|
|
54
|
+
followTheme: string;
|
|
70
55
|
};
|
|
71
56
|
listIconColor: {
|
|
72
57
|
type: string;
|
|
@@ -77,6 +62,7 @@ export declare const StdUpload: {
|
|
|
77
62
|
type: string;
|
|
78
63
|
label: string;
|
|
79
64
|
groupsName: string;
|
|
65
|
+
followTheme: string;
|
|
80
66
|
};
|
|
81
67
|
};
|
|
82
68
|
groupsName: string;
|
|
@@ -88,6 +74,9 @@ export declare const StdUpload: {
|
|
|
88
74
|
listIconColor: string;
|
|
89
75
|
lisIconSize: string;
|
|
90
76
|
}[];
|
|
77
|
+
followThemes: {
|
|
78
|
+
'@font-size-base': string[];
|
|
79
|
+
};
|
|
91
80
|
tpl: string;
|
|
92
81
|
components: {
|
|
93
82
|
id: string;
|
package/dist/config/StdUpload.js
CHANGED
|
@@ -42,22 +42,6 @@ export var StdUpload = {
|
|
|
42
42
|
canEdit: false,
|
|
43
43
|
extendsKey: 'Form'
|
|
44
44
|
},
|
|
45
|
-
itemBorderColor: {
|
|
46
|
-
type: 'color',
|
|
47
|
-
label: '边框颜色',
|
|
48
|
-
groupsName: '边框',
|
|
49
|
-
desc: '继承自表单,此处不可编辑',
|
|
50
|
-
canEdit: false,
|
|
51
|
-
extendsKey: 'Form'
|
|
52
|
-
},
|
|
53
|
-
itemBorderRadius: {
|
|
54
|
-
type: 'px',
|
|
55
|
-
label: '边框圆角',
|
|
56
|
-
groupsName: '边框',
|
|
57
|
-
desc: '继承自表单,此处不可编辑',
|
|
58
|
-
canEdit: false,
|
|
59
|
-
extendsKey: 'Form'
|
|
60
|
-
},
|
|
61
45
|
listTextColor: {
|
|
62
46
|
type: 'color',
|
|
63
47
|
label: '列表文本颜色',
|
|
@@ -66,7 +50,8 @@ export var StdUpload = {
|
|
|
66
50
|
listFontSize: {
|
|
67
51
|
type: 'px',
|
|
68
52
|
label: '列表文本字号',
|
|
69
|
-
groupsName: '文字'
|
|
53
|
+
groupsName: '文字',
|
|
54
|
+
followTheme: '@font-size-base'
|
|
70
55
|
},
|
|
71
56
|
listIconColor: {
|
|
72
57
|
type: 'color',
|
|
@@ -76,7 +61,8 @@ export var StdUpload = {
|
|
|
76
61
|
lisIconSize: {
|
|
77
62
|
type: 'px',
|
|
78
63
|
label: '列表图标字号',
|
|
79
|
-
groupsName: '文字'
|
|
64
|
+
groupsName: '文字',
|
|
65
|
+
followTheme: '@font-size-base'
|
|
80
66
|
}
|
|
81
67
|
},
|
|
82
68
|
groupsName: '数据录入',
|
|
@@ -88,6 +74,9 @@ export var StdUpload = {
|
|
|
88
74
|
listIconColor: 'rgba(0,0,0,.45)',
|
|
89
75
|
lisIconSize: '14px'
|
|
90
76
|
}],
|
|
77
|
+
followThemes: {
|
|
78
|
+
'@font-size-base': ['listFontSize', 'lisIconSize']
|
|
79
|
+
},
|
|
91
80
|
tpl: ".ued-stdupload-wrap {\n \n .ued-stdUpload-item-info a {\n color: listTextColor;\n font-size: listFontSize;\n }\n .ued-stdUpload-item-info:hover a{\n color: listTextColor;\n font-size: listFontSize;\n }\n .ued-stdUpload-item-icon .anticon-loading .anticon{\n color: listIconColor;\n > svg{\n width: lisIconSize;\n height: lisIconSize;\n }\n }\n .ued-stdUpload-item-icon .anticon{\n color: listIconColor;\n > svg{\n width: lisIconSize;\n height: lisIconSize;\n }\n }\n .ued-stdUpload-item-error .ued-stdUpload-item-icon .anticon-loading .anticon{\n color: #ff7474;\n }\n .ued-stdUpload-item-error .ued-stdUpload-item-icon .anticon{\n color: #ff7474;\n }\n }\n ",
|
|
92
81
|
components: [{
|
|
93
82
|
id: 'Form_180373',
|
package/dist/config/Switch.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare const Switch: {
|
|
|
29
29
|
type: string;
|
|
30
30
|
label: string;
|
|
31
31
|
groupsName: string;
|
|
32
|
+
followTheme: string;
|
|
32
33
|
};
|
|
33
34
|
closeColor: {
|
|
34
35
|
type: string;
|
|
@@ -43,6 +44,9 @@ export declare const Switch: {
|
|
|
43
44
|
openColor: string;
|
|
44
45
|
closeColor: string;
|
|
45
46
|
}[];
|
|
47
|
+
followThemes: {
|
|
48
|
+
'@primary-color': string[];
|
|
49
|
+
};
|
|
46
50
|
tpl: string;
|
|
47
51
|
components: {
|
|
48
52
|
id: string;
|
package/dist/config/Switch.js
CHANGED
|
@@ -28,7 +28,8 @@ export var Switch = {
|
|
|
28
28
|
openColor: {
|
|
29
29
|
type: 'color',
|
|
30
30
|
label: '开启颜色',
|
|
31
|
-
groupsName: '文字'
|
|
31
|
+
groupsName: '文字',
|
|
32
|
+
followTheme: '@primary-color'
|
|
32
33
|
},
|
|
33
34
|
closeColor: {
|
|
34
35
|
type: 'color',
|
|
@@ -43,6 +44,9 @@ export var Switch = {
|
|
|
43
44
|
openColor: '#47e',
|
|
44
45
|
closeColor: 'rgba(28,36,46,.25)'
|
|
45
46
|
}],
|
|
47
|
+
followThemes: {
|
|
48
|
+
'@primary-color': ['openColor']
|
|
49
|
+
},
|
|
46
50
|
tpl: ".pcfactory-switch {\n background-color: closeColor;\n }\n .pcfactory-switch-checked {\n background-color: openColor;\n }",
|
|
47
51
|
components: [{
|
|
48
52
|
id: 'Form_180373',
|
package/dist/config/Table.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export declare const Table: {
|
|
|
41
41
|
type: string;
|
|
42
42
|
label: string;
|
|
43
43
|
groupsName: string;
|
|
44
|
+
followTheme: string;
|
|
44
45
|
};
|
|
45
46
|
selectPaginationBorder: {
|
|
46
47
|
type: string;
|
|
@@ -56,6 +57,7 @@ export declare const Table: {
|
|
|
56
57
|
type: string;
|
|
57
58
|
label: string;
|
|
58
59
|
groupsName: string;
|
|
60
|
+
followTheme: string;
|
|
59
61
|
};
|
|
60
62
|
tbBorderColor: {
|
|
61
63
|
type: string;
|
|
@@ -173,6 +175,10 @@ export declare const Table: {
|
|
|
173
175
|
bodyTextAlign: string;
|
|
174
176
|
zebraBgColor: string;
|
|
175
177
|
}[];
|
|
178
|
+
followThemes: {
|
|
179
|
+
'@primary-color': string[];
|
|
180
|
+
'@font-size-base': string[];
|
|
181
|
+
};
|
|
176
182
|
tpl: string;
|
|
177
183
|
components: ({
|
|
178
184
|
id: string;
|
package/dist/config/Table.js
CHANGED
|
@@ -58,7 +58,8 @@ export var Table = {
|
|
|
58
58
|
selectPaginationColor: {
|
|
59
59
|
type: 'color',
|
|
60
60
|
label: '选中项背景颜色',
|
|
61
|
-
groupsName: '表格分页'
|
|
61
|
+
groupsName: '表格分页',
|
|
62
|
+
followTheme: '@primary-color'
|
|
62
63
|
},
|
|
63
64
|
selectPaginationBorder: {
|
|
64
65
|
type: 'color',
|
|
@@ -74,7 +75,8 @@ export var Table = {
|
|
|
74
75
|
tbFontSize: {
|
|
75
76
|
type: 'px',
|
|
76
77
|
label: '表格文本尺寸',
|
|
77
|
-
groupsName: '基础'
|
|
78
|
+
groupsName: '基础',
|
|
79
|
+
followTheme: '@font-size-base'
|
|
78
80
|
},
|
|
79
81
|
tbBorderColor: {
|
|
80
82
|
type: 'color',
|
|
@@ -240,6 +242,10 @@ export var Table = {
|
|
|
240
242
|
bodyTextAlign: 'left',
|
|
241
243
|
zebraBgColor: '#fbfbfb'
|
|
242
244
|
}],
|
|
245
|
+
followThemes: {
|
|
246
|
+
'@primary-color': ['selectPaginationColor'],
|
|
247
|
+
'@font-size-base': ['tbFontSize']
|
|
248
|
+
},
|
|
243
249
|
tpl: "\n .ued-table-wrap {\n .pcfactory-table{\n font-size: tbFontSize;\n border-radius: tbBorderRadius;\n }\n .pcfactory-table-container{\n border-top-left-radius: tbBorderRadius;\n border-top-right-radius: tbBorderRadius;\n }\n .pcfactory-table-tbody{\n background: bodyBgColor;\n }\n }\n .ued-table-wrap .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 .ued-table-wrap .ued-table .pcfactory-table-thead>tr:first-child>th:first-child{\n border-top-left-radius: tbBorderRadius;\n }\n .ued-table-wrap .ued-table .pcfactory-table-thead>tr:first-child>th:last-child{\n border-top-right-radius: tbBorderRadius;\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-wrap .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-wrap .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-wrap .ued-table .pcfactory-table-bordered{\n border-color: tbBorderColor;\n }\n .ued-table-filters .ued-table-page .pcfactory-pagination-item-active{\n background: selectPaginationColor;\n }\n .ued-table-wrap .ued-table-page .pcfactory-pagination-item-active{\n background: selectPaginationColor;\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-wrap .ued-table-zebra-stripe .pcfactory-table-row:nth-child(2n){\n background: zebraBgColor;\n }",
|
|
244
250
|
components: [{
|
|
245
251
|
id: 'Table_2740384',
|
package/dist/config/Tabs.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare const Tabs: {
|
|
|
15
15
|
type: string;
|
|
16
16
|
label: string;
|
|
17
17
|
groupsName: string;
|
|
18
|
+
followTheme: string;
|
|
18
19
|
};
|
|
19
20
|
activeRadius: {
|
|
20
21
|
type: string;
|
|
@@ -99,6 +100,9 @@ export declare const Tabs: {
|
|
|
99
100
|
fontWeight: string;
|
|
100
101
|
activeFontWeight: string;
|
|
101
102
|
}[];
|
|
103
|
+
followThemes: {
|
|
104
|
+
'@primary-color': string[];
|
|
105
|
+
};
|
|
102
106
|
tpl: string;
|
|
103
107
|
components: {
|
|
104
108
|
id: string;
|