@lingxiteam/theme-utils 0.5.3 → 0.5.5

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.
Files changed (127) hide show
  1. package/dist/config/Button.d.ts +113 -0
  2. package/dist/config/Button.js +277 -0
  3. package/dist/config/Card.d.ts +144 -0
  4. package/dist/config/Card.js +162 -0
  5. package/dist/config/Cascader.d.ts +196 -0
  6. package/dist/config/Cascader.js +225 -0
  7. package/dist/config/Checkbox.d.ts +162 -0
  8. package/dist/config/Checkbox.js +178 -0
  9. package/dist/config/CheckboxGroup.d.ts +184 -0
  10. package/dist/config/CheckboxGroup.js +192 -0
  11. package/dist/config/Collapse.d.ts +186 -0
  12. package/dist/config/Collapse.js +330 -0
  13. package/dist/config/Container.d.ts +275 -0
  14. package/dist/config/Container.js +301 -0
  15. package/dist/config/DatePicker.d.ts +179 -0
  16. package/dist/config/DatePicker.js +179 -0
  17. package/dist/config/Description.d.ts +106 -0
  18. package/dist/config/Description.js +126 -0
  19. package/dist/config/Divider.d.ts +61 -0
  20. package/dist/config/Divider.js +61 -0
  21. package/dist/config/Form.d.ts +3071 -0
  22. package/dist/config/Form.js +1358 -0
  23. package/dist/config/Icon.d.ts +55 -0
  24. package/dist/config/Icon.js +55 -0
  25. package/dist/config/Input.d.ts +159 -0
  26. package/dist/config/Input.js +159 -0
  27. package/dist/config/InputNumber.d.ts +154 -0
  28. package/dist/config/InputNumber.js +154 -0
  29. package/dist/config/Link.d.ts +128 -0
  30. package/dist/config/Link.js +120 -0
  31. package/dist/config/MultipleSelect.d.ts +167 -0
  32. package/dist/config/MultipleSelect.js +175 -0
  33. package/dist/config/Radio.d.ts +239 -0
  34. package/dist/config/Radio.js +261 -0
  35. package/dist/config/RangePicker.d.ts +182 -0
  36. package/dist/config/RangePicker.js +182 -0
  37. package/dist/config/Select.d.ts +190 -0
  38. package/dist/config/Select.js +198 -0
  39. package/dist/config/StdUpload.d.ts +197 -0
  40. package/dist/config/StdUpload.js +211 -0
  41. package/dist/config/Switch.d.ts +141 -0
  42. package/dist/config/Switch.js +151 -0
  43. package/dist/config/Table.d.ts +482 -0
  44. package/dist/config/Table.js +560 -0
  45. package/dist/config/Tabs.d.ts +230 -0
  46. package/dist/config/Tabs.js +970 -0
  47. package/dist/config/Tag.d.ts +173 -0
  48. package/dist/config/Tag.js +548 -0
  49. package/dist/config/Text.d.ts +34 -0
  50. package/dist/config/Text.js +34 -0
  51. package/dist/config/TextArea.d.ts +151 -0
  52. package/dist/config/TextArea.js +151 -0
  53. package/dist/config/TimePicker.d.ts +180 -0
  54. package/dist/config/TimePicker.js +180 -0
  55. package/dist/config/Tree.d.ts +151 -0
  56. package/dist/config/Tree.js +195 -0
  57. package/dist/config/TreeSelect.d.ts +197 -0
  58. package/dist/config/TreeSelect.js +213 -0
  59. package/dist/css.d.ts +6 -0
  60. package/dist/css.js +126 -0
  61. package/dist/demo.d.ts +5 -0
  62. package/dist/demo.js +79 -0
  63. package/dist/h5config/Accordion.d.ts +410 -0
  64. package/dist/h5config/Accordion.js +548 -0
  65. package/dist/h5config/Button.d.ts +142 -0
  66. package/dist/h5config/Button.js +253 -0
  67. package/dist/h5config/Card.d.ts +275 -0
  68. package/dist/h5config/Card.js +535 -0
  69. package/dist/h5config/DAddressPicker.d.ts +188 -0
  70. package/dist/h5config/DAddressPicker.js +230 -0
  71. package/dist/h5config/DCheckbox.d.ts +202 -0
  72. package/dist/h5config/DCheckbox.js +248 -0
  73. package/dist/h5config/DForm.d.ts +1597 -0
  74. package/dist/h5config/DForm.js +932 -0
  75. package/dist/h5config/DMultiplePicker.d.ts +189 -0
  76. package/dist/h5config/DMultiplePicker.js +235 -0
  77. package/dist/h5config/DformDate.d.ts +191 -0
  78. package/dist/h5config/DformDate.js +233 -0
  79. package/dist/h5config/DformFile.d.ts +277 -0
  80. package/dist/h5config/DformFile.js +292 -0
  81. package/dist/h5config/DformImagePicker.d.ts +138 -0
  82. package/dist/h5config/DformImagePicker.js +156 -0
  83. package/dist/h5config/DformInput.d.ts +189 -0
  84. package/dist/h5config/DformInput.js +231 -0
  85. package/dist/h5config/DformInputNumber.d.ts +173 -0
  86. package/dist/h5config/DformInputNumber.js +215 -0
  87. package/dist/h5config/DformPicker.d.ts +190 -0
  88. package/dist/h5config/DformPicker.js +236 -0
  89. package/dist/h5config/DformRadio.d.ts +210 -0
  90. package/dist/h5config/DformRadio.js +256 -0
  91. package/dist/h5config/DformRangePicker.d.ts +195 -0
  92. package/dist/h5config/DformRangePicker.js +237 -0
  93. package/dist/h5config/DformSelect.d.ts +198 -0
  94. package/dist/h5config/DformSelect.js +262 -0
  95. package/dist/h5config/DformSwitch.d.ts +145 -0
  96. package/dist/h5config/DformSwitch.js +163 -0
  97. package/dist/h5config/DformTextArea.d.ts +184 -0
  98. package/dist/h5config/DformTextArea.js +226 -0
  99. package/dist/h5config/Divider.d.ts +53 -0
  100. package/dist/h5config/Divider.js +90 -0
  101. package/dist/h5config/FilterItems.d.ts +154 -0
  102. package/dist/h5config/FilterItems.js +204 -0
  103. package/dist/h5config/Grid.d.ts +235 -0
  104. package/dist/h5config/Grid.js +278 -0
  105. package/dist/h5config/Icon.d.ts +54 -0
  106. package/dist/h5config/Icon.js +54 -0
  107. package/dist/h5config/Link.d.ts +51 -0
  108. package/dist/h5config/Link.js +51 -0
  109. package/dist/h5config/LoadMore.d.ts +527 -0
  110. package/dist/h5config/LoadMore.js +940 -0
  111. package/dist/h5config/NoticeBarPlus.d.ts +111 -0
  112. package/dist/h5config/NoticeBarPlus.js +141 -0
  113. package/dist/h5config/SearchView.d.ts +135 -0
  114. package/dist/h5config/SearchView.js +177 -0
  115. package/dist/h5config/StaticTabs.d.ts +121 -0
  116. package/dist/h5config/StaticTabs.js +180 -0
  117. package/dist/h5config/Table.d.ts +197 -0
  118. package/dist/h5config/Table.js +589 -0
  119. package/dist/index.d.ts +4 -0
  120. package/dist/index.js +4 -0
  121. package/dist/lx-mobile.d.ts +23 -0
  122. package/dist/lx-mobile.js +174 -0
  123. package/dist/lx.d.ts +24 -0
  124. package/dist/lx.js +139 -0
  125. package/dist/utils.d.ts +12 -0
  126. package/dist/utils.js +67 -0
  127. package/package.json +1 -1
