@availity/mui-controlled-form 1.0.6 → 1.1.0
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/CHANGELOG.md +21 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +5 -5
- package/src/lib/TextField.test.tsx +57 -10
- package/src/lib/TextField.tsx +7 -0
- package/src/lib/Types.tsx +477 -2367
package/src/lib/Types.tsx
CHANGED
|
@@ -35,8 +35,7 @@ export type ControllerProps = {
|
|
|
35
35
|
|
|
36
36
|
// Storybook Categories
|
|
37
37
|
|
|
38
|
-
type AllControllerProps = ControllerProps &
|
|
39
|
-
Pick<RegisterOptions<FieldValues, string>, 'onBlur' | 'onChange' | 'value'>;
|
|
38
|
+
type AllControllerProps = ControllerProps & Pick<RegisterOptions<FieldValues, string>, 'onBlur' | 'onChange' | 'value'>;
|
|
40
39
|
|
|
41
40
|
type CategorizedControllerPropsObject = Record<keyof AllControllerProps, { table: { category: 'Controller Props' } }>;
|
|
42
41
|
|
|
@@ -178,2404 +177,515 @@ type SelectPropsObject = Record<
|
|
|
178
177
|
|
|
179
178
|
// Use IDE Autocomplete to fill in any missing properties
|
|
180
179
|
export const AllControllerPropertiesCategorized: CategorizedControllerPropsObject = {
|
|
181
|
-
defaultValue: {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
},
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
}
|
|
190
|
-
},
|
|
191
|
-
onChange: {
|
|
192
|
-
table: {
|
|
193
|
-
category: 'Controller Props'
|
|
194
|
-
}
|
|
195
|
-
},
|
|
196
|
-
disabled: {
|
|
197
|
-
table: {
|
|
198
|
-
category: 'Controller Props'
|
|
199
|
-
}
|
|
200
|
-
},
|
|
201
|
-
name: {
|
|
202
|
-
table: {
|
|
203
|
-
category: 'Controller Props'
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
value: {
|
|
207
|
-
table: {
|
|
208
|
-
category: 'Controller Props'
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
rules: {
|
|
212
|
-
table: {
|
|
213
|
-
category: 'Controller Props'
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
shouldUnregister: {
|
|
217
|
-
table: {
|
|
218
|
-
category: 'Controller Props'
|
|
219
|
-
}
|
|
220
|
-
}
|
|
180
|
+
defaultValue: { table: { category: 'Controller Props' } },
|
|
181
|
+
onBlur: { table: { category: 'Controller Props' } },
|
|
182
|
+
onChange: { table: { category: 'Controller Props' } },
|
|
183
|
+
disabled: { table: { category: 'Controller Props' } },
|
|
184
|
+
name: { table: { category: 'Controller Props' } },
|
|
185
|
+
value: { table: { category: 'Controller Props' } },
|
|
186
|
+
rules: { table: { category: 'Controller Props' } },
|
|
187
|
+
shouldUnregister: { table: { category: 'Controller Props' } },
|
|
221
188
|
};
|
|
222
189
|
|
|
223
190
|
export const TextFieldPropsCategorized: TextFieldPropsObject = {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
},
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
},
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
},
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
},
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
},
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
},
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
},
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
}
|
|
263
|
-
},
|
|
264
|
-
focused: {
|
|
265
|
-
table: {
|
|
266
|
-
category: 'Input Props'
|
|
267
|
-
}
|
|
268
|
-
},
|
|
269
|
-
required: {
|
|
270
|
-
table: {
|
|
271
|
-
category: 'Input Props'
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
sx: {
|
|
275
|
-
table: {
|
|
276
|
-
category: 'Input Props'
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
label: {
|
|
280
|
-
table: {
|
|
281
|
-
category: 'Input Props'
|
|
282
|
-
}
|
|
283
|
-
},
|
|
284
|
-
ref: {
|
|
285
|
-
table: {
|
|
286
|
-
category: 'Input Props'
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
select: {
|
|
290
|
-
table: {
|
|
291
|
-
category: 'Input Props'
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
|
-
key: {
|
|
295
|
-
table: {
|
|
296
|
-
category: 'Input Props'
|
|
297
|
-
}
|
|
298
|
-
},
|
|
299
|
-
helpTopicId: {
|
|
300
|
-
table: {
|
|
301
|
-
category: 'Input Props'
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
fullWidth: {
|
|
305
|
-
table: {
|
|
306
|
-
category: 'Input Props'
|
|
307
|
-
}
|
|
308
|
-
},
|
|
309
|
-
hiddenLabel: {
|
|
310
|
-
table: {
|
|
311
|
-
category: 'Input Props'
|
|
312
|
-
}
|
|
313
|
-
},
|
|
314
|
-
margin: {
|
|
315
|
-
table: {
|
|
316
|
-
category: 'Input Props'
|
|
317
|
-
}
|
|
318
|
-
},
|
|
319
|
-
size: {
|
|
320
|
-
table: {
|
|
321
|
-
category: 'Input Props'
|
|
322
|
-
}
|
|
323
|
-
},
|
|
324
|
-
component: {
|
|
325
|
-
table: {
|
|
326
|
-
category: 'Input Props'
|
|
327
|
-
}
|
|
328
|
-
},
|
|
329
|
-
InputProps: {
|
|
330
|
-
table: {
|
|
331
|
-
category: 'Input Props'
|
|
332
|
-
}
|
|
333
|
-
},
|
|
334
|
-
autoComplete: {
|
|
335
|
-
table: {
|
|
336
|
-
category: 'Input Props'
|
|
337
|
-
}
|
|
338
|
-
},
|
|
339
|
-
FormHelperTextProps: {
|
|
340
|
-
table: {
|
|
341
|
-
category: 'Input Props'
|
|
342
|
-
}
|
|
343
|
-
},
|
|
344
|
-
helperText: {
|
|
345
|
-
table: {
|
|
346
|
-
category: 'Input Props'
|
|
347
|
-
}
|
|
348
|
-
},
|
|
349
|
-
InputLabelProps: {
|
|
350
|
-
table: {
|
|
351
|
-
category: 'Input Props'
|
|
352
|
-
}
|
|
353
|
-
},
|
|
354
|
-
inputProps: {
|
|
355
|
-
table: {
|
|
356
|
-
category: 'Input Props'
|
|
357
|
-
}
|
|
358
|
-
},
|
|
359
|
-
inputRef: {
|
|
360
|
-
table: {
|
|
361
|
-
category: 'Input Props'
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
|
-
multiline: {
|
|
365
|
-
table: {
|
|
366
|
-
category: 'Input Props'
|
|
367
|
-
}
|
|
368
|
-
},
|
|
369
|
-
placeholder: {
|
|
370
|
-
table: {
|
|
371
|
-
category: 'Input Props'
|
|
372
|
-
}
|
|
373
|
-
},
|
|
374
|
-
rows: {
|
|
375
|
-
table: {
|
|
376
|
-
category: 'Input Props'
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
maxRows: {
|
|
380
|
-
table: {
|
|
381
|
-
category: 'Input Props'
|
|
382
|
-
}
|
|
383
|
-
},
|
|
384
|
-
minRows: {
|
|
385
|
-
table: {
|
|
386
|
-
category: 'Input Props'
|
|
387
|
-
}
|
|
388
|
-
},
|
|
389
|
-
SelectProps: {
|
|
390
|
-
table: {
|
|
391
|
-
category: 'Input Props'
|
|
392
|
-
}
|
|
393
|
-
},
|
|
394
|
-
type: {
|
|
395
|
-
table: {
|
|
396
|
-
category: 'Input Props'
|
|
397
|
-
}
|
|
398
|
-
},
|
|
399
|
-
slots: {
|
|
400
|
-
table: {
|
|
401
|
-
category: 'Input Props'
|
|
402
|
-
}
|
|
403
|
-
}
|
|
191
|
+
slotProps: { table: { category: 'Input Props' } },
|
|
192
|
+
className: { table: { category: 'Input Props' } },
|
|
193
|
+
style: { table: { category: 'Input Props' } },
|
|
194
|
+
classes: { table: { category: 'Input Props' } },
|
|
195
|
+
error: { table: { category: 'Input Props' } },
|
|
196
|
+
autoFocus: { table: { category: 'Input Props' } },
|
|
197
|
+
id: { table: { category: 'Input Props' } },
|
|
198
|
+
color: { table: { category: 'Input Props' } },
|
|
199
|
+
onFocus: { table: { category: 'Input Props' } },
|
|
200
|
+
focused: { table: { category: 'Input Props' } },
|
|
201
|
+
required: { table: { category: 'Input Props' } },
|
|
202
|
+
sx: { table: { category: 'Input Props' } },
|
|
203
|
+
label: { table: { category: 'Input Props' } },
|
|
204
|
+
ref: { table: { category: 'Input Props' } },
|
|
205
|
+
select: { table: { category: 'Input Props' } },
|
|
206
|
+
key: { table: { category: 'Input Props' } },
|
|
207
|
+
helpTopicId: { table: { category: 'Input Props' } },
|
|
208
|
+
fullWidth: { table: { category: 'Input Props' } },
|
|
209
|
+
hiddenLabel: { table: { category: 'Input Props' } },
|
|
210
|
+
margin: { table: { category: 'Input Props' } },
|
|
211
|
+
size: { table: { category: 'Input Props' } },
|
|
212
|
+
component: { table: { category: 'Input Props' } },
|
|
213
|
+
InputProps: { table: { category: 'Input Props' } },
|
|
214
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
215
|
+
FormHelperTextProps: { table: { category: 'Input Props' } },
|
|
216
|
+
helperText: { table: { category: 'Input Props' } },
|
|
217
|
+
InputLabelProps: { table: { category: 'Input Props' } },
|
|
218
|
+
inputProps: { table: { category: 'Input Props' } },
|
|
219
|
+
inputRef: { table: { category: 'Input Props' } },
|
|
220
|
+
multiline: { table: { category: 'Input Props' } },
|
|
221
|
+
placeholder: { table: { category: 'Input Props' } },
|
|
222
|
+
rows: { table: { category: 'Input Props' } },
|
|
223
|
+
maxRows: { table: { category: 'Input Props' } },
|
|
224
|
+
minRows: { table: { category: 'Input Props' } },
|
|
225
|
+
SelectProps: { table: { category: 'Input Props' } },
|
|
226
|
+
type: { table: { category: 'Input Props' } },
|
|
227
|
+
slots: { table: { category: 'Input Props' } },
|
|
228
|
+
showCharacterCount: { table: { category: 'Input Props' } },
|
|
404
229
|
};
|
|
405
230
|
|
|
406
231
|
export const RadioGroupPropsCategorized: RadioGroupPropsObject = {
|
|
407
|
-
classes: {
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
},
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
}
|
|
416
|
-
},
|
|
417
|
-
required: {
|
|
418
|
-
table: {
|
|
419
|
-
category: 'Input Props'
|
|
420
|
-
}
|
|
421
|
-
},
|
|
422
|
-
sx: {
|
|
423
|
-
table: {
|
|
424
|
-
category: 'Input Props'
|
|
425
|
-
}
|
|
426
|
-
},
|
|
427
|
-
label: {
|
|
428
|
-
table: {
|
|
429
|
-
category: 'Input Props'
|
|
430
|
-
}
|
|
431
|
-
},
|
|
432
|
-
ref: {
|
|
433
|
-
table: {
|
|
434
|
-
category: 'Input Props'
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
helperText: {
|
|
438
|
-
table: {
|
|
439
|
-
category: 'Input Props'
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
row: {
|
|
443
|
-
table: {
|
|
444
|
-
category: 'Input Props'
|
|
445
|
-
}
|
|
446
|
-
}
|
|
232
|
+
classes: { table: { category: 'Input Props' } },
|
|
233
|
+
children: { table: { category: 'Input Props' } },
|
|
234
|
+
required: { table: { category: 'Input Props' } },
|
|
235
|
+
sx: { table: { category: 'Input Props' } },
|
|
236
|
+
label: { table: { category: 'Input Props' } },
|
|
237
|
+
ref: { table: { category: 'Input Props' } },
|
|
238
|
+
helperText: { table: { category: 'Input Props' } },
|
|
239
|
+
row: { table: { category: 'Input Props' } },
|
|
447
240
|
};
|
|
448
241
|
|
|
449
242
|
export const ProviderAutocompletePropsCategorized: ProviderAutocompletePropsObject = {
|
|
450
|
-
classes: {
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
},
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
},
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
},
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
},
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
},
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
},
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
},
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
},
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
},
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
},
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
category: 'Input Props'
|
|
503
|
-
}
|
|
504
|
-
},
|
|
505
|
-
onOpen: {
|
|
506
|
-
table: {
|
|
507
|
-
category: 'Input Props'
|
|
508
|
-
}
|
|
509
|
-
},
|
|
510
|
-
queryKey: {
|
|
511
|
-
table: {
|
|
512
|
-
category: 'Input Props'
|
|
513
|
-
}
|
|
514
|
-
},
|
|
515
|
-
ChipProps: {
|
|
516
|
-
table: {
|
|
517
|
-
category: 'Input Props'
|
|
518
|
-
}
|
|
519
|
-
},
|
|
520
|
-
disablePortal: {
|
|
521
|
-
table: {
|
|
522
|
-
category: 'Input Props'
|
|
523
|
-
}
|
|
524
|
-
},
|
|
525
|
-
getLimitTagsText: {
|
|
526
|
-
table: {
|
|
527
|
-
category: 'Input Props'
|
|
528
|
-
}
|
|
529
|
-
},
|
|
530
|
-
ListboxComponent: {
|
|
531
|
-
table: {
|
|
532
|
-
category: 'Input Props'
|
|
533
|
-
}
|
|
534
|
-
},
|
|
535
|
-
ListboxProps: {
|
|
536
|
-
table: {
|
|
537
|
-
category: 'Input Props'
|
|
538
|
-
}
|
|
539
|
-
},
|
|
540
|
-
loadingText: {
|
|
541
|
-
table: {
|
|
542
|
-
category: 'Input Props'
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
limitTags: {
|
|
546
|
-
table: {
|
|
547
|
-
category: 'Input Props'
|
|
548
|
-
}
|
|
549
|
-
},
|
|
550
|
-
noOptionsText: {
|
|
551
|
-
table: {
|
|
552
|
-
category: 'Input Props'
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
renderGroup: {
|
|
556
|
-
table: {
|
|
557
|
-
category: 'Input Props'
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
|
-
renderOption: {
|
|
561
|
-
table: {
|
|
562
|
-
category: 'Input Props'
|
|
563
|
-
}
|
|
564
|
-
},
|
|
565
|
-
renderTags: {
|
|
566
|
-
table: {
|
|
567
|
-
category: 'Input Props'
|
|
568
|
-
}
|
|
569
|
-
},
|
|
570
|
-
unstable_classNamePrefix: {
|
|
571
|
-
table: {
|
|
572
|
-
category: 'Input Props'
|
|
573
|
-
}
|
|
574
|
-
},
|
|
575
|
-
unstable_isActiveElementInListbox: {
|
|
576
|
-
table: {
|
|
577
|
-
category: 'Input Props'
|
|
578
|
-
}
|
|
579
|
-
},
|
|
580
|
-
autoHighlight: {
|
|
581
|
-
table: {
|
|
582
|
-
category: 'Input Props'
|
|
583
|
-
}
|
|
584
|
-
},
|
|
585
|
-
autoSelect: {
|
|
586
|
-
table: {
|
|
587
|
-
category: 'Input Props'
|
|
588
|
-
}
|
|
589
|
-
},
|
|
590
|
-
blurOnSelect: {
|
|
591
|
-
table: {
|
|
592
|
-
category: 'Input Props'
|
|
593
|
-
}
|
|
594
|
-
},
|
|
595
|
-
clearOnBlur: {
|
|
596
|
-
table: {
|
|
597
|
-
category: 'Input Props'
|
|
598
|
-
}
|
|
599
|
-
},
|
|
600
|
-
clearOnEscape: {
|
|
601
|
-
table: {
|
|
602
|
-
category: 'Input Props'
|
|
603
|
-
}
|
|
604
|
-
},
|
|
605
|
-
componentName: {
|
|
606
|
-
table: {
|
|
607
|
-
category: 'Input Props'
|
|
608
|
-
}
|
|
609
|
-
},
|
|
610
|
-
disableClearable: {
|
|
611
|
-
table: {
|
|
612
|
-
category: 'Input Props'
|
|
613
|
-
}
|
|
614
|
-
},
|
|
615
|
-
disableCloseOnSelect: {
|
|
616
|
-
table: {
|
|
617
|
-
category: 'Input Props'
|
|
618
|
-
}
|
|
619
|
-
},
|
|
620
|
-
filterOptions: {
|
|
621
|
-
table: {
|
|
622
|
-
category: 'Input Props'
|
|
623
|
-
}
|
|
624
|
-
},
|
|
625
|
-
filterSelectedOptions: {
|
|
626
|
-
table: {
|
|
627
|
-
category: 'Input Props'
|
|
628
|
-
}
|
|
629
|
-
},
|
|
630
|
-
freeSolo: {
|
|
631
|
-
table: {
|
|
632
|
-
category: 'Input Props'
|
|
633
|
-
}
|
|
634
|
-
},
|
|
635
|
-
getOptionDisabled: {
|
|
636
|
-
table: {
|
|
637
|
-
category: 'Input Props'
|
|
638
|
-
}
|
|
639
|
-
},
|
|
640
|
-
getOptionKey: {
|
|
641
|
-
table: {
|
|
642
|
-
category: 'Input Props'
|
|
643
|
-
}
|
|
644
|
-
},
|
|
645
|
-
getOptionLabel: {
|
|
646
|
-
table: {
|
|
647
|
-
category: 'Input Props'
|
|
648
|
-
}
|
|
649
|
-
},
|
|
650
|
-
groupBy: {
|
|
651
|
-
table: {
|
|
652
|
-
category: 'Input Props'
|
|
653
|
-
}
|
|
654
|
-
},
|
|
655
|
-
inputValue: {
|
|
656
|
-
table: {
|
|
657
|
-
category: 'Input Props'
|
|
658
|
-
}
|
|
659
|
-
},
|
|
660
|
-
isOptionEqualToValue: {
|
|
661
|
-
table: {
|
|
662
|
-
category: 'Input Props'
|
|
663
|
-
}
|
|
664
|
-
},
|
|
665
|
-
onHighlightChange: {
|
|
666
|
-
table: {
|
|
667
|
-
category: 'Input Props'
|
|
668
|
-
}
|
|
669
|
-
},
|
|
670
|
-
onInputChange: {
|
|
671
|
-
table: {
|
|
672
|
-
category: 'Input Props'
|
|
673
|
-
}
|
|
674
|
-
},
|
|
675
|
-
FieldProps: {
|
|
676
|
-
table: {
|
|
677
|
-
category: 'Input Props'
|
|
678
|
-
}
|
|
679
|
-
},
|
|
680
|
-
limit: {
|
|
681
|
-
table: {
|
|
682
|
-
category: 'Input Props'
|
|
683
|
-
}
|
|
684
|
-
},
|
|
685
|
-
queryOptions: {
|
|
686
|
-
table: {
|
|
687
|
-
category: 'Input Props'
|
|
688
|
-
}
|
|
689
|
-
},
|
|
690
|
-
watchParams: {
|
|
691
|
-
table: {
|
|
692
|
-
category: 'Input Props'
|
|
693
|
-
}
|
|
694
|
-
},
|
|
695
|
-
debounceTimeout: {
|
|
696
|
-
table: {
|
|
697
|
-
category: 'Input Props'
|
|
698
|
-
}
|
|
699
|
-
},
|
|
700
|
-
customerId: {
|
|
701
|
-
table: {
|
|
702
|
-
category: 'Input Props'
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
|
-
apiConfig: {
|
|
706
|
-
table: {
|
|
707
|
-
category: 'Input Props'
|
|
708
|
-
}
|
|
709
|
-
}
|
|
243
|
+
classes: { table: { category: 'Input Props' } },
|
|
244
|
+
id: { table: { category: 'Input Props' } },
|
|
245
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
246
|
+
sx: { table: { category: 'Input Props' } },
|
|
247
|
+
ref: { table: { category: 'Input Props' } },
|
|
248
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
249
|
+
slots: { table: { category: 'Input Props' } },
|
|
250
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
251
|
+
open: { table: { category: 'Input Props' } },
|
|
252
|
+
multiple: { table: { category: 'Input Props' } },
|
|
253
|
+
onClose: { table: { category: 'Input Props' } },
|
|
254
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
255
|
+
queryKey: { table: { category: 'Input Props' } },
|
|
256
|
+
ChipProps: { table: { category: 'Input Props' } },
|
|
257
|
+
disablePortal: { table: { category: 'Input Props' } },
|
|
258
|
+
getLimitTagsText: { table: { category: 'Input Props' } },
|
|
259
|
+
ListboxComponent: { table: { category: 'Input Props' } },
|
|
260
|
+
ListboxProps: { table: { category: 'Input Props' } },
|
|
261
|
+
loadingText: { table: { category: 'Input Props' } },
|
|
262
|
+
limitTags: { table: { category: 'Input Props' } },
|
|
263
|
+
noOptionsText: { table: { category: 'Input Props' } },
|
|
264
|
+
renderGroup: { table: { category: 'Input Props' } },
|
|
265
|
+
renderOption: { table: { category: 'Input Props' } },
|
|
266
|
+
renderTags: { table: { category: 'Input Props' } },
|
|
267
|
+
unstable_classNamePrefix: { table: { category: 'Input Props' } },
|
|
268
|
+
unstable_isActiveElementInListbox: { table: { category: 'Input Props' } },
|
|
269
|
+
autoHighlight: { table: { category: 'Input Props' } },
|
|
270
|
+
autoSelect: { table: { category: 'Input Props' } },
|
|
271
|
+
blurOnSelect: { table: { category: 'Input Props' } },
|
|
272
|
+
clearOnBlur: { table: { category: 'Input Props' } },
|
|
273
|
+
clearOnEscape: { table: { category: 'Input Props' } },
|
|
274
|
+
componentName: { table: { category: 'Input Props' } },
|
|
275
|
+
disableClearable: { table: { category: 'Input Props' } },
|
|
276
|
+
disableCloseOnSelect: { table: { category: 'Input Props' } },
|
|
277
|
+
filterOptions: { table: { category: 'Input Props' } },
|
|
278
|
+
filterSelectedOptions: { table: { category: 'Input Props' } },
|
|
279
|
+
freeSolo: { table: { category: 'Input Props' } },
|
|
280
|
+
getOptionDisabled: { table: { category: 'Input Props' } },
|
|
281
|
+
getOptionKey: { table: { category: 'Input Props' } },
|
|
282
|
+
getOptionLabel: { table: { category: 'Input Props' } },
|
|
283
|
+
groupBy: { table: { category: 'Input Props' } },
|
|
284
|
+
inputValue: { table: { category: 'Input Props' } },
|
|
285
|
+
isOptionEqualToValue: { table: { category: 'Input Props' } },
|
|
286
|
+
onHighlightChange: { table: { category: 'Input Props' } },
|
|
287
|
+
onInputChange: { table: { category: 'Input Props' } },
|
|
288
|
+
FieldProps: { table: { category: 'Input Props' } },
|
|
289
|
+
limit: { table: { category: 'Input Props' } },
|
|
290
|
+
queryOptions: { table: { category: 'Input Props' } },
|
|
291
|
+
watchParams: { table: { category: 'Input Props' } },
|
|
292
|
+
debounceTimeout: { table: { category: 'Input Props' } },
|
|
293
|
+
customerId: { table: { category: 'Input Props' } },
|
|
294
|
+
apiConfig: { table: { category: 'Input Props' } },
|
|
710
295
|
};
|
|
711
296
|
|
|
712
297
|
export const OrganizationAutocompletePropsCategorized: OrganizationAutocompletePropsObject = {
|
|
713
|
-
classes: {
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
},
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
},
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
},
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
},
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
},
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
},
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
},
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
},
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
},
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
},
|
|
763
|
-
|
|
764
|
-
table: {
|
|
765
|
-
category: 'Input Props'
|
|
766
|
-
}
|
|
767
|
-
},
|
|
768
|
-
onOpen: {
|
|
769
|
-
table: {
|
|
770
|
-
category: 'Input Props'
|
|
771
|
-
}
|
|
772
|
-
},
|
|
773
|
-
queryKey: {
|
|
774
|
-
table: {
|
|
775
|
-
category: 'Input Props'
|
|
776
|
-
}
|
|
777
|
-
},
|
|
778
|
-
ChipProps: {
|
|
779
|
-
table: {
|
|
780
|
-
category: 'Input Props'
|
|
781
|
-
}
|
|
782
|
-
},
|
|
783
|
-
disablePortal: {
|
|
784
|
-
table: {
|
|
785
|
-
category: 'Input Props'
|
|
786
|
-
}
|
|
787
|
-
},
|
|
788
|
-
getLimitTagsText: {
|
|
789
|
-
table: {
|
|
790
|
-
category: 'Input Props'
|
|
791
|
-
}
|
|
792
|
-
},
|
|
793
|
-
ListboxComponent: {
|
|
794
|
-
table: {
|
|
795
|
-
category: 'Input Props'
|
|
796
|
-
}
|
|
797
|
-
},
|
|
798
|
-
ListboxProps: {
|
|
799
|
-
table: {
|
|
800
|
-
category: 'Input Props'
|
|
801
|
-
}
|
|
802
|
-
},
|
|
803
|
-
loadingText: {
|
|
804
|
-
table: {
|
|
805
|
-
category: 'Input Props'
|
|
806
|
-
}
|
|
807
|
-
},
|
|
808
|
-
limitTags: {
|
|
809
|
-
table: {
|
|
810
|
-
category: 'Input Props'
|
|
811
|
-
}
|
|
812
|
-
},
|
|
813
|
-
noOptionsText: {
|
|
814
|
-
table: {
|
|
815
|
-
category: 'Input Props'
|
|
816
|
-
}
|
|
817
|
-
},
|
|
818
|
-
renderGroup: {
|
|
819
|
-
table: {
|
|
820
|
-
category: 'Input Props'
|
|
821
|
-
}
|
|
822
|
-
},
|
|
823
|
-
renderOption: {
|
|
824
|
-
table: {
|
|
825
|
-
category: 'Input Props'
|
|
826
|
-
}
|
|
827
|
-
},
|
|
828
|
-
renderTags: {
|
|
829
|
-
table: {
|
|
830
|
-
category: 'Input Props'
|
|
831
|
-
}
|
|
832
|
-
},
|
|
833
|
-
unstable_classNamePrefix: {
|
|
834
|
-
table: {
|
|
835
|
-
category: 'Input Props'
|
|
836
|
-
}
|
|
837
|
-
},
|
|
838
|
-
unstable_isActiveElementInListbox: {
|
|
839
|
-
table: {
|
|
840
|
-
category: 'Input Props'
|
|
841
|
-
}
|
|
842
|
-
},
|
|
843
|
-
autoHighlight: {
|
|
844
|
-
table: {
|
|
845
|
-
category: 'Input Props'
|
|
846
|
-
}
|
|
847
|
-
},
|
|
848
|
-
autoSelect: {
|
|
849
|
-
table: {
|
|
850
|
-
category: 'Input Props'
|
|
851
|
-
}
|
|
852
|
-
},
|
|
853
|
-
blurOnSelect: {
|
|
854
|
-
table: {
|
|
855
|
-
category: 'Input Props'
|
|
856
|
-
}
|
|
857
|
-
},
|
|
858
|
-
clearOnBlur: {
|
|
859
|
-
table: {
|
|
860
|
-
category: 'Input Props'
|
|
861
|
-
}
|
|
862
|
-
},
|
|
863
|
-
clearOnEscape: {
|
|
864
|
-
table: {
|
|
865
|
-
category: 'Input Props'
|
|
866
|
-
}
|
|
867
|
-
},
|
|
868
|
-
componentName: {
|
|
869
|
-
table: {
|
|
870
|
-
category: 'Input Props'
|
|
871
|
-
}
|
|
872
|
-
},
|
|
873
|
-
disableClearable: {
|
|
874
|
-
table: {
|
|
875
|
-
category: 'Input Props'
|
|
876
|
-
}
|
|
877
|
-
},
|
|
878
|
-
disableCloseOnSelect: {
|
|
879
|
-
table: {
|
|
880
|
-
category: 'Input Props'
|
|
881
|
-
}
|
|
882
|
-
},
|
|
883
|
-
filterOptions: {
|
|
884
|
-
table: {
|
|
885
|
-
category: 'Input Props'
|
|
886
|
-
}
|
|
887
|
-
},
|
|
888
|
-
filterSelectedOptions: {
|
|
889
|
-
table: {
|
|
890
|
-
category: 'Input Props'
|
|
891
|
-
}
|
|
892
|
-
},
|
|
893
|
-
freeSolo: {
|
|
894
|
-
table: {
|
|
895
|
-
category: 'Input Props'
|
|
896
|
-
}
|
|
897
|
-
},
|
|
898
|
-
getOptionDisabled: {
|
|
899
|
-
table: {
|
|
900
|
-
category: 'Input Props'
|
|
901
|
-
}
|
|
902
|
-
},
|
|
903
|
-
getOptionKey: {
|
|
904
|
-
table: {
|
|
905
|
-
category: 'Input Props'
|
|
906
|
-
}
|
|
907
|
-
},
|
|
908
|
-
getOptionLabel: {
|
|
909
|
-
table: {
|
|
910
|
-
category: 'Input Props'
|
|
911
|
-
}
|
|
912
|
-
},
|
|
913
|
-
groupBy: {
|
|
914
|
-
table: {
|
|
915
|
-
category: 'Input Props'
|
|
916
|
-
}
|
|
917
|
-
},
|
|
918
|
-
inputValue: {
|
|
919
|
-
table: {
|
|
920
|
-
category: 'Input Props'
|
|
921
|
-
}
|
|
922
|
-
},
|
|
923
|
-
isOptionEqualToValue: {
|
|
924
|
-
table: {
|
|
925
|
-
category: 'Input Props'
|
|
926
|
-
}
|
|
927
|
-
},
|
|
928
|
-
onHighlightChange: {
|
|
929
|
-
table: {
|
|
930
|
-
category: 'Input Props'
|
|
931
|
-
}
|
|
932
|
-
},
|
|
933
|
-
onInputChange: {
|
|
934
|
-
table: {
|
|
935
|
-
category: 'Input Props'
|
|
936
|
-
}
|
|
937
|
-
},
|
|
938
|
-
FieldProps: {
|
|
939
|
-
table: {
|
|
940
|
-
category: 'Input Props'
|
|
941
|
-
}
|
|
942
|
-
},
|
|
943
|
-
limit: {
|
|
944
|
-
table: {
|
|
945
|
-
category: 'Input Props'
|
|
946
|
-
}
|
|
947
|
-
},
|
|
948
|
-
queryOptions: {
|
|
949
|
-
table: {
|
|
950
|
-
category: 'Input Props'
|
|
951
|
-
}
|
|
952
|
-
},
|
|
953
|
-
watchParams: {
|
|
954
|
-
table: {
|
|
955
|
-
category: 'Input Props'
|
|
956
|
-
}
|
|
957
|
-
},
|
|
958
|
-
debounceTimeout: {
|
|
959
|
-
table: {
|
|
960
|
-
category: 'Input Props'
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
apiConfig: {
|
|
964
|
-
table: {
|
|
965
|
-
category: 'Input Props'
|
|
966
|
-
}
|
|
967
|
-
}
|
|
298
|
+
classes: { table: { category: 'Input Props' } },
|
|
299
|
+
id: { table: { category: 'Input Props' } },
|
|
300
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
301
|
+
sx: { table: { category: 'Input Props' } },
|
|
302
|
+
ref: { table: { category: 'Input Props' } },
|
|
303
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
304
|
+
slots: { table: { category: 'Input Props' } },
|
|
305
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
306
|
+
open: { table: { category: 'Input Props' } },
|
|
307
|
+
multiple: { table: { category: 'Input Props' } },
|
|
308
|
+
onClose: { table: { category: 'Input Props' } },
|
|
309
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
310
|
+
queryKey: { table: { category: 'Input Props' } },
|
|
311
|
+
ChipProps: { table: { category: 'Input Props' } },
|
|
312
|
+
disablePortal: { table: { category: 'Input Props' } },
|
|
313
|
+
getLimitTagsText: { table: { category: 'Input Props' } },
|
|
314
|
+
ListboxComponent: { table: { category: 'Input Props' } },
|
|
315
|
+
ListboxProps: { table: { category: 'Input Props' } },
|
|
316
|
+
loadingText: { table: { category: 'Input Props' } },
|
|
317
|
+
limitTags: { table: { category: 'Input Props' } },
|
|
318
|
+
noOptionsText: { table: { category: 'Input Props' } },
|
|
319
|
+
renderGroup: { table: { category: 'Input Props' } },
|
|
320
|
+
renderOption: { table: { category: 'Input Props' } },
|
|
321
|
+
renderTags: { table: { category: 'Input Props' } },
|
|
322
|
+
unstable_classNamePrefix: { table: { category: 'Input Props' } },
|
|
323
|
+
unstable_isActiveElementInListbox: { table: { category: 'Input Props' } },
|
|
324
|
+
autoHighlight: { table: { category: 'Input Props' } },
|
|
325
|
+
autoSelect: { table: { category: 'Input Props' } },
|
|
326
|
+
blurOnSelect: { table: { category: 'Input Props' } },
|
|
327
|
+
clearOnBlur: { table: { category: 'Input Props' } },
|
|
328
|
+
clearOnEscape: { table: { category: 'Input Props' } },
|
|
329
|
+
componentName: { table: { category: 'Input Props' } },
|
|
330
|
+
disableClearable: { table: { category: 'Input Props' } },
|
|
331
|
+
disableCloseOnSelect: { table: { category: 'Input Props' } },
|
|
332
|
+
filterOptions: { table: { category: 'Input Props' } },
|
|
333
|
+
filterSelectedOptions: { table: { category: 'Input Props' } },
|
|
334
|
+
freeSolo: { table: { category: 'Input Props' } },
|
|
335
|
+
getOptionDisabled: { table: { category: 'Input Props' } },
|
|
336
|
+
getOptionKey: { table: { category: 'Input Props' } },
|
|
337
|
+
getOptionLabel: { table: { category: 'Input Props' } },
|
|
338
|
+
groupBy: { table: { category: 'Input Props' } },
|
|
339
|
+
inputValue: { table: { category: 'Input Props' } },
|
|
340
|
+
isOptionEqualToValue: { table: { category: 'Input Props' } },
|
|
341
|
+
onHighlightChange: { table: { category: 'Input Props' } },
|
|
342
|
+
onInputChange: { table: { category: 'Input Props' } },
|
|
343
|
+
FieldProps: { table: { category: 'Input Props' } },
|
|
344
|
+
limit: { table: { category: 'Input Props' } },
|
|
345
|
+
queryOptions: { table: { category: 'Input Props' } },
|
|
346
|
+
watchParams: { table: { category: 'Input Props' } },
|
|
347
|
+
debounceTimeout: { table: { category: 'Input Props' } },
|
|
348
|
+
apiConfig: { table: { category: 'Input Props' } },
|
|
968
349
|
};
|
|
969
350
|
|
|
970
351
|
export const DatepickerPropsCategorized: DatepickerPropsObject = {
|
|
971
|
-
className: {
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
},
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
},
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
},
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
},
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
},
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
},
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
},
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
},
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
},
|
|
1016
|
-
|
|
1017
|
-
table: {
|
|
1018
|
-
category: 'Input Props'
|
|
1019
|
-
}
|
|
1020
|
-
},
|
|
1021
|
-
onClose: {
|
|
1022
|
-
table: {
|
|
1023
|
-
category: 'Input Props'
|
|
1024
|
-
}
|
|
1025
|
-
},
|
|
1026
|
-
onOpen: {
|
|
1027
|
-
table: {
|
|
1028
|
-
category: 'Input Props'
|
|
1029
|
-
}
|
|
1030
|
-
},
|
|
1031
|
-
FieldProps: {
|
|
1032
|
-
table: {
|
|
1033
|
-
category: 'Input Props'
|
|
1034
|
-
}
|
|
1035
|
-
},
|
|
1036
|
-
disableFuture: {
|
|
1037
|
-
table: {
|
|
1038
|
-
category: 'Input Props'
|
|
1039
|
-
}
|
|
1040
|
-
},
|
|
1041
|
-
disablePast: {
|
|
1042
|
-
table: {
|
|
1043
|
-
category: 'Input Props'
|
|
1044
|
-
}
|
|
1045
|
-
},
|
|
1046
|
-
shouldDisableDate: {
|
|
1047
|
-
table: {
|
|
1048
|
-
category: 'Input Props'
|
|
1049
|
-
}
|
|
1050
|
-
},
|
|
1051
|
-
shouldDisableMonth: {
|
|
1052
|
-
table: {
|
|
1053
|
-
category: 'Input Props'
|
|
1054
|
-
}
|
|
1055
|
-
},
|
|
1056
|
-
shouldDisableYear: {
|
|
1057
|
-
table: {
|
|
1058
|
-
category: 'Input Props'
|
|
1059
|
-
}
|
|
1060
|
-
},
|
|
1061
|
-
minDate: {
|
|
1062
|
-
table: {
|
|
1063
|
-
category: 'Input Props'
|
|
1064
|
-
}
|
|
1065
|
-
},
|
|
1066
|
-
maxDate: {
|
|
1067
|
-
table: {
|
|
1068
|
-
category: 'Input Props'
|
|
1069
|
-
}
|
|
1070
|
-
},
|
|
1071
|
-
views: {
|
|
1072
|
-
table: {
|
|
1073
|
-
category: 'Input Props'
|
|
1074
|
-
}
|
|
1075
|
-
},
|
|
1076
|
-
onViewChange: {
|
|
1077
|
-
table: {
|
|
1078
|
-
category: 'Input Props'
|
|
1079
|
-
}
|
|
1080
|
-
},
|
|
1081
|
-
localeText: {
|
|
1082
|
-
table: {
|
|
1083
|
-
category: 'Input Props'
|
|
1084
|
-
}
|
|
1085
|
-
},
|
|
1086
|
-
onAccept: {
|
|
1087
|
-
table: {
|
|
1088
|
-
category: 'Input Props'
|
|
1089
|
-
}
|
|
1090
|
-
},
|
|
1091
|
-
viewRenderers: {
|
|
1092
|
-
table: {
|
|
1093
|
-
category: 'Input Props'
|
|
1094
|
-
}
|
|
1095
|
-
},
|
|
1096
|
-
referenceDate: {
|
|
1097
|
-
table: {
|
|
1098
|
-
category: 'Input Props'
|
|
1099
|
-
}
|
|
1100
|
-
},
|
|
1101
|
-
timezone: {
|
|
1102
|
-
table: {
|
|
1103
|
-
category: 'Input Props'
|
|
1104
|
-
}
|
|
1105
|
-
},
|
|
1106
|
-
formatDensity: {
|
|
1107
|
-
table: {
|
|
1108
|
-
category: 'Input Props'
|
|
1109
|
-
}
|
|
1110
|
-
},
|
|
1111
|
-
enableAccessibleFieldDOMStructure: {
|
|
1112
|
-
table: {
|
|
1113
|
-
category: 'Input Props'
|
|
1114
|
-
}
|
|
1115
|
-
},
|
|
1116
|
-
selectedSections: {
|
|
1117
|
-
table: {
|
|
1118
|
-
category: 'Input Props'
|
|
1119
|
-
}
|
|
1120
|
-
},
|
|
1121
|
-
onSelectedSectionsChange: {
|
|
1122
|
-
table: {
|
|
1123
|
-
category: 'Input Props'
|
|
1124
|
-
}
|
|
1125
|
-
},
|
|
1126
|
-
yearsPerRow: {
|
|
1127
|
-
table: {
|
|
1128
|
-
category: 'Input Props'
|
|
1129
|
-
}
|
|
1130
|
-
},
|
|
1131
|
-
renderLoading: {
|
|
1132
|
-
table: {
|
|
1133
|
-
category: 'Input Props'
|
|
1134
|
-
}
|
|
1135
|
-
},
|
|
1136
|
-
onYearChange: {
|
|
1137
|
-
table: {
|
|
1138
|
-
category: 'Input Props'
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
onMonthChange: {
|
|
1142
|
-
table: {
|
|
1143
|
-
category: 'Input Props'
|
|
1144
|
-
}
|
|
1145
|
-
},
|
|
1146
|
-
dayOfWeekFormatter: {
|
|
1147
|
-
table: {
|
|
1148
|
-
category: 'Input Props'
|
|
1149
|
-
}
|
|
1150
|
-
},
|
|
1151
|
-
displayWeekNumber: {
|
|
1152
|
-
table: {
|
|
1153
|
-
category: 'Input Props'
|
|
1154
|
-
}
|
|
1155
|
-
},
|
|
1156
|
-
fixedWeekNumber: {
|
|
1157
|
-
table: {
|
|
1158
|
-
category: 'Input Props'
|
|
1159
|
-
}
|
|
1160
|
-
},
|
|
1161
|
-
disableHighlightToday: {
|
|
1162
|
-
table: {
|
|
1163
|
-
category: 'Input Props'
|
|
1164
|
-
}
|
|
1165
|
-
},
|
|
1166
|
-
showDaysOutsideCurrentMonth: {
|
|
1167
|
-
table: {
|
|
1168
|
-
category: 'Input Props'
|
|
1169
|
-
}
|
|
1170
|
-
},
|
|
1171
|
-
monthsPerRow: {
|
|
1172
|
-
table: {
|
|
1173
|
-
category: 'Input Props'
|
|
1174
|
-
}
|
|
1175
|
-
},
|
|
1176
|
-
yearsOrder: {
|
|
1177
|
-
table: {
|
|
1178
|
-
category: 'Input Props'
|
|
1179
|
-
}
|
|
1180
|
-
},
|
|
1181
|
-
format: {
|
|
1182
|
-
table: {
|
|
1183
|
-
category: 'Input Props'
|
|
1184
|
-
}
|
|
1185
|
-
},
|
|
1186
|
-
closeOnSelect: {
|
|
1187
|
-
table: {
|
|
1188
|
-
category: 'Input Props'
|
|
1189
|
-
}
|
|
1190
|
-
},
|
|
1191
|
-
disableOpenPicker: {
|
|
1192
|
-
table: {
|
|
1193
|
-
category: 'Input Props'
|
|
1194
|
-
}
|
|
1195
|
-
},
|
|
1196
|
-
placement: {
|
|
1197
|
-
table: {
|
|
1198
|
-
category: 'Input Props'
|
|
1199
|
-
}
|
|
1200
|
-
}
|
|
352
|
+
className: { table: { category: 'Input Props' } },
|
|
353
|
+
autoFocus: { table: { category: 'Input Props' } },
|
|
354
|
+
onError: { table: { category: 'Input Props' } },
|
|
355
|
+
sx: { table: { category: 'Input Props' } },
|
|
356
|
+
label: { table: { category: 'Input Props' } },
|
|
357
|
+
view: { table: { category: 'Input Props' } },
|
|
358
|
+
inputRef: { table: { category: 'Input Props' } },
|
|
359
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
360
|
+
open: { table: { category: 'Input Props' } },
|
|
361
|
+
loading: { table: { category: 'Input Props' } },
|
|
362
|
+
onClose: { table: { category: 'Input Props' } },
|
|
363
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
364
|
+
FieldProps: { table: { category: 'Input Props' } },
|
|
365
|
+
disableFuture: { table: { category: 'Input Props' } },
|
|
366
|
+
disablePast: { table: { category: 'Input Props' } },
|
|
367
|
+
shouldDisableDate: { table: { category: 'Input Props' } },
|
|
368
|
+
shouldDisableMonth: { table: { category: 'Input Props' } },
|
|
369
|
+
shouldDisableYear: { table: { category: 'Input Props' } },
|
|
370
|
+
minDate: { table: { category: 'Input Props' } },
|
|
371
|
+
maxDate: { table: { category: 'Input Props' } },
|
|
372
|
+
views: { table: { category: 'Input Props' } },
|
|
373
|
+
onViewChange: { table: { category: 'Input Props' } },
|
|
374
|
+
localeText: { table: { category: 'Input Props' } },
|
|
375
|
+
onAccept: { table: { category: 'Input Props' } },
|
|
376
|
+
viewRenderers: { table: { category: 'Input Props' } },
|
|
377
|
+
referenceDate: { table: { category: 'Input Props' } },
|
|
378
|
+
timezone: { table: { category: 'Input Props' } },
|
|
379
|
+
formatDensity: { table: { category: 'Input Props' } },
|
|
380
|
+
enableAccessibleFieldDOMStructure: { table: { category: 'Input Props' } },
|
|
381
|
+
selectedSections: { table: { category: 'Input Props' } },
|
|
382
|
+
onSelectedSectionsChange: { table: { category: 'Input Props' } },
|
|
383
|
+
yearsPerRow: { table: { category: 'Input Props' } },
|
|
384
|
+
renderLoading: { table: { category: 'Input Props' } },
|
|
385
|
+
onYearChange: { table: { category: 'Input Props' } },
|
|
386
|
+
onMonthChange: { table: { category: 'Input Props' } },
|
|
387
|
+
dayOfWeekFormatter: { table: { category: 'Input Props' } },
|
|
388
|
+
displayWeekNumber: { table: { category: 'Input Props' } },
|
|
389
|
+
fixedWeekNumber: { table: { category: 'Input Props' } },
|
|
390
|
+
disableHighlightToday: { table: { category: 'Input Props' } },
|
|
391
|
+
showDaysOutsideCurrentMonth: { table: { category: 'Input Props' } },
|
|
392
|
+
monthsPerRow: { table: { category: 'Input Props' } },
|
|
393
|
+
yearsOrder: { table: { category: 'Input Props' } },
|
|
394
|
+
format: { table: { category: 'Input Props' } },
|
|
395
|
+
closeOnSelect: { table: { category: 'Input Props' } },
|
|
396
|
+
disableOpenPicker: { table: { category: 'Input Props' } },
|
|
397
|
+
placement: { table: { category: 'Input Props' } },
|
|
1201
398
|
};
|
|
1202
399
|
|
|
1203
400
|
export const CodesAutocompletePropsCategorized: CodesAutocompletePropsObject = {
|
|
1204
|
-
classes: {
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
},
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
},
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
},
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
},
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
},
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
},
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
},
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
},
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
},
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
},
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
category: 'Input Props'
|
|
1257
|
-
}
|
|
1258
|
-
},
|
|
1259
|
-
onClose: {
|
|
1260
|
-
table: {
|
|
1261
|
-
category: 'Input Props'
|
|
1262
|
-
}
|
|
1263
|
-
},
|
|
1264
|
-
onOpen: {
|
|
1265
|
-
table: {
|
|
1266
|
-
category: 'Input Props'
|
|
1267
|
-
}
|
|
1268
|
-
},
|
|
1269
|
-
queryKey: {
|
|
1270
|
-
table: {
|
|
1271
|
-
category: 'Input Props'
|
|
1272
|
-
}
|
|
1273
|
-
},
|
|
1274
|
-
ChipProps: {
|
|
1275
|
-
table: {
|
|
1276
|
-
category: 'Input Props'
|
|
1277
|
-
}
|
|
1278
|
-
},
|
|
1279
|
-
disablePortal: {
|
|
1280
|
-
table: {
|
|
1281
|
-
category: 'Input Props'
|
|
1282
|
-
}
|
|
1283
|
-
},
|
|
1284
|
-
getLimitTagsText: {
|
|
1285
|
-
table: {
|
|
1286
|
-
category: 'Input Props'
|
|
1287
|
-
}
|
|
1288
|
-
},
|
|
1289
|
-
ListboxComponent: {
|
|
1290
|
-
table: {
|
|
1291
|
-
category: 'Input Props'
|
|
1292
|
-
}
|
|
1293
|
-
},
|
|
1294
|
-
ListboxProps: {
|
|
1295
|
-
table: {
|
|
1296
|
-
category: 'Input Props'
|
|
1297
|
-
}
|
|
1298
|
-
},
|
|
1299
|
-
loadingText: {
|
|
1300
|
-
table: {
|
|
1301
|
-
category: 'Input Props'
|
|
1302
|
-
}
|
|
1303
|
-
},
|
|
1304
|
-
limitTags: {
|
|
1305
|
-
table: {
|
|
1306
|
-
category: 'Input Props'
|
|
1307
|
-
}
|
|
1308
|
-
},
|
|
1309
|
-
noOptionsText: {
|
|
1310
|
-
table: {
|
|
1311
|
-
category: 'Input Props'
|
|
1312
|
-
}
|
|
1313
|
-
},
|
|
1314
|
-
renderGroup: {
|
|
1315
|
-
table: {
|
|
1316
|
-
category: 'Input Props'
|
|
1317
|
-
}
|
|
1318
|
-
},
|
|
1319
|
-
renderOption: {
|
|
1320
|
-
table: {
|
|
1321
|
-
category: 'Input Props'
|
|
1322
|
-
}
|
|
1323
|
-
},
|
|
1324
|
-
renderTags: {
|
|
1325
|
-
table: {
|
|
1326
|
-
category: 'Input Props'
|
|
1327
|
-
}
|
|
1328
|
-
},
|
|
1329
|
-
unstable_classNamePrefix: {
|
|
1330
|
-
table: {
|
|
1331
|
-
category: 'Input Props'
|
|
1332
|
-
}
|
|
1333
|
-
},
|
|
1334
|
-
unstable_isActiveElementInListbox: {
|
|
1335
|
-
table: {
|
|
1336
|
-
category: 'Input Props'
|
|
1337
|
-
}
|
|
1338
|
-
},
|
|
1339
|
-
autoHighlight: {
|
|
1340
|
-
table: {
|
|
1341
|
-
category: 'Input Props'
|
|
1342
|
-
}
|
|
1343
|
-
},
|
|
1344
|
-
autoSelect: {
|
|
1345
|
-
table: {
|
|
1346
|
-
category: 'Input Props'
|
|
1347
|
-
}
|
|
1348
|
-
},
|
|
1349
|
-
blurOnSelect: {
|
|
1350
|
-
table: {
|
|
1351
|
-
category: 'Input Props'
|
|
1352
|
-
}
|
|
1353
|
-
},
|
|
1354
|
-
clearOnBlur: {
|
|
1355
|
-
table: {
|
|
1356
|
-
category: 'Input Props'
|
|
1357
|
-
}
|
|
1358
|
-
},
|
|
1359
|
-
clearOnEscape: {
|
|
1360
|
-
table: {
|
|
1361
|
-
category: 'Input Props'
|
|
1362
|
-
}
|
|
1363
|
-
},
|
|
1364
|
-
componentName: {
|
|
1365
|
-
table: {
|
|
1366
|
-
category: 'Input Props'
|
|
1367
|
-
}
|
|
1368
|
-
},
|
|
1369
|
-
disableClearable: {
|
|
1370
|
-
table: {
|
|
1371
|
-
category: 'Input Props'
|
|
1372
|
-
}
|
|
1373
|
-
},
|
|
1374
|
-
disableCloseOnSelect: {
|
|
1375
|
-
table: {
|
|
1376
|
-
category: 'Input Props'
|
|
1377
|
-
}
|
|
1378
|
-
},
|
|
1379
|
-
filterOptions: {
|
|
1380
|
-
table: {
|
|
1381
|
-
category: 'Input Props'
|
|
1382
|
-
}
|
|
1383
|
-
},
|
|
1384
|
-
filterSelectedOptions: {
|
|
1385
|
-
table: {
|
|
1386
|
-
category: 'Input Props'
|
|
1387
|
-
}
|
|
1388
|
-
},
|
|
1389
|
-
freeSolo: {
|
|
1390
|
-
table: {
|
|
1391
|
-
category: 'Input Props'
|
|
1392
|
-
}
|
|
1393
|
-
},
|
|
1394
|
-
getOptionDisabled: {
|
|
1395
|
-
table: {
|
|
1396
|
-
category: 'Input Props'
|
|
1397
|
-
}
|
|
1398
|
-
},
|
|
1399
|
-
getOptionKey: {
|
|
1400
|
-
table: {
|
|
1401
|
-
category: 'Input Props'
|
|
1402
|
-
}
|
|
1403
|
-
},
|
|
1404
|
-
getOptionLabel: {
|
|
1405
|
-
table: {
|
|
1406
|
-
category: 'Input Props'
|
|
1407
|
-
}
|
|
1408
|
-
},
|
|
1409
|
-
groupBy: {
|
|
1410
|
-
table: {
|
|
1411
|
-
category: 'Input Props'
|
|
1412
|
-
}
|
|
1413
|
-
},
|
|
1414
|
-
inputValue: {
|
|
1415
|
-
table: {
|
|
1416
|
-
category: 'Input Props'
|
|
1417
|
-
}
|
|
1418
|
-
},
|
|
1419
|
-
isOptionEqualToValue: {
|
|
1420
|
-
table: {
|
|
1421
|
-
category: 'Input Props'
|
|
1422
|
-
}
|
|
1423
|
-
},
|
|
1424
|
-
onHighlightChange: {
|
|
1425
|
-
table: {
|
|
1426
|
-
category: 'Input Props'
|
|
1427
|
-
}
|
|
1428
|
-
},
|
|
1429
|
-
onInputChange: {
|
|
1430
|
-
table: {
|
|
1431
|
-
category: 'Input Props'
|
|
1432
|
-
}
|
|
1433
|
-
},
|
|
1434
|
-
FieldProps: {
|
|
1435
|
-
table: {
|
|
1436
|
-
category: 'Input Props'
|
|
1437
|
-
}
|
|
1438
|
-
},
|
|
1439
|
-
limit: {
|
|
1440
|
-
table: {
|
|
1441
|
-
category: 'Input Props'
|
|
1442
|
-
}
|
|
1443
|
-
},
|
|
1444
|
-
queryOptions: {
|
|
1445
|
-
table: {
|
|
1446
|
-
category: 'Input Props'
|
|
1447
|
-
}
|
|
1448
|
-
},
|
|
1449
|
-
watchParams: {
|
|
1450
|
-
table: {
|
|
1451
|
-
category: 'Input Props'
|
|
1452
|
-
}
|
|
1453
|
-
},
|
|
1454
|
-
debounceTimeout: {
|
|
1455
|
-
table: {
|
|
1456
|
-
category: 'Input Props'
|
|
1457
|
-
}
|
|
1458
|
-
},
|
|
1459
|
-
apiConfig: {
|
|
1460
|
-
table: {
|
|
1461
|
-
category: 'Input Props'
|
|
1462
|
-
}
|
|
1463
|
-
}
|
|
401
|
+
classes: { table: { category: 'Input Props' } },
|
|
402
|
+
id: { table: { category: 'Input Props' } },
|
|
403
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
404
|
+
sx: { table: { category: 'Input Props' } },
|
|
405
|
+
ref: { table: { category: 'Input Props' } },
|
|
406
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
407
|
+
slots: { table: { category: 'Input Props' } },
|
|
408
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
409
|
+
list: { table: { category: 'Input Props' } },
|
|
410
|
+
open: { table: { category: 'Input Props' } },
|
|
411
|
+
multiple: { table: { category: 'Input Props' } },
|
|
412
|
+
onClose: { table: { category: 'Input Props' } },
|
|
413
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
414
|
+
queryKey: { table: { category: 'Input Props' } },
|
|
415
|
+
ChipProps: { table: { category: 'Input Props' } },
|
|
416
|
+
disablePortal: { table: { category: 'Input Props' } },
|
|
417
|
+
getLimitTagsText: { table: { category: 'Input Props' } },
|
|
418
|
+
ListboxComponent: { table: { category: 'Input Props' } },
|
|
419
|
+
ListboxProps: { table: { category: 'Input Props' } },
|
|
420
|
+
loadingText: { table: { category: 'Input Props' } },
|
|
421
|
+
limitTags: { table: { category: 'Input Props' } },
|
|
422
|
+
noOptionsText: { table: { category: 'Input Props' } },
|
|
423
|
+
renderGroup: { table: { category: 'Input Props' } },
|
|
424
|
+
renderOption: { table: { category: 'Input Props' } },
|
|
425
|
+
renderTags: { table: { category: 'Input Props' } },
|
|
426
|
+
unstable_classNamePrefix: { table: { category: 'Input Props' } },
|
|
427
|
+
unstable_isActiveElementInListbox: { table: { category: 'Input Props' } },
|
|
428
|
+
autoHighlight: { table: { category: 'Input Props' } },
|
|
429
|
+
autoSelect: { table: { category: 'Input Props' } },
|
|
430
|
+
blurOnSelect: { table: { category: 'Input Props' } },
|
|
431
|
+
clearOnBlur: { table: { category: 'Input Props' } },
|
|
432
|
+
clearOnEscape: { table: { category: 'Input Props' } },
|
|
433
|
+
componentName: { table: { category: 'Input Props' } },
|
|
434
|
+
disableClearable: { table: { category: 'Input Props' } },
|
|
435
|
+
disableCloseOnSelect: { table: { category: 'Input Props' } },
|
|
436
|
+
filterOptions: { table: { category: 'Input Props' } },
|
|
437
|
+
filterSelectedOptions: { table: { category: 'Input Props' } },
|
|
438
|
+
freeSolo: { table: { category: 'Input Props' } },
|
|
439
|
+
getOptionDisabled: { table: { category: 'Input Props' } },
|
|
440
|
+
getOptionKey: { table: { category: 'Input Props' } },
|
|
441
|
+
getOptionLabel: { table: { category: 'Input Props' } },
|
|
442
|
+
groupBy: { table: { category: 'Input Props' } },
|
|
443
|
+
inputValue: { table: { category: 'Input Props' } },
|
|
444
|
+
isOptionEqualToValue: { table: { category: 'Input Props' } },
|
|
445
|
+
onHighlightChange: { table: { category: 'Input Props' } },
|
|
446
|
+
onInputChange: { table: { category: 'Input Props' } },
|
|
447
|
+
FieldProps: { table: { category: 'Input Props' } },
|
|
448
|
+
limit: { table: { category: 'Input Props' } },
|
|
449
|
+
queryOptions: { table: { category: 'Input Props' } },
|
|
450
|
+
watchParams: { table: { category: 'Input Props' } },
|
|
451
|
+
debounceTimeout: { table: { category: 'Input Props' } },
|
|
452
|
+
apiConfig: { table: { category: 'Input Props' } },
|
|
1464
453
|
};
|
|
1465
454
|
|
|
1466
455
|
export const AsyncAutocompletePropsCategorized: AsyncAutocompletePropsObject = {
|
|
1467
|
-
classes: {
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
},
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
},
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
},
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
},
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
},
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
},
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
},
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
},
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
},
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
},
|
|
1517
|
-
|
|
1518
|
-
table: {
|
|
1519
|
-
category: 'Input Props'
|
|
1520
|
-
}
|
|
1521
|
-
},
|
|
1522
|
-
onOpen: {
|
|
1523
|
-
table: {
|
|
1524
|
-
category: 'Input Props'
|
|
1525
|
-
}
|
|
1526
|
-
},
|
|
1527
|
-
queryKey: {
|
|
1528
|
-
table: {
|
|
1529
|
-
category: 'Input Props'
|
|
1530
|
-
}
|
|
1531
|
-
},
|
|
1532
|
-
ChipProps: {
|
|
1533
|
-
table: {
|
|
1534
|
-
category: 'Input Props'
|
|
1535
|
-
}
|
|
1536
|
-
},
|
|
1537
|
-
disablePortal: {
|
|
1538
|
-
table: {
|
|
1539
|
-
category: 'Input Props'
|
|
1540
|
-
}
|
|
1541
|
-
},
|
|
1542
|
-
getLimitTagsText: {
|
|
1543
|
-
table: {
|
|
1544
|
-
category: 'Input Props'
|
|
1545
|
-
}
|
|
1546
|
-
},
|
|
1547
|
-
ListboxComponent: {
|
|
1548
|
-
table: {
|
|
1549
|
-
category: 'Input Props'
|
|
1550
|
-
}
|
|
1551
|
-
},
|
|
1552
|
-
ListboxProps: {
|
|
1553
|
-
table: {
|
|
1554
|
-
category: 'Input Props'
|
|
1555
|
-
}
|
|
1556
|
-
},
|
|
1557
|
-
loadingText: {
|
|
1558
|
-
table: {
|
|
1559
|
-
category: 'Input Props'
|
|
1560
|
-
}
|
|
1561
|
-
},
|
|
1562
|
-
limitTags: {
|
|
1563
|
-
table: {
|
|
1564
|
-
category: 'Input Props'
|
|
1565
|
-
}
|
|
1566
|
-
},
|
|
1567
|
-
noOptionsText: {
|
|
1568
|
-
table: {
|
|
1569
|
-
category: 'Input Props'
|
|
1570
|
-
}
|
|
1571
|
-
},
|
|
1572
|
-
renderGroup: {
|
|
1573
|
-
table: {
|
|
1574
|
-
category: 'Input Props'
|
|
1575
|
-
}
|
|
1576
|
-
},
|
|
1577
|
-
renderOption: {
|
|
1578
|
-
table: {
|
|
1579
|
-
category: 'Input Props'
|
|
1580
|
-
}
|
|
1581
|
-
},
|
|
1582
|
-
renderTags: {
|
|
1583
|
-
table: {
|
|
1584
|
-
category: 'Input Props'
|
|
1585
|
-
}
|
|
1586
|
-
},
|
|
1587
|
-
unstable_classNamePrefix: {
|
|
1588
|
-
table: {
|
|
1589
|
-
category: 'Input Props'
|
|
1590
|
-
}
|
|
1591
|
-
},
|
|
1592
|
-
unstable_isActiveElementInListbox: {
|
|
1593
|
-
table: {
|
|
1594
|
-
category: 'Input Props'
|
|
1595
|
-
}
|
|
1596
|
-
},
|
|
1597
|
-
autoHighlight: {
|
|
1598
|
-
table: {
|
|
1599
|
-
category: 'Input Props'
|
|
1600
|
-
}
|
|
1601
|
-
},
|
|
1602
|
-
autoSelect: {
|
|
1603
|
-
table: {
|
|
1604
|
-
category: 'Input Props'
|
|
1605
|
-
}
|
|
1606
|
-
},
|
|
1607
|
-
blurOnSelect: {
|
|
1608
|
-
table: {
|
|
1609
|
-
category: 'Input Props'
|
|
1610
|
-
}
|
|
1611
|
-
},
|
|
1612
|
-
clearOnBlur: {
|
|
1613
|
-
table: {
|
|
1614
|
-
category: 'Input Props'
|
|
1615
|
-
}
|
|
1616
|
-
},
|
|
1617
|
-
clearOnEscape: {
|
|
1618
|
-
table: {
|
|
1619
|
-
category: 'Input Props'
|
|
1620
|
-
}
|
|
1621
|
-
},
|
|
1622
|
-
componentName: {
|
|
1623
|
-
table: {
|
|
1624
|
-
category: 'Input Props'
|
|
1625
|
-
}
|
|
1626
|
-
},
|
|
1627
|
-
disableClearable: {
|
|
1628
|
-
table: {
|
|
1629
|
-
category: 'Input Props'
|
|
1630
|
-
}
|
|
1631
|
-
},
|
|
1632
|
-
disableCloseOnSelect: {
|
|
1633
|
-
table: {
|
|
1634
|
-
category: 'Input Props'
|
|
1635
|
-
}
|
|
1636
|
-
},
|
|
1637
|
-
filterOptions: {
|
|
1638
|
-
table: {
|
|
1639
|
-
category: 'Input Props'
|
|
1640
|
-
}
|
|
1641
|
-
},
|
|
1642
|
-
filterSelectedOptions: {
|
|
1643
|
-
table: {
|
|
1644
|
-
category: 'Input Props'
|
|
1645
|
-
}
|
|
1646
|
-
},
|
|
1647
|
-
freeSolo: {
|
|
1648
|
-
table: {
|
|
1649
|
-
category: 'Input Props'
|
|
1650
|
-
}
|
|
1651
|
-
},
|
|
1652
|
-
getOptionDisabled: {
|
|
1653
|
-
table: {
|
|
1654
|
-
category: 'Input Props'
|
|
1655
|
-
}
|
|
1656
|
-
},
|
|
1657
|
-
getOptionKey: {
|
|
1658
|
-
table: {
|
|
1659
|
-
category: 'Input Props'
|
|
1660
|
-
}
|
|
1661
|
-
},
|
|
1662
|
-
getOptionLabel: {
|
|
1663
|
-
table: {
|
|
1664
|
-
category: 'Input Props'
|
|
1665
|
-
}
|
|
1666
|
-
},
|
|
1667
|
-
groupBy: {
|
|
1668
|
-
table: {
|
|
1669
|
-
category: 'Input Props'
|
|
1670
|
-
}
|
|
1671
|
-
},
|
|
1672
|
-
inputValue: {
|
|
1673
|
-
table: {
|
|
1674
|
-
category: 'Input Props'
|
|
1675
|
-
}
|
|
1676
|
-
},
|
|
1677
|
-
isOptionEqualToValue: {
|
|
1678
|
-
table: {
|
|
1679
|
-
category: 'Input Props'
|
|
1680
|
-
}
|
|
1681
|
-
},
|
|
1682
|
-
onHighlightChange: {
|
|
1683
|
-
table: {
|
|
1684
|
-
category: 'Input Props'
|
|
1685
|
-
}
|
|
1686
|
-
},
|
|
1687
|
-
onInputChange: {
|
|
1688
|
-
table: {
|
|
1689
|
-
category: 'Input Props'
|
|
1690
|
-
}
|
|
1691
|
-
},
|
|
1692
|
-
FieldProps: {
|
|
1693
|
-
table: {
|
|
1694
|
-
category: 'Input Props'
|
|
1695
|
-
}
|
|
1696
|
-
},
|
|
1697
|
-
loadOptions: {
|
|
1698
|
-
table: {
|
|
1699
|
-
category: 'Input Props'
|
|
1700
|
-
}
|
|
1701
|
-
},
|
|
1702
|
-
limit: {
|
|
1703
|
-
table: {
|
|
1704
|
-
category: 'Input Props'
|
|
1705
|
-
}
|
|
1706
|
-
},
|
|
1707
|
-
queryOptions: {
|
|
1708
|
-
table: {
|
|
1709
|
-
category: 'Input Props'
|
|
1710
|
-
}
|
|
1711
|
-
},
|
|
1712
|
-
watchParams: {
|
|
1713
|
-
table: {
|
|
1714
|
-
category: 'Input Props'
|
|
1715
|
-
}
|
|
1716
|
-
},
|
|
1717
|
-
debounceTimeout: {
|
|
1718
|
-
table: {
|
|
1719
|
-
category: 'Input Props'
|
|
1720
|
-
}
|
|
1721
|
-
}
|
|
456
|
+
classes: { table: { category: 'Input Props' } },
|
|
457
|
+
id: { table: { category: 'Input Props' } },
|
|
458
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
459
|
+
sx: { table: { category: 'Input Props' } },
|
|
460
|
+
ref: { table: { category: 'Input Props' } },
|
|
461
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
462
|
+
slots: { table: { category: 'Input Props' } },
|
|
463
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
464
|
+
open: { table: { category: 'Input Props' } },
|
|
465
|
+
multiple: { table: { category: 'Input Props' } },
|
|
466
|
+
onClose: { table: { category: 'Input Props' } },
|
|
467
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
468
|
+
queryKey: { table: { category: 'Input Props' } },
|
|
469
|
+
ChipProps: { table: { category: 'Input Props' } },
|
|
470
|
+
disablePortal: { table: { category: 'Input Props' } },
|
|
471
|
+
getLimitTagsText: { table: { category: 'Input Props' } },
|
|
472
|
+
ListboxComponent: { table: { category: 'Input Props' } },
|
|
473
|
+
ListboxProps: { table: { category: 'Input Props' } },
|
|
474
|
+
loadingText: { table: { category: 'Input Props' } },
|
|
475
|
+
limitTags: { table: { category: 'Input Props' } },
|
|
476
|
+
noOptionsText: { table: { category: 'Input Props' } },
|
|
477
|
+
renderGroup: { table: { category: 'Input Props' } },
|
|
478
|
+
renderOption: { table: { category: 'Input Props' } },
|
|
479
|
+
renderTags: { table: { category: 'Input Props' } },
|
|
480
|
+
unstable_classNamePrefix: { table: { category: 'Input Props' } },
|
|
481
|
+
unstable_isActiveElementInListbox: { table: { category: 'Input Props' } },
|
|
482
|
+
autoHighlight: { table: { category: 'Input Props' } },
|
|
483
|
+
autoSelect: { table: { category: 'Input Props' } },
|
|
484
|
+
blurOnSelect: { table: { category: 'Input Props' } },
|
|
485
|
+
clearOnBlur: { table: { category: 'Input Props' } },
|
|
486
|
+
clearOnEscape: { table: { category: 'Input Props' } },
|
|
487
|
+
componentName: { table: { category: 'Input Props' } },
|
|
488
|
+
disableClearable: { table: { category: 'Input Props' } },
|
|
489
|
+
disableCloseOnSelect: { table: { category: 'Input Props' } },
|
|
490
|
+
filterOptions: { table: { category: 'Input Props' } },
|
|
491
|
+
filterSelectedOptions: { table: { category: 'Input Props' } },
|
|
492
|
+
freeSolo: { table: { category: 'Input Props' } },
|
|
493
|
+
getOptionDisabled: { table: { category: 'Input Props' } },
|
|
494
|
+
getOptionKey: { table: { category: 'Input Props' } },
|
|
495
|
+
getOptionLabel: { table: { category: 'Input Props' } },
|
|
496
|
+
groupBy: { table: { category: 'Input Props' } },
|
|
497
|
+
inputValue: { table: { category: 'Input Props' } },
|
|
498
|
+
isOptionEqualToValue: { table: { category: 'Input Props' } },
|
|
499
|
+
onHighlightChange: { table: { category: 'Input Props' } },
|
|
500
|
+
onInputChange: { table: { category: 'Input Props' } },
|
|
501
|
+
FieldProps: { table: { category: 'Input Props' } },
|
|
502
|
+
loadOptions: { table: { category: 'Input Props' } },
|
|
503
|
+
limit: { table: { category: 'Input Props' } },
|
|
504
|
+
queryOptions: { table: { category: 'Input Props' } },
|
|
505
|
+
watchParams: { table: { category: 'Input Props' } },
|
|
506
|
+
debounceTimeout: { table: { category: 'Input Props' } },
|
|
1722
507
|
};
|
|
1723
508
|
|
|
1724
509
|
export const AutocompletePropsCategorized: AutocompletePropsObject = {
|
|
1725
|
-
classes: {
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
},
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
},
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
},
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
},
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
},
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
},
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
},
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
},
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
},
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
}
|
|
1774
|
-
},
|
|
1775
|
-
loading: {
|
|
1776
|
-
table: {
|
|
1777
|
-
category: 'Input Props'
|
|
1778
|
-
}
|
|
1779
|
-
},
|
|
1780
|
-
multiple: {
|
|
1781
|
-
table: {
|
|
1782
|
-
category: 'Input Props'
|
|
1783
|
-
}
|
|
1784
|
-
},
|
|
1785
|
-
onClose: {
|
|
1786
|
-
table: {
|
|
1787
|
-
category: 'Input Props'
|
|
1788
|
-
}
|
|
1789
|
-
},
|
|
1790
|
-
onOpen: {
|
|
1791
|
-
table: {
|
|
1792
|
-
category: 'Input Props'
|
|
1793
|
-
}
|
|
1794
|
-
},
|
|
1795
|
-
disableListWrap: {
|
|
1796
|
-
table: {
|
|
1797
|
-
category: 'Input Props'
|
|
1798
|
-
}
|
|
1799
|
-
},
|
|
1800
|
-
ChipProps: {
|
|
1801
|
-
table: {
|
|
1802
|
-
category: 'Input Props'
|
|
1803
|
-
}
|
|
1804
|
-
},
|
|
1805
|
-
disablePortal: {
|
|
1806
|
-
table: {
|
|
1807
|
-
category: 'Input Props'
|
|
1808
|
-
}
|
|
1809
|
-
},
|
|
1810
|
-
getLimitTagsText: {
|
|
1811
|
-
table: {
|
|
1812
|
-
category: 'Input Props'
|
|
1813
|
-
}
|
|
1814
|
-
},
|
|
1815
|
-
ListboxComponent: {
|
|
1816
|
-
table: {
|
|
1817
|
-
category: 'Input Props'
|
|
1818
|
-
}
|
|
1819
|
-
},
|
|
1820
|
-
ListboxProps: {
|
|
1821
|
-
table: {
|
|
1822
|
-
category: 'Input Props'
|
|
1823
|
-
}
|
|
1824
|
-
},
|
|
1825
|
-
loadingText: {
|
|
1826
|
-
table: {
|
|
1827
|
-
category: 'Input Props'
|
|
1828
|
-
}
|
|
1829
|
-
},
|
|
1830
|
-
limitTags: {
|
|
1831
|
-
table: {
|
|
1832
|
-
category: 'Input Props'
|
|
1833
|
-
}
|
|
1834
|
-
},
|
|
1835
|
-
noOptionsText: {
|
|
1836
|
-
table: {
|
|
1837
|
-
category: 'Input Props'
|
|
1838
|
-
}
|
|
1839
|
-
},
|
|
1840
|
-
renderGroup: {
|
|
1841
|
-
table: {
|
|
1842
|
-
category: 'Input Props'
|
|
1843
|
-
}
|
|
1844
|
-
},
|
|
1845
|
-
renderOption: {
|
|
1846
|
-
table: {
|
|
1847
|
-
category: 'Input Props'
|
|
1848
|
-
}
|
|
1849
|
-
},
|
|
1850
|
-
renderTags: {
|
|
1851
|
-
table: {
|
|
1852
|
-
category: 'Input Props'
|
|
1853
|
-
}
|
|
1854
|
-
},
|
|
1855
|
-
unstable_classNamePrefix: {
|
|
1856
|
-
table: {
|
|
1857
|
-
category: 'Input Props'
|
|
1858
|
-
}
|
|
1859
|
-
},
|
|
1860
|
-
unstable_isActiveElementInListbox: {
|
|
1861
|
-
table: {
|
|
1862
|
-
category: 'Input Props'
|
|
1863
|
-
}
|
|
1864
|
-
},
|
|
1865
|
-
autoHighlight: {
|
|
1866
|
-
table: {
|
|
1867
|
-
category: 'Input Props'
|
|
1868
|
-
}
|
|
1869
|
-
},
|
|
1870
|
-
autoSelect: {
|
|
1871
|
-
table: {
|
|
1872
|
-
category: 'Input Props'
|
|
1873
|
-
}
|
|
1874
|
-
},
|
|
1875
|
-
blurOnSelect: {
|
|
1876
|
-
table: {
|
|
1877
|
-
category: 'Input Props'
|
|
1878
|
-
}
|
|
1879
|
-
},
|
|
1880
|
-
clearOnBlur: {
|
|
1881
|
-
table: {
|
|
1882
|
-
category: 'Input Props'
|
|
1883
|
-
}
|
|
1884
|
-
},
|
|
1885
|
-
clearOnEscape: {
|
|
1886
|
-
table: {
|
|
1887
|
-
category: 'Input Props'
|
|
1888
|
-
}
|
|
1889
|
-
},
|
|
1890
|
-
componentName: {
|
|
1891
|
-
table: {
|
|
1892
|
-
category: 'Input Props'
|
|
1893
|
-
}
|
|
1894
|
-
},
|
|
1895
|
-
disableClearable: {
|
|
1896
|
-
table: {
|
|
1897
|
-
category: 'Input Props'
|
|
1898
|
-
}
|
|
1899
|
-
},
|
|
1900
|
-
disableCloseOnSelect: {
|
|
1901
|
-
table: {
|
|
1902
|
-
category: 'Input Props'
|
|
1903
|
-
}
|
|
1904
|
-
},
|
|
1905
|
-
filterOptions: {
|
|
1906
|
-
table: {
|
|
1907
|
-
category: 'Input Props'
|
|
1908
|
-
}
|
|
1909
|
-
},
|
|
1910
|
-
filterSelectedOptions: {
|
|
1911
|
-
table: {
|
|
1912
|
-
category: 'Input Props'
|
|
1913
|
-
}
|
|
1914
|
-
},
|
|
1915
|
-
freeSolo: {
|
|
1916
|
-
table: {
|
|
1917
|
-
category: 'Input Props'
|
|
1918
|
-
}
|
|
1919
|
-
},
|
|
1920
|
-
getOptionDisabled: {
|
|
1921
|
-
table: {
|
|
1922
|
-
category: 'Input Props'
|
|
1923
|
-
}
|
|
1924
|
-
},
|
|
1925
|
-
getOptionKey: {
|
|
1926
|
-
table: {
|
|
1927
|
-
category: 'Input Props'
|
|
1928
|
-
}
|
|
1929
|
-
},
|
|
1930
|
-
getOptionLabel: {
|
|
1931
|
-
table: {
|
|
1932
|
-
category: 'Input Props'
|
|
1933
|
-
}
|
|
1934
|
-
},
|
|
1935
|
-
groupBy: {
|
|
1936
|
-
table: {
|
|
1937
|
-
category: 'Input Props'
|
|
1938
|
-
}
|
|
1939
|
-
},
|
|
1940
|
-
inputValue: {
|
|
1941
|
-
table: {
|
|
1942
|
-
category: 'Input Props'
|
|
1943
|
-
}
|
|
1944
|
-
},
|
|
1945
|
-
isOptionEqualToValue: {
|
|
1946
|
-
table: {
|
|
1947
|
-
category: 'Input Props'
|
|
1948
|
-
}
|
|
1949
|
-
},
|
|
1950
|
-
onHighlightChange: {
|
|
1951
|
-
table: {
|
|
1952
|
-
category: 'Input Props'
|
|
1953
|
-
}
|
|
1954
|
-
},
|
|
1955
|
-
onInputChange: {
|
|
1956
|
-
table: {
|
|
1957
|
-
category: 'Input Props'
|
|
1958
|
-
}
|
|
1959
|
-
},
|
|
1960
|
-
FieldProps: {
|
|
1961
|
-
table: {
|
|
1962
|
-
category: 'Input Props'
|
|
1963
|
-
}
|
|
1964
|
-
}
|
|
510
|
+
classes: { table: { category: 'Input Props' } },
|
|
511
|
+
id: { table: { category: 'Input Props' } },
|
|
512
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
513
|
+
sx: { table: { category: 'Input Props' } },
|
|
514
|
+
ref: { table: { category: 'Input Props' } },
|
|
515
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
516
|
+
slots: { table: { category: 'Input Props' } },
|
|
517
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
518
|
+
options: { table: { category: 'Input Props' } },
|
|
519
|
+
open: { table: { category: 'Input Props' } },
|
|
520
|
+
loading: { table: { category: 'Input Props' } },
|
|
521
|
+
multiple: { table: { category: 'Input Props' } },
|
|
522
|
+
onClose: { table: { category: 'Input Props' } },
|
|
523
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
524
|
+
disableListWrap: { table: { category: 'Input Props' } },
|
|
525
|
+
ChipProps: { table: { category: 'Input Props' } },
|
|
526
|
+
disablePortal: { table: { category: 'Input Props' } },
|
|
527
|
+
getLimitTagsText: { table: { category: 'Input Props' } },
|
|
528
|
+
ListboxComponent: { table: { category: 'Input Props' } },
|
|
529
|
+
ListboxProps: { table: { category: 'Input Props' } },
|
|
530
|
+
loadingText: { table: { category: 'Input Props' } },
|
|
531
|
+
limitTags: { table: { category: 'Input Props' } },
|
|
532
|
+
noOptionsText: { table: { category: 'Input Props' } },
|
|
533
|
+
renderGroup: { table: { category: 'Input Props' } },
|
|
534
|
+
renderOption: { table: { category: 'Input Props' } },
|
|
535
|
+
renderTags: { table: { category: 'Input Props' } },
|
|
536
|
+
unstable_classNamePrefix: { table: { category: 'Input Props' } },
|
|
537
|
+
unstable_isActiveElementInListbox: { table: { category: 'Input Props' } },
|
|
538
|
+
autoHighlight: { table: { category: 'Input Props' } },
|
|
539
|
+
autoSelect: { table: { category: 'Input Props' } },
|
|
540
|
+
blurOnSelect: { table: { category: 'Input Props' } },
|
|
541
|
+
clearOnBlur: { table: { category: 'Input Props' } },
|
|
542
|
+
clearOnEscape: { table: { category: 'Input Props' } },
|
|
543
|
+
componentName: { table: { category: 'Input Props' } },
|
|
544
|
+
disableClearable: { table: { category: 'Input Props' } },
|
|
545
|
+
disableCloseOnSelect: { table: { category: 'Input Props' } },
|
|
546
|
+
filterOptions: { table: { category: 'Input Props' } },
|
|
547
|
+
filterSelectedOptions: { table: { category: 'Input Props' } },
|
|
548
|
+
freeSolo: { table: { category: 'Input Props' } },
|
|
549
|
+
getOptionDisabled: { table: { category: 'Input Props' } },
|
|
550
|
+
getOptionKey: { table: { category: 'Input Props' } },
|
|
551
|
+
getOptionLabel: { table: { category: 'Input Props' } },
|
|
552
|
+
groupBy: { table: { category: 'Input Props' } },
|
|
553
|
+
inputValue: { table: { category: 'Input Props' } },
|
|
554
|
+
isOptionEqualToValue: { table: { category: 'Input Props' } },
|
|
555
|
+
onHighlightChange: { table: { category: 'Input Props' } },
|
|
556
|
+
onInputChange: { table: { category: 'Input Props' } },
|
|
557
|
+
FieldProps: { table: { category: 'Input Props' } },
|
|
1965
558
|
};
|
|
1966
559
|
|
|
1967
560
|
export const CheckboxPropsCategorized: CheckboxPropsObject = {
|
|
1968
|
-
className: {
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
},
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
},
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
},
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
},
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
},
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
},
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
category: 'Input Props'
|
|
2001
|
-
}
|
|
2002
|
-
},
|
|
2003
|
-
tabIndex: {
|
|
2004
|
-
table: {
|
|
2005
|
-
category: 'Input Props'
|
|
2006
|
-
}
|
|
2007
|
-
},
|
|
2008
|
-
color: {
|
|
2009
|
-
table: {
|
|
2010
|
-
category: 'Input Props'
|
|
2011
|
-
}
|
|
2012
|
-
},
|
|
2013
|
-
required: {
|
|
2014
|
-
table: {
|
|
2015
|
-
category: 'Input Props'
|
|
2016
|
-
}
|
|
2017
|
-
},
|
|
2018
|
-
sx: {
|
|
2019
|
-
table: {
|
|
2020
|
-
category: 'Input Props'
|
|
2021
|
-
}
|
|
2022
|
-
},
|
|
2023
|
-
ref: {
|
|
2024
|
-
table: {
|
|
2025
|
-
category: 'Input Props'
|
|
2026
|
-
}
|
|
2027
|
-
},
|
|
2028
|
-
key: {
|
|
2029
|
-
table: {
|
|
2030
|
-
category: 'Input Props'
|
|
2031
|
-
}
|
|
2032
|
-
},
|
|
2033
|
-
component: {
|
|
2034
|
-
table: {
|
|
2035
|
-
category: 'Input Props'
|
|
2036
|
-
}
|
|
2037
|
-
},
|
|
2038
|
-
inputProps: {
|
|
2039
|
-
table: {
|
|
2040
|
-
category: 'Input Props'
|
|
2041
|
-
}
|
|
2042
|
-
},
|
|
2043
|
-
inputRef: {
|
|
2044
|
-
table: {
|
|
2045
|
-
category: 'Input Props'
|
|
2046
|
-
}
|
|
2047
|
-
},
|
|
2048
|
-
readOnly: {
|
|
2049
|
-
table: {
|
|
2050
|
-
category: 'Input Props'
|
|
2051
|
-
}
|
|
2052
|
-
},
|
|
2053
|
-
action: {
|
|
2054
|
-
table: {
|
|
2055
|
-
category: 'Input Props'
|
|
2056
|
-
}
|
|
2057
|
-
},
|
|
2058
|
-
formAction: {
|
|
2059
|
-
table: {
|
|
2060
|
-
category: 'Input Props'
|
|
2061
|
-
}
|
|
2062
|
-
},
|
|
2063
|
-
formMethod: {
|
|
2064
|
-
table: {
|
|
2065
|
-
category: 'Input Props'
|
|
2066
|
-
}
|
|
2067
|
-
},
|
|
2068
|
-
formNoValidate: {
|
|
2069
|
-
table: {
|
|
2070
|
-
category: 'Input Props'
|
|
2071
|
-
}
|
|
2072
|
-
},
|
|
2073
|
-
formTarget: {
|
|
2074
|
-
table: {
|
|
2075
|
-
category: 'Input Props'
|
|
2076
|
-
}
|
|
2077
|
-
},
|
|
2078
|
-
checkedIcon: {
|
|
2079
|
-
table: {
|
|
2080
|
-
category: 'Input Props'
|
|
2081
|
-
}
|
|
2082
|
-
},
|
|
2083
|
-
icon: {
|
|
2084
|
-
table: {
|
|
2085
|
-
category: 'Input Props'
|
|
2086
|
-
}
|
|
2087
|
-
},
|
|
2088
|
-
focusVisibleClassName: {
|
|
2089
|
-
table: {
|
|
2090
|
-
category: 'Input Props'
|
|
2091
|
-
}
|
|
2092
|
-
},
|
|
2093
|
-
LinkComponent: {
|
|
2094
|
-
table: {
|
|
2095
|
-
category: 'Input Props'
|
|
2096
|
-
}
|
|
2097
|
-
},
|
|
2098
|
-
onFocusVisible: {
|
|
2099
|
-
table: {
|
|
2100
|
-
category: 'Input Props'
|
|
2101
|
-
}
|
|
2102
|
-
},
|
|
2103
|
-
formEncType: {
|
|
2104
|
-
table: {
|
|
2105
|
-
category: 'Input Props'
|
|
2106
|
-
}
|
|
2107
|
-
},
|
|
2108
|
-
checked: {
|
|
2109
|
-
table: {
|
|
2110
|
-
category: 'Input Props'
|
|
2111
|
-
}
|
|
2112
|
-
},
|
|
2113
|
-
edge: {
|
|
2114
|
-
table: {
|
|
2115
|
-
category: 'Input Props'
|
|
2116
|
-
}
|
|
2117
|
-
},
|
|
2118
|
-
indeterminate: {
|
|
2119
|
-
table: {
|
|
2120
|
-
category: 'Input Props'
|
|
2121
|
-
}
|
|
2122
|
-
},
|
|
2123
|
-
indeterminateIcon: {
|
|
2124
|
-
table: {
|
|
2125
|
-
category: 'Input Props'
|
|
2126
|
-
}
|
|
2127
|
-
}
|
|
561
|
+
className: { table: { category: 'Input Props' } },
|
|
562
|
+
style: { table: { category: 'Input Props' } },
|
|
563
|
+
classes: { table: { category: 'Input Props' } },
|
|
564
|
+
form: { table: { category: 'Input Props' } },
|
|
565
|
+
defaultChecked: { table: { category: 'Input Props' } },
|
|
566
|
+
autoFocus: { table: { category: 'Input Props' } },
|
|
567
|
+
id: { table: { category: 'Input Props' } },
|
|
568
|
+
tabIndex: { table: { category: 'Input Props' } },
|
|
569
|
+
color: { table: { category: 'Input Props' } },
|
|
570
|
+
required: { table: { category: 'Input Props' } },
|
|
571
|
+
sx: { table: { category: 'Input Props' } },
|
|
572
|
+
ref: { table: { category: 'Input Props' } },
|
|
573
|
+
key: { table: { category: 'Input Props' } },
|
|
574
|
+
component: { table: { category: 'Input Props' } },
|
|
575
|
+
inputProps: { table: { category: 'Input Props' } },
|
|
576
|
+
inputRef: { table: { category: 'Input Props' } },
|
|
577
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
578
|
+
action: { table: { category: 'Input Props' } },
|
|
579
|
+
formAction: { table: { category: 'Input Props' } },
|
|
580
|
+
formMethod: { table: { category: 'Input Props' } },
|
|
581
|
+
formNoValidate: { table: { category: 'Input Props' } },
|
|
582
|
+
formTarget: { table: { category: 'Input Props' } },
|
|
583
|
+
checkedIcon: { table: { category: 'Input Props' } },
|
|
584
|
+
icon: { table: { category: 'Input Props' } },
|
|
585
|
+
focusVisibleClassName: { table: { category: 'Input Props' } },
|
|
586
|
+
LinkComponent: { table: { category: 'Input Props' } },
|
|
587
|
+
onFocusVisible: { table: { category: 'Input Props' } },
|
|
588
|
+
formEncType: { table: { category: 'Input Props' } },
|
|
589
|
+
checked: { table: { category: 'Input Props' } },
|
|
590
|
+
edge: { table: { category: 'Input Props' } },
|
|
591
|
+
indeterminate: { table: { category: 'Input Props' } },
|
|
592
|
+
indeterminateIcon: { table: { category: 'Input Props' } },
|
|
2128
593
|
};
|
|
2129
594
|
|
|
2130
595
|
export const InputPropsCategorized: InputPropsObject = {
|
|
2131
|
-
className: {
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
},
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
},
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
},
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
},
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
},
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
},
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
},
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
category: 'Input Props'
|
|
2169
|
-
}
|
|
2170
|
-
},
|
|
2171
|
-
color: {
|
|
2172
|
-
table: {
|
|
2173
|
-
category: 'Input Props'
|
|
2174
|
-
}
|
|
2175
|
-
},
|
|
2176
|
-
'aria-describedby': {
|
|
2177
|
-
table: {
|
|
2178
|
-
category: 'Input Props'
|
|
2179
|
-
}
|
|
2180
|
-
},
|
|
2181
|
-
onFocus: {
|
|
2182
|
-
table: {
|
|
2183
|
-
category: 'Input Props'
|
|
2184
|
-
}
|
|
2185
|
-
},
|
|
2186
|
-
onInvalid: {
|
|
2187
|
-
table: {
|
|
2188
|
-
category: 'Input Props'
|
|
2189
|
-
}
|
|
2190
|
-
},
|
|
2191
|
-
onError: {
|
|
2192
|
-
table: {
|
|
2193
|
-
category: 'Input Props'
|
|
2194
|
-
}
|
|
2195
|
-
},
|
|
2196
|
-
onKeyDown: {
|
|
2197
|
-
table: {
|
|
2198
|
-
category: 'Input Props'
|
|
2199
|
-
}
|
|
2200
|
-
},
|
|
2201
|
-
onKeyUp: {
|
|
2202
|
-
table: {
|
|
2203
|
-
category: 'Input Props'
|
|
2204
|
-
}
|
|
2205
|
-
},
|
|
2206
|
-
required: {
|
|
2207
|
-
table: {
|
|
2208
|
-
category: 'Input Props'
|
|
2209
|
-
}
|
|
2210
|
-
},
|
|
2211
|
-
sx: {
|
|
2212
|
-
table: {
|
|
2213
|
-
category: 'Input Props'
|
|
2214
|
-
}
|
|
2215
|
-
},
|
|
2216
|
-
label: {
|
|
2217
|
-
table: {
|
|
2218
|
-
category: 'Input Props'
|
|
2219
|
-
}
|
|
2220
|
-
},
|
|
2221
|
-
ref: {
|
|
2222
|
-
table: {
|
|
2223
|
-
category: 'Input Props'
|
|
2224
|
-
}
|
|
2225
|
-
},
|
|
2226
|
-
fullWidth: {
|
|
2227
|
-
table: {
|
|
2228
|
-
category: 'Input Props'
|
|
2229
|
-
}
|
|
2230
|
-
},
|
|
2231
|
-
margin: {
|
|
2232
|
-
table: {
|
|
2233
|
-
category: 'Input Props'
|
|
2234
|
-
}
|
|
2235
|
-
},
|
|
2236
|
-
size: {
|
|
2237
|
-
table: {
|
|
2238
|
-
category: 'Input Props'
|
|
2239
|
-
}
|
|
2240
|
-
},
|
|
2241
|
-
autoComplete: {
|
|
2242
|
-
table: {
|
|
2243
|
-
category: 'Input Props'
|
|
2244
|
-
}
|
|
2245
|
-
},
|
|
2246
|
-
inputProps: {
|
|
2247
|
-
table: {
|
|
2248
|
-
category: 'Input Props'
|
|
2249
|
-
}
|
|
2250
|
-
},
|
|
2251
|
-
inputRef: {
|
|
2252
|
-
table: {
|
|
2253
|
-
category: 'Input Props'
|
|
2254
|
-
}
|
|
2255
|
-
},
|
|
2256
|
-
multiline: {
|
|
2257
|
-
table: {
|
|
2258
|
-
category: 'Input Props'
|
|
2259
|
-
}
|
|
2260
|
-
},
|
|
2261
|
-
placeholder: {
|
|
2262
|
-
table: {
|
|
2263
|
-
category: 'Input Props'
|
|
2264
|
-
}
|
|
2265
|
-
},
|
|
2266
|
-
rows: {
|
|
2267
|
-
table: {
|
|
2268
|
-
category: 'Input Props'
|
|
2269
|
-
}
|
|
2270
|
-
},
|
|
2271
|
-
maxRows: {
|
|
2272
|
-
table: {
|
|
2273
|
-
category: 'Input Props'
|
|
2274
|
-
}
|
|
2275
|
-
},
|
|
2276
|
-
minRows: {
|
|
2277
|
-
table: {
|
|
2278
|
-
category: 'Input Props'
|
|
2279
|
-
}
|
|
2280
|
-
},
|
|
2281
|
-
type: {
|
|
2282
|
-
table: {
|
|
2283
|
-
category: 'Input Props'
|
|
2284
|
-
}
|
|
2285
|
-
},
|
|
2286
|
-
disableInjectingGlobalStyles: {
|
|
2287
|
-
table: {
|
|
2288
|
-
category: 'Input Props'
|
|
2289
|
-
}
|
|
2290
|
-
},
|
|
2291
|
-
endAdornment: {
|
|
2292
|
-
table: {
|
|
2293
|
-
category: 'Input Props'
|
|
2294
|
-
}
|
|
2295
|
-
},
|
|
2296
|
-
inputComponent: {
|
|
2297
|
-
table: {
|
|
2298
|
-
category: 'Input Props'
|
|
2299
|
-
}
|
|
2300
|
-
},
|
|
2301
|
-
readOnly: {
|
|
2302
|
-
table: {
|
|
2303
|
-
category: 'Input Props'
|
|
2304
|
-
}
|
|
2305
|
-
},
|
|
2306
|
-
renderSuffix: {
|
|
2307
|
-
table: {
|
|
2308
|
-
category: 'Input Props'
|
|
2309
|
-
}
|
|
2310
|
-
},
|
|
2311
|
-
startAdornment: {
|
|
2312
|
-
table: {
|
|
2313
|
-
category: 'Input Props'
|
|
2314
|
-
}
|
|
2315
|
-
}
|
|
596
|
+
className: { table: { category: 'Input Props' } },
|
|
597
|
+
style: { table: { category: 'Input Props' } },
|
|
598
|
+
classes: { table: { category: 'Input Props' } },
|
|
599
|
+
error: { table: { category: 'Input Props' } },
|
|
600
|
+
defaultChecked: { table: { category: 'Input Props' } },
|
|
601
|
+
autoFocus: { table: { category: 'Input Props' } },
|
|
602
|
+
id: { table: { category: 'Input Props' } },
|
|
603
|
+
tabIndex: { table: { category: 'Input Props' } },
|
|
604
|
+
color: { table: { category: 'Input Props' } },
|
|
605
|
+
'aria-describedby': { table: { category: 'Input Props' } },
|
|
606
|
+
onFocus: { table: { category: 'Input Props' } },
|
|
607
|
+
onInvalid: { table: { category: 'Input Props' } },
|
|
608
|
+
onError: { table: { category: 'Input Props' } },
|
|
609
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
610
|
+
onKeyUp: { table: { category: 'Input Props' } },
|
|
611
|
+
required: { table: { category: 'Input Props' } },
|
|
612
|
+
sx: { table: { category: 'Input Props' } },
|
|
613
|
+
label: { table: { category: 'Input Props' } },
|
|
614
|
+
ref: { table: { category: 'Input Props' } },
|
|
615
|
+
fullWidth: { table: { category: 'Input Props' } },
|
|
616
|
+
margin: { table: { category: 'Input Props' } },
|
|
617
|
+
size: { table: { category: 'Input Props' } },
|
|
618
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
619
|
+
inputProps: { table: { category: 'Input Props' } },
|
|
620
|
+
inputRef: { table: { category: 'Input Props' } },
|
|
621
|
+
multiline: { table: { category: 'Input Props' } },
|
|
622
|
+
placeholder: { table: { category: 'Input Props' } },
|
|
623
|
+
rows: { table: { category: 'Input Props' } },
|
|
624
|
+
maxRows: { table: { category: 'Input Props' } },
|
|
625
|
+
minRows: { table: { category: 'Input Props' } },
|
|
626
|
+
type: { table: { category: 'Input Props' } },
|
|
627
|
+
disableInjectingGlobalStyles: { table: { category: 'Input Props' } },
|
|
628
|
+
endAdornment: { table: { category: 'Input Props' } },
|
|
629
|
+
inputComponent: { table: { category: 'Input Props' } },
|
|
630
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
631
|
+
renderSuffix: { table: { category: 'Input Props' } },
|
|
632
|
+
startAdornment: { table: { category: 'Input Props' } },
|
|
2316
633
|
};
|
|
2317
634
|
|
|
2318
635
|
export const SelectPropsCategorized: SelectPropsObject = {
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
},
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
},
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
},
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
},
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
},
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
},
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
},
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
},
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
},
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
},
|
|
2369
|
-
'
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
}
|
|
2373
|
-
},
|
|
2374
|
-
onFocus: {
|
|
2375
|
-
table: {
|
|
2376
|
-
category: 'Input Props'
|
|
2377
|
-
}
|
|
2378
|
-
},
|
|
2379
|
-
onInvalid: {
|
|
2380
|
-
table: {
|
|
2381
|
-
category: 'Input Props'
|
|
2382
|
-
}
|
|
2383
|
-
},
|
|
2384
|
-
onError: {
|
|
2385
|
-
table: {
|
|
2386
|
-
category: 'Input Props'
|
|
2387
|
-
}
|
|
2388
|
-
},
|
|
2389
|
-
onKeyDown: {
|
|
2390
|
-
table: {
|
|
2391
|
-
category: 'Input Props'
|
|
2392
|
-
}
|
|
2393
|
-
},
|
|
2394
|
-
onKeyUp: {
|
|
2395
|
-
table: {
|
|
2396
|
-
category: 'Input Props'
|
|
2397
|
-
}
|
|
2398
|
-
},
|
|
2399
|
-
required: {
|
|
2400
|
-
table: {
|
|
2401
|
-
category: 'Input Props'
|
|
2402
|
-
}
|
|
2403
|
-
},
|
|
2404
|
-
sx: {
|
|
2405
|
-
table: {
|
|
2406
|
-
category: 'Input Props'
|
|
2407
|
-
}
|
|
2408
|
-
},
|
|
2409
|
-
label: {
|
|
2410
|
-
table: {
|
|
2411
|
-
category: 'Input Props'
|
|
2412
|
-
}
|
|
2413
|
-
},
|
|
2414
|
-
ref: {
|
|
2415
|
-
table: {
|
|
2416
|
-
category: 'Input Props'
|
|
2417
|
-
}
|
|
2418
|
-
},
|
|
2419
|
-
input: {
|
|
2420
|
-
table: {
|
|
2421
|
-
category: 'Input Props'
|
|
2422
|
-
}
|
|
2423
|
-
},
|
|
2424
|
-
fullWidth: {
|
|
2425
|
-
table: {
|
|
2426
|
-
category: 'Input Props'
|
|
2427
|
-
}
|
|
2428
|
-
},
|
|
2429
|
-
margin: {
|
|
2430
|
-
table: {
|
|
2431
|
-
category: 'Input Props'
|
|
2432
|
-
}
|
|
2433
|
-
},
|
|
2434
|
-
size: {
|
|
2435
|
-
table: {
|
|
2436
|
-
category: 'Input Props'
|
|
2437
|
-
}
|
|
2438
|
-
},
|
|
2439
|
-
autoComplete: {
|
|
2440
|
-
table: {
|
|
2441
|
-
category: 'Input Props'
|
|
2442
|
-
}
|
|
2443
|
-
},
|
|
2444
|
-
inputProps: {
|
|
2445
|
-
table: {
|
|
2446
|
-
category: 'Input Props'
|
|
2447
|
-
}
|
|
2448
|
-
},
|
|
2449
|
-
inputRef: {
|
|
2450
|
-
table: {
|
|
2451
|
-
category: 'Input Props'
|
|
2452
|
-
}
|
|
2453
|
-
},
|
|
2454
|
-
multiline: {
|
|
2455
|
-
table: {
|
|
2456
|
-
category: 'Input Props'
|
|
2457
|
-
}
|
|
2458
|
-
},
|
|
2459
|
-
rows: {
|
|
2460
|
-
table: {
|
|
2461
|
-
category: 'Input Props'
|
|
2462
|
-
}
|
|
2463
|
-
},
|
|
2464
|
-
maxRows: {
|
|
2465
|
-
table: {
|
|
2466
|
-
category: 'Input Props'
|
|
2467
|
-
}
|
|
2468
|
-
},
|
|
2469
|
-
minRows: {
|
|
2470
|
-
table: {
|
|
2471
|
-
category: 'Input Props'
|
|
2472
|
-
}
|
|
2473
|
-
},
|
|
2474
|
-
type: {
|
|
2475
|
-
table: {
|
|
2476
|
-
category: 'Input Props'
|
|
2477
|
-
}
|
|
2478
|
-
},
|
|
2479
|
-
disableInjectingGlobalStyles: {
|
|
2480
|
-
table: {
|
|
2481
|
-
category: 'Input Props'
|
|
2482
|
-
}
|
|
2483
|
-
},
|
|
2484
|
-
endAdornment: {
|
|
2485
|
-
table: {
|
|
2486
|
-
category: 'Input Props'
|
|
2487
|
-
}
|
|
2488
|
-
},
|
|
2489
|
-
inputComponent: {
|
|
2490
|
-
table: {
|
|
2491
|
-
category: 'Input Props'
|
|
2492
|
-
}
|
|
2493
|
-
},
|
|
2494
|
-
readOnly: {
|
|
2495
|
-
table: {
|
|
2496
|
-
category: 'Input Props'
|
|
2497
|
-
}
|
|
2498
|
-
},
|
|
2499
|
-
renderSuffix: {
|
|
2500
|
-
table: {
|
|
2501
|
-
category: 'Input Props'
|
|
2502
|
-
}
|
|
2503
|
-
},
|
|
2504
|
-
startAdornment: {
|
|
2505
|
-
table: {
|
|
2506
|
-
category: 'Input Props'
|
|
2507
|
-
}
|
|
2508
|
-
},
|
|
2509
|
-
disableUnderline: {
|
|
2510
|
-
table: {
|
|
2511
|
-
category: 'Input Props'
|
|
2512
|
-
}
|
|
2513
|
-
},
|
|
2514
|
-
open: {
|
|
2515
|
-
table: {
|
|
2516
|
-
category: 'Input Props'
|
|
2517
|
-
}
|
|
2518
|
-
},
|
|
2519
|
-
multiple: {
|
|
2520
|
-
table: {
|
|
2521
|
-
category: 'Input Props'
|
|
2522
|
-
}
|
|
2523
|
-
},
|
|
2524
|
-
autoWidth: {
|
|
2525
|
-
table: {
|
|
2526
|
-
category: 'Input Props'
|
|
2527
|
-
}
|
|
2528
|
-
},
|
|
2529
|
-
defaultOpen: {
|
|
2530
|
-
table: {
|
|
2531
|
-
category: 'Input Props'
|
|
2532
|
-
}
|
|
2533
|
-
},
|
|
2534
|
-
displayEmpty: {
|
|
2535
|
-
table: {
|
|
2536
|
-
category: 'Input Props'
|
|
2537
|
-
}
|
|
2538
|
-
},
|
|
2539
|
-
IconComponent: {
|
|
2540
|
-
table: {
|
|
2541
|
-
category: 'Input Props'
|
|
2542
|
-
}
|
|
2543
|
-
},
|
|
2544
|
-
labelId: {
|
|
2545
|
-
table: {
|
|
2546
|
-
category: 'Input Props'
|
|
2547
|
-
}
|
|
2548
|
-
},
|
|
2549
|
-
MenuProps: {
|
|
2550
|
-
table: {
|
|
2551
|
-
category: 'Input Props'
|
|
2552
|
-
}
|
|
2553
|
-
},
|
|
2554
|
-
native: {
|
|
2555
|
-
table: {
|
|
2556
|
-
category: 'Input Props'
|
|
2557
|
-
}
|
|
2558
|
-
},
|
|
2559
|
-
onClose: {
|
|
2560
|
-
table: {
|
|
2561
|
-
category: 'Input Props'
|
|
2562
|
-
}
|
|
2563
|
-
},
|
|
2564
|
-
onOpen: {
|
|
2565
|
-
table: {
|
|
2566
|
-
category: 'Input Props'
|
|
2567
|
-
}
|
|
2568
|
-
},
|
|
2569
|
-
renderValue: {
|
|
2570
|
-
table: {
|
|
2571
|
-
category: 'Input Props'
|
|
2572
|
-
}
|
|
2573
|
-
},
|
|
2574
|
-
SelectDisplayProps: {
|
|
2575
|
-
table: {
|
|
2576
|
-
category: 'Input Props'
|
|
2577
|
-
}
|
|
2578
|
-
}
|
|
636
|
+
placeholder: { table: { category: 'Input Props' } },
|
|
637
|
+
className: { table: { category: 'Input Props' } },
|
|
638
|
+
style: { table: { category: 'Input Props' } },
|
|
639
|
+
classes: { table: { category: 'Input Props' } },
|
|
640
|
+
error: { table: { category: 'Input Props' } },
|
|
641
|
+
children: { table: { category: 'Input Props' } },
|
|
642
|
+
defaultChecked: { table: { category: 'Input Props' } },
|
|
643
|
+
autoFocus: { table: { category: 'Input Props' } },
|
|
644
|
+
id: { table: { category: 'Input Props' } },
|
|
645
|
+
tabIndex: { table: { category: 'Input Props' } },
|
|
646
|
+
color: { table: { category: 'Input Props' } },
|
|
647
|
+
'aria-describedby': { table: { category: 'Input Props' } },
|
|
648
|
+
onFocus: { table: { category: 'Input Props' } },
|
|
649
|
+
onInvalid: { table: { category: 'Input Props' } },
|
|
650
|
+
onError: { table: { category: 'Input Props' } },
|
|
651
|
+
onKeyDown: { table: { category: 'Input Props' } },
|
|
652
|
+
onKeyUp: { table: { category: 'Input Props' } },
|
|
653
|
+
required: { table: { category: 'Input Props' } },
|
|
654
|
+
sx: { table: { category: 'Input Props' } },
|
|
655
|
+
label: { table: { category: 'Input Props' } },
|
|
656
|
+
ref: { table: { category: 'Input Props' } },
|
|
657
|
+
input: { table: { category: 'Input Props' } },
|
|
658
|
+
fullWidth: { table: { category: 'Input Props' } },
|
|
659
|
+
margin: { table: { category: 'Input Props' } },
|
|
660
|
+
size: { table: { category: 'Input Props' } },
|
|
661
|
+
autoComplete: { table: { category: 'Input Props' } },
|
|
662
|
+
inputProps: { table: { category: 'Input Props' } },
|
|
663
|
+
inputRef: { table: { category: 'Input Props' } },
|
|
664
|
+
multiline: { table: { category: 'Input Props' } },
|
|
665
|
+
rows: { table: { category: 'Input Props' } },
|
|
666
|
+
maxRows: { table: { category: 'Input Props' } },
|
|
667
|
+
minRows: { table: { category: 'Input Props' } },
|
|
668
|
+
type: { table: { category: 'Input Props' } },
|
|
669
|
+
disableInjectingGlobalStyles: { table: { category: 'Input Props' } },
|
|
670
|
+
endAdornment: { table: { category: 'Input Props' } },
|
|
671
|
+
inputComponent: { table: { category: 'Input Props' } },
|
|
672
|
+
readOnly: { table: { category: 'Input Props' } },
|
|
673
|
+
renderSuffix: { table: { category: 'Input Props' } },
|
|
674
|
+
startAdornment: { table: { category: 'Input Props' } },
|
|
675
|
+
disableUnderline: { table: { category: 'Input Props' } },
|
|
676
|
+
open: { table: { category: 'Input Props' } },
|
|
677
|
+
multiple: { table: { category: 'Input Props' } },
|
|
678
|
+
autoWidth: { table: { category: 'Input Props' } },
|
|
679
|
+
defaultOpen: { table: { category: 'Input Props' } },
|
|
680
|
+
displayEmpty: { table: { category: 'Input Props' } },
|
|
681
|
+
IconComponent: { table: { category: 'Input Props' } },
|
|
682
|
+
labelId: { table: { category: 'Input Props' } },
|
|
683
|
+
MenuProps: { table: { category: 'Input Props' } },
|
|
684
|
+
native: { table: { category: 'Input Props' } },
|
|
685
|
+
onClose: { table: { category: 'Input Props' } },
|
|
686
|
+
onOpen: { table: { category: 'Input Props' } },
|
|
687
|
+
renderValue: { table: { category: 'Input Props' } },
|
|
688
|
+
SelectDisplayProps: { table: { category: 'Input Props' } },
|
|
2579
689
|
};
|
|
2580
690
|
|
|
2581
691
|
export const AllControllerPropsList = Object.keys(AllControllerPropertiesCategorized) as (keyof ControllerProps)[];
|