litegui.ts 1.0.2 → 1.0.4
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/dist/litegui.js +14 -3
- package/dist/litegui.js.map +1 -1
- package/dist/litegui.mini.js +1 -1
- 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
|
|
package/dist/litegui.js
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
+
module.exports = factory();
|
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
|
5
|
+
define([], factory);
|
|
6
|
+
else if(typeof exports === 'object')
|
|
7
|
+
exports["LiteGUI"] = factory();
|
|
8
|
+
else
|
|
9
|
+
root["LiteGUI"] = factory();
|
|
10
|
+
})(this, () => {
|
|
11
|
+
return /******/ (() => { // webpackBootstrap
|
|
3
12
|
/******/ var __webpack_modules__ = ({
|
|
4
13
|
|
|
5
14
|
/***/ 3931
|
|
@@ -11893,8 +11902,10 @@ Tree.INDENT = 20;
|
|
|
11893
11902
|
/******/ // Load entry module and return exports
|
|
11894
11903
|
/******/ // This entry module is referenced by other modules so it can't be inlined
|
|
11895
11904
|
/******/ var __webpack_exports__ = __webpack_require__(1969);
|
|
11896
|
-
/******/
|
|
11905
|
+
/******/ __webpack_exports__ = __webpack_exports__.LiteGUI;
|
|
11897
11906
|
/******/
|
|
11907
|
+
/******/ return __webpack_exports__;
|
|
11898
11908
|
/******/ })()
|
|
11899
11909
|
;
|
|
11910
|
+
});
|
|
11900
11911
|
//# sourceMappingURL=litegui.js.map
|