1.0.9 • Published 5 months ago

webcraft-ui v1.0.9

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
5 months ago

WebCraft

Description

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.

Features

  • High-performance UI web components.
  • Efficient rendering using Virtual DOM.

Installation

You can install the library using npm:

npm i webcraft-ui

Example Usage

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();

Examples

List of samples is there: https://stackblitz.com/@PrzemekNiedziela/collections/webcraft

License

This project is licensed under the MIT. See the LICENSE file for additional information.

1.0.9

5 months ago

1.0.8

5 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.2-beta

7 months ago

1.0.1-beta

7 months ago

1.0.0-beta

7 months ago

1.0.0

7 months ago