@universal-material/web
Version:
Material web components
16 lines • 660 B
TypeScript
import { CSSResultGroup } from '@lit/reactive-element/css-tag';
import { UmFieldBase } from '../../field/field-base.js';
export declare abstract class UmTextFieldBase extends UmFieldBase {
static readonly formAssociated = true;
static styles: CSSResultGroup;
static shadowRootOptions: ShadowRootInit;
/**
* Whether the field is empty or not. This changes the behavior of the floating label when the field is not focused.
*/
empty: boolean;
placeholder: string;
get form(): HTMLFormElement | null;
protected readonly elementInternals: ElementInternals;
constructor();
}
//# sourceMappingURL=text-field-base.d.ts.map