@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,338 @@
|
|
|
1
|
+
export declare const Accordion: {
|
|
2
|
+
type: string;
|
|
3
|
+
variable: {
|
|
4
|
+
textColor: {
|
|
5
|
+
type: string;
|
|
6
|
+
label: string;
|
|
7
|
+
groupsName: string;
|
|
8
|
+
};
|
|
9
|
+
lineHeight: {
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
groupsName: string;
|
|
13
|
+
};
|
|
14
|
+
fontSize: {
|
|
15
|
+
type: string;
|
|
16
|
+
label: string;
|
|
17
|
+
groupsName: string;
|
|
18
|
+
};
|
|
19
|
+
fontWeight: {
|
|
20
|
+
type: string;
|
|
21
|
+
label: string;
|
|
22
|
+
groupsName: string;
|
|
23
|
+
options: {
|
|
24
|
+
title: string;
|
|
25
|
+
value: string;
|
|
26
|
+
}[];
|
|
27
|
+
};
|
|
28
|
+
backgroundColor: {
|
|
29
|
+
type: string;
|
|
30
|
+
label: string;
|
|
31
|
+
groupsName: string;
|
|
32
|
+
};
|
|
33
|
+
titleColor: {
|
|
34
|
+
type: string;
|
|
35
|
+
label: string;
|
|
36
|
+
groupsName: string;
|
|
37
|
+
};
|
|
38
|
+
lineColor: {
|
|
39
|
+
type: string;
|
|
40
|
+
label: string;
|
|
41
|
+
groupsName: string;
|
|
42
|
+
};
|
|
43
|
+
tagSize: {
|
|
44
|
+
type: string;
|
|
45
|
+
label: string;
|
|
46
|
+
groupsName: string;
|
|
47
|
+
};
|
|
48
|
+
tagMargin: {
|
|
49
|
+
type: string;
|
|
50
|
+
label: string;
|
|
51
|
+
groupsName: string;
|
|
52
|
+
};
|
|
53
|
+
arrowColor: {
|
|
54
|
+
type: string;
|
|
55
|
+
label: string;
|
|
56
|
+
groupsName: string;
|
|
57
|
+
};
|
|
58
|
+
arrowSize: {
|
|
59
|
+
type: string;
|
|
60
|
+
label: string;
|
|
61
|
+
groupsName: string;
|
|
62
|
+
};
|
|
63
|
+
bodyBgColor: {
|
|
64
|
+
type: string;
|
|
65
|
+
label: string;
|
|
66
|
+
groupsName: string;
|
|
67
|
+
};
|
|
68
|
+
borderColor: {
|
|
69
|
+
type: string;
|
|
70
|
+
label: string;
|
|
71
|
+
groupsName: string;
|
|
72
|
+
};
|
|
73
|
+
borderRadius: {
|
|
74
|
+
type: string;
|
|
75
|
+
label: string;
|
|
76
|
+
groupsName: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
groupsName: string;
|
|
80
|
+
icon: string;
|
|
81
|
+
title: string;
|
|
82
|
+
defaultValue: {
|
|
83
|
+
textColor: string;
|
|
84
|
+
lineHeight: string;
|
|
85
|
+
fontSize: string;
|
|
86
|
+
fontWeight: string;
|
|
87
|
+
backgroundColor: string;
|
|
88
|
+
titleColor: string;
|
|
89
|
+
lineColor: string;
|
|
90
|
+
tagSize: string;
|
|
91
|
+
tagMargin: string;
|
|
92
|
+
arrowColor: string;
|
|
93
|
+
arrowSize: string;
|
|
94
|
+
bodyBgColor: string;
|
|
95
|
+
borderColor: string;
|
|
96
|
+
borderRadius: string;
|
|
97
|
+
}[];
|
|
98
|
+
tpl: string;
|
|
99
|
+
components: ({
|
|
100
|
+
id: string;
|
|
101
|
+
label: string;
|
|
102
|
+
compName: string;
|
|
103
|
+
type: string;
|
|
104
|
+
compType: number;
|
|
105
|
+
compLib: string;
|
|
106
|
+
props: {
|
|
107
|
+
name: string;
|
|
108
|
+
visible: number;
|
|
109
|
+
bordered: boolean;
|
|
110
|
+
accordion: boolean;
|
|
111
|
+
data: never[];
|
|
112
|
+
cardIconType: string;
|
|
113
|
+
defaultActiveKey: string[];
|
|
114
|
+
basicStatus?: undefined;
|
|
115
|
+
};
|
|
116
|
+
style: {
|
|
117
|
+
textAlign?: undefined;
|
|
118
|
+
display?: undefined;
|
|
119
|
+
flexDirection?: undefined;
|
|
120
|
+
padding?: undefined;
|
|
121
|
+
width?: undefined;
|
|
122
|
+
backgroundColor?: undefined;
|
|
123
|
+
height?: undefined;
|
|
124
|
+
};
|
|
125
|
+
isContainer: boolean;
|
|
126
|
+
isBusiObjContainer: boolean;
|
|
127
|
+
cmdgroup: string[];
|
|
128
|
+
platform: string;
|
|
129
|
+
description: string;
|
|
130
|
+
image: string;
|
|
131
|
+
groupsName: string;
|
|
132
|
+
icon: string;
|
|
133
|
+
setEvents: never[];
|
|
134
|
+
isLabelDropBoxChild: boolean;
|
|
135
|
+
components: {
|
|
136
|
+
id: string;
|
|
137
|
+
label: string;
|
|
138
|
+
compName: string;
|
|
139
|
+
type: string;
|
|
140
|
+
compType: number;
|
|
141
|
+
compLib: string;
|
|
142
|
+
props: {
|
|
143
|
+
name: string;
|
|
144
|
+
visible: boolean;
|
|
145
|
+
header: string;
|
|
146
|
+
key: string;
|
|
147
|
+
};
|
|
148
|
+
style: {};
|
|
149
|
+
isContainer: boolean;
|
|
150
|
+
isBusiObjContainer: boolean;
|
|
151
|
+
cmdgroup: string[];
|
|
152
|
+
platform: string;
|
|
153
|
+
engineApi: string[];
|
|
154
|
+
description: string;
|
|
155
|
+
image: string;
|
|
156
|
+
groupsName: string;
|
|
157
|
+
icon: string;
|
|
158
|
+
setEvents: never[];
|
|
159
|
+
isLabelDropBoxChild: boolean;
|
|
160
|
+
components: {
|
|
161
|
+
id: string;
|
|
162
|
+
label: string;
|
|
163
|
+
compName: string;
|
|
164
|
+
type: string;
|
|
165
|
+
compType: number;
|
|
166
|
+
compLib: string;
|
|
167
|
+
props: {
|
|
168
|
+
name: string;
|
|
169
|
+
};
|
|
170
|
+
style: {};
|
|
171
|
+
isContainer: boolean;
|
|
172
|
+
isBusiObjContainer: boolean;
|
|
173
|
+
cmdgroup: string[];
|
|
174
|
+
platform: string;
|
|
175
|
+
fieldProps: {
|
|
176
|
+
trigger: string;
|
|
177
|
+
valuePropName: string;
|
|
178
|
+
};
|
|
179
|
+
isInlineBlock: boolean;
|
|
180
|
+
setEvents: never[];
|
|
181
|
+
icon: string;
|
|
182
|
+
description: string;
|
|
183
|
+
image: string;
|
|
184
|
+
groupsName: string;
|
|
185
|
+
transform: {
|
|
186
|
+
value: string;
|
|
187
|
+
};
|
|
188
|
+
isLabelDropBoxChild: boolean;
|
|
189
|
+
components: never[];
|
|
190
|
+
path: string[];
|
|
191
|
+
}[];
|
|
192
|
+
path: string[];
|
|
193
|
+
}[];
|
|
194
|
+
path: string[];
|
|
195
|
+
engineApi?: undefined;
|
|
196
|
+
} | {
|
|
197
|
+
id: string;
|
|
198
|
+
label: string;
|
|
199
|
+
compName: string;
|
|
200
|
+
type: string;
|
|
201
|
+
compType: number;
|
|
202
|
+
compLib: string;
|
|
203
|
+
props: {
|
|
204
|
+
name: string;
|
|
205
|
+
basicStatus: number;
|
|
206
|
+
visible?: undefined;
|
|
207
|
+
bordered?: undefined;
|
|
208
|
+
accordion?: undefined;
|
|
209
|
+
data?: undefined;
|
|
210
|
+
cardIconType?: undefined;
|
|
211
|
+
defaultActiveKey?: undefined;
|
|
212
|
+
};
|
|
213
|
+
style: {
|
|
214
|
+
textAlign: string;
|
|
215
|
+
display: string;
|
|
216
|
+
flexDirection: string;
|
|
217
|
+
padding: string;
|
|
218
|
+
width: string;
|
|
219
|
+
backgroundColor: string;
|
|
220
|
+
height: string;
|
|
221
|
+
};
|
|
222
|
+
isContainer: boolean;
|
|
223
|
+
isBusiObjContainer: boolean;
|
|
224
|
+
cmdgroup: string[];
|
|
225
|
+
platform: string;
|
|
226
|
+
icon: string;
|
|
227
|
+
description: string;
|
|
228
|
+
image: string;
|
|
229
|
+
groupsName: string;
|
|
230
|
+
engineApi: string[];
|
|
231
|
+
setEvents: never[];
|
|
232
|
+
isLabelDropBoxChild: boolean;
|
|
233
|
+
components: never[];
|
|
234
|
+
path: string[];
|
|
235
|
+
} | {
|
|
236
|
+
id: string;
|
|
237
|
+
label: string;
|
|
238
|
+
compName: string;
|
|
239
|
+
type: string;
|
|
240
|
+
compType: number;
|
|
241
|
+
compLib: string;
|
|
242
|
+
props: {
|
|
243
|
+
name: string;
|
|
244
|
+
visible: number;
|
|
245
|
+
bordered: boolean;
|
|
246
|
+
accordion: boolean;
|
|
247
|
+
data: never[];
|
|
248
|
+
cardIconType: string;
|
|
249
|
+
defaultActiveKey: string[];
|
|
250
|
+
basicStatus?: undefined;
|
|
251
|
+
};
|
|
252
|
+
style: {
|
|
253
|
+
textAlign?: undefined;
|
|
254
|
+
display?: undefined;
|
|
255
|
+
flexDirection?: undefined;
|
|
256
|
+
padding?: undefined;
|
|
257
|
+
width?: undefined;
|
|
258
|
+
backgroundColor?: undefined;
|
|
259
|
+
height?: undefined;
|
|
260
|
+
};
|
|
261
|
+
isContainer: boolean;
|
|
262
|
+
isBusiObjContainer: boolean;
|
|
263
|
+
cmdgroup: string[];
|
|
264
|
+
platform: string;
|
|
265
|
+
description: string;
|
|
266
|
+
image: string;
|
|
267
|
+
groupsName: string;
|
|
268
|
+
icon: string;
|
|
269
|
+
setEvents: never[];
|
|
270
|
+
isLabelDropBoxChild: boolean;
|
|
271
|
+
components: {
|
|
272
|
+
id: string;
|
|
273
|
+
label: string;
|
|
274
|
+
compName: string;
|
|
275
|
+
type: string;
|
|
276
|
+
compType: number;
|
|
277
|
+
compLib: string;
|
|
278
|
+
props: {
|
|
279
|
+
name: string;
|
|
280
|
+
visible: boolean;
|
|
281
|
+
header: string;
|
|
282
|
+
key: string;
|
|
283
|
+
};
|
|
284
|
+
style: {};
|
|
285
|
+
isContainer: boolean;
|
|
286
|
+
isBusiObjContainer: boolean;
|
|
287
|
+
cmdgroup: string[];
|
|
288
|
+
platform: string;
|
|
289
|
+
engineApi: string[];
|
|
290
|
+
description: string;
|
|
291
|
+
image: string;
|
|
292
|
+
groupsName: string;
|
|
293
|
+
icon: string;
|
|
294
|
+
setEvents: never[];
|
|
295
|
+
isLabelDropBoxChild: boolean;
|
|
296
|
+
components: {
|
|
297
|
+
id: string;
|
|
298
|
+
label: string;
|
|
299
|
+
compName: string;
|
|
300
|
+
type: string;
|
|
301
|
+
compType: number;
|
|
302
|
+
compLib: string;
|
|
303
|
+
props: {
|
|
304
|
+
name: string;
|
|
305
|
+
};
|
|
306
|
+
style: {
|
|
307
|
+
textAlign: string;
|
|
308
|
+
lineHeight: string;
|
|
309
|
+
fontSize: number;
|
|
310
|
+
border: string;
|
|
311
|
+
};
|
|
312
|
+
isContainer: boolean;
|
|
313
|
+
isBusiObjContainer: boolean;
|
|
314
|
+
cmdgroup: string[];
|
|
315
|
+
platform: string;
|
|
316
|
+
fieldProps: {
|
|
317
|
+
trigger: string;
|
|
318
|
+
valuePropName: string;
|
|
319
|
+
};
|
|
320
|
+
isInlineBlock: boolean;
|
|
321
|
+
setEvents: never[];
|
|
322
|
+
icon: string;
|
|
323
|
+
description: string;
|
|
324
|
+
image: string;
|
|
325
|
+
groupsName: string;
|
|
326
|
+
transform: {
|
|
327
|
+
value: string;
|
|
328
|
+
};
|
|
329
|
+
isLabelDropBoxChild: boolean;
|
|
330
|
+
components: never[];
|
|
331
|
+
path: string[];
|
|
332
|
+
}[];
|
|
333
|
+
path: string[];
|
|
334
|
+
}[];
|
|
335
|
+
path: string[];
|
|
336
|
+
engineApi?: undefined;
|
|
337
|
+
})[];
|
|
338
|
+
};
|