ueca-react 2.0.1 → 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 +7 -5
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
# UECA-React
|
|
3
3
|
|
|
4
|
-
> **⚠️ NOTICE: This is a test publication for early testing and feedback. The API may change before the stable release. Not recommended for production use yet.**
|
|
5
|
-
|
|
6
4
|
UECA-React is a framework for building scalable React applications with a unified and encapsulated component architecture. It simplifies development by hiding the complexities of React and MobX behind a consistent component pattern.
|
|
7
5
|
|
|
8
6
|
## Installation
|
|
@@ -20,7 +18,7 @@ Ensure that your project also has the following dependencies installed:
|
|
|
20
18
|
- mobx
|
|
21
19
|
- mobx-react
|
|
22
20
|
|
|
23
|
-
Compatible React versions: 16
|
|
21
|
+
Compatible React versions: 16–19. Make sure your react-dom version matches your react version.
|
|
24
22
|
|
|
25
23
|
## Usage
|
|
26
24
|
|
|
@@ -71,6 +69,13 @@ const Button = UECA.getFC(useButton);
|
|
|
71
69
|
export { ButtonModel, useButton, Button };
|
|
72
70
|
```
|
|
73
71
|
|
|
72
|
+
### Live Demo
|
|
73
|
+
|
|
74
|
+
See UECA-React in action with a complete working application:
|
|
75
|
+
|
|
76
|
+
**🔗 Live Demo:** [UECA-React Application Demo](https://nekutuzov.github.io/ueca-react-app/)
|
|
77
|
+
**📂 Source Code:** [GitHub Repository](https://github.com/nekutuzov/ueca-react-app)
|
|
78
|
+
|
|
74
79
|
For more detailed information, check out the [full documentation](./docs/index.md).
|
|
75
80
|
|
|
76
81
|
## Features
|