Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: supplement validation behavior #3106

Merged
merged 10 commits into from
May 31, 2024
Merged

Conversation

wingkwong
Copy link
Member

@wingkwong wingkwong commented May 28, 2024

Closes #

📝 Description

Add a brief description

⛳️ Current behavior (updates)

Please describe the current behavior that you are modifying

🚀 New behavior

Please describe the behavior or changes this PR adds

💣 Is this a breaking change (Yes/No):

📝 Additional Information

Summary by CodeRabbit

  • New Features

    • Introduced isInvalid prop for real-time validation across various components.
    • Updated validate property to include additional information on displaying validation errors based on validationBehavior setting.
  • Improvements

    • Enhanced doctor command to check and display incorrect peerDependencies.
    • Default validation behavior changed to aria for better accessibility.
  • Documentation

    • Updated documentation for input, date-input, date-picker, date-range-picker, radio-group, range-calendar, textarea, time-input, and checkbox-group components to reflect new validation behavior and usage of isInvalid prop.

Copy link

vercel bot commented May 28, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nextui-docs-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 30, 2024 7:08am
nextui-storybook-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 30, 2024 7:08am

Copy link

changeset-bot bot commented May 28, 2024

⚠️ No Changeset found

Latest commit: 1e84b98

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@wingkwong wingkwong requested a review from ryo-manba May 28, 2024 08:56
Copy link
Contributor

coderabbitai bot commented May 28, 2024

Walkthrough

In version 2.4.0 of the NextUI library, significant updates were made to the validation behavior across various components. The default validation behavior now follows the aria standard, requiring the use of the isInvalid prop for real-time validation. Additionally, the doctor command was enhanced to check for peerDependencies without providing a specific link. These changes ensure more consistent and accessible validation handling within the library.

Changes

Files/Path(s) Change Summary
apps/docs/content/blog/v2.4.0.mdx Updated doctor command to check peerDependencies without a specific link. Changed default validation to aria.
apps/docs/content/docs/components/input.mdx, apps/docs/content/docs/components/date-input.mdx, apps/docs/content/docs/components/date-picker.mdx, apps/docs/content/docs/components/date-range-picker.mdx, apps/docs/content/docs/components/radio-group.mdx, apps/docs/content/docs/components/range-calendar.mdx, apps/docs/content/docs/components/textarea.mdx, apps/docs/content/docs/components/time-input.mdx, apps/docs/content/docs/components/checkbox-group.mdx Updated validate property to include information on displaying validation errors based on validationBehavior setting.
packages/components/input/stories/input.stories.tsx Added validationBehavior: "native" to Required, WithErrorMessageFunction, and WithValidation components.

Sequence Diagram(s) (Beta)

sequenceDiagram
    participant User
    participant Component
    participant Form
    participant Validation

    User->>Component: Enter data
    Component->>Validation: Validate data in real-time
    Validation->>Component: Return validation status (isInvalid)
    Component->>User: Display validation status
    User->>Form: Submit form
    Form->>Validation: Validate data on submit
    Validation->>Form: Return validation status (native)
    Form->>User: Display validation errors if any
Loading

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Outside diff range and nitpick comments (4)
apps/docs/content/blog/v2.4.0.mdx (1)

233-233: The update to the doctor command is well-documented, but consider linking to the specific issue for better traceability.

packages/components/input/stories/input.stories.tsx (3)

Line range hint 497-497: Specify a more explicit type instead of using any to improve type safety and code clarity.


Line range hint 500-500: Use template literals here for better readability and consistency with modern JavaScript practices.

- alert("Submitted value: " + JSON.stringify(data));
+ alert(`Submitted value: ${JSON.stringify(data)}`);

Line range hint 142-142: Ensure all dependencies are specified in the useMemo and useMemo hooks to avoid subtle bugs related to stale closures.

- const validationState = React.useMemo(() => {
-   if (value === "") return undefined;
-   return validateEmail(value) ? "valid" : "invalid";
- }, [value]);
+ const validationState = React.useMemo(() => {
-   if (value === "") return undefined;
-   return validateEmail(value) ? "valid" : "invalid";
- }, [value, validateEmail]);

