Skip to content

Commit

Permalink
Merge pull request #797 from dnum-mi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
laruiss authored Apr 25, 2024
2 parents e976e42 + 0798e9b commit a42565f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DsfrInput/DsfrInput.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type DsfrInputProps = {
labelVisible?: boolean
label?: string
labelClass?: string
modelValue?: string
modelValue?: string | number
wrapperClass?: string
}

Expand All @@ -19,7 +19,7 @@ export type DsfrInputGroupProps = {
labelVisible?: boolean
label?: string
labelClass?: string
modelValue?: string
modelValue?: string | number
placeholder?: string
errorMessage?: string
validMessage?: string
Expand Down
2 changes: 2 additions & 0 deletions src/components/DsfrRadioButton/DsfrRadioButton.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export type DsfrRadioButtonProps = {
img?: string
}

export type DsfrRadioButtonOptions = (Omit<DsfrRadioButtonProps, 'modelValue'>)[]

export type DsfrRadioButtonSetProps = {
titleId?: string,
disabled?: boolean,
Expand Down

0 comments on commit a42565f

Please sign in to comment.