-
Notifications
You must be signed in to change notification settings - Fork 255
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(clerk-js,elements,types,localization): Make legal consent stable #4487
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 05a105e The changes in this PR will be included in the next version bump. This PR includes changesets to release 20 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
d23783e
to
c8ae7f1
Compare
c8ae7f1
to
b6493fa
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Went through and tested different flows with no issues. Nice work.
Only had one comment on the checkbox label not dimming on submission similar to other checkboxes.
@@ -71,7 +68,7 @@ export const LegalCheckbox = ( | |||
<Flex justify='center'> | |||
<Field.CheckboxIndicator | |||
elementDescriptor={descriptors.formFieldCheckboxInput} | |||
elementId={descriptors.formFieldInput.setId('__experimental_legalAccepted')} | |||
elementId={descriptors.formFieldInput.setId('legalAccepted')} | |||
/> | |||
<FormLabel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wonder if the checkbox label should dim when the form is submitting similar to the other input labels. It currently stays at full opacity but the checkbox input dims.
Screen.Recording.2024-11-06.at.3.15.57.PM.mov
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, I will fix it!
Description
This PR marks legal consent feature as stable
Checklist
npm test
runs as expected.npm run build
runs as expected.Type of change