@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.
23 lines (22 loc) • 509 B
TypeScript
export declare enum InputDataAttributes {
/**
* Present when the input is disabled.
*/
disabled = "data-disabled",
/**
* Present when the input is in valid state.
*/
valid = "data-valid",
/**
* Present when the input is in invalid state.
*/
invalid = "data-invalid",
/**
* Present when the input has been touched.
*/
touched = "data-touched",
/**
* Present when the input's value has changed.
*/
dirty = "data-dirty"
}