public-ui / kolibri

The accessible HTML-Standard
https://public-ui.github.io
European Union Public License 1.2
155 stars 33 forks source link

📖 Help: KolRadioButton hint #6455

Closed agnieszkaw61 closed 2 weeks ago

agnieszkaw61 commented 3 months ago

Note

  • [ ] Ich achte beim Erstellen des Issues darauf, dass ich keine fachlichen und unternehmensinternen Details preisgebe.

Hilfeanfrage

Beschreiben Sie möglichst genau, wobei wir Ihnen helfen können.

RadioButton-Komponent bietet einen "_hint" Property, aber es erlaubt nur ein string und deshalb es ist dasselbe fur jede Option:

image

ist es moglich dass jede Optione andere hint hat?

deleonio commented 1 month ago

Soll:

Image

type Option<T> = {
  label: "Deutschland",
  value:? T,
}

type RadioOption<T> = Option<T> & {
  description:?  string
}