@meteo28093/equinox-ui 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/dist/equinox-ui.0.0.4.esm.js +2562 -0
- package/dist/equinox-ui.0.0.4.global.js +2562 -0
- package/dist/equinox-ui.0.0.5.esm.js +2625 -0
- package/dist/equinox-ui.0.0.5.global.js +2625 -0
- package/dist/equinox-ui.esm.js +202 -152
- package/dist/equinox-ui.global.js +202 -152
- package/equinox.css +52 -30
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
## Equinox UI
|
|
2
2
|
|
|
3
|
-
Equinox UI is a
|
|
3
|
+
Equinox UI is a web component library for blogs or small web projects.
|
|
4
4
|
|
|
5
5
|
You can use the bundled `equinox.css`, use a classless framework like water.css or pico.css or style the components.
|
|
6
6
|
|
|
7
7
|
## Use with a CDN
|
|
8
8
|
|
|
9
9
|
```html
|
|
10
|
-
<script src="https://unpkg.com/@meteo28093/equinox-ui@0.0.
|
|
10
|
+
<script src="https://unpkg.com/@meteo28093/equinox-ui@0.0.4/dist/equinox-ui.0.0.4.global.js"></script>
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
This registers components globally.
|
|
@@ -39,6 +39,5 @@ node statusbar.js <component-tag> '<params-json>' --icon <icon-spec>
|
|
|
39
39
|
Examples:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
node statusbar.js ee-moon-card '{"city": "Berlin"}' --icon lucide:moon-star
|
|
43
42
|
node statusbar.js ee-geo-storm '{}' --icon lucide:cloud-lightning
|
|
44
43
|
```
|