@luzmo/lucero 1.0.1-alpha.0 → 1.0.1-alpha.1

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.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ Luzmo Design system - Lucero
2
+
3
+ ## Installation
4
+
5
+ ```bash
6
+ npm install @luzmo/lucero
7
+ ```
8
+
9
+ ```ts
10
+ import '@luzmo/lucero/button';
11
+ ```
12
+
13
+ ```html
14
+ <luzmo-button>Click me</luzmo-button>
15
+ ```
16
+
17
+ ## Alpha
18
+
19
+ This repository is in alpha state. Do not use the web components in production.
20
+ Expect breaking changes.
21
+
22
+ ## Requirements
23
+
24
+ Supported desktop browsers:
25
+
26
+ - Last 2 versions of Chrome
27
+ - Last 2 versions of Firefox
28
+ - Last 2 versions of Safari
29
+ - Last 2 versions of Edge
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luzmo/lucero",
3
- "version": "1.0.1-alpha.0",
3
+ "version": "1.0.1-alpha.1",
4
4
  "homepage": "https://luzmo.com",
5
5
  "description": "Lucero - The design system for Luzmo",
6
6
  "type": "module",