All Projects → kor-ui → Kor

kor-ui / Kor

Licence: mit
User Interface Component Library based on LitElement / lit-html

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Kor

Web Components Benchmark
Web Components benchmark for a various Web Components technologies
Stars: ✭ 69 (-33.65%)
Mutual labels:  webcomponents
Covapp
The app lets everyone assess their symptoms using a questionnaire. The app also informs users about next steps, for example, precautionary measures or contacting healthcare providers and health authorities.
Stars: ✭ 90 (-13.46%)
Mutual labels:  webcomponents
Highcharts Chart
Polymer Element wrapper for highcharts library. Seamlessly create various types of charts from one element.
Stars: ✭ 97 (-6.73%)
Mutual labels:  webcomponents
Wired Elements
Collection of custom elements that appear hand drawn. Great for wireframes or a fun look.
Stars: ✭ 8,848 (+8407.69%)
Mutual labels:  webcomponents
Vaadin Upload
The Web Component for uploading multiple files with progress indication. Part of the Vaadin components.
Stars: ✭ 87 (-16.35%)
Mutual labels:  webcomponents
Fast Morph
A Morphing UI web component built with StencilJS
Stars: ✭ 90 (-13.46%)
Mutual labels:  webcomponents
Onsenui
Mobile app development framework and SDK using HTML5 and JavaScript. Create beautiful and performant cross-platform mobile apps. Based on Web Components, and provides bindings for Angular 1, 2, React and Vue.js.
Stars: ✭ 8,518 (+8090.38%)
Mutual labels:  webcomponents
Wc Loader
🚽 Webcomponents webpack loader.
Stars: ✭ 101 (-2.88%)
Mutual labels:  webcomponents
Builder
Drag and drop page building using your code components
Stars: ✭ 1,281 (+1131.73%)
Mutual labels:  webcomponents
Calcite Components
Web Components for the Calcite Design System. Built with Stencil JS. Currently in Beta!
Stars: ✭ 96 (-7.69%)
Mutual labels:  webcomponents
Article
Components for interactive scientific writing, reactive documents and explorable explanations.
Stars: ✭ 77 (-25.96%)
Mutual labels:  webcomponents
Funcy.js
funcy.js - a functional web components wrapper
Stars: ✭ 87 (-16.35%)
Mutual labels:  webcomponents
Stencil
A toolchain for building scalable, enterprise-ready component systems on top of TypeScript and Web Component standards. Stencil components can be distributed natively to React, Angular, Vue, and traditional web developers from a single, framework-agnostic codebase.
Stars: ✭ 9,880 (+9400%)
Mutual labels:  webcomponents
Webcomponents From Zero To Hero
An introduction to writing raw web components.
Stars: ✭ 70 (-32.69%)
Mutual labels:  webcomponents
Polymer3 Webpack Starter
Polymer 3 starter built with Vaadin components and Vaadin.Router library, using webpack and modern tools
Stars: ✭ 99 (-4.81%)
Mutual labels:  webcomponents
Split Me
Universal web component to create resizable split layouts
Stars: ✭ 69 (-33.65%)
Mutual labels:  webcomponents
Aybolit
Lightweight web components library built with LitElement.
Stars: ✭ 90 (-13.46%)
Mutual labels:  webcomponents
Smile To Unlock
Want to give away free content on your site? How about asking for a smile in return 😁
Stars: ✭ 103 (-0.96%)
Mutual labels:  webcomponents
Frontend
🍭 Frontend for Home Assistant
Stars: ✭ 1,366 (+1213.46%)
Mutual labels:  webcomponents
Nanocomponent Adapters
🔌 - Convert a nanocomponent to a component for your favourite API or library (web components, (p)react, angular)
Stars: ✭ 94 (-9.62%)
Mutual labels:  webcomponents

kor

Visit www.kor-ui.com for samples, APIs and other design/development documentation

A design system / UI component library built with LitElement. Based on the web components standards, kor is browser-, framework- and OS-agnostic and can be used to build web, desktop and mobile applications using Angular, Vue, React, plain JS and so on.

Installation

Install the library through npm:

npm install @kor-ui/kor --save

Integration of Components

Load the whole bundle

The most simple and common way of including the components into an application is by loading the core bundle:

// include bundle through module import
import '@kor-ui/kor'
// if using JS, css can also be imported. if using TS, use html stylesheet as shown below
import '@kor-ui/kor/kor-styles.css'

or

<!-- include bundle and styles in html file -->
<script type="text/javascript" charset="utf-8" src="node_modules/@kor-ui/kor/index.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/@kor-ui/kor/kor-styles.css">

Load single components

As an alternative, you can also load individual components to reduce loading time. Be aware that components are inter-dependent and should be imported independently:

// include individual components and styles through module import
import '@kor-ui/kor/components/button'
import '@kor-ui/kor/components/text'
// if using JS, css can also be imported. if using TS, use html stylesheet as shown below
import '@kor-ui/kor/kor-styles.css'

or

<!-- include single components and styles in html file -->
<script type="text/javascript" charset="utf-8" src="node_modules/@kor-ui/kor/components/button/index.js"></script>
<script type="text/javascript" charset="utf-8" src="node_modules/@kor-ui/kor/components/text/index.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/@kor-ui/kor/kor-styles.css">

Usage

Use the kor components as if they were native HTML tags. All components allow one and two-way data binding and the attributes fire an <attribute>-changed event when modified:

<kor-button label="Hello World" color="secondary" disabled></kor-button>
<!-- data binding -->
<kor-accordion [label]="myVar" (expanded-changed)="myFunction()"></kor-accordion>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].