@lingxiteam/theme-utils 0.1.3
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/README.md +83 -0
- package/dist/config/Button.d.ts +101 -0
- package/dist/config/Button.js +265 -0
- package/dist/config/Card.d.ts +137 -0
- package/dist/config/Card.js +149 -0
- package/dist/config/Cascader.d.ts +179 -0
- package/dist/config/Cascader.js +208 -0
- package/dist/config/Checkbox.d.ts +161 -0
- package/dist/config/Checkbox.js +161 -0
- package/dist/config/CheckboxGroup.d.ts +176 -0
- package/dist/config/CheckboxGroup.js +184 -0
- package/dist/config/Collapse.d.ts +170 -0
- package/dist/config/Collapse.js +308 -0
- package/dist/config/Container.d.ts +268 -0
- package/dist/config/Container.js +288 -0
- package/dist/config/DatePicker.d.ts +163 -0
- package/dist/config/DatePicker.js +163 -0
- package/dist/config/Description.d.ts +97 -0
- package/dist/config/Description.js +117 -0
- package/dist/config/Divider.d.ts +61 -0
- package/dist/config/Divider.js +61 -0
- package/dist/config/Form.d.ts +2700 -0
- package/dist/config/Form.js +1214 -0
- package/dist/config/Icon.d.ts +51 -0
- package/dist/config/Icon.js +51 -0
- package/dist/config/Input.d.ts +150 -0
- package/dist/config/Input.js +150 -0
- package/dist/config/InputNumber.d.ts +145 -0
- package/dist/config/InputNumber.js +145 -0
- package/dist/config/Link.d.ts +123 -0
- package/dist/config/Link.js +115 -0
- package/dist/config/MultipleSelect.d.ts +158 -0
- package/dist/config/MultipleSelect.js +166 -0
- package/dist/config/Radio.d.ts +171 -0
- package/dist/config/Radio.js +179 -0
- package/dist/config/RangePicker.d.ts +165 -0
- package/dist/config/RangePicker.js +165 -0
- package/dist/config/Select.d.ts +173 -0
- package/dist/config/Select.js +181 -0
- package/dist/config/StdUpload.d.ts +204 -0
- package/dist/config/StdUpload.js +208 -0
- package/dist/config/Switch.d.ts +137 -0
- package/dist/config/Switch.js +137 -0
- package/dist/config/Table.d.ts +398 -0
- package/dist/config/Table.js +527 -0
- package/dist/config/Tabs.d.ts +170 -0
- package/dist/config/Tabs.js +229 -0
- package/dist/config/Tag.d.ts +114 -0
- package/dist/config/Tag.js +314 -0
- package/dist/config/Text.d.ts +30 -0
- package/dist/config/Text.js +30 -0
- package/dist/config/TextArea.d.ts +142 -0
- package/dist/config/TextArea.js +142 -0
- package/dist/config/TimePicker.d.ts +164 -0
- package/dist/config/TimePicker.js +164 -0
- package/dist/config/Tree.d.ts +131 -0
- package/dist/config/Tree.js +175 -0
- package/dist/config/TreeSelect.d.ts +180 -0
- package/dist/config/TreeSelect.js +196 -0
- package/dist/css.d.ts +6 -0
- package/dist/css.js +121 -0
- package/dist/demo.d.ts +5 -0
- package/dist/demo.js +79 -0
- package/dist/h5config/Accordion.d.ts +338 -0
- package/dist/h5config/Accordion.js +445 -0
- package/dist/h5config/Button.d.ts +134 -0
- package/dist/h5config/Button.js +245 -0
- package/dist/h5config/Card.d.ts +268 -0
- package/dist/h5config/Card.js +425 -0
- package/dist/h5config/DAddressPicker.d.ts +196 -0
- package/dist/h5config/DAddressPicker.js +226 -0
- package/dist/h5config/DCheckbox.d.ts +203 -0
- package/dist/h5config/DCheckbox.js +237 -0
- package/dist/h5config/DForm.d.ts +1607 -0
- package/dist/h5config/DForm.js +897 -0
- package/dist/h5config/DMultiplePicker.d.ts +197 -0
- package/dist/h5config/DMultiplePicker.js +231 -0
- package/dist/h5config/DformDate.d.ts +199 -0
- package/dist/h5config/DformDate.js +229 -0
- package/dist/h5config/DformFile.d.ts +186 -0
- package/dist/h5config/DformFile.js +198 -0
- package/dist/h5config/DformImagePicker.d.ts +138 -0
- package/dist/h5config/DformImagePicker.js +150 -0
- package/dist/h5config/DformInput.d.ts +188 -0
- package/dist/h5config/DformInput.js +218 -0
- package/dist/h5config/DformInputNumber.d.ts +173 -0
- package/dist/h5config/DformInputNumber.js +203 -0
- package/dist/h5config/DformPicker.d.ts +198 -0
- package/dist/h5config/DformPicker.js +232 -0
- package/dist/h5config/DformRadio.d.ts +203 -0
- package/dist/h5config/DformRadio.js +237 -0
- package/dist/h5config/DformRangePicker.d.ts +199 -0
- package/dist/h5config/DformRangePicker.js +229 -0
- package/dist/h5config/DformSelect.d.ts +208 -0
- package/dist/h5config/DformSelect.js +260 -0
- package/dist/h5config/DformSwitch.d.ts +146 -0
- package/dist/h5config/DformSwitch.js +158 -0
- package/dist/h5config/DformTextArea.d.ts +184 -0
- package/dist/h5config/DformTextArea.js +214 -0
- package/dist/h5config/Divider.d.ts +53 -0
- package/dist/h5config/Divider.js +90 -0
- package/dist/h5config/FilterItems.d.ts +142 -0
- package/dist/h5config/FilterItems.js +181 -0
- package/dist/h5config/Grid.d.ts +117 -0
- package/dist/h5config/Grid.js +154 -0
- package/dist/h5config/Icon.d.ts +54 -0
- package/dist/h5config/Icon.js +54 -0
- package/dist/h5config/Link.d.ts +47 -0
- package/dist/h5config/Link.js +47 -0
- package/dist/h5config/LoadMore.d.ts +527 -0
- package/dist/h5config/LoadMore.js +940 -0
- package/dist/h5config/NoticeBarPlus.d.ts +104 -0
- package/dist/h5config/NoticeBarPlus.js +129 -0
- package/dist/h5config/SearchView.d.ts +128 -0
- package/dist/h5config/SearchView.js +163 -0
- package/dist/h5config/StaticTabs.d.ts +133 -0
- package/dist/h5config/StaticTabs.js +173 -0
- package/dist/h5config/Table.d.ts +182 -0
- package/dist/h5config/Table.js +566 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/lx-mobile.d.ts +9 -0
- package/dist/lx-mobile.js +153 -0
- package/dist/lx.d.ts +6 -0
- package/dist/lx.js +112 -0
- package/dist/utils.d.ts +12 -0
- package/dist/utils.js +65 -0
- package/package.json +38 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
export declare const NoticeBarPlus: {
|
|
2
|
+
type: string;
|
|
3
|
+
variable: {
|
|
4
|
+
backgroundColor: {
|
|
5
|
+
type: string;
|
|
6
|
+
label: string;
|
|
7
|
+
groupsName: string;
|
|
8
|
+
};
|
|
9
|
+
borderColor: {
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
groupsName: string;
|
|
13
|
+
};
|
|
14
|
+
borderRadius: {
|
|
15
|
+
type: string;
|
|
16
|
+
label: string;
|
|
17
|
+
groupsName: string;
|
|
18
|
+
};
|
|
19
|
+
textColor: {
|
|
20
|
+
type: string;
|
|
21
|
+
label: string;
|
|
22
|
+
groupsName: string;
|
|
23
|
+
};
|
|
24
|
+
fontSize: {
|
|
25
|
+
type: string;
|
|
26
|
+
label: string;
|
|
27
|
+
groupsName: string;
|
|
28
|
+
};
|
|
29
|
+
fontWeight: {
|
|
30
|
+
type: string;
|
|
31
|
+
label: string;
|
|
32
|
+
groupsName: string;
|
|
33
|
+
options: {
|
|
34
|
+
title: string;
|
|
35
|
+
value: string;
|
|
36
|
+
}[];
|
|
37
|
+
};
|
|
38
|
+
iconColor: {
|
|
39
|
+
type: string;
|
|
40
|
+
label: string;
|
|
41
|
+
groupsName: string;
|
|
42
|
+
};
|
|
43
|
+
iconSize: {
|
|
44
|
+
type: string;
|
|
45
|
+
label: string;
|
|
46
|
+
groupsName: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
groupsName: string;
|
|
50
|
+
icon: string;
|
|
51
|
+
title: string;
|
|
52
|
+
defaultValue: {
|
|
53
|
+
backgroundColor: string;
|
|
54
|
+
borderRadius: string;
|
|
55
|
+
borderColor: string;
|
|
56
|
+
textColor: string;
|
|
57
|
+
fontSize: string;
|
|
58
|
+
iconColor: string;
|
|
59
|
+
iconSize: string;
|
|
60
|
+
fontWeight: string;
|
|
61
|
+
}[];
|
|
62
|
+
tpl: string;
|
|
63
|
+
components: {
|
|
64
|
+
id: string;
|
|
65
|
+
label: string;
|
|
66
|
+
compName: string;
|
|
67
|
+
type: string;
|
|
68
|
+
compType: number;
|
|
69
|
+
compLib: string;
|
|
70
|
+
props: {
|
|
71
|
+
name: string;
|
|
72
|
+
data: {
|
|
73
|
+
bulletinTitle: string;
|
|
74
|
+
id: string;
|
|
75
|
+
}[];
|
|
76
|
+
keyFieldName: string;
|
|
77
|
+
};
|
|
78
|
+
style: {};
|
|
79
|
+
isContainer: boolean;
|
|
80
|
+
isBusiObjContainer: boolean;
|
|
81
|
+
cmdgroup: string[];
|
|
82
|
+
platform: string;
|
|
83
|
+
engineApi: string[];
|
|
84
|
+
setEvents: {
|
|
85
|
+
dataName: string;
|
|
86
|
+
value: string;
|
|
87
|
+
params: {
|
|
88
|
+
title: string;
|
|
89
|
+
name: string;
|
|
90
|
+
value: string;
|
|
91
|
+
}[];
|
|
92
|
+
path: never[];
|
|
93
|
+
dataId: string;
|
|
94
|
+
children: never[];
|
|
95
|
+
}[];
|
|
96
|
+
description: string;
|
|
97
|
+
image: string;
|
|
98
|
+
groupsName: string;
|
|
99
|
+
icon: string;
|
|
100
|
+
isLabelDropBoxChild: boolean;
|
|
101
|
+
components: never[];
|
|
102
|
+
path: string[];
|
|
103
|
+
}[];
|
|
104
|
+
};
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export var NoticeBarPlus = {
|
|
2
|
+
type: 'NoticeBarPlus',
|
|
3
|
+
variable: {
|
|
4
|
+
backgroundColor: {
|
|
5
|
+
type: 'color',
|
|
6
|
+
label: '背景颜色',
|
|
7
|
+
groupsName: '背景颜色'
|
|
8
|
+
},
|
|
9
|
+
borderColor: {
|
|
10
|
+
type: 'color',
|
|
11
|
+
label: '边框颜色',
|
|
12
|
+
groupsName: '边框'
|
|
13
|
+
},
|
|
14
|
+
borderRadius: {
|
|
15
|
+
type: 'px',
|
|
16
|
+
label: '边框圆角',
|
|
17
|
+
groupsName: '边框'
|
|
18
|
+
},
|
|
19
|
+
textColor: {
|
|
20
|
+
type: 'color',
|
|
21
|
+
label: '文本颜色',
|
|
22
|
+
groupsName: '文字'
|
|
23
|
+
},
|
|
24
|
+
// lineHeight: { type: 'px', label: '文本行高', groupsName: '文字' },
|
|
25
|
+
fontSize: {
|
|
26
|
+
type: 'px',
|
|
27
|
+
label: '文本尺寸',
|
|
28
|
+
groupsName: '文字'
|
|
29
|
+
},
|
|
30
|
+
fontWeight: {
|
|
31
|
+
type: 'select',
|
|
32
|
+
label: '文本字重',
|
|
33
|
+
groupsName: '文字',
|
|
34
|
+
options: [{
|
|
35
|
+
title: '100',
|
|
36
|
+
value: '100'
|
|
37
|
+
}, {
|
|
38
|
+
title: '200',
|
|
39
|
+
value: '200'
|
|
40
|
+
}, {
|
|
41
|
+
title: '300',
|
|
42
|
+
value: '300'
|
|
43
|
+
}, {
|
|
44
|
+
title: '400',
|
|
45
|
+
value: '400'
|
|
46
|
+
}, {
|
|
47
|
+
title: '500',
|
|
48
|
+
value: '500'
|
|
49
|
+
}]
|
|
50
|
+
},
|
|
51
|
+
iconColor: {
|
|
52
|
+
type: 'color',
|
|
53
|
+
label: '下拉图标颜色',
|
|
54
|
+
groupsName: '文字'
|
|
55
|
+
},
|
|
56
|
+
iconSize: {
|
|
57
|
+
type: 'px',
|
|
58
|
+
label: '下拉图标尺寸',
|
|
59
|
+
groupsName: '文字'
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
groupsName: '高级',
|
|
63
|
+
icon: 'icon-ico-comp-app-NoticeBarPlus',
|
|
64
|
+
title: '公告栏',
|
|
65
|
+
defaultValue: [{
|
|
66
|
+
backgroundColor: '#fff',
|
|
67
|
+
borderRadius: '12px',
|
|
68
|
+
borderColor: 'rgba(0,0,0,0)',
|
|
69
|
+
textColor: '#000',
|
|
70
|
+
fontSize: '12px',
|
|
71
|
+
// lineHeight:'100%',
|
|
72
|
+
iconColor: '#000',
|
|
73
|
+
iconSize: '20px',
|
|
74
|
+
fontWeight: '400'
|
|
75
|
+
}],
|
|
76
|
+
tpl: "\n .alita-notice-bar{\n --adm-color-background: backgroundColor;\n border-color: borderColor;\n border-radius: borderRadius;\n font-size: fontSize;\n // line-height: lineHeight;\n font-weight:fontWeight;\n color: textColor;\n > div {\n\n > svg {\n color: iconColor;\n\nwidth: iconSize;\nheight: iconSize;\n }\n }\n }",
|
|
77
|
+
components: [{
|
|
78
|
+
id: 'NoticeBarPlus_0162497',
|
|
79
|
+
label: '公告栏',
|
|
80
|
+
compName: 'NoticeBarPlus',
|
|
81
|
+
type: 'NoticeBarPlus',
|
|
82
|
+
compType: 1,
|
|
83
|
+
compLib: '@alitajs/antd-mobile-plus',
|
|
84
|
+
props: {
|
|
85
|
+
name: '公告栏',
|
|
86
|
+
data: [{
|
|
87
|
+
bulletinTitle: '公告通知1',
|
|
88
|
+
id: '0'
|
|
89
|
+
}],
|
|
90
|
+
keyFieldName: 'id'
|
|
91
|
+
},
|
|
92
|
+
style: {},
|
|
93
|
+
isContainer: false,
|
|
94
|
+
isBusiObjContainer: false,
|
|
95
|
+
cmdgroup: ['basic'],
|
|
96
|
+
platform: 'h5',
|
|
97
|
+
engineApi: ['downloadFileByFileCode'],
|
|
98
|
+
setEvents: [{
|
|
99
|
+
dataName: 'event',
|
|
100
|
+
value: 'onItemClick',
|
|
101
|
+
params: [{
|
|
102
|
+
title: '每条item的点击事件',
|
|
103
|
+
name: 'e',
|
|
104
|
+
value: '$e$'
|
|
105
|
+
}],
|
|
106
|
+
path: [],
|
|
107
|
+
dataId: '435144',
|
|
108
|
+
children: []
|
|
109
|
+
}, {
|
|
110
|
+
dataName: 'event',
|
|
111
|
+
value: 'onExtraClick',
|
|
112
|
+
params: [{
|
|
113
|
+
title: '右侧点击事件',
|
|
114
|
+
name: 'e',
|
|
115
|
+
value: '$e$'
|
|
116
|
+
}],
|
|
117
|
+
path: [],
|
|
118
|
+
dataId: '9189502',
|
|
119
|
+
children: []
|
|
120
|
+
}],
|
|
121
|
+
description: '',
|
|
122
|
+
image: '',
|
|
123
|
+
groupsName: '高级',
|
|
124
|
+
icon: 'NoticeBarPlus',
|
|
125
|
+
isLabelDropBoxChild: false,
|
|
126
|
+
components: [],
|
|
127
|
+
path: ['454426', 'View_454426_1']
|
|
128
|
+
}]
|
|
129
|
+
};
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
export declare const SearchView: {
|
|
2
|
+
type: string;
|
|
3
|
+
variable: {
|
|
4
|
+
backgroundColor: {
|
|
5
|
+
type: string;
|
|
6
|
+
label: string;
|
|
7
|
+
groupsName: string;
|
|
8
|
+
};
|
|
9
|
+
paddingValue: {
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
groupsName: string;
|
|
13
|
+
};
|
|
14
|
+
borderColor: {
|
|
15
|
+
type: string;
|
|
16
|
+
label: string;
|
|
17
|
+
groupsName: string;
|
|
18
|
+
};
|
|
19
|
+
borderRadius: {
|
|
20
|
+
type: string;
|
|
21
|
+
label: string;
|
|
22
|
+
groupsName: string;
|
|
23
|
+
};
|
|
24
|
+
sBackgroundColor: {
|
|
25
|
+
type: string;
|
|
26
|
+
label: string;
|
|
27
|
+
groupsName: string;
|
|
28
|
+
};
|
|
29
|
+
iconSize: {
|
|
30
|
+
type: string;
|
|
31
|
+
label: string;
|
|
32
|
+
groupsName: string;
|
|
33
|
+
};
|
|
34
|
+
textColor: {
|
|
35
|
+
type: string;
|
|
36
|
+
label: string;
|
|
37
|
+
groupsName: string;
|
|
38
|
+
};
|
|
39
|
+
fontSize: {
|
|
40
|
+
type: string;
|
|
41
|
+
label: string;
|
|
42
|
+
groupsName: string;
|
|
43
|
+
};
|
|
44
|
+
fontWeight: {
|
|
45
|
+
type: string;
|
|
46
|
+
label: string;
|
|
47
|
+
groupsName: string;
|
|
48
|
+
options: {
|
|
49
|
+
title: string;
|
|
50
|
+
value: string;
|
|
51
|
+
}[];
|
|
52
|
+
};
|
|
53
|
+
sPaddingValue: {
|
|
54
|
+
type: string;
|
|
55
|
+
label: string;
|
|
56
|
+
groupsName: string;
|
|
57
|
+
};
|
|
58
|
+
sBorderColor: {
|
|
59
|
+
type: string;
|
|
60
|
+
label: string;
|
|
61
|
+
groupsName: string;
|
|
62
|
+
};
|
|
63
|
+
sBorderRadius: {
|
|
64
|
+
type: string;
|
|
65
|
+
label: string;
|
|
66
|
+
groupsName: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
groupsName: string;
|
|
70
|
+
icon: string;
|
|
71
|
+
title: string;
|
|
72
|
+
defaultValue: {
|
|
73
|
+
backgroundColor: string;
|
|
74
|
+
paddingValue: string;
|
|
75
|
+
borderColor: string;
|
|
76
|
+
borderRadius: string;
|
|
77
|
+
sBackgroundColor: string;
|
|
78
|
+
iconSize: string;
|
|
79
|
+
textColor: string;
|
|
80
|
+
fontSize: string;
|
|
81
|
+
fontWeight: string;
|
|
82
|
+
sPaddingValue: string;
|
|
83
|
+
sBorderColor: string;
|
|
84
|
+
sBorderRadius: string;
|
|
85
|
+
}[];
|
|
86
|
+
tpl: string;
|
|
87
|
+
components: {
|
|
88
|
+
id: string;
|
|
89
|
+
label: string;
|
|
90
|
+
compName: string;
|
|
91
|
+
type: string;
|
|
92
|
+
compType: number;
|
|
93
|
+
compLib: string;
|
|
94
|
+
props: {
|
|
95
|
+
name: string;
|
|
96
|
+
filterValue: string;
|
|
97
|
+
filterData: {
|
|
98
|
+
label: string;
|
|
99
|
+
value: string;
|
|
100
|
+
}[];
|
|
101
|
+
labelAlias: string;
|
|
102
|
+
valueAlias: string;
|
|
103
|
+
placeholder: string;
|
|
104
|
+
showLeft: boolean;
|
|
105
|
+
open: boolean;
|
|
106
|
+
showDateRange: boolean;
|
|
107
|
+
};
|
|
108
|
+
style: {
|
|
109
|
+
padding: string;
|
|
110
|
+
};
|
|
111
|
+
isContainer: boolean;
|
|
112
|
+
isBusiObjContainer: boolean;
|
|
113
|
+
cmdgroup: string[];
|
|
114
|
+
platform: string;
|
|
115
|
+
setEvents: never[];
|
|
116
|
+
description: string;
|
|
117
|
+
image: string;
|
|
118
|
+
groupsName: string;
|
|
119
|
+
fieldProps: {
|
|
120
|
+
trigger: string;
|
|
121
|
+
valuePropName: string;
|
|
122
|
+
};
|
|
123
|
+
icon: string;
|
|
124
|
+
isLabelDropBoxChild: boolean;
|
|
125
|
+
components: never[];
|
|
126
|
+
path: string[];
|
|
127
|
+
}[];
|
|
128
|
+
};
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
export var SearchView = {
|
|
2
|
+
type: 'SearchView',
|
|
3
|
+
variable: {
|
|
4
|
+
backgroundColor: {
|
|
5
|
+
type: 'color',
|
|
6
|
+
label: '背景颜色',
|
|
7
|
+
groupsName: '背景颜色'
|
|
8
|
+
},
|
|
9
|
+
paddingValue: {
|
|
10
|
+
type: 'marginInput',
|
|
11
|
+
label: '内边距',
|
|
12
|
+
groupsName: '布局'
|
|
13
|
+
},
|
|
14
|
+
borderColor: {
|
|
15
|
+
type: 'color',
|
|
16
|
+
label: '边框颜色',
|
|
17
|
+
groupsName: '边框'
|
|
18
|
+
},
|
|
19
|
+
borderRadius: {
|
|
20
|
+
type: 'px',
|
|
21
|
+
label: '边框圆角',
|
|
22
|
+
groupsName: '边框'
|
|
23
|
+
},
|
|
24
|
+
sBackgroundColor: {
|
|
25
|
+
type: 'color',
|
|
26
|
+
label: '背景颜色',
|
|
27
|
+
groupsName: '搜索框'
|
|
28
|
+
},
|
|
29
|
+
iconSize: {
|
|
30
|
+
type: 'px',
|
|
31
|
+
label: '图标尺寸',
|
|
32
|
+
groupsName: '搜索框'
|
|
33
|
+
},
|
|
34
|
+
textColor: {
|
|
35
|
+
type: 'color',
|
|
36
|
+
label: '文本颜色',
|
|
37
|
+
groupsName: '搜索框'
|
|
38
|
+
},
|
|
39
|
+
// lineHeight: { type: 'px', label: '文本行高', groupsName: '搜索框' },
|
|
40
|
+
fontSize: {
|
|
41
|
+
type: 'px',
|
|
42
|
+
label: '文本尺寸',
|
|
43
|
+
groupsName: '搜索框'
|
|
44
|
+
},
|
|
45
|
+
fontWeight: {
|
|
46
|
+
type: 'select',
|
|
47
|
+
label: '文本字重',
|
|
48
|
+
groupsName: '搜索框',
|
|
49
|
+
options: [{
|
|
50
|
+
title: '100',
|
|
51
|
+
value: '100'
|
|
52
|
+
}, {
|
|
53
|
+
title: '200',
|
|
54
|
+
value: '200'
|
|
55
|
+
}, {
|
|
56
|
+
title: '300',
|
|
57
|
+
value: '300'
|
|
58
|
+
}, {
|
|
59
|
+
title: '400',
|
|
60
|
+
value: '400'
|
|
61
|
+
}, {
|
|
62
|
+
title: '500',
|
|
63
|
+
value: '500'
|
|
64
|
+
}]
|
|
65
|
+
},
|
|
66
|
+
sPaddingValue: {
|
|
67
|
+
type: 'marginInput',
|
|
68
|
+
label: '内边距',
|
|
69
|
+
groupsName: '搜索框'
|
|
70
|
+
},
|
|
71
|
+
sBorderColor: {
|
|
72
|
+
type: 'color',
|
|
73
|
+
label: '边框颜色',
|
|
74
|
+
groupsName: '搜索框'
|
|
75
|
+
},
|
|
76
|
+
sBorderRadius: {
|
|
77
|
+
type: 'px',
|
|
78
|
+
label: '边框圆角',
|
|
79
|
+
groupsName: '搜索框'
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
groupsName: '高级',
|
|
83
|
+
icon: 'icon-ico-comp-app-Search',
|
|
84
|
+
title: '搜索',
|
|
85
|
+
defaultValue: [{
|
|
86
|
+
backgroundColor: '#fff',
|
|
87
|
+
paddingValue: '0 0 0 0',
|
|
88
|
+
borderColor: 'rgba(0,0,0,0)',
|
|
89
|
+
borderRadius: '0',
|
|
90
|
+
sBackgroundColor: '#f7f7f7',
|
|
91
|
+
iconSize: '12px',
|
|
92
|
+
textColor: '#000',
|
|
93
|
+
// lineHeight: '100%',
|
|
94
|
+
fontSize: '14px',
|
|
95
|
+
fontWeight: '400',
|
|
96
|
+
sPaddingValue: '8px 30px 8px 30px',
|
|
97
|
+
sBorderColor: 'rgba(0,0,0,0)',
|
|
98
|
+
sBorderRadius: '18px'
|
|
99
|
+
}],
|
|
100
|
+
tpl: "\n .alita-search-view-wrap{\n --adm-color-background: backgroundColor;\n padding: paddingValue;\n border: 1PX solid borderColor;\n border-radius: borderRadius;\n }\n .alita-search-bar-input{\n background-color: sBackgroundColor;\ncolor: textColor;\nfont-size: fontSize;\nfont-weight: fontWeight;\npadding: sPaddingValue;\nborder-radius: sBorderRadius;\nborder: 1PX solid sBorderColor;\n }\n .alita-search-bar-search{\n width: iconSize;\n height: iconSize;\n }",
|
|
101
|
+
components: [{
|
|
102
|
+
id: 'SearchView_197467',
|
|
103
|
+
label: '搜索',
|
|
104
|
+
compName: 'SearchView',
|
|
105
|
+
type: 'SearchView',
|
|
106
|
+
compType: 1,
|
|
107
|
+
compLib: '@/components',
|
|
108
|
+
props: {
|
|
109
|
+
name: '搜索',
|
|
110
|
+
filterValue: '01',
|
|
111
|
+
filterData: [{
|
|
112
|
+
label: '竣工',
|
|
113
|
+
value: '01'
|
|
114
|
+
}, {
|
|
115
|
+
label: '测试02',
|
|
116
|
+
value: '02'
|
|
117
|
+
}, {
|
|
118
|
+
label: '测试03',
|
|
119
|
+
value: '03'
|
|
120
|
+
}, {
|
|
121
|
+
label: '测试04',
|
|
122
|
+
value: '04'
|
|
123
|
+
}, {
|
|
124
|
+
label: '测试05',
|
|
125
|
+
value: '05'
|
|
126
|
+
}, {
|
|
127
|
+
label: '测试06',
|
|
128
|
+
value: '06'
|
|
129
|
+
}, {
|
|
130
|
+
label: '测试08',
|
|
131
|
+
value: '07'
|
|
132
|
+
}, {
|
|
133
|
+
label: '测试10',
|
|
134
|
+
value: '08'
|
|
135
|
+
}],
|
|
136
|
+
labelAlias: 'label',
|
|
137
|
+
valueAlias: 'value',
|
|
138
|
+
placeholder: '请输入关键字搜索',
|
|
139
|
+
showLeft: true,
|
|
140
|
+
open: false,
|
|
141
|
+
showDateRange: true
|
|
142
|
+
},
|
|
143
|
+
style: {
|
|
144
|
+
padding: '0px 12px 0px 12px'
|
|
145
|
+
},
|
|
146
|
+
isContainer: false,
|
|
147
|
+
isBusiObjContainer: false,
|
|
148
|
+
cmdgroup: ['basic'],
|
|
149
|
+
platform: 'h5',
|
|
150
|
+
setEvents: [],
|
|
151
|
+
description: '',
|
|
152
|
+
image: '',
|
|
153
|
+
groupsName: '高级',
|
|
154
|
+
fieldProps: {
|
|
155
|
+
trigger: 'onChange',
|
|
156
|
+
valuePropName: 'value'
|
|
157
|
+
},
|
|
158
|
+
icon: 'SearchView',
|
|
159
|
+
isLabelDropBoxChild: false,
|
|
160
|
+
components: [],
|
|
161
|
+
path: ['454426', 'View_454426_1']
|
|
162
|
+
}]
|
|
163
|
+
};
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
export declare const StaticTabs: {
|
|
2
|
+
type: string;
|
|
3
|
+
variable: {
|
|
4
|
+
selectBgColor: {
|
|
5
|
+
type: string;
|
|
6
|
+
label: string;
|
|
7
|
+
groupsName: string;
|
|
8
|
+
};
|
|
9
|
+
backgroundColor: {
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
groupsName: string;
|
|
13
|
+
};
|
|
14
|
+
selectBorderRadius: {
|
|
15
|
+
type: string;
|
|
16
|
+
label: string;
|
|
17
|
+
groupsName: string;
|
|
18
|
+
};
|
|
19
|
+
selectTextColor: {
|
|
20
|
+
type: string;
|
|
21
|
+
label: string;
|
|
22
|
+
groupsName: string;
|
|
23
|
+
};
|
|
24
|
+
selectFontWeight: {
|
|
25
|
+
type: string;
|
|
26
|
+
label: string;
|
|
27
|
+
groupsName: string;
|
|
28
|
+
options: {
|
|
29
|
+
title: string;
|
|
30
|
+
value: string;
|
|
31
|
+
}[];
|
|
32
|
+
};
|
|
33
|
+
textColor: {
|
|
34
|
+
type: string;
|
|
35
|
+
label: string;
|
|
36
|
+
groupsName: string;
|
|
37
|
+
};
|
|
38
|
+
lineHeight: {
|
|
39
|
+
type: string;
|
|
40
|
+
label: string;
|
|
41
|
+
groupsName: string;
|
|
42
|
+
};
|
|
43
|
+
fontSize: {
|
|
44
|
+
type: string;
|
|
45
|
+
label: string;
|
|
46
|
+
groupsName: string;
|
|
47
|
+
};
|
|
48
|
+
fontWeight: {
|
|
49
|
+
type: string;
|
|
50
|
+
label: string;
|
|
51
|
+
groupsName: string;
|
|
52
|
+
options: {
|
|
53
|
+
title: string;
|
|
54
|
+
value: string;
|
|
55
|
+
}[];
|
|
56
|
+
};
|
|
57
|
+
borderColor: {
|
|
58
|
+
type: string;
|
|
59
|
+
label: string;
|
|
60
|
+
groupsName: string;
|
|
61
|
+
};
|
|
62
|
+
lineColor: {
|
|
63
|
+
type: string;
|
|
64
|
+
label: string;
|
|
65
|
+
groupsName: string;
|
|
66
|
+
};
|
|
67
|
+
bodyBgColor: {
|
|
68
|
+
type: string;
|
|
69
|
+
label: string;
|
|
70
|
+
groupsName: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
groupsName: string;
|
|
74
|
+
icon: string;
|
|
75
|
+
title: string;
|
|
76
|
+
defaultValue: {
|
|
77
|
+
selectTextColor: string;
|
|
78
|
+
textColor: string;
|
|
79
|
+
selectBgColor: string;
|
|
80
|
+
backgroundColor: string;
|
|
81
|
+
selectFontWeight: string;
|
|
82
|
+
fontWeight: string;
|
|
83
|
+
fontSize: string;
|
|
84
|
+
lineHeight: string;
|
|
85
|
+
selectBorderRadius: string;
|
|
86
|
+
bodyBgColor: string;
|
|
87
|
+
borderColor: string;
|
|
88
|
+
lineColor: string;
|
|
89
|
+
}[];
|
|
90
|
+
tpl: string;
|
|
91
|
+
components: {
|
|
92
|
+
id: string;
|
|
93
|
+
label: string;
|
|
94
|
+
compName: string;
|
|
95
|
+
type: string;
|
|
96
|
+
compType: number;
|
|
97
|
+
compLib: string;
|
|
98
|
+
props: {
|
|
99
|
+
name: string;
|
|
100
|
+
tabDirection: string;
|
|
101
|
+
initialPage: number;
|
|
102
|
+
animated: boolean;
|
|
103
|
+
tabs: {
|
|
104
|
+
title: string;
|
|
105
|
+
id: string;
|
|
106
|
+
isShow: string;
|
|
107
|
+
}[];
|
|
108
|
+
underlineType: string;
|
|
109
|
+
stickyTop: number;
|
|
110
|
+
swipeable: boolean;
|
|
111
|
+
useOnPan: boolean;
|
|
112
|
+
usePaged: boolean;
|
|
113
|
+
prerenderingSiblingsNumber: number;
|
|
114
|
+
tabBarPosition: string;
|
|
115
|
+
};
|
|
116
|
+
style: {
|
|
117
|
+
underlineType: string;
|
|
118
|
+
};
|
|
119
|
+
isContainer: boolean;
|
|
120
|
+
isBusiObjContainer: boolean;
|
|
121
|
+
cmdgroup: string[];
|
|
122
|
+
platform: string;
|
|
123
|
+
engineApi: string[];
|
|
124
|
+
setEvents: never[];
|
|
125
|
+
description: string;
|
|
126
|
+
image: string;
|
|
127
|
+
groupsName: string;
|
|
128
|
+
icon: string;
|
|
129
|
+
isLabelDropBoxChild: boolean;
|
|
130
|
+
components: never[];
|
|
131
|
+
path: string[];
|
|
132
|
+
}[];
|
|
133
|
+
};
|