ueca-react 2.0.2 → 2.0.5
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 +14 -4
- package/dist/ueca-react.js +3 -1453
- package/docs/Specialized Component Factories in UECA-React.md +293 -0
- package/docs/index.md +12 -5
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
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
|
|
|
6
|
+
## Live Demos
|
|
7
|
+
|
|
8
|
+
See UECA-React in action with complete working applications developed with GitHub Copilot AI assistance:
|
|
9
|
+
|
|
10
|
+
**🔗 Demo 1:** [MUI Components](https://nekutuzov.github.io/ueca-react-app-demo1/)
|
|
11
|
+
**📂 Source Code:** [GitHub Repository](https://github.com/nekutuzov/ueca-react-app-demo1)
|
|
12
|
+
|
|
13
|
+
**🔗 Demo 2:** [Storybook](https://nekutuzov.github.io/ueca-react-app-demo2/)
|
|
14
|
+
**📂 Source Code:** [GitHub Repository](https://github.com/nekutuzov/ueca-react-app-demo2)
|
|
15
|
+
|
|
8
16
|
## Installation
|
|
9
17
|
|
|
10
18
|
To install UECA-React, run the following command:
|
|
@@ -20,7 +28,7 @@ Ensure that your project also has the following dependencies installed:
|
|
|
20
28
|
- mobx
|
|
21
29
|
- mobx-react
|
|
22
30
|
|
|
23
|
-
Compatible React versions: 16
|
|
31
|
+
Compatible React versions: 16–19. Make sure your react-dom version matches your react version.
|
|
24
32
|
|
|
25
33
|
## Usage
|
|
26
34
|
|
|
@@ -106,4 +114,6 @@ This project is licensed under the ISC License - see the [LICENSE](./LICENSE) fi
|
|
|
106
114
|
|
|
107
115
|
**Aleksey Suvorov**
|
|
108
116
|
Email: cranesoft@protonmail.com
|
|
109
|
-
|
|
117
|
+
Website: [cranesoft.net](https://cranesoft.net)
|
|
118
|
+
GitHub: [nekutuzov](https://github.com/nekutuzov)
|
|
119
|
+
Npm: [nekutuzov](https://www.npmjs.com/~nekutuzov)
|