@htmlbricks/hb-input-radio 0.66.27 → 0.67.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/manifest.json CHANGED
@@ -21,9 +21,7 @@
21
21
  }
22
22
  },
23
23
  "required": [
24
- "value",
25
- "valid",
26
- "id"
24
+ "valid"
27
25
  ],
28
26
  "type": "object"
29
27
  }
@@ -110,7 +108,7 @@
110
108
  }
111
109
  }
112
110
  },
113
- "description": "Radio group built from `schemaentry.params.options` with a shared `name` derived from the field id. Parses JSON `schemaentry` for initial `value` and supports required validation with optional Bootstrap feedback via `show_validation` and `validationTip`. Dispatches `setVal` with the selected string `value`, `valid`, and `id` whenever the choice changes.",
111
+ "description": "Radio group built from `schemaentry.params.options` with a shared `name` derived from the field id. Parses JSON `schemaentry` for initial `value` and supports required validation with Bulma `radios` / `radio` and `help is-danger` when `show_validation` is enabled. Dispatches `setVal` with the selected string `value`, `valid`, and `id` whenever the choice changes. Theme `--bulma-*` on `:host`.",
114
112
  "storybookArgs": {
115
113
  "schemaentry": {
116
114
  "control": {
@@ -129,6 +127,10 @@
129
127
  "styleSetup": {
130
128
  "vars": [],
131
129
  "parts": [
130
+ {
131
+ "name": "input",
132
+ "description": ""
133
+ },
132
134
  {
133
135
  "name": "invalid-feedback",
134
136
  "description": ""
@@ -164,7 +166,8 @@
164
166
  }
165
167
  }
166
168
  ],
167
- "iifeIntegrity": "sha384-iYP4BPca/B/tA6qK+SeFF6pZw2Iyw5TXcYo8eX/L+BEwKVqmE8LYliUw5NOc4hGR",
169
+ "iifeIntegrity": "sha384-GA39NhKpUbgqzMCFArvcYQ3za8s1wbfhLwuzz83xTv1sdSPK/dqJ3oOJh50egv8H",
170
+ "dependencies": [],
168
171
  "screenshots": [],
169
172
  "licenses": [
170
173
  {
@@ -183,5 +186,5 @@
183
186
  "size": {},
184
187
  "iifePath": "main.iife.js",
185
188
  "repoName": "@htmlbricks/hb-input-radio",
186
- "version": "0.66.27"
189
+ "version": "0.67.0"
187
190
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-radio",
3
- "version": "0.66.27",
3
+ "version": "0.67.0",
4
4
  "contributors": [],
5
- "description": "Radio group built from `schemaentry.params.options` with a shared `name` derived from the field id. Parses JSON `schemaentry` for initial `value` and supports required validation with optional Bootstrap feedback via `show_validation` and `validationTip`. Dispatches `setVal` with the selected string `value`, `valid`, and `id` whenever the choice changes.",
5
+ "description": "Radio group built from `schemaentry.params.options` with a shared `name` derived from the field id. Parses JSON `schemaentry` for initial `value` and supports required validation with Bulma `radios` / `radio` and `help is-danger` when `show_validation` is enabled. Dispatches `setVal` with the selected string `value`, `valid`, and `id` whenever the choice changes. Theme `--bulma-*` on `:host`.",
6
6
  "licenses": [
7
7
  {
8
8
  "type": "Apache-2.0",
@@ -45,5 +45,9 @@ export type Component = {
45
45
  };
46
46
 
47
47
  export type Events = {
48
- setVal: { value: string; valid: boolean; id: string };
48
+ setVal: {
49
+ value: string | undefined;
50
+ valid: boolean;
51
+ id: string | undefined;
52
+ };
49
53
  };
@@ -19,9 +19,7 @@
19
19
  }
20
20
  },
21
21
  "required": [
22
- "value",
23
- "valid",
24
- "id"
22
+ "valid"
25
23
  ],
26
24
  "type": "object"
27
25
  }