ngx-iso-form 1.0.0 → 1.1.1

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 +13 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,16 +4,16 @@
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
+
9
+ [![npm version](https://badge.fury.io/js/ngx-iso-form.svg)](https://badge.fury.io/js/ngx-iso-form)
10
+ ![NPM](https://img.shields.io/npm/l/ngx-iso-form)
11
+ [![Downloads](https://img.shields.io/npm/dm/ngx-iso-form.svg)](https://npmjs.org/package/ngx-iso-form)
11
12
  </div>
12
13
 
13
14
  ---
14
15
  # NgxIsoForm
15
16
 
16
-
17
17
  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
18
 
19
19
  ## Features
@@ -48,7 +48,7 @@ export interface SchemaElement {
48
48
  }
49
49
 
50
50
  ```
51
- ## [Live Demo](https://angular-ngrxeventbus.stackblitz.io)
51
+ ## [Live Demo](https://www.pixelbyaj.com/ngx-iso-form)
52
52
  ## How to consume
53
53
 
54
54
  1. Install npm package ngx-iso-form.
@@ -56,7 +56,7 @@ export interface SchemaElement {
56
56
  ```console
57
57
  npm i ngx-iso-form
58
58
  ```
59
- 2. Import Module
59
+ 2. Import Module & SCSS
60
60
  ```typescript
61
61
  import { NgxIsoFormModule } from 'ngx-iso-form';
62
62
 
@@ -66,6 +66,12 @@ import { NgxIsoFormModule } from 'ngx-iso-form';
66
66
  ...
67
67
  })
68
68
 
69
+ ```
70
+ Add style file to angular.json file
71
+ ```json
72
+ styles:[
73
+ "node_modules/ngx-iso-form/lib/styles/index.scss"
74
+ ]
69
75
  ```
70
76
  3. View
71
77
  ```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.1",
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",