ueca-react 2.0.2 → 2.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 +8 -3
- package/dist/ueca-react.js +3 -1453
- package/docs/index.md +9 -3
- package/package.json +3 -1
package/docs/index.md
CHANGED
|
@@ -38,7 +38,13 @@
|
|
|
38
38
|
|
|
39
39
|
### [18. Standard Code Template](/docs/code-template.md)
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
---
|
|
42
42
|
|
|
43
|
-
## Code
|
|
44
|
-
|
|
43
|
+
## UECA-React Code Example
|
|
44
|
+
|
|
45
|
+
See UECA-React in action with a complete working application demonstrating key features including component structure, state management, message bus communication, and property bindings.
|
|
46
|
+
|
|
47
|
+
**🔗 Live Demo:** [UECA-React Application Demo](https://nekutuzov.github.io/ueca-react-app/)
|
|
48
|
+
**📂 Source Code:** [GitHub Repository](https://github.com/nekutuzov/ueca-react-app)
|
|
49
|
+
|
|
50
|
+
The demo application showcases real-world usage patterns and best practices for building scalable React applications with UECA-React.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ueca-react",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Unified Encapsulated Component Architecture for React",
|
|
5
5
|
"author": "Aleksey Suvorov <cranesoft@protonmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"url": "https://github.com/nekutuzov/ueca-react-npm.git"
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://github.com/nekutuzov/ueca-react-npm#readme",
|
|
26
|
+
"demo": "https://nekutuzov.github.io/ueca-react-app/",
|
|
26
27
|
"bugs": {
|
|
27
28
|
"url": "https://github.com/nekutuzov/ueca-react-npm/issues"
|
|
28
29
|
},
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
64
65
|
"globals": "^16.2.0",
|
|
65
66
|
"jsdom": "^26.1.0",
|
|
67
|
+
"terser": "^5.46.0",
|
|
66
68
|
"typescript": "~5.8.3",
|
|
67
69
|
"typescript-eslint": "^8.34.1",
|
|
68
70
|
"vite": "^7.0.0",
|