@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.
31 lines • 917 B
JavaScript
export let FieldLabelDataAttributes = /*#__PURE__*/function (FieldLabelDataAttributes) {
/**
* Present when the field is disabled.
*/
FieldLabelDataAttributes["disabled"] = "data-disabled";
/**
* Present when the field is in valid state.
*/
FieldLabelDataAttributes["valid"] = "data-valid";
/**
* Present when the field is in invalid state.
*/
FieldLabelDataAttributes["invalid"] = "data-invalid";
/**
* Present when the field has been touched.
*/
FieldLabelDataAttributes["touched"] = "data-touched";
/**
* Present when the field's value has changed.
*/
FieldLabelDataAttributes["dirty"] = "data-dirty";
/**
* Present when the field is filled.
*/
FieldLabelDataAttributes["filled"] = "data-filled";
/**
* Present when the field control is focused.
*/
FieldLabelDataAttributes["focused"] = "data-focused";
return FieldLabelDataAttributes;
}({});