@genesislcap/foundation-forms 14.160.0 → 14.161.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 +20 -31
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -14,21 +14,6 @@ Foundation forms is defined by using two schemata:
|
|
|
14
14
|
|
|
15
15
|
## Forms
|
|
16
16
|
|
|
17
|
-
### Basic install
|
|
18
|
-
|
|
19
|
-
To enable this module in your application, follow the steps below.
|
|
20
|
-
|
|
21
|
-
1. Add `@genesislcap/foundation-forms` as a dependency in your **package.json** file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](../../../web/basics/package-json-basics/) page.
|
|
22
|
-
|
|
23
|
-
```javascript
|
|
24
|
-
{
|
|
25
|
-
...
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@genesislcap/foundation-forms": "latest"
|
|
28
|
-
},
|
|
29
|
-
...
|
|
30
|
-
}
|
|
31
|
-
```
|
|
32
17
|
|
|
33
18
|
### 1. Register components
|
|
34
19
|
|
|
@@ -174,22 +159,6 @@ const sampleData = {
|
|
|
174
159
|
|
|
175
160
|
## Filters
|
|
176
161
|
|
|
177
|
-
### Basic install
|
|
178
|
-
|
|
179
|
-
To enable this module in your application, follow the steps below.
|
|
180
|
-
|
|
181
|
-
1. Add `@genesislcap/foundation-forms` as a dependency in your **package.json** file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](../../../web/basics/package-json-basics/) page.
|
|
182
|
-
|
|
183
|
-
```javascript
|
|
184
|
-
{
|
|
185
|
-
...
|
|
186
|
-
"dependencies": {
|
|
187
|
-
"@genesislcap/foundation-forms": "latest"
|
|
188
|
-
},
|
|
189
|
-
...
|
|
190
|
-
}
|
|
191
|
-
```
|
|
192
|
-
|
|
193
162
|
### 1. Register components
|
|
194
163
|
|
|
195
164
|
```ts
|
|
@@ -840,6 +809,26 @@ const numberJsonSchema = {
|
|
|
840
809
|
};
|
|
841
810
|
```
|
|
842
811
|
|
|
812
|
+
## Installation
|
|
813
|
+
|
|
814
|
+
To enable this module in your application, follow the steps below.
|
|
815
|
+
|
|
816
|
+
1. Add `@genesislcap/foundation-forms` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
|
817
|
+
|
|
818
|
+
```json
|
|
819
|
+
{
|
|
820
|
+
...
|
|
821
|
+
"dependencies": {
|
|
822
|
+
...
|
|
823
|
+
"@genesislcap/foundation-forms": "latest"
|
|
824
|
+
...
|
|
825
|
+
},
|
|
826
|
+
...
|
|
827
|
+
}
|
|
828
|
+
```
|
|
829
|
+
|
|
830
|
+
## [API Docs](./docs/api/index.md)
|
|
831
|
+
|
|
843
832
|
## License
|
|
844
833
|
|
|
845
834
|
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-forms",
|
|
3
3
|
"description": "Genesis Foundation Forms",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.161.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
"test:debug": "genx test --debug"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@genesislcap/foundation-testing": "14.
|
|
44
|
-
"@genesislcap/genx": "14.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.
|
|
46
|
-
"@genesislcap/ts-builder": "14.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
48
|
-
"@genesislcap/vite-builder": "14.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.161.0",
|
|
44
|
+
"@genesislcap/genx": "14.161.0",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.161.0",
|
|
46
|
+
"@genesislcap/ts-builder": "14.161.0",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.161.0",
|
|
48
|
+
"@genesislcap/vite-builder": "14.161.0",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.161.0",
|
|
50
50
|
"@types/json-schema": "^7.0.11",
|
|
51
51
|
"rimraf": "^3.0.2"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@genesislcap/foundation-comms": "14.
|
|
55
|
-
"@genesislcap/foundation-criteria": "14.
|
|
56
|
-
"@genesislcap/foundation-logger": "14.
|
|
57
|
-
"@genesislcap/foundation-ui": "14.
|
|
58
|
-
"@genesislcap/foundation-utils": "14.
|
|
54
|
+
"@genesislcap/foundation-comms": "14.161.0",
|
|
55
|
+
"@genesislcap/foundation-criteria": "14.161.0",
|
|
56
|
+
"@genesislcap/foundation-logger": "14.161.0",
|
|
57
|
+
"@genesislcap/foundation-ui": "14.161.0",
|
|
58
|
+
"@genesislcap/foundation-utils": "14.161.0",
|
|
59
59
|
"@json-schema-tools/dereferencer": "^1.6.1",
|
|
60
60
|
"@jsonforms/core": "^3.2.1",
|
|
61
61
|
"@microsoft/fast-components": "^2.30.6",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
78
|
"customElements": "dist/custom-elements.json",
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
|
|
80
80
|
}
|