ziko 0.0.1 → 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 +17 -4
- package/dist/ziko.cjs +466 -87
- package/dist/ziko.js +466 -87
- package/dist/ziko.min.js +2 -2
- package/dist/ziko.mjs +464 -87
- package/package.json +8 -3
- package/src/App/Globals/__Target__.js +1 -1
- package/src/App/app.js +9 -0
- package/src/Graphics/Svg/svg.js +3 -3
- 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/src/index.js +8 -7
package/README.md
CHANGED
|
@@ -4,7 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
<br>
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
# Install
|
|
8
|
+
```bash
|
|
9
|
+
npm install ziko
|
|
10
|
+
```
|
|
11
|
+
# ⚡ Get started
|
|
12
|
+
## Node
|
|
13
|
+
```bash
|
|
14
|
+
npx create-ziko-app [My_App]
|
|
15
|
+
```
|
|
16
|
+
```
|
|
17
|
+
cd [My_App]
|
|
18
|
+
npm run dev
|
|
19
|
+
```
|
|
20
|
+
## Browser
|
|
8
21
|
```html
|
|
9
22
|
<!DOCTYPE html>
|
|
10
23
|
<html lang="en">
|
|
@@ -36,11 +49,11 @@
|
|
|
36
49
|
</body>
|
|
37
50
|
</html>
|
|
38
51
|
```
|
|
39
|
-
|
|
52
|
+
## Documentation
|
|
40
53
|
## 🎬 Demos
|
|
41
54
|
- ### [ Windows entanglement using zikojs and ziko-three ](https://www.linkedin.com/feed/update/urn:li:activity:7144023650394918913/)
|
|
42
55
|
|
|
43
|
-
## 📃 [wiki](https://github.com/zakarialaoui10/ziko.js/wiki
|
|
56
|
+
## 📃 [wiki](https://github.com/zakarialaoui10/ziko.js/wiki)
|
|
44
57
|
|
|
45
58
|
## 💡 [Features]()
|
|
46
59
|
<details>
|
|
@@ -302,7 +315,7 @@ useThread(() => {
|
|
|
302
315
|
|
|
303
316
|
If you appreciate the library, kindly demonstrate your support by giving it a star!<br>
|
|
304
317
|
[](https://github.com/zakarialaoui10/ziko.js)
|
|
305
|
-
|
|
318
|
+
<!--## Financial support-->
|
|
306
319
|
# License
|
|
307
320
|
This projet is licensed under the terms of MIT License
|
|
308
321
|
<img src="https://img.shields.io/github/license/zakarialaoui10/zikojs?color=rgb%2820%2C21%2C169%29" width="100" align="right">
|