ngx-iso-form-enterprise 1.1.0 → 1.2.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 +9 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,32 +5,30 @@
|
|
|
5
5
|
<br />
|
|
6
6
|
<h1>XSD - JSON Powered / Dynamic ISO 20022 Forms in Angular v20</h1>
|
|
7
7
|
|
|
8
|
-

|
|
9
|
-

|
|
10
|
-
[](https://npmjs.org/package/ngx-iso-form)
|
|
11
|
-
[](https://npmjs.org/package/ngx-iso-form)
|
|
8
|
+

|
|
9
|
+

|
|
10
|
+
[](https://npmjs.org/package/ngx-iso-form-enterprise)
|
|
11
|
+
[](https://npmjs.org/package/ngx-iso-form-enterprise)
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
16
|
-
#
|
|
16
|
+
# ngx-iso-form-enterprise
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
It is a Enterprise version of angular library for dynamically generating reactive form using JSON model derived from XSD. It is primarily designed for ISO 20022 xsd.
|
|
19
19
|
|
|
20
20
|
## Features
|
|
21
21
|
|
|
22
|
-
- 🔥 Automatic form generation
|
|
22
|
+
- 🔥 Automatic ISO 20022 form generation
|
|
23
23
|
- 📝 Extendable with custom field types
|
|
24
24
|
- ⚡️ Supports ISO 20022 schemas:
|
|
25
|
-
- XSD to JSON Schema conversion using
|
|
25
|
+
- XSD to JSON Schema conversion using ISO 20022.XSD NuGet
|
|
26
26
|
- Validation support: required, pattern, minlength, maxlength
|
|
27
27
|
- Translation support for labels, errors, and date formats
|
|
28
28
|
- 💪 Built on [Angular Reactive Forms](https://angular.dev/guide/forms/reactive-forms)
|
|
29
29
|
|
|
30
30
|
## [Live Demo](https://swiftmx.co/#/ngx-iso-form-demo?json=pacs.009.001.10)
|
|
31
31
|
|
|
32
|
-
## [StackBlitz Demo](https://stackblitz.com/edit/ngx-iso-form)
|
|
33
|
-
|
|
34
32
|
## **NOTE**
|
|
35
33
|
|
|
36
34
|
The library does not directly execute XSD. Users must convert XSD to JSON using the [xsd-json-converter](https://www.npmjs.com/package/xsd-json-converter) npm package or the [.NET ISO20022.XSD](https://www.nuget.org/packages/iSO20022.XSD) NuGet package.
|
|
@@ -60,7 +58,6 @@ import { HttpClient, provideHttpClient } from '@angular/common/http';
|
|
|
60
58
|
const licenseKey = 'eyJleHBpcn......wI=';
|
|
61
59
|
IsoLicenseManager.registerLicense(licenseKey);
|
|
62
60
|
|
|
63
|
-
initLicense();
|
|
64
61
|
@NgModule({
|
|
65
62
|
imports: [
|
|
66
63
|
NgxIsoFormModule,
|
|
@@ -93,7 +90,7 @@ Add the style file to `angular.json`:
|
|
|
93
90
|
#### New Option: `excludes`
|
|
94
91
|
|
|
95
92
|
```html
|
|
96
|
-
<ngx-iso-form
|
|
93
|
+
<ngx-iso-form [schema]="schema" [form]="form" (OnFormReadyEvent)="onFormReadyEvent($event)"></ngx-iso-form>
|
|
97
94
|
```
|
|
98
95
|
|
|
99
96
|
**Note:** `excludes` (optional) accepts a `string[]` to exclude specific IDs from the form, allowing customization for business requirements.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-iso-form-enterprise",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Angular component design Reactive Form using specific JSON. The primary use of this UI library is to design ISO 20022 forms dynamically.",
|
|
5
5
|
"author": "Abhishek Joshi - swift_mx@outlook.com.au",
|
|
6
6
|
"homepage": "https://swiftmx.co/ngx-iso-form/",
|