- const end = React.useMemo(() => {
-   if (isClearable) {
-     return <span {...getClearButtonProps()}>{endContent || <CloseFilledIcon />}</span>;
-   }
-   return endContent;
- }, [isClearable, getClearButtonProps]);
+ const end = React.useMemo(() => {
-   if (isClearable) {
-     return <span {...getClearButtonProps()}>{endContent || <CloseFilledIcon />}</span>;
-   }
-   return endContent;
- }, [isClearable, getClearButtonProps, endContent]);

Also applies to: 441-441

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between 67347d8 and 6bd9af8.
Files selected for processing (3)
  • apps/docs/content/blog/v2.4.0.mdx (3 hunks)
  • apps/docs/content/docs/components/input.mdx (1 hunks)
  • packages/components/input/stories/input.stories.tsx (3 hunks)
Files skipped from review due to trivial changes (1)
  • apps/docs/content/docs/components/input.mdx
Additional Context Used
Biome (7)
packages/components/input/stories/input.stories.tsx (7)

97-97: The computed expression can be simplified without the use of a string literal.


497-497: Unexpected any. Specify a different type.


500-500: Template literals are preferred over string concatenation.


5-6: All these imports are only used as types.


17-18: Some named imports are only used as types.


142-142: This hook does not specify all of its dependencies: validateEmail


441-441: This hook does not specify all of its dependencies: endContent

Additional comments not posted (5)
packages/components/input/stories/input.stories.tsx (5)

530-530: The addition of validationBehavior: "native" aligns with the new validation strategy. Ensure this is consistently applied across all relevant components.


669-669: The validationBehavior: "native" setting here is crucial for ensuring that the component behaves as expected under the new validation framework.


687-687: Good to see validationBehavior: "native" being applied here as well. This consistency is key in maintaining predictable behavior across the UI components.


Line range hint 97-97: Consider simplifying this computed expression to enhance readability and maintainability.
[REFACTOR_SUGGESTion]

- const validationState = React.useMemo(() => {
-   if (value === "") return undefined;
-   return validateEmail(value) ? "valid" : "invalid";
- }, [value]);
+ const validationState = value ? (validateEmail(value) ? "valid" : "invalid") : undefined;

Line range hint 5-6: These imports are only used as types, which is a good practice to avoid unnecessary runtime imports.

Also applies to: 17-18

apps/docs/content/blog/v2.4.0.mdx Outdated Show resolved Hide resolved
packages/components/input/stories/input.stories.tsx Outdated Show resolved Hide resolved
apps/docs/content/blog/v2.4.0.mdx Outdated Show resolved Hide resolved

Since v2.4.0, we've changed the default validation behavior to `aria` wihch means no native validation is applied. If you wish to use the native validation, you can set `validationBehavior` to `native` to the input components or set it to the Provider as stated above.

For those who use `validationBehavior="aria"`, `validate` will be no longer applied since it is only for native validation. Therefore, you need to switch to use `isInvalid` prop instead.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The form does not prevent submission, but the validate function will display error messages.

Comment on lines +276 to +279
<form onSubmit={onSubmit}>
<Input errorMessage={formErrors?.field1} isInvalid={!!formErrors?.field1} name="field1" />
<Button type="submit">Submit</Button>
</form>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

apps/docs/content/docs/components/input.mdx Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between 6bd9af8 and 2447a15.
Files selected for processing (1)
  • apps/docs/content/blog/v2.4.0.mdx (3 hunks)
Files skipped from review as they are similar to previous changes (1)
  • apps/docs/content/blog/v2.4.0.mdx

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 7

Outside diff range and nitpick comments (8)
apps/docs/content/docs/components/date-range-picker.mdx (8)

Line range hint 65-65: Consider removing the comma before "if" for grammatical correctness.

- By default, the calendar popover displays a single month. The `visibleMonths` prop allows displaying up to 3 months at a time, if screen space permits.
+ By default, the calendar popover displays a single month. The `visibleMonths` prop allows displaying up to 3 months at a time if screen space permits.

Line range hint 116-116: Consider using a more concise phrase instead of "taken into account".

- ...ncerns such as daylight saving time are taken into account when the value is manipulated.
+ ...ncerns such as daylight saving time are considered when the value is manipulated.

Line range hint 231-231: Hyphenate "Non Contiguous" to "Non-Contiguous" for consistency.

- ### Non Contiguous
+ ### Non-Contiguous

Line range hint 324-324: Use "an" instead of "a" before a word starting with a vowel sound.

