@cyprnet/node-red-contrib-uibuilder-formgen 0.5.18 → 0.5.20
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/CHANGELOG.md +9 -0
- package/README.md +2 -1
- package/docs/user-guide.html +16 -0
- package/examples/formgen-builder-uib2/src/index.html +1286 -0
- package/examples/formgen-builder-uib2/src/index.js +2014 -0
- package/nodes/uibuilder-formgen-uib2.js +17 -10
- package/nodes/uibuilder-formgen-v3.js +6 -2
- package/nodes/uibuilder-formgen.js +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -19,6 +19,15 @@ All notable changes to this package will be documented in this file.
|
|
|
19
19
|
- Lookup/Auto-fill (dynamic): improved per-selection requests and pending/timeout handling to make <code>lookup:get</code> reliable.
|
|
20
20
|
- Documentation: expanded <code>schema.lookups</code> formatting guidance and added dynamic lookup examples in Node-RED help + Schema Builder help.
|
|
21
21
|
|
|
22
|
+
## 0.5.20
|
|
23
|
+
|
|
24
|
+
- Added a legacy Schema Builder variant for <strong>uibuilder 2.x</strong>: <code>examples/formgen-builder-uib2/</code> (uses uibuilder vendor libs + <code>uibuilderfe.min.js</code>).
|
|
25
|
+
- Docs: updated Schema Builder instructions to choose the correct builder for uibuilder v7+ vs uibuilder 2.x.
|
|
26
|
+
|
|
27
|
+
## 0.5.19
|
|
28
|
+
|
|
29
|
+
- Legacy node: fixed license resolution for <code>uibuilder-formgen-uib2</code> to match other nodes and clarified the “logo disabled” warning when custom branding is not enabled by the license policy.
|
|
30
|
+
|
|
22
31
|
## 0.5.18
|
|
23
32
|
|
|
24
33
|
- Added <code>uibuilder-formgen-uib2</code> legacy generator for <strong>uibuilder 2.x</strong> (vendor Vue 2 + Bootstrap-Vue v2 stack).
|
package/README.md
CHANGED
|
@@ -60,7 +60,8 @@ To apply a license, paste the license key provided by CyprNet into the shared **
|
|
|
60
60
|
- **Offline user guide** (packaged): `docs/user-guide.html`
|
|
61
61
|
- **Example flow**: `examples/portalsmith-formgen-example.json`
|
|
62
62
|
- **Industry schemas**: `examples/schemas/`
|
|
63
|
-
- **Schema Builder frontend files**: `examples/formgen-builder/src/index.html` and `examples/formgen-builder/src/index.js`
|
|
63
|
+
- **Schema Builder frontend files (uibuilder v7+)**: `examples/formgen-builder/src/index.html` and `examples/formgen-builder/src/index.js`
|
|
64
|
+
- **Schema Builder frontend files (legacy uibuilder 2.x)**: `examples/formgen-builder-uib2/src/index.html` and `examples/formgen-builder-uib2/src/index.js`
|
|
64
65
|
|
|
65
66
|
### License
|
|
66
67
|
|
package/docs/user-guide.html
CHANGED
|
@@ -387,6 +387,22 @@
|
|
|
387
387
|
</ul>
|
|
388
388
|
</div>
|
|
389
389
|
|
|
390
|
+
<div class="note ok">
|
|
391
|
+
<strong>Legacy uibuilder 2.8 Schema Builder:</strong>
|
|
392
|
+
If you are running <strong>uibuilder 2.x</strong> (e.g., 2.8) use the legacy builder variant which loads
|
|
393
|
+
Vue/Bootstrap/Bootstrap-Vue from uibuilder’s <code>vendor/</code> folder and uses <code>uibuilderfe.min.js</code>.
|
|
394
|
+
Copy these files instead:
|
|
395
|
+
<ul>
|
|
396
|
+
<li><code>examples/formgen-builder-uib2/src/index.html</code></li>
|
|
397
|
+
<li><code>examples/formgen-builder-uib2/src/index.js</code></li>
|
|
398
|
+
</ul>
|
|
399
|
+
Into a uibuilder instance (example: <code>formgen-builder-uib2</code>):
|
|
400
|
+
<ul>
|
|
401
|
+
<li><code><userDir>/uibuilder/formgen-builder-uib2/src/</code></li>
|
|
402
|
+
<li>or Projects: <code><userDir>/projects/<projectName>/uibuilder/formgen-builder-uib2/src/</code></li>
|
|
403
|
+
</ul>
|
|
404
|
+
</div>
|
|
405
|
+
|
|
390
406
|
<div class="note">
|
|
391
407
|
<strong>Managing lookup lists:</strong> Use the <strong>Lookups</strong> / <strong>Manage Lookups</strong> button to edit <code>schema.lookups</code>.
|
|
392
408
|
If you have older lookup lists that used multiline strings (with embedded <code>\n</code>), the Lookups editor includes
|