@emeraldemperaur/vector-sigma 1.4.48 → 1.4.50
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 +13 -5
- package/lib/index.cjs +2415 -55505
- package/lib/index.esm.js +2420 -55518
- package/lib/index.umd.js +57877 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/vectorSigma.d.ts +30 -12
- package/package.json +8 -12
package/README.md
CHANGED
|
@@ -7,26 +7,30 @@
|
|
|
7
7
|
|
|
8
8
|
### Overview
|
|
9
9
|
<p align="justify">
|
|
10
|
-
Vector Sigma (VΣ) is a dynamic form orchestrator package for rapidly creating and managing the complex lifecycle of interactive extensible input forms that can be easily embedded into a React front-end client interface for use in data
|
|
10
|
+
Vector Sigma (VΣ) is a dynamic form orchestrator package for rapidly creating and managing the complex lifecycle of interactive extensible input forms that can be easily embedded into a React front-end client interface for use in data pipelines, onboarding applications or automation workflows.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Fields, Input Validation and Submission callback() can be defined and parametized in real-time predicated on a native JavaScript object/JSON (JavaScript Object Notation) xForm definition or by builder methods object pattern.
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
15
|
#### Key Features
|
|
16
16
|
<ol>
|
|
17
17
|
<li>
|
|
18
|
-
<strong>Real-Time Form Adaptation:</strong> Adapt the
|
|
18
|
+
<strong>Real-Time Form Adaptation:</strong> Adapt the xForm layout by adding/removing fields, sections or entire steps based on conditional logic.</li>
|
|
19
19
|
<li>
|
|
20
20
|
<strong>Validation Logic Management:</strong> Centralize business rules such as complex field validation, visibility constraints, and facilitate input value pre-population from external APIs.
|
|
21
21
|
</li>
|
|
22
22
|
<li>
|
|
23
|
-
<strong>Form State Coordination:</strong> Monitor the "state" of the
|
|
23
|
+
<strong>Form State Coordination:</strong> Monitor the "state" of the xForm across multi-step processes, allowing users to save progress and resume later.
|
|
24
24
|
</li>
|
|
25
25
|
<li>
|
|
26
|
-
<strong>Application UI Integration:</strong> Connects the
|
|
26
|
+
<strong>Application UI Integration:</strong> Connects the xForm data to backend workflows, CRM systems, or databases immediately upon submission.</li>
|
|
27
27
|
</ol>
|
|
28
28
|
|
|
29
29
|
### Documentation
|
|
30
|
+
<ul>
|
|
31
|
+
<li><a href="#">VΣ Documentation</a></li>
|
|
32
|
+
<li><a href="#">χForm Components Storybook</a></li>
|
|
33
|
+
<ul>
|
|
30
34
|
|
|
31
35
|
### Installation
|
|
32
36
|
```bash
|
|
@@ -455,6 +459,10 @@ const App = () => {
|
|
|
455
459
|

|
|
456
460
|

|
|
457
461
|

|
|
462
|
+
[](https://storybook.js.org)
|
|
463
|
+

|
|
464
|
+

|
|
465
|
+

|
|
458
466
|
|
|
459
467
|
|
|
460
468
|
### Changeset Versioning Synopsis
|