You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: apps/docs/content/docs/components/autocomplete.mdx
+1
Original file line number
Diff line number
Diff line change
@@ -428,6 +428,7 @@ properties to customize the popover, listbox and input components.
428
428
| disabledKeys |`all`\|`React.Key[]`| The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with. | - |
429
429
| errorMessage |`ReactNode`\|`((v: ValidationResult) => ReactNode)`| An error message to display below the field. | - |
430
430
| validate |`(value: { inputValue: string, selectedKey: React.Key }) => ValidationError | true | null | undefined`| Validate input values when committing (e.g. on blur), and return error messages for invalid values. | - |
431
+
| validationBehavior |`native`\|`aria`| Whether to use native HTML form validation to prevent form submission when the value is missing or invalid, or mark the field as required or invalid via ARIA.|`aria`|
431
432
| startContent |`ReactNode`| Element to be rendered in the left side of the Autocomplete. | - |
432
433
| endContent |`ReactNode`| Element to be rendered in the right side of the Autocomplete. | - |
433
434
| autoFocus |`boolean`| Whether the Autocomplete should be focused on render. |`false`|
Copy file name to clipboardexpand all lines: apps/docs/content/docs/components/calendar.mdx
+1-2
Original file line number
Diff line number
Diff line change
@@ -226,10 +226,9 @@ Here's the example to customize `topContent` and `bottomContent` to have some pr
226
226
| isDateUnavailable |`(date: DateValue) => boolean`| Callback that is called for each date of the calendar. If it returns true, then the date is unavailable. | - |
227
227
| createCalendar |`(calendar: SupportedCalendars) => Calendar \| null`| This function helps to reduce the bundle size by providing a custom calendar system. You can also use the NextUIProvider to provide the createCalendar function to all nested components. |`all<br> calendars`|
228
228
| errorMessage |`ReactNode \| (v: ValidationResult) => ReactNode`| An error message for the field. | - |
229
-
| validate |`(value: { inputValue: string, selectedKey: React.Key }) => ValidationError | true | null | undefined`| Validate time input values when committing (e.g. on blur), and return error messages for invalid values. | - |
230
229
| hideDisabledDates |`boolean`| Whether to hide the disabled or invalid dates. |`false`|
231
230
| disableAnimation |`boolean`| Whether to disable the animation of the calendar. |`false`|
| isInvalid |`boolean`| Whether the checkbox group is invalid. |`false`|
109
-
| validationState |`valid`\|`invalid`| Whether the inputs should display its "valid" or "invalid" visual styling. (**Deprecated**) use **isInvalid** instead. | - |
110
-
| description |`ReactNode`| The checkbox group description. | - |
111
-
| errorMessage |`ReactNode`\|`((v: ValidationResult) => ReactNode)`| The checkbox group error message. | - |
112
-
| validate |`(value: string[]) => ValidationError | true | null | undefined`| Validate input values when committing (e.g. on blur), and return error messages for invalid values. | - |
113
-
| isDisabled |`boolean`| Whether the checkbox group is disabled. |`false`|
114
-
| isRequired |`boolean`| Whether user checkboxes are required on the input before form submission. |`false`|
115
-
| isReadOnly |`boolean`| Whether the checkboxes can be selected but not changed by the user. | - |
116
-
| disableAnimation |`boolean`| Whether the animation should be disabled. |`false`|
117
-
| classNames |`Record<"base"| "wrapper"| "label", string>`| Allows to set custom class names for the checkbox group slots. | - |
| isInvalid |`boolean`| Whether the checkbox group is invalid. |`false`|
109
+
| validationState |`valid`\|`invalid`| Whether the inputs should display its "valid" or "invalid" visual styling. (**Deprecated**) use **isInvalid** instead. | - |
110
+
| description |`ReactNode`| The checkbox group description. | - |
111
+
| errorMessage |`ReactNode`\|`((v: ValidationResult) => ReactNode)`| The checkbox group error message. | - |
112
+
| validate |`(value: string[]) => ValidationError | true | null | undefined`| Validate input values when committing (e.g. on blur), and return error messages for invalid values. | - |
113
+
| validationBehavior |`native`\|`aria`| Whether to use native HTML form validation to prevent form submission when the value is missing or invalid, or mark the field as required or invalid via ARIA.|`aria`|
114
+
| isDisabled |`boolean`| Whether the checkbox group is disabled. |`false`|
115
+
| isRequired |`boolean`| Whether user checkboxes are required on the input before form submission. |`false`|
116
+
| isReadOnly |`boolean`| Whether the checkboxes can be selected but not changed by the user. | - |
117
+
| disableAnimation |`boolean`| Whether the animation should be disabled. |`false`|
118
+
| classNames |`Record<"base"| "wrapper"| "label", string>`| Allows to set custom class names for the checkbox group slots. | - |
0 commit comments