@ukhomeoffice/formio-gds-template 1.1.0 → 2.0.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.
- package/.github/workflows/build-and-test.yml +1 -1
- package/.github/workflows/publish-to-npm.yml +1 -1
- package/README.md +2 -3
- package/dist/gds.js +2 -308
- package/dist/gds.js.LICENSE.txt +41 -0
- package/lib/components/datamap/GDSDataMap.js +3 -1
- package/lib/components/datetime/GDSDatetimeComponent.js +17 -11
- package/lib/components/selectboxes/GDSCheckBoxes.js +3 -1
- package/lib/components/time/GDSTimeComponent.js +13 -9
- package/lib/templates/gds/datagrid/form.ejs.js +1 -0
- package/lib/templates/gds/iconClass.js +1 -1
- package/lib/templates/gds/template.css +1 -13
- package/lib/templates/gds/template.css.map +1 -1
- package/package.json +27 -27
- package/src/components/datetime/GDSDatetimeComponent.ts +2 -1
- package/src/templates/gds/datagrid/form.ejs +1 -0
- package/src/templates/gds/template.scss +4 -4
package/README.md
CHANGED
|
@@ -6,10 +6,9 @@ This project provides the templates required to implement the GDS Design System
|
|
|
6
6
|
|
|
7
7
|
### Prerequisites
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
NodeJS version 14
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
For Node 17+, you may need to set the `NODE_OPTIONS` environment variable to include `--openssl-legacy-provider`
|
|
11
|
+
### Installation
|
|
13
12
|
|
|
14
13
|
```bash
|
|
15
14
|
npm install @ukhomeoffice/formio-gds-template
|