UNPKG

@oslokommune/punkt-elements

Version:

Komponentbiblioteket til Punkt, et designsystem laget av Oslo Origo

17 lines (16 loc) 471 B
/** * form.ts * * Type definitions for HTML form elements and controls. * These follow HTML standards for form element types. */ /** * HTML button type attribute values * Used for <button type="..."> and similar elements */ export type THTMLButtonType = 'button' | 'submit' | 'reset'; /** * Selection mode for form controls * Used in components that support single, multiple, or range selection */ export type TSelectionMode = 'single' | 'multiple' | 'range';