@viasat/beam-web-components 2.26.0 → 2.27.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.
@@ -294,76 +294,181 @@
294
294
  },
295
295
  {
296
296
  "kind": "javascript-module",
297
- "path": "libs/web-components/src/lib/Alert/Alert.ts",
297
+ "path": "libs/web-components/src/lib/Badge/Badge.ts",
298
298
  "declarations": [
299
299
  {
300
300
  "kind": "class",
301
- "description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
302
- "name": "BmAlert",
301
+ "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
302
+ "name": "BmBadge",
303
303
  "slots": [
304
304
  {
305
- "description": "Specify a different icon for the Alert",
306
- "name": "icon"
307
- },
308
- {
309
- "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
310
- "name": "heading"
311
- },
312
- {
313
- "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
314
- "name": "body"
305
+ "description": "Provide text for the Badge",
306
+ "name": "default"
315
307
  },
316
308
  {
317
- "description": "Specify if actions display on the Alert",
318
- "name": "actions"
309
+ "description": "Specify a different icon for the Badge",
310
+ "name": "icon"
319
311
  }
320
312
  ],
321
313
  "members": [
322
314
  {
323
315
  "kind": "field",
324
- "name": "heading",
316
+ "name": "appearance",
325
317
  "type": {
326
- "text": "string | undefined"
318
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
327
319
  },
328
- "description": "Specify the heading text for Alert",
329
- "attribute": "heading"
320
+ "default": "'infoPrimary'",
321
+ "description": "Specify the appearance of the Badge",
322
+ "attribute": "appearance"
330
323
  },
331
324
  {
332
325
  "kind": "field",
333
- "name": "body",
326
+ "name": "theme",
334
327
  "type": {
335
- "text": "string | undefined"
328
+ "text": "'light' | 'dark' | undefined"
336
329
  },
337
- "description": "Specify the body text for Alert",
338
- "attribute": "body"
330
+ "description": "Theme of the Badge",
331
+ "attribute": "theme"
339
332
  },
340
333
  {
341
334
  "kind": "field",
342
335
  "name": "size",
343
336
  "type": {
344
- "text": "'sm' | 'md'"
337
+ "text": "'sm' | 'md' | undefined"
345
338
  },
346
339
  "default": "'sm'",
347
- "description": "Specify the size of the Alert",
340
+ "description": "Specify the size of the Badge",
348
341
  "attribute": "size"
349
342
  },
350
343
  {
351
344
  "kind": "field",
352
- "name": "fullWidth",
345
+ "name": "emphasis",
353
346
  "type": {
354
- "text": "boolean"
347
+ "text": "'strong' | 'medium' | 'subtle'"
355
348
  },
356
- "default": "false",
357
- "description": "Specify if the Alert has no border radius",
358
- "attribute": "fullWidth"
349
+ "default": "'strong'",
350
+ "description": "Specify the emphasis of the Badge",
351
+ "attribute": "emphasis"
359
352
  },
360
353
  {
361
354
  "kind": "field",
355
+ "name": "hideIcon",
356
+ "type": {
357
+ "text": "boolean | undefined"
358
+ },
359
+ "description": "Hides Badge icon",
360
+ "attribute": "hideIcon"
361
+ }
362
+ ],
363
+ "attributes": [
364
+ {
365
+ "name": "appearance",
366
+ "type": {
367
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
368
+ },
369
+ "default": "'infoPrimary'",
370
+ "description": "Specify the appearance of the Badge",
371
+ "fieldName": "appearance"
372
+ },
373
+ {
362
374
  "name": "theme",
363
375
  "type": {
364
376
  "text": "'light' | 'dark' | undefined"
365
377
  },
366
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
378
+ "description": "Theme of the Badge",
379
+ "fieldName": "theme"
380
+ },
381
+ {
382
+ "name": "size",
383
+ "type": {
384
+ "text": "'sm' | 'md' | undefined"
385
+ },
386
+ "default": "'sm'",
387
+ "description": "Specify the size of the Badge",
388
+ "fieldName": "size"
389
+ },
390
+ {
391
+ "name": "emphasis",
392
+ "type": {
393
+ "text": "'strong' | 'medium' | 'subtle'"
394
+ },
395
+ "default": "'strong'",
396
+ "description": "Specify the emphasis of the Badge",
397
+ "fieldName": "emphasis"
398
+ },
399
+ {
400
+ "name": "hideIcon",
401
+ "type": {
402
+ "text": "boolean | undefined"
403
+ },
404
+ "description": "Hides Badge icon",
405
+ "fieldName": "hideIcon"
406
+ }
407
+ ],
408
+ "superclass": {
409
+ "name": "LitElement",
410
+ "package": "lit"
411
+ },
412
+ "tagName": "bm-badge",
413
+ "customElement": true
414
+ }
415
+ ],
416
+ "exports": [
417
+ {
418
+ "kind": "js",
419
+ "name": "BmBadge",
420
+ "declaration": {
421
+ "name": "BmBadge",
422
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
423
+ }
424
+ },
425
+ {
426
+ "kind": "custom-element-definition",
427
+ "name": "bm-badge",
428
+ "declaration": {
429
+ "name": "BmBadge",
430
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
431
+ }
432
+ }
433
+ ]
434
+ },
435
+ {
436
+ "kind": "javascript-module",
437
+ "path": "libs/web-components/src/lib/Badge/index.ts",
438
+ "declarations": [],
439
+ "exports": [
440
+ {
441
+ "kind": "js",
442
+ "name": "*",
443
+ "declaration": {
444
+ "name": "*",
445
+ "package": "./Badge"
446
+ }
447
+ }
448
+ ]
449
+ },
450
+ {
451
+ "kind": "javascript-module",
452
+ "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
453
+ "declarations": [
454
+ {
455
+ "kind": "class",
456
+ "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
457
+ "name": "BmBadgeDot",
458
+ "slots": [
459
+ {
460
+ "description": "Provide text for the BadgeDot",
461
+ "name": "default"
462
+ }
463
+ ],
464
+ "members": [
465
+ {
466
+ "kind": "field",
467
+ "name": "theme",
468
+ "type": {
469
+ "text": "'light' | 'dark' | undefined"
470
+ },
471
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
367
472
  "attribute": "theme"
368
473
  },
369
474
  {
@@ -373,349 +478,376 @@
373
478
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
374
479
  },
375
480
  "default": "'infoPrimary'",
376
- "description": "Specify the appearance of the Alert",
481
+ "description": "Specify the appearance of the BadgeDot",
377
482
  "attribute": "appearance"
378
483
  },
379
484
  {
380
485
  "kind": "field",
381
- "name": "hidden",
486
+ "name": "emphasis",
382
487
  "type": {
383
- "text": "boolean"
488
+ "text": "'strong' | 'subtle'"
384
489
  },
385
- "default": "false",
386
- "description": "Specify if the Alert is hidden",
387
- "attribute": "hidden"
490
+ "default": "'strong'",
491
+ "description": "Specify the emphasis of the BadgeDot",
492
+ "attribute": "emphasis"
388
493
  },
389
494
  {
390
495
  "kind": "field",
391
- "name": "hideIcon",
496
+ "name": "overrideDotColor",
392
497
  "type": {
393
- "text": "boolean"
498
+ "text": "string | undefined"
394
499
  },
395
- "default": "false",
396
- "description": "Specify if the icon displays on the Alert",
397
- "attribute": "hideIcon"
500
+ "description": "Overrides default dot color",
501
+ "attribute": "overrideDotColor"
502
+ }
503
+ ],
504
+ "attributes": [
505
+ {
506
+ "name": "theme",
507
+ "type": {
508
+ "text": "'light' | 'dark' | undefined"
509
+ },
510
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
511
+ "fieldName": "theme"
398
512
  },
399
513
  {
400
- "kind": "field",
401
- "name": "dismissible",
514
+ "name": "appearance",
402
515
  "type": {
403
- "text": "boolean"
516
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
404
517
  },
405
- "default": "false",
406
- "description": "Specify if the Alert can be dismissed",
407
- "attribute": "dismissible"
518
+ "default": "'infoPrimary'",
519
+ "description": "Specify the appearance of the BadgeDot",
520
+ "fieldName": "appearance"
408
521
  },
409
522
  {
410
- "kind": "field",
411
- "name": "disableAutoFocus",
523
+ "name": "emphasis",
412
524
  "type": {
413
- "text": "boolean"
525
+ "text": "'strong' | 'subtle'"
414
526
  },
415
- "default": "false",
416
- "description": "Prevent autofocus on show",
417
- "attribute": "disableAutoFocus"
527
+ "default": "'strong'",
528
+ "description": "Specify the emphasis of the BadgeDot",
529
+ "fieldName": "emphasis"
418
530
  },
419
531
  {
420
- "kind": "field",
421
- "name": "disableCloseOnEscape",
532
+ "name": "overrideDotColor",
422
533
  "type": {
423
- "text": "boolean"
534
+ "text": "string | undefined"
424
535
  },
425
- "default": "false",
426
- "description": "Prevent Escape from closing",
427
- "attribute": "disableCloseOnEscape"
536
+ "description": "Overrides default dot color",
537
+ "fieldName": "overrideDotColor"
428
538
  }
429
539
  ],
430
- "events": [
540
+ "superclass": {
541
+ "name": "LitElement",
542
+ "package": "lit"
543
+ },
544
+ "tagName": "bm-badge-dot",
545
+ "customElement": true
546
+ }
547
+ ],
548
+ "exports": [
549
+ {
550
+ "kind": "js",
551
+ "name": "BmBadgeDot",
552
+ "declaration": {
553
+ "name": "BmBadgeDot",
554
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
555
+ }
556
+ },
557
+ {
558
+ "kind": "custom-element-definition",
559
+ "name": "bm-badge-dot",
560
+ "declaration": {
561
+ "name": "BmBadgeDot",
562
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
563
+ }
564
+ }
565
+ ]
566
+ },
567
+ {
568
+ "kind": "javascript-module",
569
+ "path": "libs/web-components/src/lib/BadgeDot/index.ts",
570
+ "declarations": [],
571
+ "exports": [
572
+ {
573
+ "kind": "js",
574
+ "name": "*",
575
+ "declaration": {
576
+ "name": "*",
577
+ "package": "./BadgeDot"
578
+ }
579
+ }
580
+ ]
581
+ },
582
+ {
583
+ "kind": "javascript-module",
584
+ "path": "libs/web-components/src/lib/Alert/Alert.ts",
585
+ "declarations": [
586
+ {
587
+ "kind": "class",
588
+ "description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
589
+ "name": "BmAlert",
590
+ "slots": [
431
591
  {
432
- "description": "Dispatched when the Alert has been dismissed",
433
- "name": "bm-dismiss"
592
+ "description": "Specify a different icon for the Alert",
593
+ "name": "icon"
594
+ },
595
+ {
596
+ "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
597
+ "name": "heading"
598
+ },
599
+ {
600
+ "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
601
+ "name": "body"
602
+ },
603
+ {
604
+ "description": "Specify if actions display on the Alert",
605
+ "name": "actions"
434
606
  }
435
607
  ],
436
- "attributes": [
608
+ "members": [
437
609
  {
610
+ "kind": "field",
438
611
  "name": "heading",
439
612
  "type": {
440
613
  "text": "string | undefined"
441
614
  },
442
615
  "description": "Specify the heading text for Alert",
443
- "fieldName": "heading"
616
+ "attribute": "heading"
444
617
  },
445
618
  {
619
+ "kind": "field",
446
620
  "name": "body",
447
621
  "type": {
448
622
  "text": "string | undefined"
449
623
  },
450
624
  "description": "Specify the body text for Alert",
451
- "fieldName": "body"
625
+ "attribute": "body"
452
626
  },
453
627
  {
628
+ "kind": "field",
454
629
  "name": "size",
455
630
  "type": {
456
631
  "text": "'sm' | 'md'"
457
632
  },
458
633
  "default": "'sm'",
459
634
  "description": "Specify the size of the Alert",
460
- "fieldName": "size"
635
+ "attribute": "size"
461
636
  },
462
637
  {
638
+ "kind": "field",
463
639
  "name": "fullWidth",
464
640
  "type": {
465
641
  "text": "boolean"
466
642
  },
467
643
  "default": "false",
468
644
  "description": "Specify if the Alert has no border radius",
469
- "fieldName": "fullWidth"
645
+ "attribute": "fullWidth"
470
646
  },
471
647
  {
648
+ "kind": "field",
472
649
  "name": "theme",
473
650
  "type": {
474
651
  "text": "'light' | 'dark' | undefined"
475
652
  },
476
653
  "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
477
- "fieldName": "theme"
654
+ "attribute": "theme"
478
655
  },
479
656
  {
657
+ "kind": "field",
480
658
  "name": "appearance",
481
659
  "type": {
482
660
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
483
661
  },
484
662
  "default": "'infoPrimary'",
485
663
  "description": "Specify the appearance of the Alert",
486
- "fieldName": "appearance"
664
+ "attribute": "appearance"
487
665
  },
488
666
  {
667
+ "kind": "field",
489
668
  "name": "hidden",
490
669
  "type": {
491
670
  "text": "boolean"
492
671
  },
493
672
  "default": "false",
494
673
  "description": "Specify if the Alert is hidden",
495
- "fieldName": "hidden"
674
+ "attribute": "hidden"
496
675
  },
497
676
  {
677
+ "kind": "field",
498
678
  "name": "hideIcon",
499
679
  "type": {
500
680
  "text": "boolean"
501
681
  },
502
682
  "default": "false",
503
683
  "description": "Specify if the icon displays on the Alert",
504
- "fieldName": "hideIcon"
684
+ "attribute": "hideIcon"
505
685
  },
506
686
  {
687
+ "kind": "field",
507
688
  "name": "dismissible",
508
689
  "type": {
509
690
  "text": "boolean"
510
691
  },
511
692
  "default": "false",
512
693
  "description": "Specify if the Alert can be dismissed",
513
- "fieldName": "dismissible"
694
+ "attribute": "dismissible"
514
695
  },
515
696
  {
697
+ "kind": "field",
516
698
  "name": "disableAutoFocus",
517
699
  "type": {
518
700
  "text": "boolean"
519
701
  },
520
- "default": "false",
521
- "description": "Prevent autofocus on show",
522
- "fieldName": "disableAutoFocus"
523
- },
524
- {
525
- "name": "disableCloseOnEscape",
526
- "type": {
527
- "text": "boolean"
528
- },
529
- "default": "false",
530
- "description": "Prevent Escape from closing",
531
- "fieldName": "disableCloseOnEscape"
532
- }
533
- ],
534
- "superclass": {
535
- "name": "LitElement",
536
- "package": "lit"
537
- },
538
- "tagName": "bm-alert",
539
- "customElement": true
540
- }
541
- ],
542
- "exports": [
543
- {
544
- "kind": "js",
545
- "name": "BmAlert",
546
- "declaration": {
547
- "name": "BmAlert",
548
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
549
- }
550
- },
551
- {
552
- "kind": "custom-element-definition",
553
- "name": "bm-alert",
554
- "declaration": {
555
- "name": "BmAlert",
556
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
557
- }
558
- }
559
- ]
560
- },
561
- {
562
- "kind": "javascript-module",
563
- "path": "libs/web-components/src/lib/Alert/index.ts",
564
- "declarations": [],
565
- "exports": [
566
- {
567
- "kind": "js",
568
- "name": "*",
569
- "declaration": {
570
- "name": "*",
571
- "package": "./Alert"
572
- }
573
- }
574
- ]
575
- },
576
- {
577
- "kind": "javascript-module",
578
- "path": "libs/web-components/src/lib/Badge/Badge.ts",
579
- "declarations": [
580
- {
581
- "kind": "class",
582
- "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
583
- "name": "BmBadge",
584
- "slots": [
585
- {
586
- "description": "Provide text for the Badge",
587
- "name": "default"
702
+ "default": "false",
703
+ "description": "Prevent autofocus on show",
704
+ "attribute": "disableAutoFocus"
588
705
  },
589
706
  {
590
- "description": "Specify a different icon for the Badge",
591
- "name": "icon"
707
+ "kind": "field",
708
+ "name": "disableCloseOnEscape",
709
+ "type": {
710
+ "text": "boolean"
711
+ },
712
+ "default": "false",
713
+ "description": "Prevent Escape from closing",
714
+ "attribute": "disableCloseOnEscape"
592
715
  }
593
716
  ],
594
- "members": [
717
+ "events": [
595
718
  {
596
- "kind": "field",
597
- "name": "appearance",
719
+ "description": "Dispatched when the Alert has been dismissed",
720
+ "name": "bm-dismiss"
721
+ }
722
+ ],
723
+ "attributes": [
724
+ {
725
+ "name": "heading",
598
726
  "type": {
599
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
727
+ "text": "string | undefined"
600
728
  },
601
- "default": "'infoPrimary'",
602
- "description": "Specify the appearance of the Badge",
603
- "attribute": "appearance"
729
+ "description": "Specify the heading text for Alert",
730
+ "fieldName": "heading"
604
731
  },
605
732
  {
606
- "kind": "field",
607
- "name": "theme",
733
+ "name": "body",
608
734
  "type": {
609
- "text": "'light' | 'dark' | undefined"
735
+ "text": "string | undefined"
610
736
  },
611
- "description": "Theme of the Badge",
612
- "attribute": "theme"
737
+ "description": "Specify the body text for Alert",
738
+ "fieldName": "body"
613
739
  },
614
740
  {
615
- "kind": "field",
616
741
  "name": "size",
617
742
  "type": {
618
- "text": "'sm' | 'md' | undefined"
743
+ "text": "'sm' | 'md'"
619
744
  },
620
745
  "default": "'sm'",
621
- "description": "Specify the size of the Badge",
622
- "attribute": "size"
746
+ "description": "Specify the size of the Alert",
747
+ "fieldName": "size"
623
748
  },
624
749
  {
625
- "kind": "field",
626
- "name": "emphasis",
750
+ "name": "fullWidth",
627
751
  "type": {
628
- "text": "'strong' | 'medium' | 'subtle'"
752
+ "text": "boolean"
629
753
  },
630
- "default": "'strong'",
631
- "description": "Specify the emphasis of the Badge",
632
- "attribute": "emphasis"
754
+ "default": "false",
755
+ "description": "Specify if the Alert has no border radius",
756
+ "fieldName": "fullWidth"
633
757
  },
634
758
  {
635
- "kind": "field",
636
- "name": "hideIcon",
759
+ "name": "theme",
637
760
  "type": {
638
- "text": "boolean | undefined"
761
+ "text": "'light' | 'dark' | undefined"
639
762
  },
640
- "description": "Hides Badge icon",
641
- "attribute": "hideIcon"
642
- }
643
- ],
644
- "attributes": [
763
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
764
+ "fieldName": "theme"
765
+ },
645
766
  {
646
767
  "name": "appearance",
647
768
  "type": {
648
769
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
649
770
  },
650
771
  "default": "'infoPrimary'",
651
- "description": "Specify the appearance of the Badge",
772
+ "description": "Specify the appearance of the Alert",
652
773
  "fieldName": "appearance"
653
774
  },
654
775
  {
655
- "name": "theme",
776
+ "name": "hidden",
656
777
  "type": {
657
- "text": "'light' | 'dark' | undefined"
778
+ "text": "boolean"
658
779
  },
659
- "description": "Theme of the Badge",
660
- "fieldName": "theme"
780
+ "default": "false",
781
+ "description": "Specify if the Alert is hidden",
782
+ "fieldName": "hidden"
661
783
  },
662
784
  {
663
- "name": "size",
785
+ "name": "hideIcon",
664
786
  "type": {
665
- "text": "'sm' | 'md' | undefined"
787
+ "text": "boolean"
666
788
  },
667
- "default": "'sm'",
668
- "description": "Specify the size of the Badge",
669
- "fieldName": "size"
789
+ "default": "false",
790
+ "description": "Specify if the icon displays on the Alert",
791
+ "fieldName": "hideIcon"
670
792
  },
671
793
  {
672
- "name": "emphasis",
794
+ "name": "dismissible",
673
795
  "type": {
674
- "text": "'strong' | 'medium' | 'subtle'"
796
+ "text": "boolean"
675
797
  },
676
- "default": "'strong'",
677
- "description": "Specify the emphasis of the Badge",
678
- "fieldName": "emphasis"
798
+ "default": "false",
799
+ "description": "Specify if the Alert can be dismissed",
800
+ "fieldName": "dismissible"
679
801
  },
680
802
  {
681
- "name": "hideIcon",
803
+ "name": "disableAutoFocus",
682
804
  "type": {
683
- "text": "boolean | undefined"
805
+ "text": "boolean"
684
806
  },
685
- "description": "Hides Badge icon",
686
- "fieldName": "hideIcon"
807
+ "default": "false",
808
+ "description": "Prevent autofocus on show",
809
+ "fieldName": "disableAutoFocus"
810
+ },
811
+ {
812
+ "name": "disableCloseOnEscape",
813
+ "type": {
814
+ "text": "boolean"
815
+ },
816
+ "default": "false",
817
+ "description": "Prevent Escape from closing",
818
+ "fieldName": "disableCloseOnEscape"
687
819
  }
688
820
  ],
689
821
  "superclass": {
690
822
  "name": "LitElement",
691
823
  "package": "lit"
692
824
  },
693
- "tagName": "bm-badge",
825
+ "tagName": "bm-alert",
694
826
  "customElement": true
695
827
  }
696
828
  ],
697
829
  "exports": [
698
830
  {
699
831
  "kind": "js",
700
- "name": "BmBadge",
832
+ "name": "BmAlert",
701
833
  "declaration": {
702
- "name": "BmBadge",
703
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
834
+ "name": "BmAlert",
835
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
704
836
  }
705
837
  },
706
838
  {
707
839
  "kind": "custom-element-definition",
708
- "name": "bm-badge",
840
+ "name": "bm-alert",
709
841
  "declaration": {
710
- "name": "BmBadge",
711
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
842
+ "name": "BmAlert",
843
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
712
844
  }
713
845
  }
714
846
  ]
715
847
  },
716
848
  {
717
849
  "kind": "javascript-module",
718
- "path": "libs/web-components/src/lib/Badge/index.ts",
850
+ "path": "libs/web-components/src/lib/Alert/index.ts",
719
851
  "declarations": [],
720
852
  "exports": [
721
853
  {
@@ -723,7 +855,7 @@
723
855
  "name": "*",
724
856
  "declaration": {
725
857
  "name": "*",
726
- "package": "./Badge"
858
+ "package": "./Alert"
727
859
  }
728
860
  }
729
861
  ]
@@ -2001,211 +2133,79 @@
2001
2133
  },
2002
2134
  "default": "false",
2003
2135
  "description": "Specify if Button is fluid",
2004
- "fieldName": "fluid"
2005
- },
2006
- {
2007
- "name": "width",
2008
- "type": {
2009
- "text": "string | undefined"
2010
- },
2011
- "description": "Specify the width of a Button",
2012
- "fieldName": "width"
2013
- },
2014
- {
2015
- "name": "height",
2016
- "type": {
2017
- "text": "string | undefined"
2018
- },
2019
- "description": "Specify the height of a Button",
2020
- "fieldName": "height"
2021
- },
2022
- {
2023
- "name": "theme",
2024
- "type": {
2025
- "text": "'light' | 'dark' | undefined"
2026
- },
2027
- "description": "Specify the theme of the Button",
2028
- "fieldName": "theme"
2029
- },
2030
- {
2031
- "name": "iconOnly",
2032
- "type": {
2033
- "text": "boolean | undefined"
2034
- },
2035
- "description": "Specify if the icon displays without text",
2036
- "fieldName": "iconOnly"
2037
- },
2038
- {
2039
- "name": "type",
2040
- "type": {
2041
- "text": "string"
2042
- },
2043
- "default": "'button'",
2044
- "fieldName": "type"
2045
- }
2046
- ],
2047
- "superclass": {
2048
- "name": "LitElement",
2049
- "package": "lit"
2050
- },
2051
- "tagName": "bm-button",
2052
- "customElement": true
2053
- }
2054
- ],
2055
- "exports": [
2056
- {
2057
- "kind": "js",
2058
- "name": "BmButton",
2059
- "declaration": {
2060
- "name": "BmButton",
2061
- "module": "libs/web-components/src/lib/Button/Button.ts"
2062
- }
2063
- },
2064
- {
2065
- "kind": "custom-element-definition",
2066
- "name": "bm-button",
2067
- "declaration": {
2068
- "name": "BmButton",
2069
- "module": "libs/web-components/src/lib/Button/Button.ts"
2070
- }
2071
- }
2072
- ]
2073
- },
2074
- {
2075
- "kind": "javascript-module",
2076
- "path": "libs/web-components/src/lib/Button/index.ts",
2077
- "declarations": [],
2078
- "exports": [
2079
- {
2080
- "kind": "js",
2081
- "name": "*",
2082
- "declaration": {
2083
- "name": "*",
2084
- "package": "./Button"
2085
- }
2086
- }
2087
- ]
2088
- },
2089
- {
2090
- "kind": "javascript-module",
2091
- "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
2092
- "declarations": [
2093
- {
2094
- "kind": "class",
2095
- "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
2096
- "name": "BmBadgeDot",
2097
- "slots": [
2098
- {
2099
- "description": "Provide text for the BadgeDot",
2100
- "name": "default"
2101
- }
2102
- ],
2103
- "members": [
2104
- {
2105
- "kind": "field",
2106
- "name": "theme",
2107
- "type": {
2108
- "text": "'light' | 'dark' | undefined"
2109
- },
2110
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
2111
- "attribute": "theme"
2112
- },
2113
- {
2114
- "kind": "field",
2115
- "name": "appearance",
2116
- "type": {
2117
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
2118
- },
2119
- "default": "'infoPrimary'",
2120
- "description": "Specify the appearance of the BadgeDot",
2121
- "attribute": "appearance"
2136
+ "fieldName": "fluid"
2122
2137
  },
2123
2138
  {
2124
- "kind": "field",
2125
- "name": "emphasis",
2139
+ "name": "width",
2126
2140
  "type": {
2127
- "text": "'strong' | 'subtle'"
2141
+ "text": "string | undefined"
2128
2142
  },
2129
- "default": "'strong'",
2130
- "description": "Specify the emphasis of the BadgeDot",
2131
- "attribute": "emphasis"
2143
+ "description": "Specify the width of a Button",
2144
+ "fieldName": "width"
2132
2145
  },
2133
2146
  {
2134
- "kind": "field",
2135
- "name": "overrideDotColor",
2147
+ "name": "height",
2136
2148
  "type": {
2137
2149
  "text": "string | undefined"
2138
2150
  },
2139
- "description": "Overrides default dot color",
2140
- "attribute": "overrideDotColor"
2141
- }
2142
- ],
2143
- "attributes": [
2151
+ "description": "Specify the height of a Button",
2152
+ "fieldName": "height"
2153
+ },
2144
2154
  {
2145
2155
  "name": "theme",
2146
2156
  "type": {
2147
2157
  "text": "'light' | 'dark' | undefined"
2148
2158
  },
2149
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
2159
+ "description": "Specify the theme of the Button",
2150
2160
  "fieldName": "theme"
2151
2161
  },
2152
2162
  {
2153
- "name": "appearance",
2154
- "type": {
2155
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
2156
- },
2157
- "default": "'infoPrimary'",
2158
- "description": "Specify the appearance of the BadgeDot",
2159
- "fieldName": "appearance"
2160
- },
2161
- {
2162
- "name": "emphasis",
2163
+ "name": "iconOnly",
2163
2164
  "type": {
2164
- "text": "'strong' | 'subtle'"
2165
+ "text": "boolean | undefined"
2165
2166
  },
2166
- "default": "'strong'",
2167
- "description": "Specify the emphasis of the BadgeDot",
2168
- "fieldName": "emphasis"
2167
+ "description": "Specify if the icon displays without text",
2168
+ "fieldName": "iconOnly"
2169
2169
  },
2170
2170
  {
2171
- "name": "overrideDotColor",
2171
+ "name": "type",
2172
2172
  "type": {
2173
- "text": "string | undefined"
2173
+ "text": "string"
2174
2174
  },
2175
- "description": "Overrides default dot color",
2176
- "fieldName": "overrideDotColor"
2175
+ "default": "'button'",
2176
+ "fieldName": "type"
2177
2177
  }
2178
2178
  ],
2179
2179
  "superclass": {
2180
2180
  "name": "LitElement",
2181
2181
  "package": "lit"
2182
2182
  },
2183
- "tagName": "bm-badge-dot",
2183
+ "tagName": "bm-button",
2184
2184
  "customElement": true
2185
2185
  }
2186
2186
  ],
