@htmlbricks/hb-input-color 0.70.2 → 0.71.1
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/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +18 -2
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +4 -0
- package/types/webcomponent.type.d.ts +3 -0
package/manifest.json
CHANGED
|
@@ -67,6 +67,10 @@
|
|
|
67
67
|
"FormSchemaEntry": {
|
|
68
68
|
"additionalProperties": false,
|
|
69
69
|
"properties": {
|
|
70
|
+
"disabled": {
|
|
71
|
+
"description": "When true, the native control is disabled and non-interactive.",
|
|
72
|
+
"type": "boolean"
|
|
73
|
+
},
|
|
70
74
|
"id": {
|
|
71
75
|
"description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
|
|
72
76
|
"type": "string"
|
|
@@ -188,9 +192,21 @@
|
|
|
188
192
|
"validationTip": "Pick a color to continue."
|
|
189
193
|
}
|
|
190
194
|
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "disabled",
|
|
198
|
+
"description": "Color picker is fully disabled and non-interactive.",
|
|
199
|
+
"data": {
|
|
200
|
+
"schemaentry": {
|
|
201
|
+
"id": "colorDisabled",
|
|
202
|
+
"label": "Theme color (locked)",
|
|
203
|
+
"value": "#ff5733",
|
|
204
|
+
"disabled": true
|
|
205
|
+
}
|
|
206
|
+
}
|
|
191
207
|
}
|
|
192
208
|
],
|
|
193
|
-
"iifeIntegrity": "sha384-
|
|
209
|
+
"iifeIntegrity": "sha384-WRibq6V1WWN/rf8VV+mq80gi3warxRW/aGm/KxsiCKg5vO2aiSdZrBqL06+Zf05J",
|
|
194
210
|
"dependencies": [],
|
|
195
211
|
"screenshots": [],
|
|
196
212
|
"licenses": [
|
|
@@ -210,5 +226,5 @@
|
|
|
210
226
|
"size": {},
|
|
211
227
|
"iifePath": "main.iife.js",
|
|
212
228
|
"repoName": "@htmlbricks/hb-input-color",
|
|
213
|
-
"version": "0.
|
|
229
|
+
"version": "0.71.1"
|
|
214
230
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-input-color",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.1",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Color input that normalizes named HTML colors and `rgb(...)` strings into a hex value for the native picker, with debounced syncing back to the bound value. Driven by `schemaentry` (including required and optional `validationTip` with `show_validation`). Dispatches `setVal` with the string `value`, `valid`, and `id`. Bulma theme on `:host`; `help is-danger` for validation; native color styled in `webcomponent.scss`.",
|
|
6
6
|
"licenses": [
|
|
@@ -30,6 +30,10 @@
|
|
|
30
30
|
"FormSchemaEntry": {
|
|
31
31
|
"additionalProperties": false,
|
|
32
32
|
"properties": {
|
|
33
|
+
"disabled": {
|
|
34
|
+
"description": "When true, the native control is disabled and non-interactive.",
|
|
35
|
+
"type": "boolean"
|
|
36
|
+
},
|
|
33
37
|
"id": {
|
|
34
38
|
"description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
|
|
35
39
|
"type": "string"
|