Welcome to the Performance-Optimized UI Components Library – a collection of web components designed with a focus on performance, leveraging the power of Virtual DOM.
- High-performance UI web components.
- Efficient rendering using Virtual DOM.
You can install the library using npm:
npm i webcraft-ui
import { InputNumber } from 'webcraft-ui';
const speed = new InputNumber({
label: 'Speed',
suffix: ' km/h',
numberType: 'integer',
icon: 'fa-solid fa-gauge-high',
value: 250,
});
const currency = new InputNumber({
label: 'Value',
suffix: ' $',
numberType: 'decimal',
value: 85000.99,
icon: 'fa-solid fa-coins',
});
speed.mount();
currency.mount();
List of samples is there: https://stackblitz.com/@PrzemekNiedziela/collections/webcraft
This project is licensed under the MIT. See the LICENSE file for additional information.