@htmlbricks/hb-form 0.70.2 → 0.71.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/main.iife.js +7 -2
- package/main.iife.js.map +1 -1
- package/manifest.json +6 -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
|
@@ -196,6 +196,10 @@
|
|
|
196
196
|
},
|
|
197
197
|
"type": "array"
|
|
198
198
|
},
|
|
199
|
+
"disabled": {
|
|
200
|
+
"description": "When true, the native control is disabled and non-interactive.",
|
|
201
|
+
"type": "boolean"
|
|
202
|
+
},
|
|
199
203
|
"id": {
|
|
200
204
|
"description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
|
|
201
205
|
"type": "string"
|
|
@@ -767,7 +771,7 @@
|
|
|
767
771
|
}
|
|
768
772
|
}
|
|
769
773
|
],
|
|
770
|
-
"iifeIntegrity": "sha384-
|
|
774
|
+
"iifeIntegrity": "sha384-6eC2NTbgzRelYROfjQgcLGn4j7el/v6cbWBUlu2FeR4GFKfY6xt1berGV1J4QSD+",
|
|
771
775
|
"dependencies": [
|
|
772
776
|
{
|
|
773
777
|
"name": "hb-input-area",
|
|
@@ -910,5 +914,5 @@
|
|
|
910
914
|
"size": {},
|
|
911
915
|
"iifePath": "main.iife.js",
|
|
912
916
|
"repoName": "@htmlbricks/hb-form",
|
|
913
|
-
"version": "0.
|
|
917
|
+
"version": "0.71.0"
|
|
914
918
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-form",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.0",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "JSON `schema`-driven form engine: each entry’s `type` maps to an `hb-input-*` web component (text, select, date, file, arrays, coords, etc.) or layout `row`. Handles grouping, conditional visibility, validation messages, disabled state, and dispatches rich `update` payloads (field values + `_valid`) plus submit lifecycle events for programmatic backends.",
|
|
6
6
|
"licenses": [
|
|
@@ -97,6 +97,10 @@
|
|
|
97
97
|
},
|
|
98
98
|
"type": "array"
|
|
99
99
|
},
|
|
100
|
+
"disabled": {
|
|
101
|
+
"description": "When true, the native control is disabled and non-interactive.",
|
|
102
|
+
"type": "boolean"
|
|
103
|
+
},
|
|
100
104
|
"id": {
|
|
101
105
|
"description": "This will be both the key of the object when submitting the form's data, and also the id in the DOM.",
|
|
102
106
|
"type": "string"
|