2187
2187
  "exports": [
2188
2188
  {
2189
2189
  "kind": "js",
2190
- "name": "BmBadgeDot",
2190
+ "name": "BmButton",
2191
2191
  "declaration": {
2192
- "name": "BmBadgeDot",
2193
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
2192
+ "name": "BmButton",
2193
+ "module": "libs/web-components/src/lib/Button/Button.ts"
2194
2194
  }
2195
2195
  },
2196
2196
  {
2197
2197
  "kind": "custom-element-definition",
2198
- "name": "bm-badge-dot",
2198
+ "name": "bm-button",
2199
2199
  "declaration": {
2200
- "name": "BmBadgeDot",
2201
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
2200
+ "name": "BmButton",
2201
+ "module": "libs/web-components/src/lib/Button/Button.ts"
2202
2202
  }
2203
2203
  }
2204
2204
  ]
2205
2205
  },
2206
2206
  {
2207
2207
  "kind": "javascript-module",
2208
- "path": "libs/web-components/src/lib/BadgeDot/index.ts",
2208
+ "path": "libs/web-components/src/lib/Button/index.ts",
2209
2209
  "declarations": [],
2210
2210
  "exports": [
2211
2211
  {
@@ -2213,7 +2213,7 @@
2213
2213
  "name": "*",
2214
2214
  "declaration": {
2215
2215
  "name": "*",
2216
- "package": "./BadgeDot"
2216
+ "package": "./Button"
2217
2217
  }
2218
2218
  }
2219
2219
  ]
@@ -8324,23 +8324,238 @@
8324
8324
  "type": {
8325
8325
  "text": "string"
8326
8326
  }
8327
- }
8327
+ }
8328
+ }
8329
+ ],
8330
+ "exports": [
8331
+ {
8332
+ "kind": "js",
8333
+ "name": "createId",
8334
+ "declaration": {
8335
+ "name": "createId",
8336
+ "module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
8337
+ }
8338
+ }
8339
+ ]
8340
+ },
8341
+ {
8342
+ "kind": "javascript-module",
8343
+ "path": "libs/web-components/src/lib/wip/Form/index.ts",
8344
+ "declarations": [],
8345
+ "exports": [
8346
+ {
8347
+ "kind": "js",
8348
+ "name": "*",
8349
+ "declaration": {
8350
+ "name": "*",
8351
+ "package": "./Form"
8352
+ }
8353
+ },
8354
+ {
8355
+ "kind": "js",
8356
+ "name": "*",
8357
+ "declaration": {
8358
+ "name": "*",
8359
+ "package": "./Form.decorator"
8360
+ }
8361
+ }
8362
+ ]
8363
+ },
8364
+ {
8365
+ "kind": "javascript-module",
8366
+ "path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
8367
+ "declarations": [
8368
+ {
8369
+ "kind": "class",
8370
+ "description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events",
8371
+ "name": "BmRadioButton",
8372
+ "members": [
8373
+ {
8374
+ "kind": "field",
8375
+ "name": "label",
8376
+ "type": {
8377
+ "text": "string | undefined"
8378
+ },
8379
+ "description": "Specify the text for the label",
8380
+ "attribute": "label"
8381
+ },
8382
+ {
8383
+ "kind": "field",
8384
+ "name": "error",
8385
+ "type": {
8386
+ "text": "boolean | undefined"
8387
+ },
8388
+ "description": "Specify error text and display error state of a RadioButton",
8389
+ "attribute": "error"
8390
+ },
8391
+ {
8392
+ "kind": "field",
8393
+ "name": "readOnly",
8394
+ "type": {
8395
+ "text": "boolean | undefined"
8396
+ },
8397
+ "description": "Specify if RadioButton displays in a read-only state",
8398
+ "attribute": "readOnly"
8399
+ },
8400
+ {
8401
+ "kind": "field",
8402
+ "name": "disabled",
8403
+ "type": {
8404
+ "text": "boolean | undefined"
8405
+ },
8406
+ "description": "Specify if RadioButton displays in a disabled state",
8407
+ "attribute": "disabled"
8408
+ },
8409
+ {
8410
+ "kind": "field",
8411
+ "name": "theme",
8412
+ "type": {
8413
+ "text": "'light' | 'dark' | undefined"
8414
+ },
8415
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8416
+ "attribute": "theme"
8417
+ },
8418
+ {
8419
+ "kind": "field",
8420
+ "name": "value",
8421
+ "type": {
8422
+ "text": "string | undefined"
8423
+ },
8424
+ "description": "The value attribute for the input element",
8425
+ "attribute": "value"
8426
+ },
8427
+ {
8428
+ "kind": "field",
8429
+ "name": "checked",
8430
+ "type": {
8431
+ "text": "boolean"
8432
+ },
8433
+ "default": "false",
8434
+ "description": "The checked attribute for the input element",
8435
+ "attribute": "checked"
8436
+ },
8437
+ {
8438
+ "kind": "field",
8439
+ "name": "onKeyDown",
8440
+ "type": {
8441
+ "text": "(event: KeyboardEvent) => void | undefined"
8442
+ },
8443
+ "description": "A user-defined function to handle keydown events",
8444
+ "attribute": "onKeyDown"
8445
+ },
8446
+ {
8447
+ "kind": "field",
8448
+ "name": "inputChoiceGroupContext",
8449
+ "type": {
8450
+ "text": "InputChoiceGroupContextProps"
8451
+ }
8452
+ },
8453
+ {
8454
+ "kind": "field",
8455
+ "name": "radioButtonRef"
8456
+ },
8457
+ {
8458
+ "kind": "method",
8459
+ "name": "focus"
8460
+ }
8461
+ ],
8462
+ "attributes": [
8463
+ {
8464
+ "name": "label",
8465
+ "type": {
8466
+ "text": "string | undefined"
8467
+ },
8468
+ "description": "Specify the text for the label",
8469
+ "fieldName": "label"
8470
+ },
8471
+ {
8472
+ "name": "error",
8473
+ "type": {
8474
+ "text": "boolean | undefined"
8475
+ },
8476
+ "description": "Specify error text and display error state of a RadioButton",
8477
+ "fieldName": "error"
8478
+ },
8479
+ {
8480
+ "name": "readOnly",
8481
+ "type": {
8482
+ "text": "boolean | undefined"
8483
+ },
8484
+ "description": "Specify if RadioButton displays in a read-only state",
8485
+ "fieldName": "readOnly"
8486
+ },
8487
+ {
8488
+ "name": "disabled",
8489
+ "type": {
8490
+ "text": "boolean | undefined"
8491
+ },
8492
+ "description": "Specify if RadioButton displays in a disabled state",
8493
+ "fieldName": "disabled"
8494
+ },
8495
+ {
8496
+ "name": "theme",
8497
+ "type": {
8498
+ "text": "'light' | 'dark' | undefined"
8499
+ },
8500
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8501
+ "fieldName": "theme"
8502
+ },
8503
+ {
8504
+ "name": "value",
8505
+ "type": {
8506
+ "text": "string | undefined"
8507
+ },
8508
+ "description": "The value attribute for the input element",
8509
+ "fieldName": "value"
8510
+ },
8511
+ {
8512
+ "name": "checked",
8513
+ "type": {
8514
+ "text": "boolean"
8515
+ },
8516
+ "default": "false",
8517
+ "description": "The checked attribute for the input element",
8518
+ "fieldName": "checked"
8519
+ },
8520
+ {
8521
+ "name": "onKeyDown",
8522
+ "type": {
8523
+ "text": "(event: KeyboardEvent) => void | undefined"
8524
+ },
8525
+ "description": "A user-defined function to handle keydown events",
8526
+ "fieldName": "onKeyDown"
8527
+ }
8528
+ ],
8529
+ "superclass": {
8530
+ "name": "LitElement",
8531
+ "package": "lit"
8532
+ },
8533
+ "tagName": "bm-radio-button",
8534
+ "customElement": true
8328
8535
  }
8329
8536
  ],
8330
8537
  "exports": [
8331
8538
  {
8332
8539
  "kind": "js",
8333
- "name": "createId",
8540
+ "name": "BmRadioButton",
8334
8541
  "declaration": {
8335
- "name": "createId",
8336
- "module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
8542
+ "name": "BmRadioButton",
8543
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8544
+ }
8545
+ },
8546
+ {
8547
+ "kind": "custom-element-definition",
8548
+ "name": "bm-radio-button",
8549
+ "declaration": {
8550
+ "name": "BmRadioButton",
8551
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8337
8552
  }
8338
8553
  }
8339
8554
  ]
8340
8555
  },
