@dynamic-field-kit/angular 1.5.0 → 1.5.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/CHANGELOG.md +24 -0
- package/package.json +21 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @dynamic-field-kit/angular
|
|
2
2
|
|
|
3
|
+
## 1.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Findable on npm: every package now carries real search keywords, and homepage points at the live demo instead of the README the npm page already renders.
|
|
8
|
+
- b22a6a1: Make the packages findable on npm, and point `homepage` at something worth
|
|
9
|
+
landing on.
|
|
10
|
+
|
|
11
|
+
The keyword lists were three entries long and two of those were the package's
|
|
12
|
+
own name — nobody searches `dynamic-field-kit/core`. npm ranks search partly on
|
|
13
|
+
keywords, so in practice these packages could only be found by someone who
|
|
14
|
+
already knew what they were called. The repository has carried the right
|
|
15
|
+
vocabulary as GitHub topics all along (`dynamic-forms`, `form-builder`,
|
|
16
|
+
`form-engine`, `form-validation`, `schema-driven`, `headless`, and the three
|
|
17
|
+
framework names); npm simply never saw any of it. Each package now carries that
|
|
18
|
+
vocabulary plus the terms its own users would type, including the schema
|
|
19
|
+
libraries it actually adapts — zod, yup, valibot and Standard Schema. Not JSON
|
|
20
|
+
Schema, which it does not support.
|
|
21
|
+
|
|
22
|
+
`homepage` pointed at the package's README on GitHub, which is the same text
|
|
23
|
+
npm already renders on the package page from the shipped README. It now points
|
|
24
|
+
at the live demo instead, where the forms actually run. The source stays one
|
|
25
|
+
click away in `repository`.
|
|
26
|
+
|
|
3
27
|
## 1.5.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-field-kit/angular",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Angular renderer for dynamic-field-kit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@angular/forms": "^19.0.0",
|
|
47
47
|
"@angular/platform-browser": "^19.0.0",
|
|
48
48
|
"@angular/platform-browser-dynamic": "^19.0.0",
|
|
49
|
-
"@dynamic-field-kit/core": "^1.5.
|
|
49
|
+
"@dynamic-field-kit/core": "^1.5.1",
|
|
50
50
|
"@vitest/coverage-istanbul": "^4.1.11",
|
|
51
51
|
"jsdom": "^29.1.1",
|
|
52
52
|
"ng-packagr": "^19.2.2",
|
|
@@ -62,11 +62,26 @@
|
|
|
62
62
|
"directory": "packages/angular"
|
|
63
63
|
},
|
|
64
64
|
"keywords": [
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
65
|
+
"angular",
|
|
66
|
+
"angular-forms",
|
|
67
|
+
"angular-form",
|
|
68
|
+
"signals",
|
|
69
|
+
"dynamic-forms",
|
|
70
|
+
"dynamic-form",
|
|
71
|
+
"form-builder",
|
|
72
|
+
"form-engine",
|
|
73
|
+
"form-validation",
|
|
74
|
+
"schema-driven",
|
|
75
|
+
"headless",
|
|
76
|
+
"forms",
|
|
77
|
+
"typescript",
|
|
78
|
+
"zod",
|
|
79
|
+
"yup",
|
|
80
|
+
"valibot",
|
|
81
|
+
"standard-schema",
|
|
82
|
+
"dynamic-field-kit"
|
|
68
83
|
],
|
|
69
|
-
"homepage": "https://
|
|
84
|
+
"homepage": "https://vannt-dev.github.io/dynamic-field-kit/",
|
|
70
85
|
"bugs": {
|
|
71
86
|
"url": "https://github.com/vannt-dev/dynamic-field-kit/issues"
|
|
72
87
|
},
|