cloudmr-ux 0.1.0 → 1.0.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.
- package/README.md +24 -28
- package/dist/index.975ef6c8.js +75418 -0
- package/dist/index.975ef6c8.js.map +1 -0
- package/dist/index.css +159 -10
- package/dist/index.d.ts +40 -1
- package/dist/index.db9ed22c.css +171 -0
- package/dist/index.db9ed22c.css.map +1 -0
- package/dist/index.html +13 -0
- package/dist/index.js +135 -6
- package/dist/index.mjs +136 -5
- package/package.json +39 -33
package/README.md
CHANGED
|
@@ -1,28 +1,24 @@
|
|
|
1
|
-
# cloudmr-ux
|
|
2
|
-
|
|
3
|
-
## for dev:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
MIT ©
|
|
27
|
-
[erosmontin](https://github.com/erosmontin)
|
|
28
|
-
|
|
1
|
+
# cloudmr-ux
|
|
2
|
+
|
|
3
|
+
## for dev:
|
|
4
|
+
Installation steps
|
|
5
|
+
|
|
6
|
+
1. Clone this package
|
|
7
|
+
```bash
|
|
8
|
+
git clone https://github.com/cloudmrhub/cloudmr-ux.git
|
|
9
|
+
```
|
|
10
|
+
2. Install dependencies
|
|
11
|
+
```bash
|
|
12
|
+
cd cloudmr-ux
|
|
13
|
+
npm install
|
|
14
|
+
```
|
|
15
|
+
3. Run Parcel to build/serve the file public/index.html
|
|
16
|
+
```bash
|
|
17
|
+
npx parcel public/index.html
|
|
18
|
+
```
|
|
19
|
+
that's it!
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
MIT ©
|
|
23
|
+
[erosmontin](https://github.com/erosmontin)
|
|
24
|
+
|