2.3.17 • Published 7 years ago

ui-components-lite v2.3.17

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

UI-COMPONENTS-LITE

A set of fairly lightweight UI WebComponents.

Goals

  • Use the platform. Everything must be standards-based with broad pledged support from all major browser vendors (meaning no HTML imports, CSS @apply, or extending built-in elements).
  • Corollary: must work in at least one browser as-is: no build steps needed.
  • Corollary2: avoidance of wonky, framework-ey 'helpers' that are required.
  • Total size of all core components minified < 100k

Unfortunately I will possibly be unable to complete one of the core goals of this project which is to avoid the necessity of helpers or special processes. The main reason is a limitation of the Shady CSS ShadowDOM polyfill: styles are scoped to the element tag name, one per tag, making inheritance somewhat worthless. I hacked a work-around but it involves defining components with defineUIComponent. If multiple calls to ShadyCSS.prepareTemplate become possible, then I can make defineUIComponent a convenience rather than a necessity.

Usage

Add the loader to the document head, it will feature-detect any necessary polyfills and load them along with all the core components. It does load the full core-js polyfill suite if it detects missing ES 6 features it needs. To use a core component just include it on the page:

<ui-card>
  <span>Look, a drop down</span>
  <ui-drop-down>
    <ui-item>Foo</ui-item>
    <ui-item>Bar</ui-item>
  </ui-drop-down>
</ui-card>

It is unnecessary to define components with the provided helper unless you are extending a ui-component or just want the same API surface (or want to be able to extend your own elements). If you want to define a component:

import { defineUIComponent, document, UIBase } from '../utils/ui-component-base.js';

export default defineUIComponent({
  name: 'my-awesome-component',
  definition: class MyAwesomeComponent extends UIBase {
    constructor () {
      super();
      /* your code here */
    }
  }
});

Then in your markup

<my-awesome-component></my-awesome-component>

Note that defineUIComponent will register your custom element for you (and like customElement.define, will throw if you do it twice). If you do extend any of these elements (or extend the ui-components-lite base component to make your own) I recommend using a custom loader. Look to the default loader as an example.

2.3.17

7 years ago

2.3.16

7 years ago

2.3.15

7 years ago

2.3.14

7 years ago

2.3.13

7 years ago

2.3.12

7 years ago

2.3.11

7 years ago

2.3.10

7 years ago

2.3.9

7 years ago

2.3.8

7 years ago

2.3.7

7 years ago

2.3.6

7 years ago

2.3.5

7 years ago

2.3.4

7 years ago

2.3.3

7 years ago

2.3.2

7 years ago

2.3.1

7 years ago

2.3.0

7 years ago

2.2.3

7 years ago

2.2.2

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.777777777

7 years ago

2.0.6

7 years ago

2.0.5

7 years ago

2.0.4

7 years ago

2.0.3

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

0.3.4

8 years ago

0.3.3

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.6

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago