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

feat(component): add Radio component #2933

Merged

Conversation

MaxLardenois
Copy link
Collaborator

@MaxLardenois MaxLardenois commented Mar 31, 2025

Note: Please transform - [ ] into - (NA) in the description when things are not applicable

Related issues

closes #2892

Types of change

  • New feature (non-breaking change which adds functionality)

Live previews

Checklist

Contribution

Accessibility

  • My change follows accessibility good practices; I have at least run axe

Design

  • My change respects the design guidelines defined in Orange Design System
  • My change is compatible with a responsive display

Development

  • My change follows the developer guide
  • I have added JavaScript unit tests to cover my changes
  • I have added SCSS unit tests to cover my changes

Documentation

  • My change introduces changes to the documentation and/or I have updated the documentation accordingly

Checklist (for Core Team only)

  • My change introduces changes to the migration guide
  • My new component is well displayed in Storybook
  • My new component is compatible with RTL
  • Manually run BrowserStack tests
  • Manually test browser compatibility with BrowserStack (Chrome >= 60, Firefox >= 60 (+ ESR), Edge, Safari >= 12, iOS Safari, Chrome & Firefox on Android)
  • Code review
  • Design review
  • A11y review

After the merge

@MaxLardenois MaxLardenois added 🗳️ feature ⚛️ component 📖 documentation Improvements or additions to documentation and removed 🗳️ feature labels Mar 31, 2025
Copy link

netlify bot commented Mar 31, 2025

Deploy Preview for boosted ready!

Name Link
🔨 Latest commit 976892f
🔍 Latest deploy log https://app.netlify.com/sites/boosted/deploys/67ee5cdf841d180008a2b4e7
😎 Deploy Preview https://deploy-preview-2933--boosted.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@MaxLardenois MaxLardenois force-pushed the ouds/main-2784-ouds-create-component---radio-button branch from 2a44495 to 7f9cdad Compare April 1, 2025 10:05
@MaxLardenois MaxLardenois marked this pull request as ready for review April 1, 2025 10:15
@louismaximepiton louismaximepiton linked an issue Apr 2, 2025 that may be closed by this pull request

`.control-item-assets-container` are containers controlling the position of the `.control-item-indicator` and the optional icon.

`.control-item-label` extend their clickable area until a `.control-item`, `.checkbox-standalone`, `.radio-button-standalone` or a `position: relative;` is found in the page hierarchy. It permits to have a more consistent approach, whatever the DOM is. Nonetheless, it means that none of the elements next to the label should be interactive.
Copy link
Collaborator

Choose a reason for hiding this comment

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

I missed it on the checkbox review, but the .control-item does not exist on its own.

@@ -179,6 +179,40 @@ See [our new Checkbox page]({{< docsref "/forms/checkbox" >}}) for more informat

- <span class="badge text-bg-status-warning-emphasized">Warning</span> Links in checkboxes' labels are now forbidden (they won't be interactive anyway).

#### Radio button

- <span class="badge text-bg-status-positive-emphasized">New</span> `.radio-button-item`, `.radio-button-standalone`, `.radio-button-additional-label`, `.radio-button-item-outlined` have been added.
Copy link
Collaborator

Choose a reason for hiding this comment

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

In the checkbox part we are listing all control-item classes. Maybe we should move this list to the Checks & radios section since it is used in both components.

}

.radio-button-additional-label {
display: block;
Copy link
Collaborator

Choose a reason for hiding this comment

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

it is a flex item, this display should be useful.


## Approach

Browser default radio buttons are replaced with the help of `.control-item`. Radio buttons allows user to select a single option from a set of mutually exclusive choices.
Copy link
Collaborator

Choose a reason for hiding this comment

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

.control-item class does not exist :)


### Outlined

You can display an outlined radio buttons by adding a `.radio-button-item-outlined` to `.control-item`. If there is an outlined radio button item in a group, all its siblings should also be outlined.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
You can display an outlined radio buttons by adding a `.radio-button-item-outlined` to `.control-item`. If there is an outlined radio button item in a group, all its siblings should also be outlined.
You can display an outlined radio buttons by adding a `.radio-button-item-outlined` to `.radio-button-item`. If there is an outlined radio button item in a group, all its siblings should also be outlined.


### Divider

You can display a divider by adding `.control-item-divider` to a `.control-item`.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
You can display a divider by adding `.control-item-divider` to a `.control-item`.
You can display a divider by adding `.control-item-divider` to a `.radio-button-item`.


### Icon

You can display an icon by adding `.control-item-assets-container` with an icon (SVG or font-icon most likely) inside as a child of a `.control-item`.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
You can display an icon by adding `.control-item-assets-container` with an icon (SVG or font-icon most likely) inside as a child of a `.control-item`.
You can display an icon by adding `.control-item-assets-container` with an icon (SVG or font-icon most likely) inside as a child of a `.radio-button-item`.


### Reverse

You can reverse the component by adding `.control-item-reverse` to a `.control-item`.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
You can reverse the component by adding `.control-item-reverse` to a `.control-item`.
You can reverse the component by adding `.control-item-reverse` to a `.radio-button-item`.


### Invalid

You can display an invalid radio button by adding `.is-invalid` to a `.control-item-indicator`. <!-- Please take a look at our [Validation]({{< docsref "/forms/validation" >}}) page to know more about this. -->
Copy link
Collaborator

Choose a reason for hiding this comment

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

The link can be uncommented since we have the page now.

Suggested change
You can display an invalid radio button by adding `.is-invalid` to a `.control-item-indicator`. <!-- Please take a look at our [Validation]({{< docsref "/forms/validation" >}}) page to know more about this. -->
You can display an invalid radio button by adding `.is-invalid` to a `.control-item-indicator`. Please take a look at our [Validation]({{< docsref "/forms/validation" >}}) page to know more about this.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Ok, porting this to Checkbox too

@louismaximepiton louismaximepiton added this to the OUDS milestone Apr 2, 2025
@vprothais vprothais merged commit adb1c1c into ouds/main Apr 3, 2025
11 checks passed
@vprothais vprothais deleted the ouds/main-2784-ouds-create-component---radio-button branch April 3, 2025 12:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚛️ component 📖 documentation Improvements or additions to documentation
Projects
Development

Successfully merging this pull request may close these issues.

[OUDS] Create component - Radio Button
3 participants