@ng-formworks/cssframework 17.3.0 → 17.4.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 +10 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -31,12 +31,15 @@ A [JSON Schema](http://json-schema.org) Form builder for Angular, similar to, an
31
31
 
32
32
  ## Versions
33
33
 
34
+ ### NB the version of ng-formworks to be installed, should correspond to the Angular version being used.
34
35
 
35
- | angular | ng-formworks |
36
- |--|--|
37
- | 15.x.x |15.x.x|
38
- | 16.x.x |16.x.x|
39
- | 17.x.x |17.x.x|
36
+ Below is a table of the corresponding ng-formworks versions that's needed for the Angular version installed. It also lists the installation command if choosing to use the Material Design Framework, but installing other frameworks should have a similar command, have a look at their READMES for specific details.
37
+
38
+ | Angular | ng-formworks | installation (for Material Design)
39
+ |--|--|--|
40
+ | 17.x.x |17.x.x|```npm install @ng-formworks/core@^17.0.0 @ng-formworks/cssframework@^17.0.0 @ng-formworks/material@^17.0.0```|
41
+ | 16.x.x |16.x.x|```npm install @ng-formworks/core@^16.0.0 @ng-formworks/cssframework@^16.0.0 @ng-formworks/material@^16.0.0```|
42
+ | 15.x.x |15.x.x|```npm install @ng-formworks/core@^15.0.0 @ng-formworks/cssframework@^15.0.0 @ng-formworks/material@^15.0.0```|
40
43
 
41
44
 
42
45
  ## Packages
@@ -91,12 +94,12 @@ For example if you'd like to try the material design based framework, [install @
91
94
 
92
95
 
93
96
  ```shell
94
- npm install @ng-formworks/core@latest @ng-formworks/cssframework@latest @ng-formworks/material@latest
97
+ npm install @ng-formworks/core @ng-formworks/cssframework @ng-formworks/material
95
98
  ```
96
99
 
97
100
  With YARN, run the following:
98
101
  ```shell
99
- yarn add @ng-formworks/core@latest @ng-formworks/cssframework@latest @ng-formworks/material@latest
102
+ yarn add @ng-formworks/core @ng-formworks/cssframework @ng-formworks/material
100
103
  ```
101
104
 
102
105
  include the themes scss in your applications sass file(typically "styles.scss" under "src" folder -see angular docs for more details)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-formworks/cssframework",
3
- "version": "17.3.0",
3
+ "version": "17.4.0",
4
4
  "description": "Angular ng-formworks - JSON Schema Form builder cssframework",
5
5
  "author": "https://github.com/zahmo/ng-formworks/graphs/contributors",
6
6
  "keywords": [
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "tslib": "^2.3.0",
45
- "@ng-formworks/core": "~17.3.0"
45
+ "@ng-formworks/core": "~17.4.0"
46
46
  },
47
47
  "sideEffects": false,
48
48
  "module": "fesm2022/ng-formworks-cssframework.mjs",