@itcase/ui 1.0.65 → 1.0.70
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/components/Accordion.js +349 -0
- package/dist/components/Avatar.js +100 -0
- package/dist/components/Background.js +172 -0
- package/dist/components/Badge.js +109 -32
- package/dist/components/Breadcrumbs.js +414 -0
- package/dist/components/Button.js +364 -59
- package/dist/components/Caption.js +129 -0
- package/dist/components/Card.js +171 -0
- package/dist/components/Cell.js +190 -0
- package/dist/components/Checkbox.js +14 -0
- package/dist/components/Chips.js +251 -2
- package/dist/components/Choice.js +60 -0
- package/dist/components/Code.js +119 -0
- package/dist/components/ContextMenu.js +83 -0
- package/dist/components/CookiesWarning.js +55 -6
- package/dist/components/DadataHintField.js +49 -0
- package/dist/components/DatePicker.js +71 -8
- package/dist/components/Divider.js +165 -0
- package/dist/components/Dot.js +157 -0
- package/dist/components/Drawer.js +77 -0
- package/dist/components/Dropdown.js +421 -0
- package/dist/components/Empty.js +124 -3
- package/dist/components/Fader.js +128 -0
- package/dist/components/Flex.js +898 -0
- package/dist/components/FormField.js +306 -2
- package/dist/components/Grid.js +1299 -0
- package/dist/components/Group.js +377 -0
- package/dist/components/Icon.js +342 -0
- package/dist/components/Image.js +326 -0
- package/dist/components/Input.js +88 -0
- package/dist/components/InputPassword.js +88 -0
- package/dist/components/Label.js +255 -1
- package/dist/components/LanguageSelector.js +35 -0
- package/dist/components/Link.js +324 -0
- package/dist/components/List.js +349 -0
- package/dist/components/Loader.js +49 -0
- package/dist/components/Logo.js +49 -0
- package/dist/components/Menu.js +98 -0
- package/dist/components/MenuItem.js +386 -0
- package/dist/components/Modal.js +147 -0
- package/dist/components/Notification.js +133 -0
- package/dist/components/Page.js +422 -0
- package/dist/components/Pagination.js +30 -2
- package/dist/components/RadioButton.js +28 -0
- package/dist/components/RangeSlider.js +171 -0
- package/dist/components/Scrollbar.js +14 -0
- package/dist/components/Search.js +299 -0
- package/dist/components/Segmented.js +60 -0
- package/dist/components/Select.js +524 -1
- package/dist/components/SiteMenu.js +70 -0
- package/dist/components/Swiper.js +361 -0
- package/dist/components/Switch.js +49 -0
- package/dist/components/Tab.js +750 -3
- package/dist/components/Text.js +218 -2
- package/dist/components/Textarea.js +78 -2
- package/dist/components/Tile.js +366 -2
- package/dist/components/Title.js +235 -0
- package/dist/components/Tooltip.js +195 -0
- package/dist/components/Video.js +98 -0
- package/dist/components/Wrapper.js +316 -0
- package/dist/constants/componentProps/iconSize.js +1 -1
- package/dist/constants/componentProps/itemColor.js +5 -0
- package/dist/constants/componentProps/size.js +1 -1
- package/dist/constants/componentProps/textSize.js +5 -0
- package/dist/constants/componentProps/textWrap.js +5 -0
- package/dist/constants.js +8 -2
- package/dist/context/Notifications.js +14 -0
- package/dist/css/components/Badge/Badge.css +1 -1
- package/dist/css/components/Button/Button.css +1 -1
- package/dist/css/components/DatePicker/DatePicker.css +6 -1
- package/dist/css/components/Page/Page.css +8 -0
- package/dist/css/components/RadioButton/RadioButton.css +19 -19
- package/dist/css/components/Segmented/Segmented.css +6 -8
- package/dist/css/styles/constraints/constraints.css +42 -29
- package/dist/css/styles/width/width.css +3 -1
- package/package.json +2 -1
package/dist/components/Link.js
CHANGED
|
@@ -170,6 +170,330 @@ LinkWrapper.propTypes = {
|
|
|
170
170
|
target: PropTypes__default.default.string,
|
|
171
171
|
rel: PropTypes__default.default.string
|
|
172
172
|
};
|
|
173
|
+
Link.__docgenInfo = {
|
|
174
|
+
"description": "",
|
|
175
|
+
"methods": [],
|
|
176
|
+
"displayName": "Link",
|
|
177
|
+
"props": {
|
|
178
|
+
"underline": {
|
|
179
|
+
"defaultValue": {
|
|
180
|
+
"value": "'underline'",
|
|
181
|
+
"computed": false
|
|
182
|
+
},
|
|
183
|
+
"description": "",
|
|
184
|
+
"type": {
|
|
185
|
+
"name": "enum",
|
|
186
|
+
"computed": true,
|
|
187
|
+
"value": "underlineProps"
|
|
188
|
+
},
|
|
189
|
+
"required": false
|
|
190
|
+
},
|
|
191
|
+
"after": {
|
|
192
|
+
"description": "",
|
|
193
|
+
"type": {
|
|
194
|
+
"name": "any"
|
|
195
|
+
},
|
|
196
|
+
"required": false
|
|
197
|
+
},
|
|
198
|
+
"before": {
|
|
199
|
+
"description": "",
|
|
200
|
+
"type": {
|
|
201
|
+
"name": "any"
|
|
202
|
+
},
|
|
203
|
+
"required": false
|
|
204
|
+
},
|
|
205
|
+
"children": {
|
|
206
|
+
"description": "",
|
|
207
|
+
"type": {
|
|
208
|
+
"name": "any"
|
|
209
|
+
},
|
|
210
|
+
"required": false
|
|
211
|
+
},
|
|
212
|
+
"className": {
|
|
213
|
+
"description": "",
|
|
214
|
+
"type": {
|
|
215
|
+
"name": "string"
|
|
216
|
+
},
|
|
217
|
+
"required": false
|
|
218
|
+
},
|
|
219
|
+
"fill": {
|
|
220
|
+
"description": "",
|
|
221
|
+
"type": {
|
|
222
|
+
"name": "enum",
|
|
223
|
+
"computed": true,
|
|
224
|
+
"value": "fillProps"
|
|
225
|
+
},
|
|
226
|
+
"required": false
|
|
227
|
+
},
|
|
228
|
+
"fillDesktop": {
|
|
229
|
+
"description": "",
|
|
230
|
+
"type": {
|
|
231
|
+
"name": "enum",
|
|
232
|
+
"computed": true,
|
|
233
|
+
"value": "fillProps"
|
|
234
|
+
},
|
|
235
|
+
"required": false
|
|
236
|
+
},
|
|
237
|
+
"fillMobile": {
|
|
238
|
+
"description": "",
|
|
239
|
+
"type": {
|
|
240
|
+
"name": "enum",
|
|
241
|
+
"computed": true,
|
|
242
|
+
"value": "fillProps"
|
|
243
|
+
},
|
|
244
|
+
"required": false
|
|
245
|
+
},
|
|
246
|
+
"fillTablet": {
|
|
247
|
+
"description": "",
|
|
248
|
+
"type": {
|
|
249
|
+
"name": "enum",
|
|
250
|
+
"computed": true,
|
|
251
|
+
"value": "fillProps"
|
|
252
|
+
},
|
|
253
|
+
"required": false
|
|
254
|
+
},
|
|
255
|
+
"LinkComponent": {
|
|
256
|
+
"description": "",
|
|
257
|
+
"type": {
|
|
258
|
+
"name": "any"
|
|
259
|
+
},
|
|
260
|
+
"required": false
|
|
261
|
+
},
|
|
262
|
+
"href": {
|
|
263
|
+
"description": "",
|
|
264
|
+
"type": {
|
|
265
|
+
"name": "string"
|
|
266
|
+
},
|
|
267
|
+
"required": false
|
|
268
|
+
},
|
|
269
|
+
"link": {
|
|
270
|
+
"description": "",
|
|
271
|
+
"type": {
|
|
272
|
+
"name": "string"
|
|
273
|
+
},
|
|
274
|
+
"required": false
|
|
275
|
+
},
|
|
276
|
+
"rel": {
|
|
277
|
+
"description": "",
|
|
278
|
+
"type": {
|
|
279
|
+
"name": "string"
|
|
280
|
+
},
|
|
281
|
+
"required": false
|
|
282
|
+
},
|
|
283
|
+
"text": {
|
|
284
|
+
"description": "",
|
|
285
|
+
"type": {
|
|
286
|
+
"name": "string"
|
|
287
|
+
},
|
|
288
|
+
"required": false
|
|
289
|
+
},
|
|
290
|
+
"target": {
|
|
291
|
+
"description": "",
|
|
292
|
+
"type": {
|
|
293
|
+
"name": "string"
|
|
294
|
+
},
|
|
295
|
+
"required": false
|
|
296
|
+
},
|
|
297
|
+
"textColor": {
|
|
298
|
+
"description": "",
|
|
299
|
+
"type": {
|
|
300
|
+
"name": "enum",
|
|
301
|
+
"computed": true,
|
|
302
|
+
"value": "textColorProps"
|
|
303
|
+
},
|
|
304
|
+
"required": false
|
|
305
|
+
},
|
|
306
|
+
"textColorMobile": {
|
|
307
|
+
"description": "",
|
|
308
|
+
"type": {
|
|
309
|
+
"name": "enum",
|
|
310
|
+
"computed": true,
|
|
311
|
+
"value": "textColorProps"
|
|
312
|
+
},
|
|
313
|
+
"required": false
|
|
314
|
+
},
|
|
315
|
+
"textColorTablet": {
|
|
316
|
+
"description": "",
|
|
317
|
+
"type": {
|
|
318
|
+
"name": "enum",
|
|
319
|
+
"computed": true,
|
|
320
|
+
"value": "textColorProps"
|
|
321
|
+
},
|
|
322
|
+
"required": false
|
|
323
|
+
},
|
|
324
|
+
"textColorDesktop": {
|
|
325
|
+
"description": "",
|
|
326
|
+
"type": {
|
|
327
|
+
"name": "enum",
|
|
328
|
+
"computed": true,
|
|
329
|
+
"value": "textColorProps"
|
|
330
|
+
},
|
|
331
|
+
"required": false
|
|
332
|
+
},
|
|
333
|
+
"textGradient": {
|
|
334
|
+
"description": "",
|
|
335
|
+
"type": {
|
|
336
|
+
"name": "enum",
|
|
337
|
+
"computed": true,
|
|
338
|
+
"value": "textGradientProps"
|
|
339
|
+
},
|
|
340
|
+
"required": false
|
|
341
|
+
},
|
|
342
|
+
"textStyle": {
|
|
343
|
+
"description": "",
|
|
344
|
+
"type": {
|
|
345
|
+
"name": "enum",
|
|
346
|
+
"computed": true,
|
|
347
|
+
"value": "textStyleProps"
|
|
348
|
+
},
|
|
349
|
+
"required": false
|
|
350
|
+
},
|
|
351
|
+
"textWeight": {
|
|
352
|
+
"description": "",
|
|
353
|
+
"type": {
|
|
354
|
+
"name": "enum",
|
|
355
|
+
"computed": true,
|
|
356
|
+
"value": "textWeightProps"
|
|
357
|
+
},
|
|
358
|
+
"required": false
|
|
359
|
+
},
|
|
360
|
+
"textWeightDesktop": {
|
|
361
|
+
"description": "",
|
|
362
|
+
"type": {
|
|
363
|
+
"name": "enum",
|
|
364
|
+
"computed": true,
|
|
365
|
+
"value": "textWeightProps"
|
|
366
|
+
},
|
|
367
|
+
"required": false
|
|
368
|
+
},
|
|
369
|
+
"textWeightMobile": {
|
|
370
|
+
"description": "",
|
|
371
|
+
"type": {
|
|
372
|
+
"name": "enum",
|
|
373
|
+
"computed": true,
|
|
374
|
+
"value": "textWeightProps"
|
|
375
|
+
},
|
|
376
|
+
"required": false
|
|
377
|
+
},
|
|
378
|
+
"textWeightTablet": {
|
|
379
|
+
"description": "",
|
|
380
|
+
"type": {
|
|
381
|
+
"name": "enum",
|
|
382
|
+
"computed": true,
|
|
383
|
+
"value": "textWeightProps"
|
|
384
|
+
},
|
|
385
|
+
"required": false
|
|
386
|
+
},
|
|
387
|
+
"type": {
|
|
388
|
+
"description": "",
|
|
389
|
+
"type": {
|
|
390
|
+
"name": "enum",
|
|
391
|
+
"computed": true,
|
|
392
|
+
"value": "typeProps"
|
|
393
|
+
},
|
|
394
|
+
"required": false
|
|
395
|
+
},
|
|
396
|
+
"size": {
|
|
397
|
+
"description": "",
|
|
398
|
+
"type": {
|
|
399
|
+
"name": "enum",
|
|
400
|
+
"computed": true,
|
|
401
|
+
"value": "sizeProps"
|
|
402
|
+
},
|
|
403
|
+
"required": false
|
|
404
|
+
},
|
|
405
|
+
"sizeDesktop": {
|
|
406
|
+
"description": "",
|
|
407
|
+
"type": {
|
|
408
|
+
"name": "enum",
|
|
409
|
+
"computed": true,
|
|
410
|
+
"value": "sizeProps"
|
|
411
|
+
},
|
|
412
|
+
"required": false
|
|
413
|
+
},
|
|
414
|
+
"sizeMobile": {
|
|
415
|
+
"description": "",
|
|
416
|
+
"type": {
|
|
417
|
+
"name": "enum",
|
|
418
|
+
"computed": true,
|
|
419
|
+
"value": "sizeProps"
|
|
420
|
+
},
|
|
421
|
+
"required": false
|
|
422
|
+
},
|
|
423
|
+
"sizeTablet": {
|
|
424
|
+
"description": "",
|
|
425
|
+
"type": {
|
|
426
|
+
"name": "enum",
|
|
427
|
+
"computed": true,
|
|
428
|
+
"value": "sizeProps"
|
|
429
|
+
},
|
|
430
|
+
"required": false
|
|
431
|
+
},
|
|
432
|
+
"onClick": {
|
|
433
|
+
"description": "",
|
|
434
|
+
"type": {
|
|
435
|
+
"name": "func"
|
|
436
|
+
},
|
|
437
|
+
"required": false
|
|
438
|
+
},
|
|
439
|
+
"onMouseDown": {
|
|
440
|
+
"description": "",
|
|
441
|
+
"type": {
|
|
442
|
+
"name": "func"
|
|
443
|
+
},
|
|
444
|
+
"required": false
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
};
|
|
448
|
+
LinkWrapper.__docgenInfo = {
|
|
449
|
+
"description": "",
|
|
450
|
+
"methods": [],
|
|
451
|
+
"displayName": "LinkWrapper",
|
|
452
|
+
"props": {
|
|
453
|
+
"children": {
|
|
454
|
+
"description": "",
|
|
455
|
+
"type": {
|
|
456
|
+
"name": "any"
|
|
457
|
+
},
|
|
458
|
+
"required": false
|
|
459
|
+
},
|
|
460
|
+
"Component": {
|
|
461
|
+
"description": "",
|
|
462
|
+
"type": {
|
|
463
|
+
"name": "element"
|
|
464
|
+
},
|
|
465
|
+
"required": false
|
|
466
|
+
},
|
|
467
|
+
"DefaultComponent": {
|
|
468
|
+
"description": "",
|
|
469
|
+
"type": {
|
|
470
|
+
"name": "element"
|
|
471
|
+
},
|
|
472
|
+
"required": false
|
|
473
|
+
},
|
|
474
|
+
"href": {
|
|
475
|
+
"description": "",
|
|
476
|
+
"type": {
|
|
477
|
+
"name": "string"
|
|
478
|
+
},
|
|
479
|
+
"required": false
|
|
480
|
+
},
|
|
481
|
+
"target": {
|
|
482
|
+
"description": "",
|
|
483
|
+
"type": {
|
|
484
|
+
"name": "string"
|
|
485
|
+
},
|
|
486
|
+
"required": false
|
|
487
|
+
},
|
|
488
|
+
"rel": {
|
|
489
|
+
"description": "",
|
|
490
|
+
"type": {
|
|
491
|
+
"name": "string"
|
|
492
|
+
},
|
|
493
|
+
"required": false
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
};
|
|
173
497
|
|
|
174
498
|
exports.Link = Link;
|
|
175
499
|
exports.LinkWrapper = LinkWrapper;
|
package/dist/components/List.js
CHANGED
|
@@ -92,6 +92,220 @@ List.propTypes = {
|
|
|
92
92
|
type: PropTypes__default.default.string,
|
|
93
93
|
onClick: PropTypes__default.default.func
|
|
94
94
|
};
|
|
95
|
+
List.__docgenInfo = {
|
|
96
|
+
"description": "",
|
|
97
|
+
"methods": [],
|
|
98
|
+
"displayName": "List",
|
|
99
|
+
"props": {
|
|
100
|
+
"children": {
|
|
101
|
+
"description": "",
|
|
102
|
+
"type": {
|
|
103
|
+
"name": "any"
|
|
104
|
+
},
|
|
105
|
+
"required": false
|
|
106
|
+
},
|
|
107
|
+
"className": {
|
|
108
|
+
"description": "",
|
|
109
|
+
"type": {
|
|
110
|
+
"name": "string"
|
|
111
|
+
},
|
|
112
|
+
"required": false
|
|
113
|
+
},
|
|
114
|
+
"bulletFill": {
|
|
115
|
+
"description": "",
|
|
116
|
+
"type": {
|
|
117
|
+
"name": "enum",
|
|
118
|
+
"computed": true,
|
|
119
|
+
"value": "fillProps"
|
|
120
|
+
},
|
|
121
|
+
"required": false
|
|
122
|
+
},
|
|
123
|
+
"bulletFillDesktop": {
|
|
124
|
+
"description": "",
|
|
125
|
+
"type": {
|
|
126
|
+
"name": "enum",
|
|
127
|
+
"computed": true,
|
|
128
|
+
"value": "fillProps"
|
|
129
|
+
},
|
|
130
|
+
"required": false
|
|
131
|
+
},
|
|
132
|
+
"bulletFillMobile": {
|
|
133
|
+
"description": "",
|
|
134
|
+
"type": {
|
|
135
|
+
"name": "enum",
|
|
136
|
+
"computed": true,
|
|
137
|
+
"value": "fillProps"
|
|
138
|
+
},
|
|
139
|
+
"required": false
|
|
140
|
+
},
|
|
141
|
+
"bulletFillTablet": {
|
|
142
|
+
"description": "",
|
|
143
|
+
"type": {
|
|
144
|
+
"name": "enum",
|
|
145
|
+
"computed": true,
|
|
146
|
+
"value": "fillProps"
|
|
147
|
+
},
|
|
148
|
+
"required": false
|
|
149
|
+
},
|
|
150
|
+
"bulletSize": {
|
|
151
|
+
"description": "",
|
|
152
|
+
"type": {
|
|
153
|
+
"name": "string"
|
|
154
|
+
},
|
|
155
|
+
"required": false
|
|
156
|
+
},
|
|
157
|
+
"bulletSizeDesktop": {
|
|
158
|
+
"description": "",
|
|
159
|
+
"type": {
|
|
160
|
+
"name": "string"
|
|
161
|
+
},
|
|
162
|
+
"required": false
|
|
163
|
+
},
|
|
164
|
+
"bulletSizeMobile": {
|
|
165
|
+
"description": "",
|
|
166
|
+
"type": {
|
|
167
|
+
"name": "string"
|
|
168
|
+
},
|
|
169
|
+
"required": false
|
|
170
|
+
},
|
|
171
|
+
"bulletSizeTablet": {
|
|
172
|
+
"description": "",
|
|
173
|
+
"type": {
|
|
174
|
+
"name": "string"
|
|
175
|
+
},
|
|
176
|
+
"required": false
|
|
177
|
+
},
|
|
178
|
+
"bulletTextColor": {
|
|
179
|
+
"description": "",
|
|
180
|
+
"type": {
|
|
181
|
+
"name": "enum",
|
|
182
|
+
"computed": true,
|
|
183
|
+
"value": "textColorProps"
|
|
184
|
+
},
|
|
185
|
+
"required": false
|
|
186
|
+
},
|
|
187
|
+
"bulletTextColorDesktop": {
|
|
188
|
+
"description": "",
|
|
189
|
+
"type": {
|
|
190
|
+
"name": "enum",
|
|
191
|
+
"computed": true,
|
|
192
|
+
"value": "textColorProps"
|
|
193
|
+
},
|
|
194
|
+
"required": false
|
|
195
|
+
},
|
|
196
|
+
"bulletTextColorMobile": {
|
|
197
|
+
"description": "",
|
|
198
|
+
"type": {
|
|
199
|
+
"name": "enum",
|
|
200
|
+
"computed": true,
|
|
201
|
+
"value": "textColorProps"
|
|
202
|
+
},
|
|
203
|
+
"required": false
|
|
204
|
+
},
|
|
205
|
+
"bulletTextColorTablet": {
|
|
206
|
+
"description": "",
|
|
207
|
+
"type": {
|
|
208
|
+
"name": "enum",
|
|
209
|
+
"computed": true,
|
|
210
|
+
"value": "textColorProps"
|
|
211
|
+
},
|
|
212
|
+
"required": false
|
|
213
|
+
},
|
|
214
|
+
"direction": {
|
|
215
|
+
"description": "",
|
|
216
|
+
"type": {
|
|
217
|
+
"name": "enum",
|
|
218
|
+
"computed": true,
|
|
219
|
+
"value": "directionProps"
|
|
220
|
+
},
|
|
221
|
+
"required": false
|
|
222
|
+
},
|
|
223
|
+
"directionDesktop": {
|
|
224
|
+
"description": "",
|
|
225
|
+
"type": {
|
|
226
|
+
"name": "enum",
|
|
227
|
+
"computed": true,
|
|
228
|
+
"value": "directionProps"
|
|
229
|
+
},
|
|
230
|
+
"required": false
|
|
231
|
+
},
|
|
232
|
+
"directionMobile": {
|
|
233
|
+
"description": "",
|
|
234
|
+
"type": {
|
|
235
|
+
"name": "enum",
|
|
236
|
+
"computed": true,
|
|
237
|
+
"value": "directionProps"
|
|
238
|
+
},
|
|
239
|
+
"required": false
|
|
240
|
+
},
|
|
241
|
+
"directionTablet": {
|
|
242
|
+
"description": "",
|
|
243
|
+
"type": {
|
|
244
|
+
"name": "enum",
|
|
245
|
+
"computed": true,
|
|
246
|
+
"value": "directionProps"
|
|
247
|
+
},
|
|
248
|
+
"required": false
|
|
249
|
+
},
|
|
250
|
+
"size": {
|
|
251
|
+
"description": "",
|
|
252
|
+
"type": {
|
|
253
|
+
"name": "enum",
|
|
254
|
+
"computed": true,
|
|
255
|
+
"value": "sizeProps"
|
|
256
|
+
},
|
|
257
|
+
"required": false
|
|
258
|
+
},
|
|
259
|
+
"sizeDesktop": {
|
|
260
|
+
"description": "",
|
|
261
|
+
"type": {
|
|
262
|
+
"name": "enum",
|
|
263
|
+
"computed": true,
|
|
264
|
+
"value": "sizeProps"
|
|
265
|
+
},
|
|
266
|
+
"required": false
|
|
267
|
+
},
|
|
268
|
+
"sizeMobile": {
|
|
269
|
+
"description": "",
|
|
270
|
+
"type": {
|
|
271
|
+
"name": "enum",
|
|
272
|
+
"computed": true,
|
|
273
|
+
"value": "sizeProps"
|
|
274
|
+
},
|
|
275
|
+
"required": false
|
|
276
|
+
},
|
|
277
|
+
"sizeTablet": {
|
|
278
|
+
"description": "",
|
|
279
|
+
"type": {
|
|
280
|
+
"name": "enum",
|
|
281
|
+
"computed": true,
|
|
282
|
+
"value": "sizeProps"
|
|
283
|
+
},
|
|
284
|
+
"required": false
|
|
285
|
+
},
|
|
286
|
+
"style": {
|
|
287
|
+
"description": "",
|
|
288
|
+
"type": {
|
|
289
|
+
"name": "string"
|
|
290
|
+
},
|
|
291
|
+
"required": false
|
|
292
|
+
},
|
|
293
|
+
"type": {
|
|
294
|
+
"description": "",
|
|
295
|
+
"type": {
|
|
296
|
+
"name": "string"
|
|
297
|
+
},
|
|
298
|
+
"required": false
|
|
299
|
+
},
|
|
300
|
+
"onClick": {
|
|
301
|
+
"description": "",
|
|
302
|
+
"type": {
|
|
303
|
+
"name": "func"
|
|
304
|
+
},
|
|
305
|
+
"required": false
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
};
|
|
95
309
|
|
|
96
310
|
function ListItem(props) {
|
|
97
311
|
const {
|
|
@@ -144,6 +358,141 @@ ListItem.propTypes = {
|
|
|
144
358
|
textStyle: PropTypes__default.default.oneOf(textStyle.default),
|
|
145
359
|
onClick: PropTypes__default.default.func
|
|
146
360
|
};
|
|
361
|
+
ListItem.__docgenInfo = {
|
|
362
|
+
"description": "",
|
|
363
|
+
"methods": [],
|
|
364
|
+
"displayName": "ListItem",
|
|
365
|
+
"props": {
|
|
366
|
+
"after": {
|
|
367
|
+
"description": "",
|
|
368
|
+
"type": {
|
|
369
|
+
"name": "any"
|
|
370
|
+
},
|
|
371
|
+
"required": false
|
|
372
|
+
},
|
|
373
|
+
"before": {
|
|
374
|
+
"description": "",
|
|
375
|
+
"type": {
|
|
376
|
+
"name": "any"
|
|
377
|
+
},
|
|
378
|
+
"required": false
|
|
379
|
+
},
|
|
380
|
+
"children": {
|
|
381
|
+
"description": "",
|
|
382
|
+
"type": {
|
|
383
|
+
"name": "any"
|
|
384
|
+
},
|
|
385
|
+
"required": false
|
|
386
|
+
},
|
|
387
|
+
"className": {
|
|
388
|
+
"description": "",
|
|
389
|
+
"type": {
|
|
390
|
+
"name": "string"
|
|
391
|
+
},
|
|
392
|
+
"required": false
|
|
393
|
+
},
|
|
394
|
+
"href": {
|
|
395
|
+
"description": "",
|
|
396
|
+
"type": {
|
|
397
|
+
"name": "string"
|
|
398
|
+
},
|
|
399
|
+
"required": false
|
|
400
|
+
},
|
|
401
|
+
"link": {
|
|
402
|
+
"description": "",
|
|
403
|
+
"type": {
|
|
404
|
+
"name": "string"
|
|
405
|
+
},
|
|
406
|
+
"required": false
|
|
407
|
+
},
|
|
408
|
+
"fill": {
|
|
409
|
+
"description": "",
|
|
410
|
+
"type": {
|
|
411
|
+
"name": "enum",
|
|
412
|
+
"computed": true,
|
|
413
|
+
"value": "fillProps"
|
|
414
|
+
},
|
|
415
|
+
"required": false
|
|
416
|
+
},
|
|
417
|
+
"fillDesktop": {
|
|
418
|
+
"description": "",
|
|
419
|
+
"type": {
|
|
420
|
+
"name": "enum",
|
|
421
|
+
"computed": true,
|
|
422
|
+
"value": "fillProps"
|
|
423
|
+
},
|
|
424
|
+
"required": false
|
|
425
|
+
},
|
|
426
|
+
"fillMobile": {
|
|
427
|
+
"description": "",
|
|
428
|
+
"type": {
|
|
429
|
+
"name": "enum",
|
|
430
|
+
"computed": true,
|
|
431
|
+
"value": "fillProps"
|
|
432
|
+
},
|
|
433
|
+
"required": false
|
|
434
|
+
},
|
|
435
|
+
"fillTablet": {
|
|
436
|
+
"description": "",
|
|
437
|
+
"type": {
|
|
438
|
+
"name": "enum",
|
|
439
|
+
"computed": true,
|
|
440
|
+
"value": "fillProps"
|
|
441
|
+
},
|
|
442
|
+
"required": false
|
|
443
|
+
},
|
|
444
|
+
"type": {
|
|
445
|
+
"description": "",
|
|
446
|
+
"type": {
|
|
447
|
+
"name": "enum",
|
|
448
|
+
"computed": true,
|
|
449
|
+
"value": "typeProps"
|
|
450
|
+
},
|
|
451
|
+
"required": false
|
|
452
|
+
},
|
|
453
|
+
"text": {
|
|
454
|
+
"description": "",
|
|
455
|
+
"type": {
|
|
456
|
+
"name": "string"
|
|
457
|
+
},
|
|
458
|
+
"required": false
|
|
459
|
+
},
|
|
460
|
+
"textColor": {
|
|
461
|
+
"description": "",
|
|
462
|
+
"type": {
|
|
463
|
+
"name": "enum",
|
|
464
|
+
"computed": true,
|
|
465
|
+
"value": "textColorProps"
|
|
466
|
+
},
|
|
467
|
+
"required": false
|
|
468
|
+
},
|
|
469
|
+
"textWeight": {
|
|
470
|
+
"description": "",
|
|
471
|
+
"type": {
|
|
472
|
+
"name": "enum",
|
|
473
|
+
"computed": true,
|
|
474
|
+
"value": "textWeightProps"
|
|
475
|
+
},
|
|
476
|
+
"required": false
|
|
477
|
+
},
|
|
478
|
+
"textStyle": {
|
|
479
|
+
"description": "",
|
|
480
|
+
"type": {
|
|
481
|
+
"name": "enum",
|
|
482
|
+
"computed": true,
|
|
483
|
+
"value": "textStyleProps"
|
|
484
|
+
},
|
|
485
|
+
"required": false
|
|
486
|
+
},
|
|
487
|
+
"onClick": {
|
|
488
|
+
"description": "",
|
|
489
|
+
"type": {
|
|
490
|
+
"name": "func"
|
|
491
|
+
},
|
|
492
|
+
"required": false
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
};
|
|
147
496
|
|
|
148
497
|
exports.List = List;
|
|
149
498
|
exports.ListItem = ListItem;
|