ziko 0.0.2 → 0.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 +11 -15
- package/dist/ziko.cjs +459 -82
- package/dist/ziko.js +459 -82
- package/dist/ziko.min.js +2 -2
- package/dist/ziko.mjs +459 -82
- package/package.json +5 -7
- package/src/App/app.js +9 -0
- package/src/Reactivity/Events/Global/CustomEvent.js +2 -2
- package/src/Reactivity/Events/Global/Mouse.js +230 -0
- package/src/Reactivity/Events/Global/Touch.js +0 -0
- package/src/Reactivity/Events/Global/Wheel.js +44 -0
- package/src/Reactivity/Events/Partiel/Hash.js +44 -0
- package/src/Reactivity/Events/Partiel/MediaEvent.js +1 -0
- package/src/Reactivity/Events/index.js +11 -2
- package/src/UI/CustomElement/Flex.js +22 -22
- package/src/UI/Media/Audio/index.js +14 -1
- package/src/UI/Media/Video/index.js +13 -0
- package/src/UI/ZikoUIElement.js +52 -29
- package/starter/bin/index.js +0 -10
package/README.md
CHANGED
|
@@ -4,24 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
<br>
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
# Install
|
|
8
|
+
```bash
|
|
9
|
+
npm install ziko
|
|
10
|
+
```
|
|
11
|
+
# ⚡ Get started
|
|
12
|
+
## Node
|
|
9
13
|
```bash
|
|
10
14
|
npx create-ziko-app [My_App]
|
|
11
|
-
cd [My_App]
|
|
12
15
|
```
|
|
13
|
-
|
|
14
|
-
#### Commands
|
|
15
16
|
```
|
|
17
|
+
cd [My_App]
|
|
16
18
|
npm run dev
|
|
17
19
|
```
|
|
18
|
-
|
|
19
|
-
npm start
|
|
20
|
-
```
|
|
21
|
-
```
|
|
22
|
-
npm run build
|
|
23
|
-
```
|
|
24
|
-
### Browser
|
|
20
|
+
## Browser
|
|
25
21
|
```html
|
|
26
22
|
<!DOCTYPE html>
|
|
27
23
|
<html lang="en">
|
|
@@ -53,11 +49,11 @@
|
|
|
53
49
|
</body>
|
|
54
50
|
</html>
|
|
55
51
|
```
|
|
56
|
-
|
|
52
|
+
## Documentation
|
|
57
53
|
## 🎬 Demos
|
|
58
54
|
- ### [ Windows entanglement using zikojs and ziko-three ](https://www.linkedin.com/feed/update/urn:li:activity:7144023650394918913/)
|
|
59
55
|
|
|
60
|
-
## 📃 [wiki](https://github.com/zakarialaoui10/ziko.js/wiki
|
|
56
|
+
## 📃 [wiki](https://github.com/zakarialaoui10/ziko.js/wiki)
|
|
61
57
|
|
|
62
58
|
## 💡 [Features]()
|
|
63
59
|
<details>
|
|
@@ -319,7 +315,7 @@ useThread(() => {
|
|
|
319
315
|
|
|
320
316
|
If you appreciate the library, kindly demonstrate your support by giving it a star!<br>
|
|
321
317
|
[](https://github.com/zakarialaoui10/ziko.js)
|
|
322
|
-
|
|
318
|
+
<!--## Financial support-->
|
|
323
319
|
# License
|
|
324
320
|
This projet is licensed under the terms of MIT License
|
|
325
321
|
<img src="https://img.shields.io/github/license/zakarialaoui10/zikojs?color=rgb%2820%2C21%2C169%29" width="100" align="right">
|