1.0.7 • Published 2 months ago

open-comps v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

open-comps

Web Components built on top of Open Props, utilizing Progressive Enhancement. Minimal JS, maximum compatibility. Works with any front end framework (and without).

!IMPORTANT\ This project is still in active development

Usage

Base Theme

To use base themes, put the following in your html head element:

<link rel="stylesheet" href="open-comps/dark.css"  media="(prefers-color-scheme: dark)"  />
<link rel="stylesheet" href="open-comps/light.css" media="(prefers-color-scheme: light)" />
<link rel="stylesheet" href="open-comps/main.css" />

This includes all the colors for both light and dark modes as well as all the normalized styling.

Components

To include all components

Place the following in your head element:

<link rel="stylesheet" href="open-comps/components.css" />

And either in your head element or main JS file:

import "open-comps"

To include a single component (example, qr-code)

<link rel="stylesheet" href="open-comps/qr-code.css" />

and

import "open-comps/qr-code.js"

Note this can be included anywhere in your body element as:

<body>
...
    <link rel="stylesheet" href="https://esm.sh/open-comps@1.0.6/components/qr-code/qr-code.css">
    <qr-code value="https://stellarand.com"></qr-code>
    <qr-code value="https://github.com/andstellar"></qr-code>
    <script type="module" src="https://esm.sh/open-comps@1.0.6/esm/components/qr-code/qr-code.js"></script>
    ...
</body>

Or using is-land:

<is-land on:visible on:idle>
    <qr-code value="https://stellarand.com"></qr-code>
    <template data-island>
        <link rel="stylesheet" href="https://esm.sh/open-comps@1.0.6/components/qr-code/qr-code.css">
        <script type="module" src="https://esm.sh/open-comps@1.0.6/esm/components/qr-code/qr-code.js"></script>
    </template>
</is-land>

Contributing

This project uses the following for development:

1.0.7

2 months ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.4

2 months ago

1.0.3

3 months ago

1.0.1

3 months ago

1.0.0

3 months ago

0.0.1

3 months ago