@htmlbricks/hb-dialogform 0.68.9 → 0.68.10
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/README.md +1 -1
- package/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +2 -3
- package/package.json +1 -1
- package/types/webcomponent.type.d.ts +1 -1
- package/types/webcomponent_events.type.d.json +0 -1
package/manifest.json
CHANGED
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"type": "string"
|
|
33
33
|
},
|
|
34
34
|
"show": {
|
|
35
|
-
"const": true,
|
|
36
35
|
"type": "boolean"
|
|
37
36
|
}
|
|
38
37
|
},
|
|
@@ -481,7 +480,7 @@
|
|
|
481
480
|
}
|
|
482
481
|
}
|
|
483
482
|
],
|
|
484
|
-
"iifeIntegrity": "sha384-
|
|
483
|
+
"iifeIntegrity": "sha384-lLRiRmibmjFrJBkhcJYwdbm6B6c/yGLGKH11XeOTaIpqjDjux6U6FDJmbctgxFcH",
|
|
485
484
|
"dependencies": [
|
|
486
485
|
{
|
|
487
486
|
"name": "hb-dialog",
|
|
@@ -625,5 +624,5 @@
|
|
|
625
624
|
"size": {},
|
|
626
625
|
"iifePath": "main.iife.js",
|
|
627
626
|
"repoName": "@htmlbricks/hb-dialogform",
|
|
628
|
-
"version": "0.68.
|
|
627
|
+
"version": "0.68.10"
|
|
629
628
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-dialogform",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.10",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Bulma-based modal workflow: embeds `hb-form` with the same `schema` contract; live `updateForm` events mirror form validity and values, and the confirm button dispatches `modalFormConfirm` with the last valid payload or `modalFormCancel` when dismissed or invalid. Composes `hb-dialog` (Bulma modal, backdrop/keyboard, `show`) and re-dispatches `modalShow`. Prop `dialogclasses` exists on the type but is not wired to the dialog markup yet.",
|
|
6
6
|
"licenses": [
|
|
@@ -21,7 +21,7 @@ export type Component = {
|
|
|
21
21
|
|
|
22
22
|
export type Events = {
|
|
23
23
|
modalFormConfirm: { [key: string]: any };
|
|
24
|
-
modalShow: { id: string; show:
|
|
24
|
+
modalShow: { id: string; show: boolean };
|
|
25
25
|
modalFormCancel: { id: string; error?: string };
|
|
26
26
|
/** Emitted when the inner `hb-form` updates (same detail shape as `hb-form` `update`). */
|
|
27
27
|
updateForm: FormEvents["update"];
|