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