- When the date-range-picker has a end content.
+ When the date-range-picker has an end content.

Line range hint 326-326: Consider rephrasing for conciseness.

- When the date-range-picker's `visibleMonth` is more than 2.
+ When the date-range-picker's `visibleMonth` exceeds 2.

Line range hint 370-370: Add a comma after "Usually" for better readability.

- Usually a calendar icon.
+ Usually, a calendar icon.

Line range hint 374-374: Hyphenate "24-hour" when used as an adjective.

- Whether to display the time in 12 or 24 hour format.
+ Whether to display the time in 12 or 24-hour format.

Line range hint 375-375: Add a comma after "Typically" for better readability.

- Typically "day" for dates.
+ Typically, "day" for dates.
Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between 2447a15 and c00316e.
Files selected for processing (7)
  • apps/docs/content/docs/components/date-input.mdx (1 hunks)
  • apps/docs/content/docs/components/date-picker.mdx (1 hunks)
  • apps/docs/content/docs/components/date-range-picker.mdx (1 hunks)
  • apps/docs/content/docs/components/radio-group.mdx (1 hunks)
  • apps/docs/content/docs/components/range-calendar.mdx (1 hunks)
  • apps/docs/content/docs/components/textarea.mdx (1 hunks)
  • apps/docs/content/docs/components/time-input.mdx (1 hunks)
Additional Context Used
LanguageTool (42)
apps/docs/content/docs/components/date-input.mdx (9)

