@htmlbricks/hb-input-select 0.68.1 → 0.68.3
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 +33 -1
- package/package.json +1 -1
package/manifest.json
CHANGED
|
@@ -244,6 +244,38 @@
|
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"name": "optional",
|
|
250
|
+
"description": "Select is optional; empty placeholder row remains valid.",
|
|
251
|
+
"data": {
|
|
252
|
+
"schemaentry": {
|
|
253
|
+
"type": "select",
|
|
254
|
+
"placeholder": "Pick an option (optional)…",
|
|
255
|
+
"id": "optionalSelect",
|
|
256
|
+
"required": false,
|
|
257
|
+
"label": "Priority",
|
|
258
|
+
"params": {
|
|
259
|
+
"options": [
|
|
260
|
+
{
|
|
261
|
+
"label": "—",
|
|
262
|
+
"value": "",
|
|
263
|
+
"id": "empty"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"label": "Low",
|
|
267
|
+
"value": "low",
|
|
268
|
+
"id": "low"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"label": "High",
|
|
272
|
+
"value": "high",
|
|
273
|
+
"id": "high"
|
|
274
|
+
}
|
|
275
|
+
]
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
247
279
|
}
|
|
248
280
|
],
|
|
249
281
|
"iifeIntegrity": "sha384-qzMoKNTYfp0fGfX//hh/xHBJ8sIDnCjipEE1MiHsUQXD13FikWDPWaZBPRVT/LFD",
|
|
@@ -266,5 +298,5 @@
|
|
|
266
298
|
"size": {},
|
|
267
299
|
"iifePath": "main.iife.js",
|
|
268
300
|
"repoName": "@htmlbricks/hb-input-select",
|
|
269
|
-
"version": "0.68.
|
|
301
|
+
"version": "0.68.3"
|
|
270
302
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-input-select",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.3",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Native `<select>` bound to `schemaentry` options from `params.options` (each option has `id`, `value`, and optional `label`). Supports JSON string or object `schemaentry`, optional required state, and `show_validation` for Bulma `select.is-success` / `select.is-danger` plus `validationTip` as `help is-danger`. Theme via inherited `--bulma-*` on `:host`. Dispatches `setVal` with `{ value, valid, id }` on every change.",
|
|
6
6
|
"licenses": [
|