@htmlbricks/hb-input-range 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
@@ -17,11 +17,10 @@
17
17
  "type": "boolean"
18
18
  },
19
19
  "value": {
20
- "type": "string"
20
+ "type": "number"
21
21
  }
22
22
  },
23
23
  "required": [
24
- "value",
25
24
  "valid",
26
25
  "id"
27
26
  ],
@@ -106,7 +105,7 @@
106
105
  }
107
106
  }
108
107
  },
109
- "description": "Range slider (`type=\"range\"`) whose bounds come from `schemaentry.params.min` and/or `max` when present. Parses stringified `schemaentry` when needed and enforces required/min/max rules for the numeric value. Dispatches `setVal` continuously with `{ value, valid, id }` and can show `validationTip` when `show_validation` is enabled.",
108
+ "description": "Range slider (`type=\"range\"`) whose bounds come from `schemaentry.params.min` and/or `max` when those keys exist. Parses stringified `schemaentry` when needed and enforces required/min/max rules for the numeric value. Dispatches `setVal` with `{ value, valid, id }` and shows `validationTip` as Bulma `help is-danger` when `show_validation` is enabled. Theme `--bulma-*` on `:host`; native range uses `accent-color` (not the Bulma text-input class).",
110
109
  "storybookArgs": {
111
110
  "schemaentry": {
112
111
  "control": {
@@ -125,6 +124,10 @@
125
124
  "styleSetup": {
126
125
  "vars": [],
127
126
  "parts": [
127
+ {
128
+ "name": "input",
129
+ "description": ""
130
+ },
128
131
  {
129
132
  "name": "invalid-feedback",
130
133
  "description": ""
@@ -198,7 +201,8 @@
198
201
  }
199
202
  }
200
203
  ],
201
- "iifeIntegrity": "sha384-lkZEV6Q4Eit7K5tq5qYngL5ZetAswYVBcWq1bNh7BA97KY0MQVg/OsDKncuvC3S/",
204
+ "iifeIntegrity": "sha384-nRLZ7qRcnHsP/GjvwaDpNbKiISAk18kEFYEMx2J41a3w7/MSoyPieFuuhIUh8ZZj",
205
+ "dependencies": [],
202
206
  "screenshots": [],
203
207
  "licenses": [
204
208
  {
@@ -217,5 +221,5 @@
217
221
  "size": {},
218
222
  "iifePath": "main.iife.js",
219
223
  "repoName": "@htmlbricks/hb-input-range",
220
- "version": "0.66.27"
224
+ "version": "0.67.0"
221
225
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-input-range",
3
- "version": "0.66.27",
3
+ "version": "0.67.0",
4
4
  "contributors": [],
5
- "description": "Range slider (`type=\"range\"`) whose bounds come from `schemaentry.params.min` and/or `max` when present. Parses stringified `schemaentry` when needed and enforces required/min/max rules for the numeric value. Dispatches `setVal` continuously with `{ value, valid, id }` and can show `validationTip` when `show_validation` is enabled.",
5
+ "description": "Range slider (`type=\"range\"`) whose bounds come from `schemaentry.params.min` and/or `max` when those keys exist. Parses stringified `schemaentry` when needed and enforces required/min/max rules for the numeric value. Dispatches `setVal` with `{ value, valid, id }` and shows `validationTip` as Bulma `help is-danger` when `show_validation` is enabled. Theme `--bulma-*` on `:host`; native range uses `accent-color` (not the Bulma text-input class).",
6
6
  "licenses": [
7
7
  {
8
8
  "type": "Apache-2.0",
@@ -45,5 +45,5 @@ export type Component = {
45
45
  };
46
46
 
47
47
  export type Events = {
48
- setVal: { value: string; valid: boolean; id: string };
48
+ setVal: { value: number | undefined; valid: boolean; id: string };
49
49
  };
@@ -15,11 +15,10 @@
15
15
  "type": "boolean"
16
16
  },
17
17
  "value": {
18
- "type": "string"
18
+ "type": "number"
19
19
  }
20
20
  },
21
21
  "required": [
22
- "value",
23
22
  "valid",
24
23
  "id"
25
24
  ],