8341
8556
  {
8342
8557
  "kind": "javascript-module",
8343
- "path": "libs/web-components/src/lib/wip/Form/index.ts",
8558
+ "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
8344
8559
  "declarations": [],
8345
8560
  "exports": [
8346
8561
  {
@@ -8348,7 +8563,7 @@
8348
8563
  "name": "*",
8349
8564
  "declaration": {
8350
8565
  "name": "*",
8351
- "package": "./Form"
8566
+ "package": "./RadioButton"
8352
8567
  }
8353
8568
  },
8354
8569
  {
@@ -8356,7 +8571,7 @@
8356
8571
  "name": "*",
8357
8572
  "declaration": {
8358
8573
  "name": "*",
8359
- "package": "./Form.decorator"
8574
+ "package": "./RadioButtonGroup/RadioButtonGroup"
8360
8575
  }
8361
8576
  }
8362
8577
  ]
@@ -8789,221 +9004,6 @@
8789
9004
  }
8790
9005
  ]
8791
9006
  },
8792
- {
8793
- "kind": "javascript-module",
8794
- "path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
8795
- "declarations": [
8796
- {
8797
- "kind": "class",
8798
- "description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events",
8799
- "name": "BmRadioButton",
8800
- "members": [
8801
- {
8802
- "kind": "field",
8803
- "name": "label",
8804
- "type": {
8805
- "text": "string | undefined"
8806
- },
8807
- "description": "Specify the text for the label",
8808
- "attribute": "label"
8809
- },
8810
- {
8811
- "kind": "field",
8812
- "name": "error",
8813
- "type": {
8814
- "text": "boolean | undefined"
8815
- },
8816
- "description": "Specify error text and display error state of a RadioButton",
8817
- "attribute": "error"
8818
- },
8819
- {
8820
- "kind": "field",
8821
- "name": "readOnly",
8822
- "type": {
8823
- "text": "boolean | undefined"
8824
- },
8825
- "description": "Specify if RadioButton displays in a read-only state",
8826
- "attribute": "readOnly"
8827
- },
8828
- {
8829
- "kind": "field",
8830
- "name": "disabled",
8831
- "type": {
8832
- "text": "boolean | undefined"
8833
- },
8834
- "description": "Specify if RadioButton displays in a disabled state",
8835
- "attribute": "disabled"
8836
- },
8837
- {
8838
- "kind": "field",
8839
- "name": "theme",
8840
- "type": {
8841
- "text": "'light' | 'dark' | undefined"
8842
- },
8843
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8844
- "attribute": "theme"
8845
- },
8846
- {
8847
- "kind": "field",
8848
- "name": "value",
8849
- "type": {
8850
- "text": "string | undefined"
8851
- },
8852
- "description": "The value attribute for the input element",
8853
- "attribute": "value"
8854
- },
8855
- {
8856
- "kind": "field",
8857
- "name": "checked",
8858
- "type": {
8859
- "text": "boolean"
8860
- },
8861
- "default": "false",
8862
- "description": "The checked attribute for the input element",
8863
- "attribute": "checked"
8864
- },
8865
- {
8866
- "kind": "field",
8867
- "name": "onKeyDown",
8868
- "type": {
8869
- "text": "(event: KeyboardEvent) => void | undefined"
8870
- },
8871
- "description": "A user-defined function to handle keydown events",
8872
- "attribute": "onKeyDown"
8873
- },
8874
- {
8875
- "kind": "field",
8876
- "name": "inputChoiceGroupContext",
8877
- "type": {
8878
- "text": "InputChoiceGroupContextProps"
8879
- }
8880
- },
8881
- {
8882
- "kind": "field",
8883
- "name": "radioButtonRef"
8884
- },
8885
- {
8886
- "kind": "method",
8887
- "name": "focus"
8888
- }
8889
- ],
8890
- "attributes": [
8891
- {
8892
- "name": "label",
8893
- "type": {
8894
- "text": "string | undefined"
8895
- },
8896
- "description": "Specify the text for the label",
8897
- "fieldName": "label"
8898
- },
8899
- {
8900
- "name": "error",
8901
- "type": {
8902
- "text": "boolean | undefined"
8903
- },
8904
- "description": "Specify error text and display error state of a RadioButton",
8905
- "fieldName": "error"
8906
- },
8907
- {
8908
- "name": "readOnly",
8909
- "type": {
8910
- "text": "boolean | undefined"
8911
- },
8912
- "description": "Specify if RadioButton displays in a read-only state",
8913
- "fieldName": "readOnly"
8914
- },
8915
- {
8916
- "name": "disabled",
8917
- "type": {
8918
- "text": "boolean | undefined"
8919
- },
8920
- "description": "Specify if RadioButton displays in a disabled state",
8921
- "fieldName": "disabled"
8922
- },
8923
- {
8924
- "name": "theme",
8925
- "type": {
8926
- "text": "'light' | 'dark' | undefined"
8927
- },
8928
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8929
- "fieldName": "theme"
8930
- },
8931
- {
8932
- "name": "value",
8933
- "type": {
8934
- "text": "string | undefined"
8935
- },
8936
- "description": "The value attribute for the input element",
8937
- "fieldName": "value"
8938
- },
8939
- {
8940
- "name": "checked",
8941
- "type": {
8942
- "text": "boolean"
8943
- },
8944
- "default": "false",
8945
- "description": "The checked attribute for the input element",
8946
- "fieldName": "checked"
8947
- },
8948
- {
8949
- "name": "onKeyDown",
8950
- "type": {
8951
- "text": "(event: KeyboardEvent) => void | undefined"
8952
- },
8953
- "description": "A user-defined function to handle keydown events",
8954
- "fieldName": "onKeyDown"
8955
- }
8956
- ],
8957
- "superclass": {
8958
- "name": "LitElement",
8959
- "package": "lit"
8960
- },
8961
- "tagName": "bm-radio-button",
8962
- "customElement": true
8963
- }
8964
- ],
8965
- "exports": [
8966
- {
8967
- "kind": "js",
8968
- "name": "BmRadioButton",
8969
- "declaration": {
8970
- "name": "BmRadioButton",
8971
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8972
- }
8973
- },
8974
- {
8975
- "kind": "custom-element-definition",
8976
- "name": "bm-radio-button",
8977
- "declaration": {
8978
- "name": "BmRadioButton",
8979
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8980
- }
8981
- }
8982
- ]
8983
- },
8984
- {
8985
- "kind": "javascript-module",
8986
- "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
8987
- "declarations": [],
8988
- "exports": [
8989
- {
8990
- "kind": "js",
8991
- "name": "*",
8992
- "declaration": {
8993
- "name": "*",
8994
- "package": "./RadioButton"
8995
- }
8996
- },
8997
- {
8998
- "kind": "js",
8999
- "name": "*",
9000
- "declaration": {
9001
- "name": "*",
9002
- "package": "./RadioButtonGroup/RadioButtonGroup"
9003
- }
9004
- }
9005
- ]
9006
- },
9007
9007
  {
9008
9008
  "kind": "javascript-module",
9009
9009
  "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",