@htmlbricks/hb-dialogform 0.67.1 → 0.68.2
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 +85 -2
- package/package.json +1 -1
package/manifest.json
CHANGED
|
@@ -319,6 +319,7 @@
|
|
|
319
319
|
"examples": [
|
|
320
320
|
{
|
|
321
321
|
"name": "default",
|
|
322
|
+
"description": "Open modal with the sample preferences schema.",
|
|
322
323
|
"data": {
|
|
323
324
|
"schema": [
|
|
324
325
|
{
|
|
@@ -396,9 +397,91 @@
|
|
|
396
397
|
"confirmlabel": "Save",
|
|
397
398
|
"closelabel": "Cancel"
|
|
398
399
|
}
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"name": "closed",
|
|
403
|
+
"description": "Form schema present but dialog not shown.",
|
|
404
|
+
"data": {
|
|
405
|
+
"schema": [
|
|
406
|
+
{
|
|
407
|
+
"type": "text",
|
|
408
|
+
"placeholder": "Inserisci titolo di default",
|
|
409
|
+
"id": "defaultTitle",
|
|
410
|
+
"required": true,
|
|
411
|
+
"label": "Titolo di default",
|
|
412
|
+
"value": "titolotest",
|
|
413
|
+
"params": {
|
|
414
|
+
"min": 8,
|
|
415
|
+
"max": 120
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"type": "number",
|
|
420
|
+
"id": "age",
|
|
421
|
+
"required": true,
|
|
422
|
+
"label": "Age",
|
|
423
|
+
"value": 9,
|
|
424
|
+
"params": {
|
|
425
|
+
"min": 8,
|
|
426
|
+
"max": 120
|
|
427
|
+
},
|
|
428
|
+
"validationTip": "Min 8, Max 120"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"id": "active",
|
|
432
|
+
"label": "Active",
|
|
433
|
+
"type": "checkbox",
|
|
434
|
+
"value": true
|
|
435
|
+
}
|
|
436
|
+
],
|
|
437
|
+
"show": "no"
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"name": "modalChrome",
|
|
442
|
+
"description": "Backdrop off and Escape disabled for wizard-style flows.",
|
|
443
|
+
"data": {
|
|
444
|
+
"schema": [
|
|
445
|
+
{
|
|
446
|
+
"type": "text",
|
|
447
|
+
"placeholder": "Inserisci titolo di default",
|
|
448
|
+
"id": "defaultTitle",
|
|
449
|
+
"required": true,
|
|
450
|
+
"label": "Titolo di default",
|
|
451
|
+
"value": "titolotest",
|
|
452
|
+
"params": {
|
|
453
|
+
"min": 8,
|
|
454
|
+
"max": 120
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"type": "number",
|
|
459
|
+
"id": "age",
|
|
460
|
+
"required": true,
|
|
461
|
+
"label": "Age",
|
|
462
|
+
"value": 9,
|
|
463
|
+
"params": {
|
|
464
|
+
"min": 8,
|
|
465
|
+
"max": 120
|
|
466
|
+
},
|
|
467
|
+
"validationTip": "Min 8, Max 120"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "active",
|
|
471
|
+
"label": "Active",
|
|
472
|
+
"type": "checkbox",
|
|
473
|
+
"value": true
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
"show": "yes",
|
|
477
|
+
"title": "Step 2 of 3",
|
|
478
|
+
"backdrop": false,
|
|
479
|
+
"keyboard": false,
|
|
480
|
+
"id": "wizard-step-2"
|
|
481
|
+
}
|
|
399
482
|
}
|
|
400
483
|
],
|
|
401
|
-
"iifeIntegrity": "sha384-
|
|
484
|
+
"iifeIntegrity": "sha384-Yx4kQQQoGR0FyyHzC8WLUPmUG5cXOHsYjy5SoUcYDg5Szc2xYHxZjrBDT+RbwDW9",
|
|
402
485
|
"dependencies": [
|
|
403
486
|
{
|
|
404
487
|
"name": "hb-dialog",
|
|
@@ -542,5 +625,5 @@
|
|
|
542
625
|
"size": {},
|
|
543
626
|
"iifePath": "main.iife.js",
|
|
544
627
|
"repoName": "@htmlbricks/hb-dialogform",
|
|
545
|
-
"version": "0.
|
|
628
|
+
"version": "0.68.2"
|
|
546
629
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-dialogform",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.2",
|
|
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": [
|