@htmlbricks/hb-input-select 0.66.26 → 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
@@ -45,6 +45,14 @@
45
45
  "id": {
46
46
  "type": "string"
47
47
  },
48
+ "is_small": {
49
+ "description": "When `\"yes\"`, applies Bulma `select.is-small`.",
50
+ "enum": [
51
+ "yes",
52
+ "no"
53
+ ],
54
+ "type": "string"
55
+ },
48
56
  "schemaentry": {
49
57
  "$ref": "#/definitions/FormSchemaEntry"
50
58
  },
@@ -110,7 +118,7 @@
110
118
  }
111
119
  }
112
120
  },
113
- "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 Bootstrap `is-valid` / `is-invalid` classes plus `validationTip`. Dispatches `setVal` with `{ value, valid, id }` on every change.",
121
+ "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.",
114
122
  "storybookArgs": {
115
123
  "schemaentry": {
116
124
  "control": {
@@ -238,7 +246,8 @@
238
246
  }
239
247
  }
240
248
  ],
241
- "iifeIntegrity": "sha384-4ve+0XaBD9U60yxaR1asf3UqTHmrscFGfdJReV2GDzS+EtlnN/2KvKj27XaXD371",
249
+ "iifeIntegrity": "sha384-qzMoKNTYfp0fGfX//hh/xHBJ8sIDnCjipEE1MiHsUQXD13FikWDPWaZBPRVT/LFD",
250
+ "dependencies": [],
242
251
  "screenshots": [],
243
252
  "licenses": [
244
253
  {
@@ -257,5 +266,5 @@
257
266
  "size": {},
258
267
  "iifePath": "main.iife.js",
259
268
  "repoName": "@htmlbricks/hb-input-select",
260
- "version": "0.66.26"
269
+ "version": "0.67.0"
261
270
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-select",
3
- "version": "0.66.26",
3
+ "version": "0.67.0",
4
4
  "contributors": [],
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 Bootstrap `is-valid` / `is-invalid` classes plus `validationTip`. Dispatches `setVal` with `{ value, valid, id }` on every change.",
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": [
7
7
  {
8
8
  "type": "Apache-2.0",
@@ -8,6 +8,14 @@
8
8
  "id": {
9
9
  "type": "string"
10
10
  },
11
+ "is_small": {
12
+ "description": "When `\"yes\"`, applies Bulma `select.is-small`.",
13
+ "enum": [
14
+ "yes",
15
+ "no"
16
+ ],
17
+ "type": "string"
18
+ },
11
19
  "schemaentry": {
12
20
  "$ref": "#/definitions/FormSchemaEntry"
13
21
  },
@@ -41,6 +41,8 @@ export type Component = {
41
41
  style?: string;
42
42
 
43
43
  show_validation?: "yes" | "no";
44
+ /** When `"yes"`, applies Bulma `select.is-small`. */
45
+ is_small?: "yes" | "no";
44
46
  schemaentry: FormSchemaEntry | undefined;
45
47
  };
46
48