@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
30 lines • 800 B
TypeScript
export declare enum InputDataAttributes {
/**
* Present when the input is disabled.
*/
disabled = "data-disabled",
/**
* Present when the input is in valid state (when wrapped in Field.Root).
*/
valid = "data-valid",
/**
* Present when the input is in invalid state (when wrapped in Field.Root).
*/
invalid = "data-invalid",
/**
* Present when the input has been touched (when wrapped in Field.Root).
*/
touched = "data-touched",
/**
* Present when the input's value has changed (when wrapped in Field.Root).
*/
dirty = "data-dirty",
/**
* Present when the input is filled (when wrapped in Field.Root).
*/
filled = "data-filled",
/**
* Present when the input is focused (when wrapped in Field.Root).
*/
focused = "data-focused",
}