data-primals-engine 1.3.4 → 1.4.0
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 +797 -782
- package/client/README.md +20 -0
- package/client/package-lock.json +712 -147
- package/client/package.json +38 -37
- package/client/src/App.jsx +9 -10
- package/client/src/App.scss +7 -1
- package/client/src/Dashboard.jsx +349 -208
- package/client/src/DashboardView.jsx +569 -547
- package/client/src/DataEditor.jsx +20 -2
- package/client/src/DataLayout.jsx +24 -12
- package/client/src/DataTable.jsx +807 -760
- package/client/src/DataTable.scss +187 -90
- package/client/src/Field.jsx +1783 -1656
- package/client/src/ModelCreator.jsx +2 -2
- package/client/src/ModelCreatorField.jsx +906 -804
- package/client/src/ModelList.jsx +2 -2
- package/client/src/constants.js +16 -4
- package/client/src/translations.js +241 -3
- package/package.json +3 -3
- package/src/core.js +9 -0
- package/src/defaultModels.js +18 -10
- package/src/email.js +2 -1
- package/src/i18n.js +501 -28
- package/src/modules/data/data.core.js +5 -1
- package/src/modules/data/data.history.js +489 -489
- package/src/modules/data/data.js +75 -9
- package/src/modules/data/data.routes.js +3 -20
- package/src/modules/user.js +19 -0
- package/src/modules/workflow.js +2 -12
- package/client/public/demo/26899917-d1ba-4df4-bb33-48d09a8778da.jpg +0 -0
- package/client/public/demo/4b9894c7-12cd-466d-8fd3-a2757b09ec96.jpg +0 -0
- package/client/public/demo/7ed369ac-a1a2-4b45-b0cd-4fd5bcf5a75a.jpg +0 -0
package/client/README.md
CHANGED
|
@@ -9,6 +9,26 @@ Your React application must have the following dependencies installed:
|
|
|
9
9
|
- react-router-dom
|
|
10
10
|
- react-cookie
|
|
11
11
|
|
|
12
|
+
## What is `data-primals-engine`?
|
|
13
|
+
|
|
14
|
+
The `data-primals-engine` is more than just a set of utilities; it's a comprehensive toolkit for building data-centric applications. Once integrated, it provides a full suite of UI components and hooks to manage your data lifecycle.
|
|
15
|
+
|
|
16
|
+
### Core Features
|
|
17
|
+
|
|
18
|
+
* **AI-Powered Model Creator**: A complete UI for visually creating your data models, with support for dozens of field types (relations, translated text, numbers, files...) and advanced properties (history, validation, conditional display...).
|
|
19
|
+
* **Dynamic Data Views**: Ready-to-use components to display your data, including:
|
|
20
|
+
* A powerful and configurable **Data Table**.
|
|
21
|
+
* A **Kanban View** with drag-and-drop.
|
|
22
|
+
* A **Calendar View**.
|
|
23
|
+
* **Dashboards & KPIs**: Build custom dashboards to monitor your activity with charts and Key Performance Indicators.
|
|
24
|
+
* **Data Management Tools**:
|
|
25
|
+
* A flexible **Data Importer** (CSV, Excel, JSON).
|
|
26
|
+
* A powerful **Data Exporter**.
|
|
27
|
+
* A **Visual Condition Builder** for creating complex queries.
|
|
28
|
+
* **Built-in Systems**: The library also includes systems for **user tutorials**, **data versioning/history**, **backups**, and much more.
|
|
29
|
+
|
|
30
|
+
This guide focuses on the technical integration. Once set up, you will be able to use the components and hooks provided by the library to leverage these features.
|
|
31
|
+
|
|
12
32
|
## Installation
|
|
13
33
|
Install the library:
|
|
14
34
|
```shell
|