On this pageFunctions
Ui/Fieldset
/** Returns the description element id, derived from the fieldset's base id. */
(id: string): string/** Renders an accessible fieldset by building ARIA attribute groups and delegating layout to the consumer's `toView` callback. */
<Message>(
config: ViewConfig<Message>,
h: HtmlBuilder<Message>
): Html/** Attribute groups the fieldset component provides to the consumer's `toView` callback. */
type FieldsetAttributes = Readonly<{
description: ReadonlyArray<Attribute<Message>>
fieldset: ReadonlyArray<Attribute<Message>>
legend: ReadonlyArray<Attribute<Message>>
}>