Near line 96: ‘taken into account’ might be wordy. Consider a shorter alternative.
Context: ...ncerns such as daylight saving time are taken into account when the value is manipulated. [@Inter...
Rule ID: EN_WORDINESS_PREMIUM_TAKEN_INTO_ACCOUNT


Near line 213: When ‘24-hour’ is used as a modifier, it is usually spelled with a hyphen.
Context: ...ateInput displays times in either 12 or 24 hour hour format depending on the user's loc...
Rule ID: HOUR_HYPHEN


Near line 246: Unpaired symbol: ‘"’ seems to be missing
Context: ...ge of the date-input. {" "} ## Data Attributes DateInput has...
Rule ID: EN_UNPAIRED_QUOTES


Near line 246: Unpaired symbol: ‘"’ seems to be missing
Context: ... of the date-input. {" "} ## Data Attributes DateInput has t...
Rule ID: EN_UNPAIRED_QUOTES


Near line 267: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...nd-content**: When the date-input has a end content. Base on those endContent...
Rule ID: EN_A_VS_AN


Near line 304: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the left side”?
Context: ... | Element to be rendered in the left side of the date input. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 305: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the right side”?
Context: ... | Element to be rendered in the right side of the date input. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 315: When ‘24-hour’ is used as a modifier, it is usually spelled with a hyphen.
Context: ... | Whether to display the time in 12 or 24 hour format. This is determined by the user'...
Rule ID: HOUR_HYPHEN


Near line 316: A comma may be missing after the conjunctive/linking adverb ‘Typically’.
Context: ...t that is displayed in the date picker. Typically "day" for dates. ...
Rule ID: SENT_START_CONJUNCTIVE_LINKING_ADVERB_COMMA

apps/docs/content/docs/components/date-picker.mdx (9)

Near line 103: ‘taken into account’ might be wordy. Consider a shorter alternative.
Context: ...ncerns such as daylight saving time are taken into account when the value is manipulated. [@Inter...
Rule ID: EN_WORDINESS_PREMIUM_TAKEN_INTO_ACCOUNT


Near line 220: Usually, there’s no comma before “if”.
Context: ...lows displaying up to 3 months at a time, if screen space permits. <CodeDemo title=...
Rule ID: IF_NO_COMMA


Near line 269: Unpaired symbol: ‘"’ seems to be missing
Context: ...ut component element. {" "} ## Data Attributes DatePicker ha...
Rule ID: EN_UNPAIRED_QUOTES


Near line 298: Unpaired symbol: ‘"’ seems to be missing
Context: ...e validation errors {" "} ## API ### DatePicker Props | Attri...
Rule ID: EN_UNPAIRED_QUOTES


Near line 318: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the left side”?
Context: ... | Element to be rendered in the left side of the date-picker. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 319: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the right side”?
Context: ... | Element to be rendered in the right side of the date-picker. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 326: Consider adding a comma after ‘Usually’ for more clarity.
Context: ...icon to toggle the date picker popover. Usually a calendar icon. ...
Rule ID: RB_LY_COMMA


Near line 333: When ‘24-hour’ is used as a modifier, it is usually spelled with a hyphen.
Context: ... | Whether to display the time in 12 or 24 hour format. This is determined by the user'...
Rule ID: HOUR_HYPHEN


Near line 334: A comma may be missing after the conjunctive/linking adverb ‘Typically’.
Context: ...t that is displayed in the date picker. Typically "day" for dates. ...
Rule ID: SENT_START_CONJUNCTIVE_LINKING_ADVERB_COMMA

apps/docs/content/docs/components/date-range-picker.mdx (10)

Near line 65: Usually, there’s no comma before “if”.
Context: ...lows displaying up to 3 months at a time, if screen space permits. <CodeDemo title=...
Rule ID: IF_NO_COMMA


Near line 116: ‘taken into account’ might be wordy. Consider a shorter alternative.
Context: ...ncerns such as daylight saving time are taken into account when the value is manipulated. [@Inter...
Rule ID: EN_WORDINESS_PREMIUM_TAKEN_INTO_ACCOUNT


Near line 231: This expression is usually spelled with a hyphen.
Context: ...PickerContent.unavailableDates} /> ### Non Contiguous The allowsNonContiguousRanges prop ena...
Rule ID: NON_ANTI_JJ


Near line 324: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...ent**: When the date-range-picker has a end content. Base on those endContent...
Rule ID: EN_A_VS_AN


Near line 326: This phrasing could be wordy, so try replacing it with something more concise.
Context: ... the date-range-picker's visibleMonth is more than 2. ## Accessibility ...
Rule ID: MORE_THAN_EXCEEDS


Near line 359: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the left side”?
Context: ... | Element to be rendered in the left side of the date-range-picker. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 360: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the right side”?
Context: ... | Element to be rendered in the right side of the date-range-picker. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 370: Consider adding a comma after ‘Usually’ for more clarity.
Context: ...icon to toggle the date picker popover. Usually a calendar icon. ...
Rule ID: RB_LY_COMMA


Near line 374: When ‘24-hour’ is used as a modifier, it is usually spelled with a hyphen.
Context: ... | Whether to display the time in 12 or 24 hour format. This is determined by the user'...
Rule ID: HOUR_HYPHEN


Near line 375: A comma may be missing after the conjunctive/linking adverb ‘Typically’.
Context: ...t that is displayed in the date picker. Typically "day" for dates. ...
Rule ID: SENT_START_CONJUNCTIVE_LINKING_ADVERB_COMMA

apps/docs/content/docs/components/radio-group.mdx (2)

Near line 103: Unpaired symbol: ‘"’ seems to be missing
Context: ...ontent.customImpl} /> {" "} ## Data Attributes - RadioGroup ha...
Rule ID: EN_UNPAIRED_QUOTES


Near line 144: Unpaired symbol: ‘"’ seems to be missing
Context: ...sistive technology. {" "} ## API ### RadioGroup Props | Attri...
Rule ID: EN_UNPAIRED_QUOTES

apps/docs/content/docs/components/range-calendar.mdx (2)

Near line 98: Consider using a different verb for a more formal wording.
Context: ...ssage slot may be used to help the user fix the issue. By default, the selected da...
Rule ID: FIX_RESOLVE


Near line 216: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ...r, e.g. single letter, abbreviation, or full day name. ...
Rule ID: EN_COMPOUND_ADJECTIVE_INTERNAL

apps/docs/content/docs/components/textarea.mdx (4)

Near line 105: Unpaired symbol: ‘"’ seems to be missing
Context: ...sage of the textarea. {" "} ## Data Attributes Textarea has ...
Rule ID: EN_UNPAIRED_QUOTES


Near line 136: Unpaired symbol: ‘"’ seems to be missing
Context: ...the input via ARIA. {" "} ## API ### Textarea Props | Attribu...
Rule ID: EN_UNPAIRED_QUOTES


Near line 156: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the left side”?
Context: ... | Element to be rendered in the left side of the input. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE


Near line 157: In this case, the usual preposition with “side” is “on”, not “in”. Did you mean “on the right side”?
Context: ... | Element to be rendered in the right side of the input. ...
Rule ID: IN_ON_THE_RIGHT_HAND_SIDE

apps/docs/content/docs/components/time-input.mdx (6)

Near line 95: You have already used this phrasing in nearby sentences. Consider replacing it to add variety to your writing.
Context: ...artContent} /> ### End Content If you want to display some content after the time inp...
Rule ID: REP_WANT_TO_VB


