@htmlbricks/hb-input-radio 0.8.27 → 0.8.32
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@htmlbricks/hb-input-radio",
|
|
3
3
|
"displayName": "Svelte-Bootstrap Radio Input WebComponent",
|
|
4
4
|
"description": "Svelte-Bootstrap Radio Input WebComponent",
|
|
5
|
-
"version": "0.8.
|
|
5
|
+
"version": "0.8.32",
|
|
6
6
|
"main": "release/release.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"prepublish": "npm run build:release"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@htmlbricks/hb-jsutils": "^0.8.
|
|
30
|
+
"@htmlbricks/hb-jsutils": "^0.8.32",
|
|
31
31
|
"@rollup/plugin-alias": "^3.1.2",
|
|
32
32
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
33
33
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"webcomponents"
|
|
72
72
|
],
|
|
73
73
|
"contributors": [],
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "b6035eb45505f2e2541c39ed0b8bb78134bf74fd"
|
|
75
75
|
}
|
|
@@ -69,26 +69,6 @@
|
|
|
69
69
|
"FormSchemaEntry": {
|
|
70
70
|
"additionalProperties": false,
|
|
71
71
|
"properties": {
|
|
72
|
-
"dependencies": {
|
|
73
|
-
"description": "This form control will show only if these dependencies are satisfied.",
|
|
74
|
-
"items": {
|
|
75
|
-
"additionalProperties": false,
|
|
76
|
-
"properties": {
|
|
77
|
-
"id": {
|
|
78
|
-
"type": "string"
|
|
79
|
-
},
|
|
80
|
-
"values": {
|
|
81
|
-
"items": {},
|
|
82
|
-
"type": "array"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"required": [
|
|
86
|
-
"id"
|
|
87
|
-
],
|
|
88
|
-
"type": "object"
|
|
89
|
-
},
|
|
90
|
-
"type": "array"
|
|
91
|
-
},
|
|
92
72
|
"id": {
|
|
93
73
|
"description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
|
|
94
74
|
"type": "string"
|
|
@@ -15,14 +15,6 @@ export type FormSchemaEntry = {
|
|
|
15
15
|
*/
|
|
16
16
|
value?: string | number | boolean;
|
|
17
17
|
|
|
18
|
-
/**
|
|
19
|
-
* This form control will show only if these dependencies are satisfied.
|
|
20
|
-
*/
|
|
21
|
-
dependencies?: {
|
|
22
|
-
id: string;
|
|
23
|
-
values?: any[];
|
|
24
|
-
}[];
|
|
25
|
-
|
|
26
18
|
readonly?: boolean;
|
|
27
19
|
|
|
28
20
|
/**
|