-
Notifications
You must be signed in to change notification settings - Fork 2.2k
fix(DatePicker): fixed disabled state for DatePicker #21848
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
Open
suniltc-ibm
wants to merge
24
commits into
carbon-design-system:main
Choose a base branch
from
suniltc-ibm:fix/datepicker-read-only
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3f24258
fix(DatePicker): fixed disabled state for DatePicker
suniltc-ibm b0365d0
fix(DatePicker): using isReadOnly variable
suniltc-ibm 996b0f0
fix(DatePicker): added test case
suniltc-ibm eee513c
Update packages/react/src/components/DatePicker/DatePicker-test.js
suniltc-ibm ecc786a
fix(Datepicker): fixed conflicts
suniltc-ibm 7a3d2f4
Merge branch 'main' into fix/datepicker-read-only
heloiselui 5ad5dc4
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm aa55ac6
Merge branch 'main' into fix/datepicker-read-only
sangeethababu9223 05ca04b
Merge branch 'main' into fix/datepicker-read-only
heloiselui 2c7ba85
fix(DatePicker): fixed disabled state for web components
suniltc-ibm cb78a18
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm 5a22f2c
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm db1ca92
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm 65509f4
fix(DatePicker): updated tests
suniltc-ibm 4d56d03
Merge branch 'carbon-design-system:main' into fix/datepicker-read-only
suniltc-ibm a377c84
fix(DatePicker): addressed review comments
suniltc-ibm ec697f2
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm 4f872f2
Merge branch 'carbon-design-system:main' into fix/datepicker-read-only
suniltc-ibm 3f54880
fix(DatePicker): fixed failing test
suniltc-ibm 603f1a2
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm a984e21
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm 60e38fc
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm 00ed83b
fix(DatePicker): updated label with disabled check
suniltc-ibm 39b6a31
Merge branch 'main' into fix/datepicker-read-only
suniltc-ibm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
adamalston marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -945,6 +945,7 @@ const NumberInput = React.forwardRef<HTMLInputElement, NumberInputProps>( | |
| data-invalid={normalizedProps.invalid ? true : undefined}> | ||
| <Label | ||
| disabled={normalizedProps.disabled} | ||
| readOnly={readOnly} | ||
| hideLabel={hideLabel} | ||
| id={id} | ||
| label={label} | ||
|
|
@@ -955,7 +956,9 @@ const NumberInput = React.forwardRef<HTMLInputElement, NumberInputProps>( | |
| data-invalid={normalizedProps.invalid ? true : undefined} | ||
| aria-invalid={normalizedProps.invalid} | ||
| aria-describedby={ariaDescribedBy} | ||
| aria-readonly={readOnly} | ||
| aria-readonly={ | ||
| readOnly && !normalizedProps.disabled ? true : undefined | ||
| } | ||
| disabled={normalizedProps.disabled} | ||
| ref={ref} | ||
| id={id} | ||
|
|
@@ -1066,7 +1069,7 @@ const NumberInput = React.forwardRef<HTMLInputElement, NumberInputProps>( | |
| }} | ||
| pattern={pattern} | ||
| inputMode={inputMode} | ||
| readOnly={readOnly} | ||
| {...(readOnly && !disabled ? { readOnly: true } : {})} | ||
| step={step} | ||
| type={type} | ||
| value={type === 'number' ? value : inputValue} | ||
|
|
@@ -1360,16 +1363,18 @@ NumberInput.propTypes = { | |
|
|
||
| interface LabelProps { | ||
| disabled?: boolean; | ||
| readOnly?: boolean; | ||
| hideLabel?: boolean; | ||
| id?: string; | ||
| label?: ReactNode; | ||
| } | ||
|
|
||
| const Label = ({ disabled, id, hideLabel, label }: LabelProps) => { | ||
| const Label = ({ disabled, readOnly, id, hideLabel, label }: LabelProps) => { | ||
| const prefix = usePrefix(); | ||
| const className = cx({ | ||
| [`${prefix}--label`]: true, | ||
| [`${prefix}--label--disabled`]: disabled, | ||
| [`${prefix}--label--readonly`]: readOnly, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as earlier. |
||
| [`${prefix}--visually-hidden`]: hideLabel, | ||
| }); | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Same as earlier.