Near line 107: ‘taken into account’ might be wordy. Consider a shorter alternative.
Context: ...ncerns such as daylight saving time are taken into account when the value is manipulated. In most...
Rule ID: EN_WORDINESS_PREMIUM_TAKEN_INTO_ACCOUNT


Near line 111: Probably a preposition is missing after ‘applies’.
Context: ...ale abolishes DST). Examples where this applies include calendar events, reminders, and other t...
Rule ID: ATD_VERBS_TO_COLLOCATION


Near line 149: When ‘24-hour’ is used as a modifier, it is usually spelled with a hyphen.
Context: ...meInput` displays times in either 12 or 24 hour hour format depending on the user's loc...
Rule ID: HOUR_HYPHEN


Near line 149: Possible missing comma found.
Context: ...lays times in either 12 or 24 hour hour format depending on the user's locale. However...
Rule ID: AI_HYDRA_LEO_MISSING_COMMA


Near line 211: When ‘24-hour’ is used as a modifier, it is usually spelled with a hyphen.
Context: ... | Whether to display the time in 12 or 24 hour format. By default, this is determined ...
Rule ID: HOUR_HYPHEN

Additional comments not posted (2)
apps/docs/content/docs/components/date-picker.mdx (1)

316-316: The update to the validate property is clear and aligns well with the new validation behavior. However, consider using "on the left side" instead of "in the left side" for better grammatical accuracy.

- Element to be rendered in the left side of the date-picker.
+ Element to be rendered on the left side of the date-picker.

Likely invalid or redundant comment.

apps/docs/content/docs/components/range-calendar.mdx (1)

229-229: The update to the validate property is clear and aligns well with the new validation behavior. However, consider using "on the right side" instead of "in the right side" for better grammatical accuracy.

- Element to be rendered in the right side of the date-picker.
+ Element to be rendered on the right side of the date-picker.

Likely invalid or redundant comment.

apps/docs/content/docs/components/date-range-picker.mdx Outdated Show resolved Hide resolved
apps/docs/content/docs/components/textarea.mdx Outdated Show resolved Hide resolved
apps/docs/content/docs/components/radio-group.mdx Outdated Show resolved Hide resolved
apps/docs/content/docs/components/time-input.mdx Outdated Show resolved Hide resolved
apps/docs/content/docs/components/date-input.mdx Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between c00316e and 1e84b98.

Files selected for processing (9)
  • apps/docs/content/docs/components/checkbox-group.mdx (1 hunks)
  • apps/docs/content/docs/components/date-input.mdx (1 hunks)
  • apps/docs/content/docs/components/date-picker.mdx (1 hunks)
  • apps/docs/content/docs/components/date-range-picker.mdx (1 hunks)
  • apps/docs/content/docs/components/input.mdx (1 hunks)
  • apps/docs/content/docs/components/radio-group.mdx (1 hunks)
  • apps/docs/content/docs/components/range-calendar.mdx (1 hunks)
  • apps/docs/content/docs/components/textarea.mdx (1 hunks)
  • apps/docs/content/docs/components/time-input.mdx (1 hunks)
Files skipped from review as they are similar to previous changes (8)
  • apps/docs/content/docs/components/date-input.mdx
  • apps/docs/content/docs/components/date-picker.mdx
  • apps/docs/content/docs/components/date-range-picker.mdx
  • apps/docs/content/docs/components/input.mdx
  • apps/docs/content/docs/components/radio-group.mdx
  • apps/docs/content/docs/components/range-calendar.mdx
  • apps/docs/content/docs/components/textarea.mdx
  • apps/docs/content/docs/components/time-input.mdx

@jrgarciadev jrgarciadev merged commit f0008d0 into main May 31, 2024
3 checks passed
@jrgarciadev jrgarciadev deleted the chore/validationBehavior branch May 31, 2024 02:15
@coderabbitai coderabbitai bot mentioned this pull request Sep 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants