material-inspired-component-library
Version:
The Material-Inspired Component Library (MICL) offers a collection of beautifully crafted components leveraging native HTML markup, designed to align with the Material Design 3 guidelines.
9 lines (8 loc) • 512 B
TypeScript
export declare const textfieldSelector = ".micl-textfield-outlined > input,.micl-textfield-filled > input";
export declare const selectSelector = ".micl-textfield-outlined > select,.micl-textfield-filled > select";
export declare const textareaSelector = ".micl-textfield-outlined > textarea,.micl-textfield-filled > textarea";
declare const _default: {
initialize: (element: HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement) => void;
input: (event: Event) => void;
};
export default _default;