@@ -0,0 +1,410 @@
1
+ export declare const Accordion: {
2
+ type: string;
3
+ variable: {
4
+ backgroundColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ bodyBgColor: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ };
14
+ textColor: {
15
+ type: string;
16
+ label: string;
17
+ groupsName: string;
18
+ followTheme: string;
19
+ };
20
+ fontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ };
25
+ lineHeight: {
26
+ type: string;
27
+ label: string;
28
+ groupsName: string;
29
+ };
30
+ fontWeight: {
31
+ type: string;
32
+ label: string;
33
+ groupsName: string;
34
+ options: {
35
+ title: string;
36
+ value: string;
37
+ }[];
38
+ };
39
+ borderRadius: {
40
+ type: string;
41
+ label: string;
42
+ groupsName: string;
43
+ };
44
+ borderColor: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ followTheme: string;
49
+ };
50
+ titleColor: {
51
+ type: string;
52
+ label: string;
53
+ groupsName: string;
54
+ followTheme: string;
55
+ };
56
+ tagSize: {
57
+ type: string;
58
+ label: string;
59
+ groupsName: string;
60
+ };
61
+ tagMargin: {
62
+ type: string;
63
+ label: string;
64
+ groupsName: string;
65
+ };
66
+ arrowColor: {
67
+ type: string;
68
+ label: string;
69
+ groupsName: string;
70
+ followTheme: string;
71
+ };
72
+ arrowSize: {
73
+ type: string;
74
+ label: string;
75
+ groupsName: string;
76
+ };
77
+ };
78
+ hasPrefixClass: boolean;
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
+ tagSize: string;
90
+ tagMargin: string;
91
+ arrowColor: string;
92
+ arrowSize: string;
93
+ bodyBgColor: string;
94
+ borderColor: string;
95
+ borderRadius: string;
96
+ }[];
97
+ followThemes: {
98
+ '@brand-primary': string[];
99
+ '@color-text-base': never[];
100
+ '@border-color-base': never[];
101
+ };
102
+ tpl: string;
103
+ components: ({
104
+ id: string;
105
+ label: string;
106
+ compName: string;
107
+ type: string;
108
+ compType: number;
109
+ compLib: string;
110
+ props: {
111
+ name: string;
112
+ visible: number;
113
+ bordered: boolean;
114
+ accordion: boolean;
115
+ data: never[];
116
+ cardIconType: string;
117
+ defaultActiveKey: string[];
118
+ basicStatus?: undefined;
119
+ };
120
+ style: {
121
+ textAlign?: undefined;
122
+ display?: undefined;
123
+ flexDirection?: undefined;
124
+ padding?: undefined;
125
+ width?: undefined;
126
+ backgroundColor?: undefined;
127
+ height?: undefined;
128
+ };
129
+ isContainer: boolean;
130
+ isBusiObjContainer: boolean;
131
+ cmdgroup: string[];
132
+ platform: string;
133
+ description: string;
134
+ image: string;
135
+ groupsName: string;
136
+ icon: string;
137
+ setEvents: never[];
138
+ isLabelDropBoxChild: boolean;
139
+ components: {
140
+ id: string;
141
+ label: string;
142
+ compName: string;
143
+ type: string;
144
+ compType: number;
145
+ compLib: string;
146
+ props: {
147
+ name: string;
148
+ visible: boolean;
149
+ header: string;
150
+ key: string;
151
+ };
152
+ style: {};
153
+ isContainer: boolean;
154
+ isBusiObjContainer: boolean;
155
+ cmdgroup: string[];
156
+ platform: string;
157
+ engineApi: string[];
158
+ description: string;
159
+ image: string;
160
+ groupsName: string;
161
+ icon: string;
162
+ setEvents: never[];
163
+ isLabelDropBoxChild: boolean;
164
+ components: {
165
+ id: string;
166
+ label: string;
167
+ compName: string;
168
+ type: string;
169
+ compType: number;
170
+ compLib: string;
171
+ props: {
172
+ name: string;
173
+ };
174
+ style: {
175
+ padding: string;
176
+ };
177
+ isContainer: boolean;
178
+ isBusiObjContainer: boolean;
179
+ cmdgroup: string[];
180
+ platform: string;
181
+ fieldProps: {
182
+ trigger: string;
183
+ valuePropName: string;
184
+ };
185
+ isInlineBlock: boolean;
186
+ setEvents: never[];
187
+ icon: string;
188
+ description: string;
189
+ image: string;
190
+ groupsName: string;
191
+ transform: {
192
+ value: string;
193
+ };
194
+ isLabelDropBoxChild: boolean;
195
+ components: never[];
196
+ path: string[];
197
+ }[];
198
+ path: string[];
199
+ }[];
200
+ path: string[];
201
+ engineApi?: undefined;
202
+ } | {
203
+ id: string;
204
+ label: string;
205
+ compName: string;
206
+ type: string;
207
+ compType: number;
208
+ compLib: string;
209
+ props: {
210
+ name: string;
211
+ basicStatus: number;
212
+ visible?: undefined;
213
+ bordered?: undefined;
214
+ accordion?: undefined;
215
+ data?: undefined;
216
+ cardIconType?: undefined;
217
+ defaultActiveKey?: undefined;
218
+ };
219
+ style: {
220
+ textAlign: string;
221
+ display: string;
222
+ flexDirection: string;
223
+ padding: string;
224
+ width: string;
225
+ backgroundColor: string;
226
+ height: string;
227
+ };
228
+ isContainer: boolean;
229
+ isBusiObjContainer: boolean;
230
+ cmdgroup: string[];
231
+ platform: string;
232
+ icon: string;
233
+ description: string;
234
+ image: string;
235
+ groupsName: string;
236
+ engineApi: string[];
237
+ setEvents: never[];
238
+ isLabelDropBoxChild: boolean;
239
+ components: never[];
240
+ path: string[];
241
+ } | {
242
+ id: string;
243
+ label: string;
244
+ compName: string;
245
+ type: string;
246
+ compType: number;
247
+ compLib: string;
248
+ props: {
249
+ name: string;
250
+ visible: number;
251
+ bordered: boolean;
252
+ accordion: boolean;
253
+ data: never[];
254
+ cardIconType: string;
255
+ defaultActiveKey: string[];
256
+ basicStatus?: undefined;
257
+ };
258
+ style: {
259
+ textAlign?: undefined;
260
+ display?: undefined;
261
+ flexDirection?: undefined;
262
+ padding?: undefined;
263
+ width?: undefined;
264
+ backgroundColor?: undefined;
265
+ height?: undefined;
266
+ };
267
+ isContainer: boolean;
268
+ isBusiObjContainer: boolean;
269
+ cmdgroup: string[];
270
+ platform: string;
271
+ description: string;
272
+ image: string;
273
+ groupsName: string;
274
+ icon: string;
275
+ setEvents: never[];
276
+ isLabelDropBoxChild: boolean;
277
+ components: {
278
+ id: string;
279
+ label: string;
280
+ compName: string;
281
+ type: string;
282
+ compType: number;
283
+ compLib: string;
284
+ props: {
285
+ name: string;
286
+ visible: boolean;
287
+ header: string;
288
+ key: string;
289
+ };
290
+ style: {};
291
+ isContainer: boolean;
292
+ isBusiObjContainer: boolean;
293
+ cmdgroup: string[];
294
+ platform: string;
295
+ engineApi: string[];
296
+ description: string;
297
+ image: string;
298
+ groupsName: string;
299
+ icon: string;
300
+ setEvents: never[];
301
+ isLabelDropBoxChild: boolean;
302
+ components: {
303
+ id: string;
304
+ label: string;
305
+ compName: string;
306
+ type: string;
307
+ compType: number;
308
+ compLib: string;
309
+ props: {
310
+ name: string;
311
+ };
312
+ style: {
313
+ padding: string;
314
+ textAlign: string;
315
+ lineHeight: string;
316
+ fontSize: number;
317
+ border: string;
318
+ };
319
+ isContainer: boolean;
320
+ isBusiObjContainer: boolean;
321
+ cmdgroup: string[];
322
+ platform: string;
323
+ fieldProps: {
324
+ trigger: string;
325
+ valuePropName: string;
326
+ };
327
+ isInlineBlock: boolean;
328
+ setEvents: never[];
329
+ icon: string;
330
+ description: string;
331
+ image: string;
332
+ groupsName: string;
333
+ transform: {
334
+ value: string;
335
+ };
336
+ isLabelDropBoxChild: boolean;
337
+ components: never[];
338
+ path: string[];
339
+ }[];
340
+ path: string[];
341
+ }[];
342
+ path: string[];
343
+ engineApi?: undefined;
344
+ } | {
345
+ id: string;
346
+ label: string;
347
+ compName: string;
348
+ type: string;
349
+ compType: number;
350
+ compLib: string;
351
+ props: {
352
+ name: string;
353
+ visible: number;
354
+ bordered: boolean;
355
+ accordion: boolean;
356
+ data: never[];
357
+ cardIconType: string;
358
+ defaultActiveKey: string[];
359
+ basicStatus?: undefined;
360
+ };
361
+ style: {
362
+ textAlign?: undefined;
363
+ display?: undefined;
364
+ flexDirection?: undefined;
365
+ padding?: undefined;
366
+ width?: undefined;
367
+ backgroundColor?: undefined;
368
+ height?: undefined;
369
+ };
370
+ isContainer: boolean;
371
+ isBusiObjContainer: boolean;
372
+ cmdgroup: string[];
373
+ platform: string;
374
+ description: string;
375
+ image: string;
376
+ groupsName: string;
377
+ icon: string;
378
+ setEvents: never[];
379
+ isLabelDropBoxChild: boolean;
380
+ components: {
381
+ id: string;
382
+ label: string;
383
+ compName: string;
384
+ type: string;
385
+ compType: number;
386
+ compLib: string;
387
+ props: {
388
+ name: string;
389
+ visible: boolean;
390
+ header: string;
391
+ key: string;
392
+ };
393
+ style: {};
394
+ isContainer: boolean;
395
+ isBusiObjContainer: boolean;
396
+ cmdgroup: string[];
397
+ platform: string;
398
+ description: string;
399
+ image: string;
400
+ groupsName: string;
401
+ icon: string;
402
+ setEvents: never[];
403
+ isLabelDropBoxChild: boolean;
404
+ components: never[];
405
+ path: string[];
406
+ }[];
407
+ path: string[];
408
+ engineApi?: undefined;
409
+ })[];
410
+ };