ngx-iso-form 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +12 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,16 +4,15 @@
4
4
  </a>
5
5
  <br />
6
6
  XSD - JSON powered / Dynamic ISO 20022 forms in Angular
7
- <br /><br />
8
-
9
- [![Npm version](https://badge.fury.io/js/%40ngx-iso-form.svg)](https://npmjs.org/package/ngx-iso-form.svg)
10
- [![Downloads](https://img.shields.io/npm/dm/ngx-iso-form.svg)](https://npmjs.org/package/ngx-iso-form.svg)
7
+ <br />
8
+ [![npm version](https://badge.fury.io/js/ngx-iso-form.svg)](https://badge.fury.io/js/ngx-iso-form)
9
+ ![NPM](https://img.shields.io/npm/l/ngx-iso-form)
10
+ [![Downloads](https://img.shields.io/npm/dm/ngx-iso-form.svg)](https://npmjs.org/package/ngx-iso-form)
11
11
  </div>
12
12
 
13
13
  ---
14
14
  # NgxIsoForm
15
15
 
16
-
17
16
  This form is used to design Angular Reactive Form using any given XSD. The primary use of this UI library is to design ISO 20022 forms dynamically.
18
17
 
19
18
  ## Features
@@ -48,7 +47,7 @@ export interface SchemaElement {
48
47
  }
49
48
 
50
49
  ```
51
- ## [Live Demo](https://angular-ngrxeventbus.stackblitz.io)
50
+ ## [Live Demo](https://www.pixelbyaj.com/ngx-iso-form)
52
51
  ## How to consume
53
52
 
54
53
  1. Install npm package ngx-iso-form.
@@ -56,7 +55,7 @@ export interface SchemaElement {
56
55
  ```console
57
56
  npm i ngx-iso-form
58
57
  ```
59
- 2. Import Module
58
+ 2. Import Module & SCSS
60
59
  ```typescript
61
60
  import { NgxIsoFormModule } from 'ngx-iso-form';
62
61
 
@@ -66,6 +65,12 @@ import { NgxIsoFormModule } from 'ngx-iso-form';
66
65
  ...
67
66
  })
68
67
 
68
+ ```
69
+ Add style file to angular.json file
70
+ ```json
71
+ styles:[
72
+ "node_modules/ngx-iso-form/lib/styles/index.scss"
73
+ ]
69
74
  ```
70
75
  3. View
71
76
  ```html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-iso-form",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "This form is used to design Angular Reactive Form using any given XSD. The primary use of this UI library is to design ISO 20022 forms dynamically.",
5
5
  "author": "Abhishek Joshi aka PixelByAJ",
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "form",
22
22
  "dynamic"
23
23
  ],
24
- "license": "MIT",
24
+ "license": "Apache-2.0",
25
25
  "private": false,
26
26
  "peerDependencies": {
27
27
  "@angular/common": "^16.1.0",