UNPKG

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.

89 lines (78 loc) 3.41 kB
// // Copyright © 2025 Hermana AS // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. export const textfieldSelector = '.micl-textfield-outlined > input,.micl-textfield-filled > input'; export const selectSelector = '.micl-textfield-outlined > select,.micl-textfield-filled > select'; export const textareaSelector = '.micl-textfield-outlined > textarea,.micl-textfield-filled > textarea'; export default (() => { const counterSelector = '.micl-textfield__character-counter'; return { initialize: (element: HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement): void => { if (element.dataset.miclinitialized) { return; } element.dataset.miclinitialized = '1'; if (element.value) { element.dataset.miclvalue = '1'; } if ( (element instanceof HTMLSelectElement) || !element.maxLength ) { return; } const counter = element.parentElement?.querySelector(counterSelector); if (counter) { counter.textContent = `${element.value.length}/${element.maxLength}`; } }, input: (event: Event): void => { if ( !(event.target as Element).matches(`${textfieldSelector},${selectSelector},${textareaSelector}`) || !((event.target instanceof HTMLInputElement) || (event.target instanceof HTMLSelectElement) || (event.target instanceof HTMLTextAreaElement)) || !event.target.dataset.miclinitialized || event.target.disabled ) { return; } if (event.target.value) { event.target.dataset.miclvalue = '1'; } else { delete event.target.dataset.miclvalue; } if ( (event.target instanceof HTMLSelectElement) || !event.target.maxLength ) { return; } const counter = event.target.parentElement?.querySelector(counterSelector); if (counter) { counter.textContent = `${event.target.value.length}/${event.target.maxLength}`; } } }; })();