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