litegui.ts 1.0.2 → 1.0.3
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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,23 @@ you're looking for. On the other hand, any advanced UI will need a lot of coding
|
|
|
11
11
|
|
|
12
12
|

|
|
13
13
|
|
|
14
|
+
Installation
|
|
15
|
+
-----------
|
|
16
|
+
|
|
17
|
+
### npm
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install litegui.ts
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### CDN (GitHub Pages)
|
|
24
|
+
|
|
25
|
+
You can also load the library directly from the GitHub Pages CDN — no install required:
|
|
26
|
+
```html
|
|
27
|
+
<link type="text/css" rel="stylesheet" href="https://alvaroestradadev.github.io/litegui.ts/litegui.css">
|
|
28
|
+
<script type="application/javascript" src="https://alvaroestradadev.github.io/litegui.ts/litegui.js"></script>
|
|
29
|
+
```
|
|
30
|
+
|
|
14
31
|
Creating a UI
|
|
15
32
|
-----------
|
|
16
33
|
|