@viasat/beam-web-components 2.16.0 → 2.18.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,286 +294,567 @@
294
294
  },
295
295
  {
296
296
  "kind": "javascript-module",
297
- "path": "libs/web-components/src/lib/Avatar/Avatar.ts",
297
+ "path": "libs/web-components/src/lib/Alert/Alert.ts",
298
298
  "declarations": [
299
299
  {
300
300
  "kind": "class",
301
- "description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** ",
302
- "name": "BmAvatar",
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",
303
303
  "slots": [
304
304
  {
305
- "description": "Customize the default icon",
305
+ "description": "Specify a different icon for the Alert",
306
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"
315
+ },
316
+ {
317
+ "description": "Specify if actions display on the Alert",
318
+ "name": "actions"
307
319
  }
308
320
  ],
309
321
  "members": [
310
322
  {
311
323
  "kind": "field",
312
- "name": "appearance",
324
+ "name": "heading",
313
325
  "type": {
314
- "text": "'accent' | 'neutral' | undefined"
326
+ "text": "string | undefined"
315
327
  },
316
- "default": "'neutral'",
317
- "description": "Specify the appearance of the Avatar",
318
- "attribute": "appearance"
328
+ "description": "Specify the heading text for Alert",
329
+ "attribute": "heading"
319
330
  },
320
331
  {
321
332
  "kind": "field",
322
- "name": "name",
333
+ "name": "body",
323
334
  "type": {
324
335
  "text": "string | undefined"
325
336
  },
326
- "description": "Specify a name to display initials in the Avatar",
327
- "attribute": "name"
337
+ "description": "Specify the body text for Alert",
338
+ "attribute": "body"
328
339
  },
329
340
  {
330
341
  "kind": "field",
331
- "name": "src",
342
+ "name": "size",
332
343
  "type": {
333
- "text": "string | undefined"
344
+ "text": "'sm' | 'md'"
334
345
  },
335
- "description": "Pass an image to the Avatar",
336
- "attribute": "src"
346
+ "default": "'sm'",
347
+ "description": "Specify the size of the Alert",
348
+ "attribute": "size"
337
349
  },
338
350
  {
339
351
  "kind": "field",
340
- "name": "alt",
352
+ "name": "fullWidth",
341
353
  "type": {
342
- "text": "string | undefined"
354
+ "text": "boolean"
343
355
  },
344
- "description": "Specify alt for image",
345
- "attribute": "alt"
356
+ "default": "false",
357
+ "description": "Specify if the Alert has no border radius",
358
+ "attribute": "fullWidth"
346
359
  },
347
360
  {
348
361
  "kind": "field",
349
- "name": "size",
362
+ "name": "theme",
350
363
  "type": {
351
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
364
+ "text": "'light' | 'dark' | undefined"
352
365
  },
353
- "default": "'md'",
354
- "description": "Specify the size of the Avatar",
355
- "attribute": "size"
366
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
367
+ "attribute": "theme"
356
368
  },
357
369
  {
358
370
  "kind": "field",
359
- "name": "disabled",
371
+ "name": "appearance",
360
372
  "type": {
361
- "text": "boolean | undefined"
373
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
374
+ },
375
+ "default": "'infoPrimary'",
376
+ "description": "Specify the appearance of the Alert",
377
+ "attribute": "appearance"
378
+ },
379
+ {
380
+ "kind": "field",
381
+ "name": "hidden",
382
+ "type": {
383
+ "text": "boolean"
362
384
  },
363
385
  "default": "false",
364
- "description": "Specify if the Avatar is disabled",
365
- "attribute": "disabled"
386
+ "description": "Specify if the Alert is hidden",
387
+ "attribute": "hidden"
366
388
  },
367
389
  {
368
390
  "kind": "field",
369
- "name": "shape",
391
+ "name": "hideIcon",
370
392
  "type": {
371
- "text": "'circle' | 'square' | undefined"
393
+ "text": "boolean"
372
394
  },
373
- "default": "'circle'",
374
- "description": "Specify the shape of the Avatar",
375
- "attribute": "shape"
395
+ "default": "false",
396
+ "description": "Specify if the icon displays on the Alert",
397
+ "attribute": "hideIcon"
376
398
  },
377
399
  {
378
400
  "kind": "field",
379
- "name": "isInteractive",
401
+ "name": "dismissible",
380
402
  "type": {
381
403
  "text": "boolean"
382
404
  },
383
405
  "default": "false",
384
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
385
- "attribute": "isInteractive"
406
+ "description": "Specify if the Alert can be dismissed",
407
+ "attribute": "dismissible"
386
408
  },
387
409
  {
388
410
  "kind": "field",
389
- "name": "isFocusable",
411
+ "name": "disableAutoFocus",
390
412
  "type": {
391
413
  "text": "boolean"
392
414
  },
393
415
  "default": "false",
394
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
395
- "attribute": "isFocusable"
416
+ "description": "Prevent autofocus on show",
417
+ "attribute": "disableAutoFocus"
396
418
  },
397
419
  {
398
420
  "kind": "field",
399
- "name": "withBorder",
421
+ "name": "disableCloseOnEscape",
400
422
  "type": {
401
423
  "text": "boolean"
402
424
  },
403
425
  "default": "false",
404
- "attribute": "withBorder"
426
+ "description": "Prevent Escape from closing",
427
+ "attribute": "disableCloseOnEscape"
428
+ }
429
+ ],
430
+ "events": [
431
+ {
432
+ "description": "Dispatched when the Alert has been dismissed",
433
+ "name": "bm-dismiss"
405
434
  }
406
435
  ],
407
436
  "attributes": [
408
437
  {
409
- "name": "appearance",
438
+ "name": "heading",
410
439
  "type": {
411
- "text": "'accent' | 'neutral' | undefined"
440
+ "text": "string | undefined"
412
441
  },
413
- "default": "'neutral'",
414
- "description": "Specify the appearance of the Avatar",
415
- "fieldName": "appearance"
442
+ "description": "Specify the heading text for Alert",
443
+ "fieldName": "heading"
416
444
  },
417
445
  {
418
- "name": "name",
446
+ "name": "body",
419
447
  "type": {
420
448
  "text": "string | undefined"
421
449
  },
422
- "description": "Specify a name to display initials in the Avatar",
423
- "fieldName": "name"
450
+ "description": "Specify the body text for Alert",
451
+ "fieldName": "body"
424
452
  },
425
453
  {
426
- "name": "src",
454
+ "name": "size",
427
455
  "type": {
428
- "text": "string | undefined"
456
+ "text": "'sm' | 'md'"
429
457
  },
430
- "description": "Pass an image to the Avatar",
431
- "fieldName": "src"
458
+ "default": "'sm'",
459
+ "description": "Specify the size of the Alert",
460
+ "fieldName": "size"
432
461
  },
433
462
  {
434
- "name": "alt",
463
+ "name": "fullWidth",
435
464
  "type": {
436
- "text": "string | undefined"
465
+ "text": "boolean"
437
466
  },
438
- "description": "Specify alt for image",
439
- "fieldName": "alt"
467
+ "default": "false",
468
+ "description": "Specify if the Alert has no border radius",
469
+ "fieldName": "fullWidth"
440
470
  },
441
471
  {
442
- "name": "size",
472
+ "name": "theme",
443
473
  "type": {
444
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
474
+ "text": "'light' | 'dark' | undefined"
445
475
  },
446
- "default": "'md'",
447
- "description": "Specify the size of the Avatar",
448
- "fieldName": "size"
476
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
477
+ "fieldName": "theme"
449
478
  },
450
479
  {
451
- "name": "disabled",
480
+ "name": "appearance",
452
481
  "type": {
453
- "text": "boolean | undefined"
482
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
483
+ },
484
+ "default": "'infoPrimary'",
485
+ "description": "Specify the appearance of the Alert",
486
+ "fieldName": "appearance"
487
+ },
488
+ {
489
+ "name": "hidden",
490
+ "type": {
491
+ "text": "boolean"
454
492
  },
455
493
  "default": "false",
456
- "description": "Specify if the Avatar is disabled",
457
- "fieldName": "disabled"
494
+ "description": "Specify if the Alert is hidden",
495
+ "fieldName": "hidden"
458
496
  },
459
497
  {
460
- "name": "shape",
498
+ "name": "hideIcon",
461
499
  "type": {
462
- "text": "'circle' | 'square' | undefined"
500
+ "text": "boolean"
463
501
  },
464
- "default": "'circle'",
465
- "description": "Specify the shape of the Avatar",
466
- "fieldName": "shape"
502
+ "default": "false",
503
+ "description": "Specify if the icon displays on the Alert",
504
+ "fieldName": "hideIcon"
467
505
  },
468
506
  {
469
- "name": "isInteractive",
507
+ "name": "dismissible",
470
508
  "type": {
471
509
  "text": "boolean"
472
510
  },
473
511
  "default": "false",
474
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
475
- "fieldName": "isInteractive"
512
+ "description": "Specify if the Alert can be dismissed",
513
+ "fieldName": "dismissible"
476
514
  },
477
515
  {
478
- "name": "isFocusable",
516
+ "name": "disableAutoFocus",
479
517
  "type": {
480
518
  "text": "boolean"
481
519
  },
482
520
  "default": "false",
483
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
484
- "fieldName": "isFocusable"
521
+ "description": "Prevent autofocus on show",
522
+ "fieldName": "disableAutoFocus"
485
523
  },
486
524
  {
487
- "name": "withBorder",
525
+ "name": "disableCloseOnEscape",
488
526
  "type": {
489
527
  "text": "boolean"
490
528
  },
491
529
  "default": "false",
492
- "fieldName": "withBorder"
530
+ "description": "Prevent Escape from closing",
531
+ "fieldName": "disableCloseOnEscape"
493
532
  }
494
533
  ],
495
534
  "superclass": {
496
535
  "name": "LitElement",
497
536
  "package": "lit"
498
537
  },
499
- "tagName": "bm-avatar",
538
+ "tagName": "bm-alert",
500
539
  "customElement": true
501
540
  }
502
541
  ],
503
542
  "exports": [
504
543
  {
505
544
  "kind": "js",
506
- "name": "BmAvatar",
545
+ "name": "BmAlert",
507
546
  "declaration": {
508
- "name": "BmAvatar",
509
- "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
547
+ "name": "BmAlert",
548
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
510
549
  }
511
550
  },
512
551
  {
513
552
  "kind": "custom-element-definition",
514
- "name": "bm-avatar",
553
+ "name": "bm-alert",
515
554
  "declaration": {
516
- "name": "BmAvatar",
517
- "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
555
+ "name": "BmAlert",
556
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
518
557
  }
519
558
  }
520
559
  ]
521
560
  },
522
561
  {
523
562
  "kind": "javascript-module",
524
- "path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
525
- "declarations": [
526
- {
527
- "kind": "variable",
528
- "name": "AvatarGroupCtx"
529
- }
530
- ],
563
+ "path": "libs/web-components/src/lib/Alert/index.ts",
564
+ "declarations": [],
531
565
  "exports": [
532
566
  {
533
567
  "kind": "js",
534
- "name": "AvatarGroupCtx",
568
+ "name": "*",
535
569
  "declaration": {
536
- "name": "AvatarGroupCtx",
537
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
570
+ "name": "*",
571
+ "package": "./Alert"
538
572
  }
539
573
  }
540
574
  ]
541
575
  },
542
576
  {
543
577
  "kind": "javascript-module",
544
- "path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
578
+ "path": "libs/web-components/src/lib/Avatar/Avatar.ts",
545
579
  "declarations": [
546
580
  {
547
581
  "kind": "class",
548
- "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.",
549
- "name": "BmAvatarGroup",
582
+ "description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** ",
583
+ "name": "BmAvatar",
550
584
  "slots": [
551
585
  {
552
- "description": "Add Avatars to create a group",
553
- "name": "default"
586
+ "description": "Customize the default icon",
587
+ "name": "icon"
554
588
  }
555
589
  ],
556
590
  "members": [
557
591
  {
558
592
  "kind": "field",
559
- "name": "wrapping",
593
+ "name": "appearance",
560
594
  "type": {
561
- "text": "boolean"
595
+ "text": "'accent' | 'neutral' | undefined"
562
596
  },
563
- "default": "false",
564
- "description": "Specify if the AvatarGroup wraps",
565
- "attribute": "wrapping"
597
+ "default": "'neutral'",
598
+ "description": "Specify the appearance of the Avatar",
599
+ "attribute": "appearance"
566
600
  },
567
601
  {
568
602
  "kind": "field",
569
- "name": "maxCount",
603
+ "name": "name",
570
604
  "type": {
571
- "text": "number"
605
+ "text": "string | undefined"
572
606
  },
573
- "default": "5",
574
- "description": "Specify the max number of avatars displayed in the group.",
575
- "attribute": "maxCount",
576
- "reflects": true
607
+ "description": "Specify a name to display initials in the Avatar",
608
+ "attribute": "name"
609
+ },
610
+ {
611
+ "kind": "field",
612
+ "name": "src",
613
+ "type": {
614
+ "text": "string | undefined"
615
+ },
616
+ "description": "Pass an image to the Avatar",
617
+ "attribute": "src"
618
+ },
619
+ {
620
+ "kind": "field",
621
+ "name": "alt",
622
+ "type": {
623
+ "text": "string | undefined"
624
+ },
625
+ "description": "Specify alt for image",
626
+ "attribute": "alt"
627
+ },
628
+ {
629
+ "kind": "field",
630
+ "name": "size",
631
+ "type": {
632
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
633
+ },
634
+ "default": "'md'",
635
+ "description": "Specify the size of the Avatar",
636
+ "attribute": "size"
637
+ },
638
+ {
639
+ "kind": "field",
640
+ "name": "disabled",
641
+ "type": {
642
+ "text": "boolean | undefined"
643
+ },
644
+ "default": "false",
645
+ "description": "Specify if the Avatar is disabled",
646
+ "attribute": "disabled"
647
+ },
648
+ {
649
+ "kind": "field",
650
+ "name": "shape",
651
+ "type": {
652
+ "text": "'circle' | 'square' | undefined"
653
+ },
654
+ "default": "'circle'",
655
+ "description": "Specify the shape of the Avatar",
656
+ "attribute": "shape"
657
+ },
658
+ {
659
+ "kind": "field",
660
+ "name": "isInteractive",
661
+ "type": {
662
+ "text": "boolean"
663
+ },
664
+ "default": "false",
665
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
666
+ "attribute": "isInteractive"
667
+ },
668
+ {
669
+ "kind": "field",
670
+ "name": "isFocusable",
671
+ "type": {
672
+ "text": "boolean"
673
+ },
674
+ "default": "false",
675
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
676
+ "attribute": "isFocusable"
677
+ },
678
+ {
679
+ "kind": "field",
680
+ "name": "withBorder",
681
+ "type": {
682
+ "text": "boolean"
683
+ },
684
+ "default": "false",
685
+ "attribute": "withBorder"
686
+ }
687
+ ],
688
+ "attributes": [
689
+ {
690
+ "name": "appearance",
691
+ "type": {
692
+ "text": "'accent' | 'neutral' | undefined"
693
+ },
694
+ "default": "'neutral'",
695
+ "description": "Specify the appearance of the Avatar",
696
+ "fieldName": "appearance"
697
+ },
698
+ {
699
+ "name": "name",
700
+ "type": {
701
+ "text": "string | undefined"
702
+ },
703
+ "description": "Specify a name to display initials in the Avatar",
704
+ "fieldName": "name"
705
+ },
706
+ {
707
+ "name": "src",
708
+ "type": {
709
+ "text": "string | undefined"
710
+ },
711
+ "description": "Pass an image to the Avatar",
712
+ "fieldName": "src"
713
+ },
714
+ {
715
+ "name": "alt",
716
+ "type": {
717
+ "text": "string | undefined"
718
+ },
719
+ "description": "Specify alt for image",
720
+ "fieldName": "alt"
721
+ },
722
+ {
723
+ "name": "size",
724
+ "type": {
725
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
726
+ },
727
+ "default": "'md'",
728
+ "description": "Specify the size of the Avatar",
729
+ "fieldName": "size"
730
+ },
731
+ {
732
+ "name": "disabled",
733
+ "type": {
734
+ "text": "boolean | undefined"
735
+ },
736
+ "default": "false",
737
+ "description": "Specify if the Avatar is disabled",
738
+ "fieldName": "disabled"
739
+ },
740
+ {
741
+ "name": "shape",
742
+ "type": {
743
+ "text": "'circle' | 'square' | undefined"
744
+ },
745
+ "default": "'circle'",
746
+ "description": "Specify the shape of the Avatar",
747
+ "fieldName": "shape"
748
+ },
749
+ {
750
+ "name": "isInteractive",
751
+ "type": {
752
+ "text": "boolean"
753
+ },
754
+ "default": "false",
755
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
756
+ "fieldName": "isInteractive"
757
+ },
758
+ {
759
+ "name": "isFocusable",
760
+ "type": {
761
+ "text": "boolean"
762
+ },
763
+ "default": "false",
764
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
765
+ "fieldName": "isFocusable"
766
+ },
767
+ {
768
+ "name": "withBorder",
769
+ "type": {
770
+ "text": "boolean"
771
+ },
772
+ "default": "false",
773
+ "fieldName": "withBorder"
774
+ }
775
+ ],
776
+ "superclass": {
777
+ "name": "LitElement",
778
+ "package": "lit"
779
+ },
780
+ "tagName": "bm-avatar",
781
+ "customElement": true
782
+ }
783
+ ],
784
+ "exports": [
785
+ {
786
+ "kind": "js",
787
+ "name": "BmAvatar",
788
+ "declaration": {
789
+ "name": "BmAvatar",
790
+ "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
791
+ }
792
+ },
793
+ {
794
+ "kind": "custom-element-definition",
795
+ "name": "bm-avatar",
796
+ "declaration": {
797
+ "name": "BmAvatar",
798
+ "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
799
+ }
800
+ }
801
+ ]
802
+ },
803
+ {
804
+ "kind": "javascript-module",
805
+ "path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
806
+ "declarations": [
807
+ {
808
+ "kind": "variable",
809
+ "name": "AvatarGroupCtx"
810
+ }
811
+ ],
812
+ "exports": [
813
+ {
814
+ "kind": "js",
815
+ "name": "AvatarGroupCtx",
816
+ "declaration": {
817
+ "name": "AvatarGroupCtx",
818
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
819
+ }
820
+ }
821
+ ]
822
+ },
823
+ {
824
+ "kind": "javascript-module",
825
+ "path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
826
+ "declarations": [
827
+ {
828
+ "kind": "class",
829
+ "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.",
830
+ "name": "BmAvatarGroup",
831
+ "slots": [
832
+ {
833
+ "description": "Add Avatars to create a group",
834
+ "name": "default"
835
+ }
836
+ ],
837
+ "members": [
838
+ {
839
+ "kind": "field",
840
+ "name": "wrapping",
841
+ "type": {
842
+ "text": "boolean"
843
+ },
844
+ "default": "false",
845
+ "description": "Specify if the AvatarGroup wraps",
846
+ "attribute": "wrapping"
847
+ },
848
+ {
849
+ "kind": "field",
850
+ "name": "maxCount",
851
+ "type": {
852
+ "text": "number"
853
+ },
854
+ "default": "5",
855
+ "description": "Specify the max number of avatars displayed in the group.",
856
+ "attribute": "maxCount",
857
+ "reflects": true
577
858
  },
578
859
  {
579
860
  "kind": "field",
@@ -686,124 +967,147 @@
686
967
  },
687
968
  {
688
969
  "kind": "javascript-module",
689
- "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
970
+ "path": "libs/web-components/src/lib/Badge/Badge.ts",
690
971
  "declarations": [
691
972
  {
692
973
  "kind": "class",
693
- "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",
694
- "name": "BmBadgeDot",
695
- "slots": [
974
+ "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",
975
+ "name": "BmBadge",
976
+ "slots": [
696
977
  {
697
- "description": "Provide text for the BadgeDot",
978
+ "description": "Provide text for the Badge",
698
979
  "name": "default"
980
+ },
981
+ {
982
+ "description": "Specify a different icon for the Badge",
983
+ "name": "icon"
699
984
  }
700
985
  ],
701
986
  "members": [
987
+ {
988
+ "kind": "field",
989
+ "name": "appearance",
990
+ "type": {
991
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
992
+ },
993
+ "default": "'infoPrimary'",
994
+ "description": "Specify the appearance of the Badge",
995
+ "attribute": "appearance"
996
+ },
702
997
  {
703
998
  "kind": "field",
704
999
  "name": "theme",
705
1000
  "type": {
706
1001
  "text": "'light' | 'dark' | undefined"
707
1002
  },
708
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1003
+ "description": "Theme of the Badge",
709
1004
  "attribute": "theme"
710
1005
  },
711
1006
  {
712
1007
  "kind": "field",
713
- "name": "appearance",
1008
+ "name": "size",
714
1009
  "type": {
715
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1010
+ "text": "'sm' | 'md' | undefined"
716
1011
  },
717
- "default": "'infoPrimary'",
718
- "description": "Specify the appearance of the BadgeDot",
719
- "attribute": "appearance"
1012
+ "default": "'sm'",
1013
+ "description": "Specify the size of the Badge",
1014
+ "attribute": "size"
720
1015
  },
721
1016
  {
722
1017
  "kind": "field",
723
1018
  "name": "emphasis",
724
1019
  "type": {
725
- "text": "'strong' | 'subtle'"
1020
+ "text": "'strong' | 'medium' | 'subtle'"
726
1021
  },
727
1022
  "default": "'strong'",
728
- "description": "Specify the emphasis of the BadgeDot",
1023
+ "description": "Specify the emphasis of the Badge",
729
1024
  "attribute": "emphasis"
730
1025
  },
731
1026
  {
732
1027
  "kind": "field",
733
- "name": "overrideDotColor",
1028
+ "name": "hideIcon",
734
1029
  "type": {
735
- "text": "string | undefined"
1030
+ "text": "boolean | undefined"
736
1031
  },
737
- "description": "Overrides default dot color",
738
- "attribute": "overrideDotColor"
1032
+ "description": "Hides Badge icon",
1033
+ "attribute": "hideIcon"
739
1034
  }
740
1035
  ],
741
1036
  "attributes": [
1037
+ {
1038
+ "name": "appearance",
1039
+ "type": {
1040
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1041
+ },
1042
+ "default": "'infoPrimary'",
1043
+ "description": "Specify the appearance of the Badge",
1044
+ "fieldName": "appearance"
1045
+ },
742
1046
  {
743
1047
  "name": "theme",
744
1048
  "type": {
745
1049
  "text": "'light' | 'dark' | undefined"
746
1050
  },
747
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1051
+ "description": "Theme of the Badge",
748
1052
  "fieldName": "theme"
749
1053
  },
750
1054
  {
751
- "name": "appearance",
1055
+ "name": "size",
752
1056
  "type": {
753
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1057
+ "text": "'sm' | 'md' | undefined"
754
1058
  },
755
- "default": "'infoPrimary'",
756
- "description": "Specify the appearance of the BadgeDot",
757
- "fieldName": "appearance"
1059
+ "default": "'sm'",
1060
+ "description": "Specify the size of the Badge",
1061
+ "fieldName": "size"
758
1062
  },
759
1063
  {
760
1064
  "name": "emphasis",
761
1065
  "type": {
762
- "text": "'strong' | 'subtle'"
1066
+ "text": "'strong' | 'medium' | 'subtle'"
763
1067
  },
764
1068
  "default": "'strong'",
765
- "description": "Specify the emphasis of the BadgeDot",
1069
+ "description": "Specify the emphasis of the Badge",
766
1070
  "fieldName": "emphasis"
767
1071
  },
768
1072
  {
769
- "name": "overrideDotColor",
1073
+ "name": "hideIcon",
770
1074
  "type": {
771
- "text": "string | undefined"
1075
+ "text": "boolean | undefined"
772
1076
  },
773
- "description": "Overrides default dot color",
774
- "fieldName": "overrideDotColor"
1077
+ "description": "Hides Badge icon",
1078
+ "fieldName": "hideIcon"
775
1079
  }
776
1080
  ],
777
1081
  "superclass": {
778
1082
  "name": "LitElement",
779
1083
  "package": "lit"
780
1084
  },
781
- "tagName": "bm-badge-dot",
1085
+ "tagName": "bm-badge",
782
1086
  "customElement": true
783
1087
  }
784
1088
  ],
785
1089
  "exports": [
786
1090
  {
787
1091
  "kind": "js",
788
- "name": "BmBadgeDot",
1092
+ "name": "BmBadge",
789
1093
  "declaration": {
790
- "name": "BmBadgeDot",
791
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1094
+ "name": "BmBadge",
1095
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
792
1096
  }
793
1097
  },
794
1098
  {
795
1099
  "kind": "custom-element-definition",
796
- "name": "bm-badge-dot",
1100
+ "name": "bm-badge",
797
1101
  "declaration": {
798
- "name": "BmBadgeDot",
799
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1102
+ "name": "BmBadge",
1103
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
800
1104
  }
801
1105
  }
802
1106
  ]
803
1107
  },
804
1108
  {
805
1109
  "kind": "javascript-module",
806
- "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1110
+ "path": "libs/web-components/src/lib/Badge/index.ts",
807
1111
  "declarations": [],
808
1112
  "exports": [
809
1113
  {
@@ -811,154 +1115,131 @@
811
1115
  "name": "*",
812
1116
  "declaration": {
813
1117
  "name": "*",
814
- "package": "./BadgeDot"
1118
+ "package": "./Badge"
815
1119
  }
816
1120
  }
817
1121
  ]
818
1122
  },
819
1123
  {
820
1124
  "kind": "javascript-module",
821
- "path": "libs/web-components/src/lib/Badge/Badge.ts",
1125
+ "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
822
1126
  "declarations": [
823
1127
  {
824
1128
  "kind": "class",
825
- "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",
826
- "name": "BmBadge",
1129
+ "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",
1130
+ "name": "BmBadgeDot",
827
1131
  "slots": [
828
1132
  {
829
- "description": "Provide text for the Badge",
1133
+ "description": "Provide text for the BadgeDot",
830
1134
  "name": "default"
831
- },
832
- {
833
- "description": "Specify a different icon for the Badge",
834
- "name": "icon"
835
1135
  }
836
1136
  ],
837
1137
  "members": [
838
- {
839
- "kind": "field",
840
- "name": "appearance",
841
- "type": {
842
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
843
- },
844
- "default": "'infoPrimary'",
845
- "description": "Specify the appearance of the Badge",
846
- "attribute": "appearance"
847
- },
848
1138
  {
849
1139
  "kind": "field",
850
1140
  "name": "theme",
851
1141
  "type": {
852
1142
  "text": "'light' | 'dark' | undefined"
853
1143
  },
854
- "description": "Theme of the Badge",
1144
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
855
1145
  "attribute": "theme"
856
1146
  },
857
1147
  {
858
1148
  "kind": "field",
859
- "name": "size",
1149
+ "name": "appearance",
860
1150
  "type": {
861
- "text": "'sm' | 'md' | undefined"
1151
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
862
1152
  },
863
- "default": "'sm'",
864
- "description": "Specify the size of the Badge",
865
- "attribute": "size"
1153
+ "default": "'infoPrimary'",
1154
+ "description": "Specify the appearance of the BadgeDot",
1155
+ "attribute": "appearance"
866
1156
  },
867
1157
  {
868
1158
  "kind": "field",
869
1159
  "name": "emphasis",
870
1160
  "type": {
871
- "text": "'strong' | 'medium' | 'subtle'"
1161
+ "text": "'strong' | 'subtle'"
872
1162
  },
873
1163
  "default": "'strong'",
874
- "description": "Specify the emphasis of the Badge",
1164
+ "description": "Specify the emphasis of the BadgeDot",
875
1165
  "attribute": "emphasis"
876
1166
  },
877
1167
  {
878
1168
  "kind": "field",
879
- "name": "hideIcon",
1169
+ "name": "overrideDotColor",
880
1170
  "type": {
881
- "text": "boolean | undefined"
1171
+ "text": "string | undefined"
882
1172
  },
883
- "description": "Hides Badge icon",
884
- "attribute": "hideIcon"
1173
+ "description": "Overrides default dot color",
1174
+ "attribute": "overrideDotColor"
885
1175
  }
886
1176
  ],
887
1177
  "attributes": [
888
- {
889
- "name": "appearance",
890
- "type": {
891
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
892
- },
893
- "default": "'infoPrimary'",
894
- "description": "Specify the appearance of the Badge",
895
- "fieldName": "appearance"
896
- },
897
1178
  {
898
1179
  "name": "theme",
899
1180
  "type": {
900
1181
  "text": "'light' | 'dark' | undefined"
901
1182
  },
902
- "description": "Theme of the Badge",
1183
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
903
1184
  "fieldName": "theme"
904
1185
  },
905
1186
  {
906
- "name": "size",
1187
+ "name": "appearance",
907
1188
  "type": {
908
- "text": "'sm' | 'md' | undefined"
1189
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
909
1190
  },
910
- "default": "'sm'",
911
- "description": "Specify the size of the Badge",
912
- "fieldName": "size"
1191
+ "default": "'infoPrimary'",
1192
+ "description": "Specify the appearance of the BadgeDot",
1193
+ "fieldName": "appearance"
913
1194
  },
914
1195
  {
915
1196
  "name": "emphasis",
916
1197
  "type": {
917
- "text": "'strong' | 'medium' | 'subtle'"
1198
+ "text": "'strong' | 'subtle'"
918
1199
  },
919
1200
  "default": "'strong'",
920
- "description": "Specify the emphasis of the Badge",
1201
+ "description": "Specify the emphasis of the BadgeDot",
921
1202
  "fieldName": "emphasis"
922
1203
  },
923
1204
  {
924
- "name": "hideIcon",
1205
+ "name": "overrideDotColor",
925
1206
  "type": {
926
- "text": "boolean | undefined"
1207
+ "text": "string | undefined"
927
1208
  },
928
- "description": "Hides Badge icon",
929
- "fieldName": "hideIcon"
1209
+ "description": "Overrides default dot color",
1210
+ "fieldName": "overrideDotColor"
930
1211
  }
931
1212
  ],
932
1213
  "superclass": {
933
1214
  "name": "LitElement",
934
1215
  "package": "lit"
935
1216
  },
936
- "tagName": "bm-badge",
1217
+ "tagName": "bm-badge-dot",
937
1218
  "customElement": true
938
1219
  }
939
1220
  ],
940
1221
  "exports": [
941
1222
  {
942
1223
  "kind": "js",
943
- "name": "BmBadge",
1224
+ "name": "BmBadgeDot",
944
1225
  "declaration": {
945
- "name": "BmBadge",
946
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
1226
+ "name": "BmBadgeDot",
1227
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
947
1228
  }
948
1229
  },
949
1230
  {
950
1231
  "kind": "custom-element-definition",
951
- "name": "bm-badge",
1232
+ "name": "bm-badge-dot",
952
1233
  "declaration": {
953
- "name": "BmBadge",
954
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
1234
+ "name": "BmBadgeDot",
1235
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
955
1236
  }
956
1237
  }
957
1238
  ]
958
1239
  },
959
1240
  {
960
1241
  "kind": "javascript-module",
961
- "path": "libs/web-components/src/lib/Badge/index.ts",
1242
+ "path": "libs/web-components/src/lib/BadgeDot/index.ts",
962
1243
  "declarations": [],
963
1244
  "exports": [
964
1245
  {
@@ -966,7 +1247,7 @@
966
1247
  "name": "*",
967
1248
  "declaration": {
968
1249
  "name": "*",
969
- "package": "./Badge"
1250
+ "package": "./BadgeDot"
970
1251
  }
971
1252
  }
972
1253
  ]
@@ -1373,68 +1654,68 @@
1373
1654
  },
1374
1655
  {
1375
1656
  "kind": "javascript-module",
1376
- "path": "libs/web-components/src/lib/Alert/Alert.ts",
1657
+ "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
1658
+ "declarations": [
1659
+ {
1660
+ "kind": "variable",
1661
+ "name": "BreadcrumbGroupCtx"
1662
+ }
1663
+ ],
1664
+ "exports": [
1665
+ {
1666
+ "kind": "js",
1667
+ "name": "BreadcrumbGroupCtx",
1668
+ "declaration": {
1669
+ "name": "BreadcrumbGroupCtx",
1670
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
1671
+ }
1672
+ }
1673
+ ]
1674
+ },
1675
+ {
1676
+ "kind": "javascript-module",
1677
+ "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts",
1377
1678
  "declarations": [
1378
1679
  {
1379
1680
  "kind": "class",
1380
- "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",
1381
- "name": "BmAlert",
1681
+ "description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1682
+ "name": "BmBreadcrumbs",
1382
1683
  "slots": [
1383
1684
  {
1384
- "description": "Specify a different icon for the Alert",
1385
- "name": "icon"
1386
- },
1387
- {
1388
- "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
1389
- "name": "heading"
1390
- },
1391
- {
1392
- "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
1393
- "name": "body"
1394
- },
1395
- {
1396
- "description": "Specify if actions display on the Alert",
1397
- "name": "actions"
1685
+ "description": "Pass items to the Breadcrumb",
1686
+ "name": "default"
1398
1687
  }
1399
1688
  ],
1400
1689
  "members": [
1401
1690
  {
1402
1691
  "kind": "field",
1403
- "name": "heading",
1692
+ "name": "wrap",
1404
1693
  "type": {
1405
- "text": "string | undefined"
1694
+ "text": "boolean"
1406
1695
  },
1407
- "description": "Specify the heading text for Alert",
1408
- "attribute": "heading"
1696
+ "default": "true",
1697
+ "description": "Specify if items wrap or collapse to an ellipsis",
1698
+ "attribute": "wrap"
1409
1699
  },
1410
1700
  {
1411
1701
  "kind": "field",
1412
- "name": "body",
1702
+ "name": "itemsBeforeCollapse",
1413
1703
  "type": {
1414
- "text": "string | undefined"
1704
+ "text": "number"
1415
1705
  },
1416
- "description": "Specify the body text for Alert",
1417
- "attribute": "body"
1706
+ "default": "1",
1707
+ "description": "Specify how many items show before ellipsis",
1708
+ "attribute": "itemsBeforeCollapse"
1418
1709
  },
1419
1710
  {
1420
1711
  "kind": "field",
1421
- "name": "size",
1712
+ "name": "itemsAfterCollapse",
1422
1713
  "type": {
1423
- "text": "'sm' | 'md'"
1714
+ "text": "number"
1424
1715
  },
1425
- "default": "'sm'",
1426
- "description": "Specify the size of the Alert",
1427
- "attribute": "size"
1428
- },
1429
- {
1430
- "kind": "field",
1431
- "name": "fullWidth",
1432
- "type": {
1433
- "text": "boolean"
1434
- },
1435
- "default": "false",
1436
- "description": "Specify if the Alert has no border radius",
1437
- "attribute": "fullWidth"
1716
+ "default": "1",
1717
+ "description": "Specify how many items show after ellipsis",
1718
+ "attribute": "itemsAfterCollapse"
1438
1719
  },
1439
1720
  {
1440
1721
  "kind": "field",
@@ -1442,204 +1723,217 @@
1442
1723
  "type": {
1443
1724
  "text": "'light' | 'dark' | undefined"
1444
1725
  },
1445
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1726
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1446
1727
  "attribute": "theme"
1447
- },
1448
- {
1449
- "kind": "field",
1450
- "name": "appearance",
1451
- "type": {
1452
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1453
- },
1454
- "default": "'infoPrimary'",
1455
- "description": "Specify the appearance of the Alert",
1456
- "attribute": "appearance"
1457
- },
1458
- {
1459
- "kind": "field",
1460
- "name": "hidden",
1461
- "type": {
1462
- "text": "boolean"
1463
- },
1464
- "default": "false",
1465
- "description": "Specify if the Alert is hidden",
1466
- "attribute": "hidden"
1467
- },
1728
+ }
1729
+ ],
1730
+ "attributes": [
1468
1731
  {
1469
- "kind": "field",
1470
- "name": "hideIcon",
1732
+ "name": "wrap",
1471
1733
  "type": {
1472
1734
  "text": "boolean"
1473
1735
  },
1474
- "default": "false",
1475
- "description": "Specify if the icon displays on the Alert",
1476
- "attribute": "hideIcon"
1736
+ "default": "true",
1737
+ "description": "Specify if items wrap or collapse to an ellipsis",
1738
+ "fieldName": "wrap"
1477
1739
  },
1478
1740
  {
1479
- "kind": "field",
1480
- "name": "dismissible",
1741
+ "name": "itemsBeforeCollapse",
1481
1742
  "type": {
1482
- "text": "boolean"
1743
+ "text": "number"
1483
1744
  },
1484
- "default": "false",
1485
- "description": "Specify if the Alert can be dismissed",
1486
- "attribute": "dismissible"
1745
+ "default": "1",
1746
+ "description": "Specify how many items show before ellipsis",
1747
+ "fieldName": "itemsBeforeCollapse"
1487
1748
  },
1488
1749
  {
1489
- "kind": "field",
1490
- "name": "disableAutoFocus",
1750
+ "name": "itemsAfterCollapse",
1491
1751
  "type": {
1492
- "text": "boolean"
1752
+ "text": "number"
1493
1753
  },
1494
- "default": "false",
1495
- "description": "Prevent autofocus on show",
1496
- "attribute": "disableAutoFocus"
1754
+ "default": "1",
1755
+ "description": "Specify how many items show after ellipsis",
1756
+ "fieldName": "itemsAfterCollapse"
1497
1757
  },
1498
1758
  {
1499
- "kind": "field",
1500
- "name": "disableCloseOnEscape",
1759
+ "name": "theme",
1501
1760
  "type": {
1502
- "text": "boolean"
1761
+ "text": "'light' | 'dark' | undefined"
1503
1762
  },
1504
- "default": "false",
1505
- "description": "Prevent Escape from closing",
1506
- "attribute": "disableCloseOnEscape"
1763
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1764
+ "fieldName": "theme"
1507
1765
  }
1508
1766
  ],
1509
- "events": [
1767
+ "superclass": {
1768
+ "name": "LitElement",
1769
+ "package": "lit"
1770
+ },
1771
+ "tagName": "bm-breadcrumb",
1772
+ "customElement": true
1773
+ }
1774
+ ],
1775
+ "exports": [
1776
+ {
1777
+ "kind": "js",
1778
+ "name": "BmBreadcrumbs",
1779
+ "declaration": {
1780
+ "name": "BmBreadcrumbs",
1781
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1782
+ }
1783
+ },
1784
+ {
1785
+ "kind": "custom-element-definition",
1786
+ "name": "bm-breadcrumb",
1787
+ "declaration": {
1788
+ "name": "BmBreadcrumbs",
1789
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1790
+ }
1791
+ }
1792
+ ]
1793
+ },
1794
+ {
1795
+ "kind": "javascript-module",
1796
+ "path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
1797
+ "declarations": [
1798
+ {
1799
+ "kind": "class",
1800
+ "description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** ",
1801
+ "name": "BmBreadcrumbsItem",
1802
+ "slots": [
1510
1803
  {
1511
- "description": "Dispatched when the Alert has been dismissed",
1512
- "name": "bm-dismiss"
1804
+ "description": "Pass text to an item",
1805
+ "name": "default"
1806
+ },
1807
+ {
1808
+ "description": "Pass icon to an item",
1809
+ "name": "icon"
1513
1810
  }
1514
1811
  ],
1515
- "attributes": [
1812
+ "members": [
1516
1813
  {
1517
- "name": "heading",
1814
+ "kind": "field",
1815
+ "name": "href",
1518
1816
  "type": {
1519
1817
  "text": "string | undefined"
1520
1818
  },
1521
- "description": "Specify the heading text for Alert",
1522
- "fieldName": "heading"
1819
+ "description": "Pass href to an item",
1820
+ "attribute": "href"
1523
1821
  },
1524
1822
  {
1525
- "name": "body",
1823
+ "kind": "field",
1824
+ "name": "clickable",
1526
1825
  "type": {
1527
- "text": "string | undefined"
1826
+ "text": "boolean"
1528
1827
  },
1529
- "description": "Specify the body text for Alert",
1530
- "fieldName": "body"
1828
+ "default": "false",
1829
+ "description": "Specify if the item is interactive without an href",
1830
+ "attribute": "clickable"
1531
1831
  },
1532
1832
  {
1533
- "name": "size",
1833
+ "kind": "field",
1834
+ "name": "truncationWidth",
1534
1835
  "type": {
1535
- "text": "'sm' | 'md'"
1836
+ "text": "string | undefined"
1536
1837
  },
1537
- "default": "'sm'",
1538
- "description": "Specify the size of the Alert",
1539
- "fieldName": "size"
1838
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1839
+ "attribute": "truncationWidth"
1540
1840
  },
1541
1841
  {
1542
- "name": "fullWidth",
1842
+ "kind": "field",
1843
+ "name": "isCurrent",
1543
1844
  "type": {
1544
1845
  "text": "boolean"
1545
1846
  },
1546
1847
  "default": "false",
1547
- "description": "Specify if the Alert has no border radius",
1548
- "fieldName": "fullWidth"
1549
- },
1550
- {
1551
- "name": "theme",
1552
- "type": {
1553
- "text": "'light' | 'dark' | undefined"
1554
- },
1555
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1556
- "fieldName": "theme"
1848
+ "description": "Specify explicitly if the item is the last one",
1849
+ "attribute": "isCurrent",
1850
+ "reflects": true
1557
1851
  },
1558
1852
  {
1559
- "name": "appearance",
1853
+ "kind": "field",
1854
+ "name": "isCollapsed",
1560
1855
  "type": {
1561
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1856
+ "text": "boolean"
1562
1857
  },
1563
- "default": "'infoPrimary'",
1564
- "description": "Specify the appearance of the Alert",
1565
- "fieldName": "appearance"
1566
- },
1858
+ "default": "false",
1859
+ "attribute": "isCollapsed",
1860
+ "reflects": true
1861
+ }
1862
+ ],
1863
+ "attributes": [
1567
1864
  {
1568
- "name": "hidden",
1865
+ "name": "href",
1569
1866
  "type": {
1570
- "text": "boolean"
1867
+ "text": "string | undefined"
1571
1868
  },
1572
- "default": "false",
1573
- "description": "Specify if the Alert is hidden",
1574
- "fieldName": "hidden"
1869
+ "description": "Pass href to an item",
1870
+ "fieldName": "href"
1575
1871
  },
1576
1872
  {
1577
- "name": "hideIcon",
1873
+ "name": "clickable",
1578
1874
  "type": {
1579
1875
  "text": "boolean"
1580
1876
  },
1581
1877
  "default": "false",
1582
- "description": "Specify if the icon displays on the Alert",
1583
- "fieldName": "hideIcon"
1878
+ "description": "Specify if the item is interactive without an href",
1879
+ "fieldName": "clickable"
1584
1880
  },
1585
1881
  {
1586
- "name": "dismissible",
1882
+ "name": "truncationWidth",
1587
1883
  "type": {
1588
- "text": "boolean"
1884
+ "text": "string | undefined"
1589
1885
  },
1590
- "default": "false",
1591
- "description": "Specify if the Alert can be dismissed",
1592
- "fieldName": "dismissible"
1886
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1887
+ "fieldName": "truncationWidth"
1593
1888
  },
1594
1889
  {
1595
- "name": "disableAutoFocus",
1890
+ "name": "isCurrent",
1596
1891
  "type": {
1597
1892
  "text": "boolean"
1598
1893
  },
1599
1894
  "default": "false",
1600
- "description": "Prevent autofocus on show",
1601
- "fieldName": "disableAutoFocus"
1895
+ "description": "Specify explicitly if the item is the last one",
1896
+ "fieldName": "isCurrent"
1602
1897
  },
1603
1898
  {
1604
- "name": "disableCloseOnEscape",
1899
+ "name": "isCollapsed",
1605
1900
  "type": {
1606
1901
  "text": "boolean"
1607
1902
  },
1608
1903
  "default": "false",
1609
- "description": "Prevent Escape from closing",
1610
- "fieldName": "disableCloseOnEscape"
1904
+ "fieldName": "isCollapsed"
1611
1905
  }
1612
1906
  ],
1613
1907
  "superclass": {
1614
1908
  "name": "LitElement",
1615
1909
  "package": "lit"
1616
1910
  },
1617
- "tagName": "bm-alert",
1911
+ "tagName": "bm-breadcrumb-item",
1618
1912
  "customElement": true
1619
1913
  }
1620
1914
  ],
1621
1915
  "exports": [
1622
1916
  {
1623
1917
  "kind": "js",
1624
- "name": "BmAlert",
1918
+ "name": "BmBreadcrumbsItem",
1625
1919
  "declaration": {
1626
- "name": "BmAlert",
1627
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1920
+ "name": "BmBreadcrumbsItem",
1921
+ "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1628
1922
  }
1629
1923
  },
1630
1924
  {
1631
1925
  "kind": "custom-element-definition",
1632
- "name": "bm-alert",
1926
+ "name": "bm-breadcrumb-item",
1633
1927
  "declaration": {
1634
- "name": "BmAlert",
1635
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1928
+ "name": "BmBreadcrumbsItem",
1929
+ "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1636
1930
  }
1637
1931
  }
1638
1932
  ]
1639
1933
  },
1640
1934
  {
1641
1935
  "kind": "javascript-module",
1642
- "path": "libs/web-components/src/lib/Alert/index.ts",
1936
+ "path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
1643
1937
  "declarations": [],
1644
1938
  "exports": [
1645
1939
  {
@@ -1647,487 +1941,193 @@
1647
1941
  "name": "*",
1648
1942
  "declaration": {
1649
1943
  "name": "*",
1650
- "package": "./Alert"
1944
+ "package": "./Breadcrumbs"
1945
+ }
1946
+ },
1947
+ {
1948
+ "kind": "js",
1949
+ "name": "*",
1950
+ "declaration": {
1951
+ "name": "*",
1952
+ "package": "./BreadcrumbsItem"
1651
1953
  }
1652
1954
  }
1653
1955
  ]
1654
1956
  },
1655
1957
  {
1656
1958
  "kind": "javascript-module",
1657
- "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
1658
- "declarations": [
1659
- {
1660
- "kind": "variable",
1661
- "name": "BreadcrumbGroupCtx"
1662
- }
1663
- ],
1664
- "exports": [
1665
- {
1666
- "kind": "js",
1667
- "name": "BreadcrumbGroupCtx",
1668
- "declaration": {
1669
- "name": "BreadcrumbGroupCtx",
1670
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
1671
- }
1672
- }
1673
- ]
1674
- },
1675
- {
1676
- "kind": "javascript-module",
1677
- "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts",
1959
+ "path": "libs/web-components/src/lib/Button/Button.ts",
1678
1960
  "declarations": [
1679
1961
  {
1680
1962
  "kind": "class",
1681
- "description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1682
- "name": "BmBreadcrumbs",
1963
+ "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** ",
1964
+ "name": "BmButton",
1683
1965
  "slots": [
1684
1966
  {
1685
- "description": "Pass items to the Breadcrumb",
1967
+ "description": "Provide content for the Button",
1686
1968
  "name": "default"
1969
+ },
1970
+ {
1971
+ "description": "Specify if the Button displays icon before the text",
1972
+ "name": "iconBefore"
1973
+ },
1974
+ {
1975
+ "description": "Specify if the Button displays icon after the text",
1976
+ "name": "iconAfter"
1687
1977
  }
1688
1978
  ],
1689
1979
  "members": [
1690
1980
  {
1691
1981
  "kind": "field",
1692
- "name": "wrap",
1982
+ "name": "formAssociated",
1693
1983
  "type": {
1694
1984
  "text": "boolean"
1695
1985
  },
1696
- "default": "true",
1697
- "description": "Specify if items wrap or collapse to an ellipsis",
1698
- "attribute": "wrap"
1986
+ "static": true,
1987
+ "default": "true"
1699
1988
  },
1700
1989
  {
1701
1990
  "kind": "field",
1702
- "name": "itemsBeforeCollapse",
1991
+ "name": "appearance",
1703
1992
  "type": {
1704
- "text": "number"
1993
+ "text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
1705
1994
  },
1706
- "default": "1",
1707
- "description": "Specify how many items show before ellipsis",
1708
- "attribute": "itemsBeforeCollapse"
1995
+ "default": "'accent'",
1996
+ "description": "Specify the appearance of a Button",
1997
+ "attribute": "appearance"
1709
1998
  },
1710
1999
  {
1711
2000
  "kind": "field",
1712
- "name": "itemsAfterCollapse",
2001
+ "name": "kind",
1713
2002
  "type": {
1714
- "text": "number"
2003
+ "text": "'filled' | 'outline' | 'ghost' | 'bare'"
1715
2004
  },
1716
- "default": "1",
1717
- "description": "Specify how many items show after ellipsis",
1718
- "attribute": "itemsAfterCollapse"
2005
+ "default": "'filled'",
2006
+ "description": "Specify the kind of Button",
2007
+ "attribute": "kind"
1719
2008
  },
1720
2009
  {
1721
2010
  "kind": "field",
1722
- "name": "theme",
1723
- "type": {
1724
- "text": "'light' | 'dark' | undefined"
1725
- },
1726
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1727
- "attribute": "theme"
1728
- }
1729
- ],
1730
- "attributes": [
1731
- {
1732
- "name": "wrap",
2011
+ "name": "size",
1733
2012
  "type": {
1734
- "text": "boolean"
2013
+ "text": "'sm' | 'md' | 'lg'"
1735
2014
  },
1736
- "default": "true",
1737
- "description": "Specify if items wrap or collapse to an ellipsis",
1738
- "fieldName": "wrap"
2015
+ "default": "'md'",
2016
+ "description": "Specify the size of a Button",
2017
+ "attribute": "size"
1739
2018
  },
1740
2019
  {
1741
- "name": "itemsBeforeCollapse",
2020
+ "kind": "field",
2021
+ "name": "disabled",
1742
2022
  "type": {
1743
- "text": "number"
2023
+ "text": "boolean"
1744
2024
  },
1745
- "default": "1",
1746
- "description": "Specify how many items show before ellipsis",
1747
- "fieldName": "itemsBeforeCollapse"
2025
+ "default": "false",
2026
+ "description": "Specify if the Button is disabled",
2027
+ "attribute": "disabled"
1748
2028
  },
1749
2029
  {
1750
- "name": "itemsAfterCollapse",
2030
+ "kind": "field",
2031
+ "name": "fluid",
1751
2032
  "type": {
1752
- "text": "number"
2033
+ "text": "boolean"
1753
2034
  },
1754
- "default": "1",
1755
- "description": "Specify how many items show after ellipsis",
1756
- "fieldName": "itemsAfterCollapse"
2035
+ "default": "false",
2036
+ "description": "Specify if Button is fluid",
2037
+ "attribute": "fluid"
1757
2038
  },
1758
2039
  {
1759
- "name": "theme",
2040
+ "kind": "field",
2041
+ "name": "width",
1760
2042
  "type": {
1761
- "text": "'light' | 'dark' | undefined"
2043
+ "text": "string | undefined"
1762
2044
  },
1763
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1764
- "fieldName": "theme"
1765
- }
1766
- ],
1767
- "superclass": {
1768
- "name": "LitElement",
1769
- "package": "lit"
1770
- },
1771
- "tagName": "bm-breadcrumb",
1772
- "customElement": true
1773
- }
1774
- ],
1775
- "exports": [
1776
- {
1777
- "kind": "js",
1778
- "name": "BmBreadcrumbs",
1779
- "declaration": {
1780
- "name": "BmBreadcrumbs",
1781
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1782
- }
1783
- },
1784
- {
1785
- "kind": "custom-element-definition",
1786
- "name": "bm-breadcrumb",
1787
- "declaration": {
1788
- "name": "BmBreadcrumbs",
1789
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1790
- }
1791
- }
1792
- ]
1793
- },
1794
- {
1795
- "kind": "javascript-module",
1796
- "path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
1797
- "declarations": [
1798
- {
1799
- "kind": "class",
1800
- "description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** ",
1801
- "name": "BmBreadcrumbsItem",
1802
- "slots": [
1803
- {
1804
- "description": "Pass text to an item",
1805
- "name": "default"
2045
+ "description": "Specify the width of a Button",
2046
+ "attribute": "width"
1806
2047
  },
1807
- {
1808
- "description": "Pass icon to an item",
1809
- "name": "icon"
1810
- }
1811
- ],
1812
- "members": [
1813
2048
  {
1814
2049
  "kind": "field",
1815
- "name": "href",
2050
+ "name": "height",
1816
2051
  "type": {
1817
2052
  "text": "string | undefined"
1818
2053
  },
1819
- "description": "Pass href to an item",
1820
- "attribute": "href"
2054
+ "description": "Specify the height of a Button",
2055
+ "attribute": "height"
1821
2056
  },
1822
2057
  {
1823
2058
  "kind": "field",
1824
- "name": "clickable",
2059
+ "name": "theme",
1825
2060
  "type": {
1826
- "text": "boolean"
2061
+ "text": "'light' | 'dark' | undefined"
1827
2062
  },
1828
- "default": "false",
1829
- "description": "Specify if the item is interactive without an href",
1830
- "attribute": "clickable"
2063
+ "description": "Specify the theme of the Button",
2064
+ "attribute": "theme"
1831
2065
  },
1832
2066
  {
1833
2067
  "kind": "field",
1834
- "name": "truncationWidth",
2068
+ "name": "iconOnly",
1835
2069
  "type": {
1836
- "text": "string | undefined"
2070
+ "text": "boolean | undefined"
1837
2071
  },
1838
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1839
- "attribute": "truncationWidth"
2072
+ "description": "Specify if the icon displays without text",
2073
+ "attribute": "iconOnly"
1840
2074
  },
1841
2075
  {
1842
2076
  "kind": "field",
1843
- "name": "isCurrent",
2077
+ "name": "type",
1844
2078
  "type": {
1845
- "text": "boolean"
2079
+ "text": "string"
1846
2080
  },
1847
- "default": "false",
1848
- "description": "Specify explicitly if the item is the last one",
1849
- "attribute": "isCurrent",
1850
- "reflects": true
2081
+ "default": "'button'",
2082
+ "attribute": "type"
1851
2083
  },
1852
2084
  {
1853
2085
  "kind": "field",
1854
- "name": "isCollapsed",
2086
+ "name": "formContext",
1855
2087
  "type": {
1856
- "text": "boolean"
1857
- },
1858
- "default": "false",
1859
- "attribute": "isCollapsed",
1860
- "reflects": true
2088
+ "text": "BmFormContext"
2089
+ }
1861
2090
  }
1862
2091
  ],
1863
2092
  "attributes": [
1864
2093
  {
1865
- "name": "href",
2094
+ "name": "appearance",
1866
2095
  "type": {
1867
- "text": "string | undefined"
2096
+ "text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
1868
2097
  },
1869
- "description": "Pass href to an item",
1870
- "fieldName": "href"
2098
+ "default": "'accent'",
2099
+ "description": "Specify the appearance of a Button",
2100
+ "fieldName": "appearance"
1871
2101
  },
1872
2102
  {
1873
- "name": "clickable",
2103
+ "name": "kind",
1874
2104
  "type": {
1875
- "text": "boolean"
2105
+ "text": "'filled' | 'outline' | 'ghost' | 'bare'"
1876
2106
  },
1877
- "default": "false",
1878
- "description": "Specify if the item is interactive without an href",
1879
- "fieldName": "clickable"
2107
+ "default": "'filled'",
2108
+ "description": "Specify the kind of Button",
2109
+ "fieldName": "kind"
1880
2110
  },
1881
2111
  {
1882
- "name": "truncationWidth",
2112
+ "name": "size",
1883
2113
  "type": {
1884
- "text": "string | undefined"
2114
+ "text": "'sm' | 'md' | 'lg'"
1885
2115
  },
1886
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1887
- "fieldName": "truncationWidth"
2116
+ "default": "'md'",
2117
+ "description": "Specify the size of a Button",
2118
+ "fieldName": "size"
1888
2119
  },
1889
2120
  {
1890
- "name": "isCurrent",
2121
+ "name": "disabled",
1891
2122
  "type": {
1892
2123
  "text": "boolean"
1893
2124
  },
1894
2125
  "default": "false",
1895
- "description": "Specify explicitly if the item is the last one",
1896
- "fieldName": "isCurrent"
2126
+ "description": "Specify if the Button is disabled",
2127
+ "fieldName": "disabled"
1897
2128
  },
1898
2129
  {
1899
- "name": "isCollapsed",
1900
- "type": {
1901
- "text": "boolean"
1902
- },
1903
- "default": "false",
1904
- "fieldName": "isCollapsed"
1905
- }
1906
- ],
1907
- "superclass": {
1908
- "name": "LitElement",
1909
- "package": "lit"
1910
- },
1911
- "tagName": "bm-breadcrumb-item",
1912
- "customElement": true
1913
- }
1914
- ],
1915
- "exports": [
1916
- {
1917
- "kind": "js",
1918
- "name": "BmBreadcrumbsItem",
1919
- "declaration": {
1920
- "name": "BmBreadcrumbsItem",
1921
- "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1922
- }
1923
- },
1924
- {
1925
- "kind": "custom-element-definition",
1926
- "name": "bm-breadcrumb-item",
1927
- "declaration": {
1928
- "name": "BmBreadcrumbsItem",
1929
- "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1930
- }
1931
- }
1932
- ]
1933
- },
1934
- {
1935
- "kind": "javascript-module",
1936
- "path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
1937
- "declarations": [],
1938
- "exports": [
1939
- {
1940
- "kind": "js",
1941
- "name": "*",
1942
- "declaration": {
1943
- "name": "*",
1944
- "package": "./Breadcrumbs"
1945
- }
1946
- },
1947
- {
1948
- "kind": "js",
1949
- "name": "*",
1950
- "declaration": {
1951
- "name": "*",
1952
- "package": "./BreadcrumbsItem"
1953
- }
1954
- }
1955
- ]
1956
- },
1957
- {
1958
- "kind": "javascript-module",
1959
- "path": "libs/web-components/src/lib/Button/Button.ts",
1960
- "declarations": [
1961
- {
1962
- "kind": "class",
1963
- "description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** ",
1964
- "name": "BmButton",
1965
- "slots": [
1966
- {
1967
- "description": "Provide content for the Button",
1968
- "name": "default"
1969
- },
1970
- {
1971
- "description": "Specify if the Button displays icon before the text",
1972
- "name": "iconBefore"
1973
- },
1974
- {
1975
- "description": "Specify if the Button displays icon after the text",
1976
- "name": "iconAfter"
1977
- }
1978
- ],
1979
- "members": [
1980
- {
1981
- "kind": "field",
1982
- "name": "formAssociated",
1983
- "type": {
1984
- "text": "boolean"
1985
- },
1986
- "static": true,
1987
- "default": "true"
1988
- },
1989
- {
1990
- "kind": "field",
1991
- "name": "appearance",
1992
- "type": {
1993
- "text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
1994
- },
1995
- "default": "'accent'",
1996
- "description": "Specify the appearance of a Button",
1997
- "attribute": "appearance"
1998
- },
1999
- {
2000
- "kind": "field",
2001
- "name": "kind",
2002
- "type": {
2003
- "text": "'filled' | 'outline' | 'ghost' | 'bare'"
2004
- },
2005
- "default": "'filled'",
2006
- "description": "Specify the kind of Button",
2007
- "attribute": "kind"
2008
- },
2009
- {
2010
- "kind": "field",
2011
- "name": "size",
2012
- "type": {
2013
- "text": "'sm' | 'md' | 'lg'"
2014
- },
2015
- "default": "'md'",
2016
- "description": "Specify the size of a Button",
2017
- "attribute": "size"
2018
- },
2019
- {
2020
- "kind": "field",
2021
- "name": "disabled",
2022
- "type": {
2023
- "text": "boolean"
2024
- },
2025
- "default": "false",
2026
- "description": "Specify if the Button is disabled",
2027
- "attribute": "disabled"
2028
- },
2029
- {
2030
- "kind": "field",
2031
- "name": "fluid",
2032
- "type": {
2033
- "text": "boolean"
2034
- },
2035
- "default": "false",
2036
- "description": "Specify if Button is fluid",
2037
- "attribute": "fluid"
2038
- },
2039
- {
2040
- "kind": "field",
2041
- "name": "width",
2042
- "type": {
2043
- "text": "string | undefined"
2044
- },
2045
- "description": "Specify the width of a Button",
2046
- "attribute": "width"
2047
- },
2048
- {
2049
- "kind": "field",
2050
- "name": "height",
2051
- "type": {
2052
- "text": "string | undefined"
2053
- },
2054
- "description": "Specify the height of a Button",
2055
- "attribute": "height"
2056
- },
2057
- {
2058
- "kind": "field",
2059
- "name": "theme",
2060
- "type": {
2061
- "text": "'light' | 'dark' | undefined"
2062
- },
2063
- "description": "Specify the theme of the Button",
2064
- "attribute": "theme"
2065
- },
2066
- {
2067
- "kind": "field",
2068
- "name": "iconOnly",
2069
- "type": {
2070
- "text": "boolean | undefined"
2071
- },
2072
- "description": "Specify if the icon displays without text",
2073
- "attribute": "iconOnly"
2074
- },
2075
- {
2076
- "kind": "field",
2077
- "name": "type",
2078
- "type": {
2079
- "text": "string"
2080
- },
2081
- "default": "'button'",
2082
- "attribute": "type"
2083
- },
2084
- {
2085
- "kind": "field",
2086
- "name": "formContext",
2087
- "type": {
2088
- "text": "BmFormContext"
2089
- }
2090
- }
2091
- ],
2092
- "attributes": [
2093
- {
2094
- "name": "appearance",
2095
- "type": {
2096
- "text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
2097
- },
2098
- "default": "'accent'",
2099
- "description": "Specify the appearance of a Button",
2100
- "fieldName": "appearance"
2101
- },
2102
- {
2103
- "name": "kind",
2104
- "type": {
2105
- "text": "'filled' | 'outline' | 'ghost' | 'bare'"
2106
- },
2107
- "default": "'filled'",
2108
- "description": "Specify the kind of Button",
2109
- "fieldName": "kind"
2110
- },
2111
- {
2112
- "name": "size",
2113
- "type": {
2114
- "text": "'sm' | 'md' | 'lg'"
2115
- },
2116
- "default": "'md'",
2117
- "description": "Specify the size of a Button",
2118
- "fieldName": "size"
2119
- },
2120
- {
2121
- "name": "disabled",
2122
- "type": {
2123
- "text": "boolean"
2124
- },
2125
- "default": "false",
2126
- "description": "Specify if the Button is disabled",
2127
- "fieldName": "disabled"
2128
- },
2129
- {
2130
- "name": "fluid",
2130
+ "name": "fluid",
2131
2131
  "type": {
2132
2132
  "text": "boolean"
2133
2133
  },
@@ -8287,78 +8287,68 @@
8287
8287
  },
8288
8288
  {
8289
8289
  "kind": "javascript-module",
8290
- "path": "libs/web-components/src/lib/wip/TextArea/TextArea.ts",
8290
+ "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
8291
8291
  "declarations": [
8292
8292
  {
8293
8293
  "kind": "class",
8294
- "description": "### Attributes:\n- **rows** - Specify the height of TextArea\n- **cols** - Specify the width of TextArea\n- **placeholder** - Specify placeholder text for TextArea\n- **required** - Specify if TextArea is a required input\n- **hideRequiredMarker** - Specify if the TextArea displays with an asterisk\n- **error** - Specify error text and display error state of a TextArea\n- **readOnly** - Specify if TextArea displays in a read-only state\n- **disabled** - Specify if TextArea displays in a disabled state\n- **fluid** - Specify if TextArea is fluid\n- **width** - Specify the width of TextArea\n- **hideResize** - Specify if TextArea can be manually resized\n- **maxCount** - Specify the maximum character count for the TextArea\n- **autoResize** - Specify if the TextArea automatically resizes to fit the text\n- **theme** - Specify the theme of the TextArea. By default it inherits the theme from the parent",
8295
- "name": "BmTextArea",
8294
+ "description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
8295
+ "name": "BmSwitch",
8296
8296
  "slots": [
8297
8297
  {
8298
- "description": "Specify the label for TextArea",
8299
- "name": "label"
8298
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8299
+ "name": "onText"
8300
8300
  },
8301
8301
  {
8302
- "description": "Specify the helper text for TextArea",
8303
- "name": "helper-text"
8302
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8303
+ "name": "offText"
8304
8304
  }
8305
8305
  ],
8306
8306
  "members": [
8307
8307
  {
8308
8308
  "kind": "field",
8309
- "name": "rows",
8309
+ "name": "inputChoiceGroupContext",
8310
8310
  "type": {
8311
- "text": "number | undefined"
8312
- },
8313
- "description": "Specify the height of TextArea",
8314
- "attribute": "rows"
8311
+ "text": "InputChoiceGroupContextProps"
8312
+ }
8315
8313
  },
8316
8314
  {
8317
8315
  "kind": "field",
8318
- "name": "cols",
8316
+ "name": "onText",
8319
8317
  "type": {
8320
- "text": "number | undefined"
8318
+ "text": "string | undefined"
8321
8319
  },
8322
- "description": "Specify the width of TextArea",
8323
- "attribute": "cols"
8320
+ "default": "undefined",
8321
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8322
+ "attribute": "onText"
8324
8323
  },
8325
8324
  {
8326
8325
  "kind": "field",
8327
- "name": "placeholder",
8326
+ "name": "offText",
8328
8327
  "type": {
8329
8328
  "text": "string | undefined"
8330
8329
  },
8331
- "description": "Specify placeholder text for TextArea",
8332
- "attribute": "placeholder"
8330
+ "default": "undefined",
8331
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8332
+ "attribute": "offText"
8333
8333
  },
8334
8334
  {
8335
8335
  "kind": "field",
8336
- "name": "required",
8336
+ "name": "theme",
8337
8337
  "type": {
8338
- "text": "boolean"
8338
+ "text": "ThemeTypes | undefined"
8339
8339
  },
8340
- "default": "false",
8341
- "description": "Specify if TextArea is a required input",
8342
- "attribute": "required"
8340
+ "default": "undefined",
8341
+ "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
8343
8342
  },
8344
8343
  {
8345
8344
  "kind": "field",
8346
- "name": "hideRequiredMarker",
8345
+ "name": "textPosition",
8347
8346
  "type": {
8348
- "text": "boolean"
8349
- },
8350
- "default": "false",
8351
- "description": "Specify if the TextArea displays with an asterisk",
8352
- "attribute": "hideRequiredMarker"
8353
- },
8354
- {
8355
- "kind": "field",
8356
- "name": "error",
8357
- "type": {
8358
- "text": "string | undefined"
8347
+ "text": "'before' | 'after'"
8359
8348
  },
8360
- "description": "Specify error text and display error state of a TextArea",
8361
- "attribute": "error"
8349
+ "default": "'after'",
8350
+ "description": "Specify the position of the side label",
8351
+ "attribute": "textPosition"
8362
8352
  },
8363
8353
  {
8364
8354
  "kind": "field",
@@ -8367,7 +8357,7 @@
8367
8357
  "text": "boolean"
8368
8358
  },
8369
8359
  "default": "false",
8370
- "description": "Specify if TextArea displays in a read-only state",
8360
+ "description": "Specify if Switch displays in a read-only state",
8371
8361
  "attribute": "readOnly"
8372
8362
  },
8373
8363
  {
@@ -8377,845 +8367,863 @@
8377
8367
  "text": "boolean"
8378
8368
  },
8379
8369
  "default": "false",
8380
- "description": "Specify if TextArea displays in a disabled state",
8370
+ "description": "Specify if Switch displays in a disabled state",
8381
8371
  "attribute": "disabled"
8382
8372
  },
8383
8373
  {
8384
8374
  "kind": "field",
8385
- "name": "fluid",
8375
+ "name": "checked",
8386
8376
  "type": {
8387
8377
  "text": "boolean"
8388
8378
  },
8389
8379
  "default": "false",
8390
- "description": "Specify if TextArea is fluid",
8391
- "attribute": "fluid"
8380
+ "attribute": "checked"
8392
8381
  },
8393
8382
  {
8394
8383
  "kind": "field",
8395
- "name": "width",
8384
+ "name": "value",
8396
8385
  "type": {
8397
8386
  "text": "string | undefined"
8398
8387
  },
8399
- "description": "Specify the width of TextArea",
8400
- "attribute": "width"
8388
+ "description": "The value attribute for the input element",
8389
+ "attribute": "value"
8401
8390
  },
8402
8391
  {
8403
8392
  "kind": "field",
8404
- "name": "hideResize",
8393
+ "name": "switchRef"
8394
+ }
8395
+ ],
8396
+ "attributes": [
8397
+ {
8398
+ "name": "onText",
8405
8399
  "type": {
8406
- "text": "boolean"
8400
+ "text": "string | undefined"
8407
8401
  },
8408
- "default": "false",
8409
- "description": "Specify if TextArea can be manually resized",
8410
- "attribute": "hideResize"
8402
+ "default": "undefined",
8403
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8404
+ "fieldName": "onText"
8411
8405
  },
8412
8406
  {
8413
- "kind": "field",
8414
- "name": "maxCount",
8407
+ "name": "offText",
8415
8408
  "type": {
8416
- "text": "number | undefined"
8409
+ "text": "string | undefined"
8417
8410
  },
8418
- "description": "Specify the maximum character count for the TextArea",
8419
- "attribute": "maxCount"
8411
+ "default": "undefined",
8412
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8413
+ "fieldName": "offText"
8420
8414
  },
8421
8415
  {
8422
- "kind": "field",
8423
- "name": "autoResize",
8416
+ "name": "textPosition",
8417
+ "type": {
8418
+ "text": "'before' | 'after'"
8419
+ },
8420
+ "default": "'after'",
8421
+ "description": "Specify the position of the side label",
8422
+ "fieldName": "textPosition"
8423
+ },
8424
+ {
8425
+ "name": "readOnly",
8424
8426
  "type": {
8425
8427
  "text": "boolean"
8426
8428
  },
8427
8429
  "default": "false",
8428
- "description": "Specify if the TextArea automatically resizes to fit the text",
8429
- "attribute": "autoResize"
8430
+ "description": "Specify if Switch displays in a read-only state",
8431
+ "fieldName": "readOnly"
8430
8432
  },
8431
8433
  {
8432
- "kind": "field",
8433
- "name": "theme",
8434
+ "name": "disabled",
8434
8435
  "type": {
8435
- "text": "'light' | 'dark' | undefined"
8436
+ "text": "boolean"
8436
8437
  },
8437
- "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
8438
- "attribute": "theme"
8438
+ "default": "false",
8439
+ "description": "Specify if Switch displays in a disabled state",
8440
+ "fieldName": "disabled"
8439
8441
  },
8440
8442
  {
8441
- "kind": "field",
8442
- "name": "formFieldCounterRef"
8443
+ "name": "checked",
8444
+ "type": {
8445
+ "text": "boolean"
8446
+ },
8447
+ "default": "false",
8448
+ "fieldName": "checked"
8443
8449
  },
8444
8450
  {
8445
- "kind": "method",
8446
- "name": "finalizeAssociatedCallback",
8447
- "return": {
8448
- "type": {
8449
- "text": "FinalizeAssociatedResult"
8450
- }
8451
+ "name": "value",
8452
+ "type": {
8453
+ "text": "string | undefined"
8451
8454
  },
8452
- "parameters": [
8453
- {
8454
- "name": "value",
8455
- "type": {
8456
- "text": "string"
8457
- }
8458
- }
8459
- ],
8460
- "inheritedFrom": {
8461
- "name": "FormField",
8462
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8463
- }
8464
- },
8455
+ "description": "The value attribute for the input element",
8456
+ "fieldName": "value"
8457
+ }
8458
+ ],
8459
+ "superclass": {
8460
+ "name": "LitElement",
8461
+ "package": "lit"
8462
+ },
8463
+ "tagName": "bm-switch",
8464
+ "customElement": true
8465
+ }
8466
+ ],
8467
+ "exports": [
8468
+ {
8469
+ "kind": "js",
8470
+ "name": "BmSwitch",
8471
+ "declaration": {
8472
+ "name": "BmSwitch",
8473
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
8474
+ }
8475
+ },
8476
+ {
8477
+ "kind": "custom-element-definition",
8478
+ "name": "bm-switch",
8479
+ "declaration": {
8480
+ "name": "BmSwitch",
8481
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
8482
+ }
8483
+ }
8484
+ ]
8485
+ },
8486
+ {
8487
+ "kind": "javascript-module",
8488
+ "path": "libs/web-components/src/lib/wip/Switch/index.ts",
8489
+ "declarations": [],
8490
+ "exports": [
8491
+ {
8492
+ "kind": "js",
8493
+ "name": "*",
8494
+ "declaration": {
8495
+ "name": "*",
8496
+ "package": "./Switch"
8497
+ }
8498
+ },
8499
+ {
8500
+ "kind": "js",
8501
+ "name": "*",
8502
+ "declaration": {
8503
+ "name": "*",
8504
+ "package": "./SwitchGroup/SwitchGroup"
8505
+ }
8506
+ }
8507
+ ]
8508
+ },
8509
+ {
8510
+ "kind": "javascript-module",
8511
+ "path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
8512
+ "declarations": [
8513
+ {
8514
+ "kind": "class",
8515
+ "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",
8516
+ "name": "BmRadioButton",
8517
+ "members": [
8465
8518
  {
8466
8519
  "kind": "field",
8467
- "name": "formAssociated",
8520
+ "name": "label",
8468
8521
  "type": {
8469
- "text": "boolean"
8522
+ "text": "string | undefined"
8470
8523
  },
8471
- "static": true,
8472
- "default": "true",
8473
- "inheritedFrom": {
8474
- "name": "FormField",
8475
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8476
- }
8524
+ "description": "Specify the text for the label",
8525
+ "attribute": "label"
8477
8526
  },
8478
8527
  {
8479
8528
  "kind": "field",
8480
- "name": "id",
8529
+ "name": "error",
8481
8530
  "type": {
8482
- "text": "string"
8531
+ "text": "boolean | undefined"
8483
8532
  },
8484
- "default": "''",
8485
- "attribute": "id",
8486
- "inheritedFrom": {
8487
- "name": "FormField",
8488
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8489
- }
8533
+ "description": "Specify error text and display error state of a RadioButton",
8534
+ "attribute": "error"
8490
8535
  },
8491
8536
  {
8492
8537
  "kind": "field",
8493
- "name": "name",
8538
+ "name": "readOnly",
8494
8539
  "type": {
8495
- "text": "string"
8540
+ "text": "boolean | undefined"
8496
8541
  },
8497
- "default": "''",
8498
- "attribute": "name",
8499
- "inheritedFrom": {
8500
- "name": "FormField",
8501
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8502
- }
8542
+ "description": "Specify if RadioButton displays in a read-only state",
8543
+ "attribute": "readOnly"
8503
8544
  },
8504
8545
  {
8505
8546
  "kind": "field",
8506
- "name": "value",
8547
+ "name": "disabled",
8507
8548
  "type": {
8508
- "text": "string"
8549
+ "text": "boolean | undefined"
8509
8550
  },
8510
- "default": "''",
8511
- "attribute": "value",
8512
- "inheritedFrom": {
8513
- "name": "FormField",
8514
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8515
- }
8551
+ "description": "Specify if RadioButton displays in a disabled state",
8552
+ "attribute": "disabled"
8516
8553
  },
8517
8554
  {
8518
8555
  "kind": "field",
8519
- "name": "validationRules",
8556
+ "name": "theme",
8520
8557
  "type": {
8521
- "text": "Array<FormValidator>"
8558
+ "text": "'light' | 'dark' | undefined"
8522
8559
  },
8523
- "default": "[]",
8524
- "attribute": "validationRules",
8525
- "inheritedFrom": {
8526
- "name": "FormField",
8527
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8528
- }
8560
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8561
+ "attribute": "theme"
8529
8562
  },
8530
8563
  {
8531
8564
  "kind": "field",
8532
- "name": "inputAriaLabel",
8565
+ "name": "value",
8533
8566
  "type": {
8534
8567
  "text": "string | undefined"
8535
8568
  },
8536
- "attribute": "input-aria-label",
8537
- "inheritedFrom": {
8538
- "name": "FormField",
8539
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8540
- }
8569
+ "description": "The value attribute for the input element",
8570
+ "attribute": "value"
8541
8571
  },
8542
8572
  {
8543
8573
  "kind": "field",
8544
- "name": "formContext",
8574
+ "name": "checked",
8545
8575
  "type": {
8546
- "text": "BmFormContext"
8576
+ "text": "boolean"
8547
8577
  },
8548
- "inheritedFrom": {
8549
- "name": "FormField",
8550
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8551
- }
8578
+ "default": "false",
8579
+ "description": "The checked attribute for the input element",
8580
+ "attribute": "checked"
8552
8581
  },
8553
8582
  {
8554
- "kind": "method",
8555
- "name": "formAssociatedCallback",
8556
- "return": {
8557
- "type": {
8558
- "text": "void"
8559
- }
8583
+ "kind": "field",
8584
+ "name": "onKeyDown",
8585
+ "type": {
8586
+ "text": "(event: KeyboardEvent) => void | undefined"
8560
8587
  },
8561
- "inheritedFrom": {
8562
- "name": "FormField",
8563
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8588
+ "description": "A user-defined function to handle keydown events",
8589
+ "attribute": "onKeyDown"
8590
+ },
8591
+ {
8592
+ "kind": "field",
8593
+ "name": "inputChoiceGroupContext",
8594
+ "type": {
8595
+ "text": "InputChoiceGroupContextProps"
8564
8596
  }
8565
8597
  },
8598
+ {
8599
+ "kind": "field",
8600
+ "name": "radioButtonRef"
8601
+ },
8566
8602
  {
8567
8603
  "kind": "method",
8568
- "name": "formResetCallback",
8569
- "return": {
8570
- "type": {
8571
- "text": "void"
8572
- }
8573
- },
8574
- "inheritedFrom": {
8575
- "name": "FormField",
8576
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8577
- }
8604
+ "name": "focus"
8578
8605
  }
8579
8606
  ],
8580
8607
  "attributes": [
8581
8608
  {
8609
+ "name": "label",
8610
+ "type": {
8611
+ "text": "string | undefined"
8612
+ },
8613
+ "description": "Specify the text for the label",
8614
+ "fieldName": "label"
8615
+ },
8616
+ {
8617
+ "name": "error",
8618
+ "type": {
8619
+ "text": "boolean | undefined"
8620
+ },
8621
+ "description": "Specify error text and display error state of a RadioButton",
8622
+ "fieldName": "error"
8623
+ },
8624
+ {
8625
+ "name": "readOnly",
8626
+ "type": {
8627
+ "text": "boolean | undefined"
8628
+ },
8629
+ "description": "Specify if RadioButton displays in a read-only state",
8630
+ "fieldName": "readOnly"
8631
+ },
8632
+ {
8633
+ "name": "disabled",
8634
+ "type": {
8635
+ "text": "boolean | undefined"
8636
+ },
8637
+ "description": "Specify if RadioButton displays in a disabled state",
8638
+ "fieldName": "disabled"
8639
+ },
8640
+ {
8641
+ "name": "theme",
8642
+ "type": {
8643
+ "text": "'light' | 'dark' | undefined"
8644
+ },
8645
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8646
+ "fieldName": "theme"
8647
+ },
8648
+ {
8649
+ "name": "value",
8650
+ "type": {
8651
+ "text": "string | undefined"
8652
+ },
8653
+ "description": "The value attribute for the input element",
8654
+ "fieldName": "value"
8655
+ },
8656
+ {
8657
+ "name": "checked",
8658
+ "type": {
8659
+ "text": "boolean"
8660
+ },
8661
+ "default": "false",
8662
+ "description": "The checked attribute for the input element",
8663
+ "fieldName": "checked"
8664
+ },
8665
+ {
8666
+ "name": "onKeyDown",
8667
+ "type": {
8668
+ "text": "(event: KeyboardEvent) => void | undefined"
8669
+ },
8670
+ "description": "A user-defined function to handle keydown events",
8671
+ "fieldName": "onKeyDown"
8672
+ }
8673
+ ],
8674
+ "superclass": {
8675
+ "name": "LitElement",
8676
+ "package": "lit"
8677
+ },
8678
+ "tagName": "bm-radio-button",
8679
+ "customElement": true
8680
+ }
8681
+ ],
8682
+ "exports": [
8683
+ {
8684
+ "kind": "js",
8685
+ "name": "BmRadioButton",
8686
+ "declaration": {
8687
+ "name": "BmRadioButton",
8688
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8689
+ }
8690
+ },
8691
+ {
8692
+ "kind": "custom-element-definition",
8693
+ "name": "bm-radio-button",
8694
+ "declaration": {
8695
+ "name": "BmRadioButton",
8696
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8697
+ }
8698
+ }
8699
+ ]
8700
+ },
8701
+ {
8702
+ "kind": "javascript-module",
8703
+ "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
8704
+ "declarations": [],
8705
+ "exports": [
8706
+ {
8707
+ "kind": "js",
8708
+ "name": "*",
8709
+ "declaration": {
8710
+ "name": "*",
8711
+ "package": "./RadioButton"
8712
+ }
8713
+ },
8714
+ {
8715
+ "kind": "js",
8716
+ "name": "*",
8717
+ "declaration": {
8718
+ "name": "*",
8719
+ "package": "./RadioButtonGroup/RadioButtonGroup"
8720
+ }
8721
+ }
8722
+ ]
8723
+ },
8724
+ {
8725
+ "kind": "javascript-module",
8726
+ "path": "libs/web-components/src/lib/wip/TextArea/TextArea.ts",
8727
+ "declarations": [
8728
+ {
8729
+ "kind": "class",
8730
+ "description": "### Attributes:\n- **rows** - Specify the height of TextArea\n- **cols** - Specify the width of TextArea\n- **placeholder** - Specify placeholder text for TextArea\n- **required** - Specify if TextArea is a required input\n- **hideRequiredMarker** - Specify if the TextArea displays with an asterisk\n- **error** - Specify error text and display error state of a TextArea\n- **readOnly** - Specify if TextArea displays in a read-only state\n- **disabled** - Specify if TextArea displays in a disabled state\n- **fluid** - Specify if TextArea is fluid\n- **width** - Specify the width of TextArea\n- **hideResize** - Specify if TextArea can be manually resized\n- **maxCount** - Specify the maximum character count for the TextArea\n- **autoResize** - Specify if the TextArea automatically resizes to fit the text\n- **theme** - Specify the theme of the TextArea. By default it inherits the theme from the parent",
8731
+ "name": "BmTextArea",
8732
+ "slots": [
8733
+ {
8734
+ "description": "Specify the label for TextArea",
8735
+ "name": "label"
8736
+ },
8737
+ {
8738
+ "description": "Specify the helper text for TextArea",
8739
+ "name": "helper-text"
8740
+ }
8741
+ ],
8742
+ "members": [
8743
+ {
8744
+ "kind": "field",
8582
8745
  "name": "rows",
8583
8746
  "type": {
8584
8747
  "text": "number | undefined"
8585
8748
  },
8586
8749
  "description": "Specify the height of TextArea",
8587
- "fieldName": "rows"
8750
+ "attribute": "rows"
8588
8751
  },
8589
8752
  {
8753
+ "kind": "field",
8590
8754
  "name": "cols",
8591
8755
  "type": {
8592
8756
  "text": "number | undefined"
8593
8757
  },
8594
8758
  "description": "Specify the width of TextArea",
8595
- "fieldName": "cols"
8759
+ "attribute": "cols"
8596
8760
  },
8597
8761
  {
8762
+ "kind": "field",
8598
8763
  "name": "placeholder",
8599
8764
  "type": {
8600
8765
  "text": "string | undefined"
8601
8766
  },
8602
8767
  "description": "Specify placeholder text for TextArea",
8603
- "fieldName": "placeholder"
8768
+ "attribute": "placeholder"
8604
8769
  },
8605
8770
  {
8771
+ "kind": "field",
8606
8772
  "name": "required",
8607
8773
  "type": {
8608
8774
  "text": "boolean"
8609
8775
  },
8610
8776
  "default": "false",
8611
8777
  "description": "Specify if TextArea is a required input",
8612
- "fieldName": "required"
8778
+ "attribute": "required"
8613
8779
  },
8614
8780
  {
8781
+ "kind": "field",
8615
8782
  "name": "hideRequiredMarker",
8616
8783
  "type": {
8617
8784
  "text": "boolean"
8618
8785
  },
8619
8786
  "default": "false",
8620
8787
  "description": "Specify if the TextArea displays with an asterisk",
8621
- "fieldName": "hideRequiredMarker"
8788
+ "attribute": "hideRequiredMarker"
8622
8789
  },
8623
8790
  {
8791
+ "kind": "field",
8624
8792
  "name": "error",
8625
8793
  "type": {
8626
8794
  "text": "string | undefined"
8627
8795
  },
8628
8796
  "description": "Specify error text and display error state of a TextArea",
8629
- "fieldName": "error"
8797
+ "attribute": "error"
8630
8798
  },
8631
8799
  {
8800
+ "kind": "field",
8632
8801
  "name": "readOnly",
8633
8802
  "type": {
8634
8803
  "text": "boolean"
8635
8804
  },
8636
8805
  "default": "false",
8637
8806
  "description": "Specify if TextArea displays in a read-only state",
8638
- "fieldName": "readOnly"
8807
+ "attribute": "readOnly"
8639
8808
  },
8640
8809
  {
8810
+ "kind": "field",
8641
8811
  "name": "disabled",
8642
8812
  "type": {
8643
8813
  "text": "boolean"
8644
8814
  },
8645
8815
  "default": "false",
8646
8816
  "description": "Specify if TextArea displays in a disabled state",
8647
- "fieldName": "disabled"
8817
+ "attribute": "disabled"
8648
8818
  },
8649
8819
  {
8820
+ "kind": "field",
8650
8821
  "name": "fluid",
8651
8822
  "type": {
8652
8823
  "text": "boolean"
8653
8824
  },
8654
8825
  "default": "false",
8655
8826
  "description": "Specify if TextArea is fluid",
8656
- "fieldName": "fluid"
8827
+ "attribute": "fluid"
8657
8828
  },
8658
8829
  {
8830
+ "kind": "field",
8659
8831
  "name": "width",
8660
8832
  "type": {
8661
8833
  "text": "string | undefined"
8662
8834
  },
8663
8835
  "description": "Specify the width of TextArea",
8664
- "fieldName": "width"
8836
+ "attribute": "width"
8665
8837
  },
8666
8838
  {
8839
+ "kind": "field",
8667
8840
  "name": "hideResize",
8668
8841
  "type": {
8669
8842
  "text": "boolean"
8670
8843
  },
8671
8844
  "default": "false",
8672
8845
  "description": "Specify if TextArea can be manually resized",
8673
- "fieldName": "hideResize"
8846
+ "attribute": "hideResize"
8674
8847
  },
8675
8848
  {
8849
+ "kind": "field",
8676
8850
  "name": "maxCount",
8677
8851
  "type": {
8678
8852
  "text": "number | undefined"
8679
8853
  },
8680
8854
  "description": "Specify the maximum character count for the TextArea",
8681
- "fieldName": "maxCount"
8855
+ "attribute": "maxCount"
8682
8856
  },
8683
8857
  {
8858
+ "kind": "field",
8684
8859
  "name": "autoResize",
8685
8860
  "type": {
8686
8861
  "text": "boolean"
8687
8862
  },
8688
8863
  "default": "false",
8689
8864
  "description": "Specify if the TextArea automatically resizes to fit the text",
8690
- "fieldName": "autoResize"
8865
+ "attribute": "autoResize"
8691
8866
  },
8692
8867
  {
8868
+ "kind": "field",
8693
8869
  "name": "theme",
8694
8870
  "type": {
8695
8871
  "text": "'light' | 'dark' | undefined"
8696
8872
  },
8697
8873
  "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
8698
- "fieldName": "theme"
8874
+ "attribute": "theme"
8699
8875
  },
8700
8876
  {
8701
- "name": "id",
8877
+ "kind": "field",
8878
+ "name": "formFieldCounterRef"
8879
+ },
8880
+ {
8881
+ "kind": "method",
8882
+ "name": "finalizeAssociatedCallback",
8883
+ "return": {
8884
+ "type": {
8885
+ "text": "FinalizeAssociatedResult"
8886
+ }
8887
+ },
8888
+ "parameters": [
8889
+ {
8890
+ "name": "value",
8891
+ "type": {
8892
+ "text": "string"
8893
+ }
8894
+ }
8895
+ ],
8896
+ "inheritedFrom": {
8897
+ "name": "FormField",
8898
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8899
+ }
8900
+ },
8901
+ {
8902
+ "kind": "field",
8903
+ "name": "formAssociated",
8702
8904
  "type": {
8703
- "text": "string"
8905
+ "text": "boolean"
8704
8906
  },
8705
- "default": "''",
8706
- "fieldName": "id",
8907
+ "static": true,
8908
+ "default": "true",
8707
8909
  "inheritedFrom": {
8708
8910
  "name": "FormField",
8709
8911
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8710
8912
  }
8711
8913
  },
8712
8914
  {
8713
- "name": "name",
8915
+ "kind": "field",
8916
+ "name": "id",
8714
8917
  "type": {
8715
8918
  "text": "string"
8716
8919
  },
8717
8920
  "default": "''",
8718
- "fieldName": "name",
8921
+ "attribute": "id",
8719
8922
  "inheritedFrom": {
8720
8923
  "name": "FormField",
8721
8924
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8722
8925
  }
8723
8926
  },
8724
8927
  {
8725
- "name": "value",
8928
+ "kind": "field",
8929
+ "name": "name",
8726
8930
  "type": {
8727
8931
  "text": "string"
8728
8932
  },
8729
8933
  "default": "''",
8730
- "fieldName": "value",
8934
+ "attribute": "name",
8731
8935
  "inheritedFrom": {
8732
8936
  "name": "FormField",
8733
8937
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8734
8938
  }
8735
8939
  },
8736
8940
  {
8737
- "name": "validationRules",
8941
+ "kind": "field",
8942
+ "name": "value",
8738
8943
  "type": {
8739
- "text": "Array<FormValidator>"
8944
+ "text": "string"
8740
8945
  },
8741
- "default": "[]",
8742
- "fieldName": "validationRules",
8946
+ "default": "''",
8947
+ "attribute": "value",
8743
8948
  "inheritedFrom": {
8744
8949
  "name": "FormField",
8745
8950
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8746
8951
  }
8747
8952
  },
8748
8953
  {
8749
- "name": "input-aria-label",
8954
+ "kind": "field",
8955
+ "name": "validationRules",
8750
8956
  "type": {
8751
- "text": "string | undefined"
8957
+ "text": "Array<FormValidator>"
8752
8958
  },
8753
- "fieldName": "inputAriaLabel",
8959
+ "default": "[]",
8960
+ "attribute": "validationRules",
8754
8961
  "inheritedFrom": {
8755
8962
  "name": "FormField",
8756
8963
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8757
8964
  }
8758
- }
8759
- ],
8760
- "superclass": {
8761
- "name": "FormField",
8762
- "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
8763
- },
8764
- "summary": "`bm-text-area`",
8765
- "tagName": "bm-text-area",
8766
- "customElement": true
8767
- }
8768
- ],
8769
- "exports": [
8770
- {
8771
- "kind": "js",
8772
- "name": "BmTextArea",
8773
- "declaration": {
8774
- "name": "BmTextArea",
8775
- "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
8776
- }
8777
- },
8778
- {
8779
- "kind": "custom-element-definition",
8780
- "name": "bm-text-area",
8781
- "declaration": {
8782
- "name": "BmTextArea",
8783
- "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
8784
- }
8785
- }
8786
- ]
8787
- },
8788
- {
8789
- "kind": "javascript-module",
8790
- "path": "libs/web-components/src/lib/wip/TextArea/index.ts",
8791
- "declarations": [],
8792
- "exports": [
8793
- {
8794
- "kind": "js",
8795
- "name": "*",
8796
- "declaration": {
8797
- "name": "*",
8798
- "package": "./TextArea"
8799
- }
8800
- }
8801
- ]
8802
- },
8803
- {
8804
- "kind": "javascript-module",
8805
- "path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
8806
- "declarations": [
8807
- {
8808
- "kind": "class",
8809
- "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",
8810
- "name": "BmRadioButton",
8811
- "members": [
8812
- {
8813
- "kind": "field",
8814
- "name": "label",
8815
- "type": {
8816
- "text": "string | undefined"
8817
- },
8818
- "description": "Specify the text for the label",
8819
- "attribute": "label"
8820
- },
8821
- {
8822
- "kind": "field",
8823
- "name": "error",
8824
- "type": {
8825
- "text": "boolean | undefined"
8826
- },
8827
- "description": "Specify error text and display error state of a RadioButton",
8828
- "attribute": "error"
8829
- },
8830
- {
8831
- "kind": "field",
8832
- "name": "readOnly",
8833
- "type": {
8834
- "text": "boolean | undefined"
8835
- },
8836
- "description": "Specify if RadioButton displays in a read-only state",
8837
- "attribute": "readOnly"
8838
- },
8839
- {
8840
- "kind": "field",
8841
- "name": "disabled",
8842
- "type": {
8843
- "text": "boolean | undefined"
8844
- },
8845
- "description": "Specify if RadioButton displays in a disabled state",
8846
- "attribute": "disabled"
8847
- },
8848
- {
8849
- "kind": "field",
8850
- "name": "theme",
8851
- "type": {
8852
- "text": "'light' | 'dark' | undefined"
8853
- },
8854
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8855
- "attribute": "theme"
8856
8965
  },
8857
8966
  {
8858
8967
  "kind": "field",
8859
- "name": "value",
8968
+ "name": "inputAriaLabel",
8860
8969
  "type": {
8861
8970
  "text": "string | undefined"
8862
8971
  },
8863
- "description": "The value attribute for the input element",
8864
- "attribute": "value"
8972
+ "attribute": "input-aria-label",
8973
+ "inheritedFrom": {
8974
+ "name": "FormField",
8975
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8976
+ }
8865
8977
  },
8866
8978
  {
8867
8979
  "kind": "field",
8868
- "name": "checked",
8980
+ "name": "formContext",
8869
8981
  "type": {
8870
- "text": "boolean"
8982
+ "text": "BmFormContext"
8871
8983
  },
8872
- "default": "false",
8873
- "description": "The checked attribute for the input element",
8874
- "attribute": "checked"
8984
+ "inheritedFrom": {
8985
+ "name": "FormField",
8986
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8987
+ }
8875
8988
  },
8876
8989
  {
8877
- "kind": "field",
8878
- "name": "onKeyDown",
8879
- "type": {
8880
- "text": "(event: KeyboardEvent) => void | undefined"
8990
+ "kind": "method",
8991
+ "name": "formAssociatedCallback",
8992
+ "return": {
8993
+ "type": {
8994
+ "text": "void"
8995
+ }
8881
8996
  },
8882
- "description": "A user-defined function to handle keydown events",
8883
- "attribute": "onKeyDown"
8884
- },
8885
- {
8886
- "kind": "field",
8887
- "name": "inputChoiceGroupContext",
8888
- "type": {
8889
- "text": "InputChoiceGroupContextProps"
8997
+ "inheritedFrom": {
8998
+ "name": "FormField",
8999
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8890
9000
  }
8891
9001
  },
8892
- {
8893
- "kind": "field",
8894
- "name": "radioButtonRef"
8895
- },
8896
9002
  {
8897
9003
  "kind": "method",
8898
- "name": "focus"
9004
+ "name": "formResetCallback",
9005
+ "return": {
9006
+ "type": {
9007
+ "text": "void"
9008
+ }
9009
+ },
9010
+ "inheritedFrom": {
9011
+ "name": "FormField",
9012
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9013
+ }
8899
9014
  }
8900
9015
  ],
8901
9016
  "attributes": [
8902
9017
  {
8903
- "name": "label",
8904
- "type": {
8905
- "text": "string | undefined"
8906
- },
8907
- "description": "Specify the text for the label",
8908
- "fieldName": "label"
8909
- },
8910
- {
8911
- "name": "error",
8912
- "type": {
8913
- "text": "boolean | undefined"
8914
- },
8915
- "description": "Specify error text and display error state of a RadioButton",
8916
- "fieldName": "error"
8917
- },
8918
- {
8919
- "name": "readOnly",
8920
- "type": {
8921
- "text": "boolean | undefined"
8922
- },
8923
- "description": "Specify if RadioButton displays in a read-only state",
8924
- "fieldName": "readOnly"
8925
- },
8926
- {
8927
- "name": "disabled",
9018
+ "name": "rows",
8928
9019
  "type": {
8929
- "text": "boolean | undefined"
9020
+ "text": "number | undefined"
8930
9021
  },
8931
- "description": "Specify if RadioButton displays in a disabled state",
8932
- "fieldName": "disabled"
9022
+ "description": "Specify the height of TextArea",
9023
+ "fieldName": "rows"
8933
9024
  },
8934
9025
  {
8935
- "name": "theme",
9026
+ "name": "cols",
8936
9027
  "type": {
8937
- "text": "'light' | 'dark' | undefined"
9028
+ "text": "number | undefined"
8938
9029
  },
8939
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8940
- "fieldName": "theme"
9030
+ "description": "Specify the width of TextArea",
9031
+ "fieldName": "cols"
8941
9032
  },
8942
9033
  {
8943
- "name": "value",
9034
+ "name": "placeholder",
8944
9035
  "type": {
8945
9036
  "text": "string | undefined"
8946
9037
  },
8947
- "description": "The value attribute for the input element",
8948
- "fieldName": "value"
9038
+ "description": "Specify placeholder text for TextArea",
9039
+ "fieldName": "placeholder"
8949
9040
  },
8950
9041
  {
8951
- "name": "checked",
9042
+ "name": "required",
8952
9043
  "type": {
8953
9044
  "text": "boolean"
8954
9045
  },
8955
9046
  "default": "false",
8956
- "description": "The checked attribute for the input element",
8957
- "fieldName": "checked"
8958
- },
8959
- {
8960
- "name": "onKeyDown",
8961
- "type": {
8962
- "text": "(event: KeyboardEvent) => void | undefined"
8963
- },
8964
- "description": "A user-defined function to handle keydown events",
8965
- "fieldName": "onKeyDown"
8966
- }
8967
- ],
8968
- "superclass": {
8969
- "name": "LitElement",
8970
- "package": "lit"
8971
- },
8972
- "tagName": "bm-radio-button",
8973
- "customElement": true
8974
- }
8975
- ],
8976
- "exports": [
8977
- {
8978
- "kind": "js",
8979
- "name": "BmRadioButton",
8980
- "declaration": {
8981
- "name": "BmRadioButton",
8982
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8983
- }
8984
- },
8985
- {
8986
- "kind": "custom-element-definition",
8987
- "name": "bm-radio-button",
8988
- "declaration": {
8989
- "name": "BmRadioButton",
8990
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8991
- }
8992
- }
8993
- ]
8994
- },
8995
- {
8996
- "kind": "javascript-module",
8997
- "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
8998
- "declarations": [],
8999
- "exports": [
9000
- {
9001
- "kind": "js",
9002
- "name": "*",
9003
- "declaration": {
9004
- "name": "*",
9005
- "package": "./RadioButton"
9006
- }
9007
- },
9008
- {
9009
- "kind": "js",
9010
- "name": "*",
9011
- "declaration": {
9012
- "name": "*",
9013
- "package": "./RadioButtonGroup/RadioButtonGroup"
9014
- }
9015
- }
9016
- ]
9017
- },
9018
- {
9019
- "kind": "javascript-module",
9020
- "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
9021
- "declarations": [
9022
- {
9023
- "kind": "class",
9024
- "description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
9025
- "name": "BmSwitch",
9026
- "slots": [
9027
- {
9028
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9029
- "name": "onText"
9030
- },
9031
- {
9032
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9033
- "name": "offText"
9034
- }
9035
- ],
9036
- "members": [
9037
- {
9038
- "kind": "field",
9039
- "name": "inputChoiceGroupContext",
9040
- "type": {
9041
- "text": "InputChoiceGroupContextProps"
9042
- }
9047
+ "description": "Specify if TextArea is a required input",
9048
+ "fieldName": "required"
9043
9049
  },
9044
9050
  {
9045
- "kind": "field",
9046
- "name": "onText",
9051
+ "name": "hideRequiredMarker",
9047
9052
  "type": {
9048
- "text": "string | undefined"
9053
+ "text": "boolean"
9049
9054
  },
9050
- "default": "undefined",
9051
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9052
- "attribute": "onText"
9055
+ "default": "false",
9056
+ "description": "Specify if the TextArea displays with an asterisk",
9057
+ "fieldName": "hideRequiredMarker"
9053
9058
  },
9054
9059
  {
9055
- "kind": "field",
9056
- "name": "offText",
9060
+ "name": "error",
9057
9061
  "type": {
9058
9062
  "text": "string | undefined"
9059
9063
  },
9060
- "default": "undefined",
9061
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9062
- "attribute": "offText"
9064
+ "description": "Specify error text and display error state of a TextArea",
9065
+ "fieldName": "error"
9063
9066
  },
9064
9067
  {
9065
- "kind": "field",
9066
- "name": "theme",
9068
+ "name": "readOnly",
9067
9069
  "type": {
9068
- "text": "ThemeTypes | undefined"
9070
+ "text": "boolean"
9069
9071
  },
9070
- "default": "undefined",
9071
- "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
9072
+ "default": "false",
9073
+ "description": "Specify if TextArea displays in a read-only state",
9074
+ "fieldName": "readOnly"
9072
9075
  },
9073
9076
  {
9074
- "kind": "field",
9075
- "name": "textPosition",
9077
+ "name": "disabled",
9076
9078
  "type": {
9077
- "text": "'before' | 'after'"
9079
+ "text": "boolean"
9078
9080
  },
9079
- "default": "'after'",
9080
- "description": "Specify the position of the side label",
9081
- "attribute": "textPosition"
9081
+ "default": "false",
9082
+ "description": "Specify if TextArea displays in a disabled state",
9083
+ "fieldName": "disabled"
9082
9084
  },
9083
9085
  {
9084
- "kind": "field",
9085
- "name": "readOnly",
9086
+ "name": "fluid",
9086
9087
  "type": {
9087
9088
  "text": "boolean"
9088
9089
  },
9089
9090
  "default": "false",
9090
- "description": "Specify if Switch displays in a read-only state",
9091
- "attribute": "readOnly"
9091
+ "description": "Specify if TextArea is fluid",
9092
+ "fieldName": "fluid"
9092
9093
  },
9093
9094
  {
9094
- "kind": "field",
9095
- "name": "disabled",
9095
+ "name": "width",
9096
9096
  "type": {
9097
- "text": "boolean"
9097
+ "text": "string | undefined"
9098
9098
  },
9099
- "default": "false",
9100
- "description": "Specify if Switch displays in a disabled state",
9101
- "attribute": "disabled"
9099
+ "description": "Specify the width of TextArea",
9100
+ "fieldName": "width"
9102
9101
  },
9103
- {
9104
- "kind": "field",
9105
- "name": "checked",
9102
+ {
9103
+ "name": "hideResize",
9106
9104
  "type": {
9107
9105
  "text": "boolean"
9108
9106
  },
9109
9107
  "default": "false",
9110
- "attribute": "checked"
9108
+ "description": "Specify if TextArea can be manually resized",
9109
+ "fieldName": "hideResize"
9111
9110
  },
9112
9111
  {
9113
- "kind": "field",
9114
- "name": "value",
9112
+ "name": "maxCount",
9115
9113
  "type": {
9116
- "text": "string | undefined"
9114
+ "text": "number | undefined"
9117
9115
  },
9118
- "description": "The value attribute for the input element",
9119
- "attribute": "value"
9116
+ "description": "Specify the maximum character count for the TextArea",
9117
+ "fieldName": "maxCount"
9120
9118
  },
9121
9119
  {
9122
- "kind": "field",
9123
- "name": "switchRef"
9124
- }
9125
- ],
9126
- "attributes": [
9127
- {
9128
- "name": "onText",
9120
+ "name": "autoResize",
9129
9121
  "type": {
9130
- "text": "string | undefined"
9122
+ "text": "boolean"
9131
9123
  },
9132
- "default": "undefined",
9133
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9134
- "fieldName": "onText"
9124
+ "default": "false",
9125
+ "description": "Specify if the TextArea automatically resizes to fit the text",
9126
+ "fieldName": "autoResize"
9135
9127
  },
9136
9128
  {
9137
- "name": "offText",
9129
+ "name": "theme",
9138
9130
  "type": {
9139
- "text": "string | undefined"
9131
+ "text": "'light' | 'dark' | undefined"
9140
9132
  },
9141
- "default": "undefined",
9142
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9143
- "fieldName": "offText"
9133
+ "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
9134
+ "fieldName": "theme"
9144
9135
  },
9145
9136
  {
9146
- "name": "textPosition",
9137
+ "name": "id",
9147
9138
  "type": {
9148
- "text": "'before' | 'after'"
9139
+ "text": "string"
9149
9140
  },
9150
- "default": "'after'",
9151
- "description": "Specify the position of the side label",
9152
- "fieldName": "textPosition"
9141
+ "default": "''",
9142
+ "fieldName": "id",
9143
+ "inheritedFrom": {
9144
+ "name": "FormField",
9145
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9146
+ }
9153
9147
  },
9154
9148
  {
9155
- "name": "readOnly",
9149
+ "name": "name",
9156
9150
  "type": {
9157
- "text": "boolean"
9151
+ "text": "string"
9158
9152
  },
9159
- "default": "false",
9160
- "description": "Specify if Switch displays in a read-only state",
9161
- "fieldName": "readOnly"
9153
+ "default": "''",
9154
+ "fieldName": "name",
9155
+ "inheritedFrom": {
9156
+ "name": "FormField",
9157
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9158
+ }
9162
9159
  },
9163
9160
  {
9164
- "name": "disabled",
9161
+ "name": "value",
9165
9162
  "type": {
9166
- "text": "boolean"
9163
+ "text": "string"
9167
9164
  },
9168
- "default": "false",
9169
- "description": "Specify if Switch displays in a disabled state",
9170
- "fieldName": "disabled"
9165
+ "default": "''",
9166
+ "fieldName": "value",
9167
+ "inheritedFrom": {
9168
+ "name": "FormField",
9169
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9170
+ }
9171
9171
  },
9172
9172
  {
9173
- "name": "checked",
9173
+ "name": "validationRules",
9174
9174
  "type": {
9175
- "text": "boolean"
9175
+ "text": "Array<FormValidator>"
9176
9176
  },
9177
- "default": "false",
9178
- "fieldName": "checked"
9177
+ "default": "[]",
9178
+ "fieldName": "validationRules",
9179
+ "inheritedFrom": {
9180
+ "name": "FormField",
9181
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9182
+ }
9179
9183
  },
9180
9184
  {
9181
- "name": "value",
9185
+ "name": "input-aria-label",
9182
9186
  "type": {
9183
9187
  "text": "string | undefined"
9184
9188
  },
9185
- "description": "The value attribute for the input element",
9186
- "fieldName": "value"
9189
+ "fieldName": "inputAriaLabel",
9190
+ "inheritedFrom": {
9191
+ "name": "FormField",
9192
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9193
+ }
9187
9194
  }
9188
9195
  ],
9189
9196
  "superclass": {
9190
- "name": "LitElement",
9191
- "package": "lit"
9197
+ "name": "FormField",
9198
+ "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
9192
9199
  },
9193
- "tagName": "bm-switch",
9200
+ "summary": "`bm-text-area`",
9201
+ "tagName": "bm-text-area",
9194
9202
  "customElement": true
9195
9203
  }
9196
9204
  ],
9197
9205
  "exports": [
9198
9206
  {
9199
9207
  "kind": "js",
9200
- "name": "BmSwitch",
9208
+ "name": "BmTextArea",
9201
9209
  "declaration": {
9202
- "name": "BmSwitch",
9203
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9210
+ "name": "BmTextArea",
9211
+ "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
9204
9212
  }
9205
9213
  },
9206
9214
  {
9207
9215
  "kind": "custom-element-definition",
9208
- "name": "bm-switch",
9216
+ "name": "bm-text-area",
9209
9217
  "declaration": {
9210
- "name": "BmSwitch",
9211
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9218
+ "name": "BmTextArea",
9219
+ "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
9212
9220
  }
9213
9221
  }
9214
9222
  ]
9215
9223
  },
9216
9224
  {
9217
9225
  "kind": "javascript-module",
9218
- "path": "libs/web-components/src/lib/wip/Switch/index.ts",
9226
+ "path": "libs/web-components/src/lib/wip/TextArea/index.ts",
9219
9227
  "declarations": [],
9220
9228
  "exports": [
9221
9229
  {
@@ -9223,15 +9231,7 @@
9223
9231
  "name": "*",
9224
9232
  "declaration": {
9225
9233
  "name": "*",
9226
- "package": "./Switch"
9227
- }
9228
- },
9229
- {
9230
- "kind": "js",
9231
- "name": "*",
9232
- "declaration": {
9233
- "name": "*",
9234
- "package": "./SwitchGroup/SwitchGroup"
9234
+ "package": "./TextArea"
9235
9235
  }
9236
9236
  }
9237
9237
  ]
@@ -9743,207 +9743,28 @@
9743
9743
  }
9744
9744
  },
9745
9745
  {
9746
- "description": "Add helper text to the InputChoiceGroup",
9747
- "name": "helperText",
9748
- "inheritedFrom": {
9749
- "name": "InputChoiceGroup",
9750
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9751
- }
9752
- }
9753
- ],
9754
- "attributes": [
9755
- {
9756
- "name": "theme",
9757
- "type": {
9758
- "text": "'light' | 'dark' | undefined"
9759
- },
9760
- "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
9761
- "fieldName": "theme",
9762
- "inheritedFrom": {
9763
- "name": "InputChoiceGroup",
9764
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9765
- }
9766
- },
9767
- {
9768
- "name": "layout",
9769
- "type": {
9770
- "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
9771
- },
9772
- "default": "'vertical'",
9773
- "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
9774
- "deprecated": "use `orientation` and `fluid` instead",
9775
- "fieldName": "layout",
9776
- "inheritedFrom": {
9777
- "name": "InputChoiceGroup",
9778
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9779
- }
9780
- },
9781
- {
9782
- "name": "orientation",
9783
- "type": {
9784
- "text": "'horizontal' | 'vertical'"
9785
- },
9786
- "default": "'vertical'",
9787
- "description": "Specify InputChoiceGroup orientation",
9788
- "fieldName": "orientation",
9789
- "inheritedFrom": {
9790
- "name": "InputChoiceGroup",
9791
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9792
- }
9793
- },
9794
- {
9795
- "name": "fluid",
9796
- "type": {
9797
- "text": "boolean"
9798
- },
9799
- "default": "false",
9800
- "description": "Specify if InputChoiceGroup should take the full width of its container",
9801
- "fieldName": "fluid",
9802
- "inheritedFrom": {
9803
- "name": "InputChoiceGroup",
9804
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9805
- }
9806
- },
9807
- {
9808
- "name": "required",
9809
- "type": {
9810
- "text": "boolean"
9811
- },
9812
- "default": "false",
9813
- "description": "Specify if InputChoiceGroup is a required input",
9814
- "fieldName": "required",
9815
- "inheritedFrom": {
9816
- "name": "InputChoiceGroup",
9817
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9818
- }
9819
- },
9820
- {
9821
- "name": "hideRequiredMarker",
9822
- "type": {
9823
- "text": "boolean"
9824
- },
9825
- "default": "false",
9826
- "description": "Specify if the InputChoiceGroup displays with an asterisk",
9827
- "fieldName": "hideRequiredMarker",
9828
- "inheritedFrom": {
9829
- "name": "InputChoiceGroup",
9830
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9831
- }
9832
- },
9833
- {
9834
- "name": "error",
9835
- "type": {
9836
- "text": "string | undefined"
9837
- },
9838
- "description": "Specify error text and display error state of a InputChoiceGroup",
9839
- "fieldName": "error",
9840
- "inheritedFrom": {
9841
- "name": "InputChoiceGroup",
9842
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9843
- }
9844
- },
9845
- {
9846
- "name": "readOnly",
9847
- "type": {
9848
- "text": "boolean"
9849
- },
9850
- "default": "false",
9851
- "description": "Specify if InputChoiceGroup displays in a read-only state",
9852
- "fieldName": "readOnly",
9853
- "inheritedFrom": {
9854
- "name": "InputChoiceGroup",
9855
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9856
- }
9857
- },
9858
- {
9859
- "name": "disabled",
9860
- "type": {
9861
- "text": "boolean"
9862
- },
9863
- "default": "false",
9864
- "description": "Specify if InputChoiceGroup displays in a disabled state",
9865
- "fieldName": "disabled",
9866
- "inheritedFrom": {
9867
- "name": "InputChoiceGroup",
9868
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9869
- }
9870
- },
9871
- {
9872
- "name": "id",
9873
- "type": {
9874
- "text": "string"
9875
- },
9876
- "default": "''",
9877
- "fieldName": "id",
9878
- "inheritedFrom": {
9879
- "name": "FormField",
9880
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9881
- }
9882
- },
9883
- {
9884
- "name": "name",
9885
- "type": {
9886
- "text": "string"
9887
- },
9888
- "default": "''",
9889
- "fieldName": "name",
9890
- "inheritedFrom": {
9891
- "name": "FormField",
9892
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9893
- }
9894
- },
9895
- {
9896
- "name": "value",
9897
- "type": {
9898
- "text": "string"
9899
- },
9900
- "default": "''",
9901
- "fieldName": "value",
9902
- "inheritedFrom": {
9903
- "name": "FormField",
9904
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9905
- }
9906
- },
9907
- {
9908
- "name": "validationRules",
9909
- "type": {
9910
- "text": "Array<FormValidator>"
9911
- },
9912
- "default": "[]",
9913
- "fieldName": "validationRules",
9914
- "inheritedFrom": {
9915
- "name": "FormField",
9916
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9917
- }
9918
- },
9919
- {
9920
- "name": "input-aria-label",
9921
- "type": {
9922
- "text": "string | undefined"
9923
- },
9924
- "fieldName": "inputAriaLabel",
9746
+ "description": "Add helper text to the InputChoiceGroup",
9747
+ "name": "helperText",
9925
9748
  "inheritedFrom": {
9926
- "name": "FormField",
9927
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9749
+ "name": "InputChoiceGroup",
9750
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9928
9751
  }
9929
9752
  }
9930
9753
  ],
9931
- "members": [
9754
+ "attributes": [
9932
9755
  {
9933
- "kind": "field",
9934
9756
  "name": "theme",
9935
9757
  "type": {
9936
9758
  "text": "'light' | 'dark' | undefined"
9937
9759
  },
9938
9760
  "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
9939
- "attribute": "theme",
9761
+ "fieldName": "theme",
9940
9762
  "inheritedFrom": {
9941
9763
  "name": "InputChoiceGroup",
9942
9764
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9943
9765
  }
9944
9766
  },
9945
9767
  {
9946
- "kind": "field",
9947
9768
  "name": "layout",
9948
9769
  "type": {
9949
9770
  "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
@@ -9951,320 +9772,162 @@
9951
9772
  "default": "'vertical'",
9952
9773
  "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
9953
9774
  "deprecated": "use `orientation` and `fluid` instead",
9954
- "attribute": "layout",
9775
+ "fieldName": "layout",
9955
9776
  "inheritedFrom": {
9956
9777
  "name": "InputChoiceGroup",
9957
9778
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9958
9779
  }
9959
9780
  },
9960
9781
  {
9961
- "kind": "field",
9962
9782
  "name": "orientation",
9963
9783
  "type": {
9964
9784
  "text": "'horizontal' | 'vertical'"
9965
9785
  },
9966
9786
  "default": "'vertical'",
9967
9787
  "description": "Specify InputChoiceGroup orientation",
9968
- "attribute": "orientation",
9788
+ "fieldName": "orientation",
9969
9789
  "inheritedFrom": {
9970
9790
  "name": "InputChoiceGroup",
9971
9791
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9972
9792
  }
9973
9793
  },
9974
9794
  {
9975
- "kind": "field",
9976
9795
  "name": "fluid",
9977
9796
  "type": {
9978
9797
  "text": "boolean"
9979
9798
  },
9980
9799
  "default": "false",
9981
9800
  "description": "Specify if InputChoiceGroup should take the full width of its container",
9982
- "attribute": "fluid",
9801
+ "fieldName": "fluid",
9983
9802
  "inheritedFrom": {
9984
9803
  "name": "InputChoiceGroup",
9985
9804
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9986
9805
  }
9987
9806
  },
9988
9807
  {
9989
- "kind": "field",
9990
9808
  "name": "required",
9991
9809
  "type": {
9992
9810
  "text": "boolean"
9993
9811
  },
9994
9812
  "default": "false",
9995
9813
  "description": "Specify if InputChoiceGroup is a required input",
9996
- "attribute": "required",
9814
+ "fieldName": "required",
9997
9815
  "inheritedFrom": {
9998
9816
  "name": "InputChoiceGroup",
9999
9817
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10000
9818
  }
10001
9819
  },
10002
9820
  {
10003
- "kind": "field",
10004
9821
  "name": "hideRequiredMarker",
10005
9822
  "type": {
10006
9823
  "text": "boolean"
10007
9824
  },
10008
9825
  "default": "false",
10009
9826
  "description": "Specify if the InputChoiceGroup displays with an asterisk",
10010
- "attribute": "hideRequiredMarker",
9827
+ "fieldName": "hideRequiredMarker",
10011
9828
  "inheritedFrom": {
10012
9829
  "name": "InputChoiceGroup",
10013
9830
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10014
9831
  }
10015
9832
  },
10016
9833
  {
10017
- "kind": "field",
10018
9834
  "name": "error",
10019
9835
  "type": {
10020
9836
  "text": "string | undefined"
10021
9837
  },
10022
9838
  "description": "Specify error text and display error state of a InputChoiceGroup",
10023
- "attribute": "error",
9839
+ "fieldName": "error",
10024
9840
  "inheritedFrom": {
10025
9841
  "name": "InputChoiceGroup",
10026
9842
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10027
9843
  }
10028
9844
  },
10029
9845
  {
10030
- "kind": "field",
10031
9846
  "name": "readOnly",
10032
9847
  "type": {
10033
9848
  "text": "boolean"
10034
9849
  },
10035
9850
  "default": "false",
10036
9851
  "description": "Specify if InputChoiceGroup displays in a read-only state",
10037
- "attribute": "readOnly",
9852
+ "fieldName": "readOnly",
10038
9853
  "inheritedFrom": {
10039
9854
  "name": "InputChoiceGroup",
10040
9855
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10041
9856
  }
10042
9857
  },
10043
9858
  {
10044
- "kind": "field",
10045
9859
  "name": "disabled",
10046
9860
  "type": {
10047
9861
  "text": "boolean"
10048
9862
  },
10049
9863
  "default": "false",
10050
9864
  "description": "Specify if InputChoiceGroup displays in a disabled state",
10051
- "attribute": "disabled",
10052
- "inheritedFrom": {
10053
- "name": "InputChoiceGroup",
10054
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10055
- }
10056
- },
10057
- {
10058
- "kind": "field",
10059
- "name": "radioButtons",
10060
- "type": {
10061
- "text": "NodeListOf<Element>"
10062
- },
10063
- "inheritedFrom": {
10064
- "name": "InputChoiceGroup",
10065
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10066
- }
10067
- },
10068
- {
10069
- "kind": "field",
10070
- "name": "checkboxes",
10071
- "type": {
10072
- "text": "NodeListOf<Element>"
10073
- },
10074
- "inheritedFrom": {
10075
- "name": "InputChoiceGroup",
10076
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10077
- }
10078
- },
10079
- {
10080
- "kind": "field",
10081
- "name": "switches",
10082
- "type": {
10083
- "text": "NodeListOf<Element>"
10084
- },
10085
- "inheritedFrom": {
10086
- "name": "InputChoiceGroup",
10087
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10088
- }
10089
- },
10090
- {
10091
- "kind": "field",
10092
- "name": "inputGroupContextValue",
10093
- "type": {
10094
- "text": "InputChoiceGroupContextProps"
10095
- },
10096
- "privacy": "public",
10097
- "default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
9865
+ "fieldName": "disabled",
10098
9866
  "inheritedFrom": {
10099
9867
  "name": "InputChoiceGroup",
10100
9868
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10101
9869
  }
10102
9870
  },
10103
9871
  {
10104
- "kind": "field",
10105
- "name": "formAssociated",
10106
- "type": {
10107
- "text": "boolean"
10108
- },
10109
- "static": true,
10110
- "default": "true",
10111
- "inheritedFrom": {
10112
- "name": "FormField",
10113
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10114
- }
10115
- },
10116
- {
10117
- "kind": "field",
10118
9872
  "name": "id",
10119
9873
  "type": {
10120
9874
  "text": "string"
10121
9875
  },
10122
9876
  "default": "''",
10123
- "attribute": "id",
9877
+ "fieldName": "id",
10124
9878
  "inheritedFrom": {
10125
9879
  "name": "FormField",
10126
9880
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10127
9881
  }
10128
9882
  },
10129
9883
  {
10130
- "kind": "field",
10131
9884
  "name": "name",
10132
9885
  "type": {
10133
9886
  "text": "string"
10134
9887
  },
10135
9888
  "default": "''",
10136
- "attribute": "name",
9889
+ "fieldName": "name",
10137
9890
  "inheritedFrom": {
10138
9891
  "name": "FormField",
10139
9892
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10140
9893
  }
10141
9894
  },
10142
9895
  {
10143
- "kind": "field",
10144
9896
  "name": "value",
10145
9897
  "type": {
10146
9898
  "text": "string"
10147
9899
  },
10148
9900
  "default": "''",
10149
- "attribute": "value",
9901
+ "fieldName": "value",
10150
9902
  "inheritedFrom": {
10151
9903
  "name": "FormField",
10152
9904
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10153
9905
  }
10154
9906
  },
10155
9907
  {
10156
- "kind": "field",
10157
9908
  "name": "validationRules",
10158
9909
  "type": {
10159
9910
  "text": "Array<FormValidator>"
10160
9911
  },
10161
9912
  "default": "[]",
10162
- "attribute": "validationRules",
9913
+ "fieldName": "validationRules",
10163
9914
  "inheritedFrom": {
10164
9915
  "name": "FormField",
10165
9916
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10166
9917
  }
10167
9918
  },
10168
9919
  {
10169
- "kind": "field",
10170
- "name": "inputAriaLabel",
9920
+ "name": "input-aria-label",
10171
9921
  "type": {
10172
9922
  "text": "string | undefined"
10173
9923
  },
10174
- "attribute": "input-aria-label",
10175
- "inheritedFrom": {
10176
- "name": "FormField",
10177
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10178
- }
10179
- },
10180
- {
10181
- "kind": "field",
10182
- "name": "formContext",
10183
- "type": {
10184
- "text": "BmFormContext"
10185
- },
10186
- "inheritedFrom": {
10187
- "name": "FormField",
10188
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10189
- }
10190
- },
10191
- {
10192
- "kind": "method",
10193
- "name": "formAssociatedCallback",
10194
- "return": {
10195
- "type": {
10196
- "text": "void"
10197
- }
10198
- },
10199
- "inheritedFrom": {
10200
- "name": "FormField",
10201
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10202
- }
10203
- },
10204
- {
10205
- "kind": "method",
10206
- "name": "formResetCallback",
10207
- "return": {
10208
- "type": {
10209
- "text": "void"
10210
- }
10211
- },
10212
- "inheritedFrom": {
10213
- "name": "FormField",
10214
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10215
- }
10216
- },
10217
- {
10218
- "kind": "method",
10219
- "name": "finalizeAssociatedCallback",
10220
- "return": {
10221
- "type": {
10222
- "text": "FinalizeAssociatedResult"
10223
- }
10224
- },
10225
- "parameters": [
10226
- {
10227
- "name": "ctxValue",
10228
- "type": {
10229
- "text": "string"
10230
- }
10231
- }
10232
- ],
9924
+ "fieldName": "inputAriaLabel",
10233
9925
  "inheritedFrom": {
10234
- "name": "FormField",
10235
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10236
- }
10237
- }
10238
- ]
10239
- }
10240
- ],
10241
- "exports": [
10242
- {
10243
- "kind": "js",
10244
- "name": "BmCheckboxGroup",
10245
- "declaration": {
10246
- "name": "BmCheckboxGroup",
10247
- "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10248
- }
10249
- },
10250
- {
10251
- "kind": "custom-element-definition",
10252
- "name": "bm-checkbox-group",
10253
- "declaration": {
10254
- "name": "BmCheckboxGroup",
10255
- "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10256
- }
10257
- }
10258
- ]
10259
- },
10260
- {
10261
- "kind": "javascript-module",
10262
- "path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
10263
- "declarations": [
10264
- {
10265
- "kind": "class",
10266
- "description": "",
10267
- "name": "BmRadioButtonGroup",
9926
+ "name": "FormField",
9927
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9928
+ }
9929
+ }
9930
+ ],
10268
9931
  "members": [
10269
9932
  {
10270
9933
  "kind": "field",
@@ -10572,16 +10235,39 @@
10572
10235
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10573
10236
  }
10574
10237
  }
10575
- ],
10576
- "superclass": {
10577
- "name": "InputChoiceGroup",
10578
- "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
10579
- },
10580
- "tagName": "bm-radio-button-group",
10581
- "customElement": true,
10238
+ ]
10239
+ }
10240
+ ],
10241
+ "exports": [
10242
+ {
10243
+ "kind": "js",
10244
+ "name": "BmCheckboxGroup",
10245
+ "declaration": {
10246
+ "name": "BmCheckboxGroup",
10247
+ "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10248
+ }
10249
+ },
10250
+ {
10251
+ "kind": "custom-element-definition",
10252
+ "name": "bm-checkbox-group",
10253
+ "declaration": {
10254
+ "name": "BmCheckboxGroup",
10255
+ "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10256
+ }
10257
+ }
10258
+ ]
10259
+ },
10260
+ {
10261
+ "kind": "javascript-module",
10262
+ "path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
10263
+ "declarations": [
10264
+ {
10265
+ "kind": "class",
10266
+ "description": "`bm-switch-group`",
10267
+ "name": "BmSwitchGroup",
10582
10268
  "slots": [
10583
10269
  {
10584
- "description": "Add label text to the InputChoiceGroup",
10270
+ "description": "Slot for the label of the SwitchGroup",
10585
10271
  "name": "label",
10586
10272
  "inheritedFrom": {
10587
10273
  "name": "InputChoiceGroup",
@@ -10589,7 +10275,7 @@
10589
10275
  }
10590
10276
  },
10591
10277
  {
10592
- "description": "Add helper text to the InputChoiceGroup",
10278
+ "description": "Slot for the helper text of the SwitchGroup",
10593
10279
  "name": "helperText",
10594
10280
  "inheritedFrom": {
10595
10281
  "name": "InputChoiceGroup",
@@ -10597,6 +10283,12 @@
10597
10283
  }
10598
10284
  }
10599
10285
  ],
10286
+ "superclass": {
10287
+ "name": "InputChoiceGroup",
10288
+ "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
10289
+ },
10290
+ "tagName": "bm-switch-group",
10291
+ "customElement": true,
10600
10292
  "attributes": [
10601
10293
  {
10602
10294
  "name": "theme",
@@ -10773,74 +10465,23 @@
10773
10465
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10774
10466
  }
10775
10467
  }
10776
- ]
10777
- }
10778
- ],
10779
- "exports": [
10780
- {
10781
- "kind": "js",
10782
- "name": "BmRadioButtonGroup",
10783
- "declaration": {
10784
- "name": "BmRadioButtonGroup",
10785
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
10786
- }
10787
- },
10788
- {
10789
- "kind": "custom-element-definition",
10790
- "name": "bm-radio-button-group",
10791
- "declaration": {
10792
- "name": "BmRadioButtonGroup",
10793
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
10794
- }
10795
- }
10796
- ]
10797
- },
10798
- {
10799
- "kind": "javascript-module",
10800
- "path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
10801
- "declarations": [
10802
- {
10803
- "kind": "class",
10804
- "description": "`bm-switch-group`",
10805
- "name": "BmSwitchGroup",
10806
- "slots": [
10807
- {
10808
- "description": "Slot for the label of the SwitchGroup",
10809
- "name": "label",
10810
- "inheritedFrom": {
10811
- "name": "InputChoiceGroup",
10812
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10813
- }
10814
- },
10815
- {
10816
- "description": "Slot for the helper text of the SwitchGroup",
10817
- "name": "helperText",
10818
- "inheritedFrom": {
10819
- "name": "InputChoiceGroup",
10820
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10821
- }
10822
- }
10823
10468
  ],
10824
- "superclass": {
10825
- "name": "InputChoiceGroup",
10826
- "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
10827
- },
10828
- "tagName": "bm-switch-group",
10829
- "customElement": true,
10830
- "attributes": [
10469
+ "members": [
10831
10470
  {
10471
+ "kind": "field",
10832
10472
  "name": "theme",
10833
10473
  "type": {
10834
10474
  "text": "'light' | 'dark' | undefined"
10835
10475
  },
10836
10476
  "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
10837
- "fieldName": "theme",
10477
+ "attribute": "theme",
10838
10478
  "inheritedFrom": {
10839
10479
  "name": "InputChoiceGroup",
10840
10480
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10841
10481
  }
10842
10482
  },
10843
10483
  {
10484
+ "kind": "field",
10844
10485
  "name": "layout",
10845
10486
  "type": {
10846
10487
  "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
@@ -10848,162 +10489,320 @@
10848
10489
  "default": "'vertical'",
10849
10490
  "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
10850
10491
  "deprecated": "use `orientation` and `fluid` instead",
10851
- "fieldName": "layout",
10492
+ "attribute": "layout",
10852
10493
  "inheritedFrom": {
10853
10494
  "name": "InputChoiceGroup",
10854
10495
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10855
10496
  }
10856
10497
  },
10857
10498
  {
10499
+ "kind": "field",
10858
10500
  "name": "orientation",
10859
10501
  "type": {
10860
10502
  "text": "'horizontal' | 'vertical'"
10861
10503
  },
10862
10504
  "default": "'vertical'",
10863
10505
  "description": "Specify InputChoiceGroup orientation",
10864
- "fieldName": "orientation",
10506
+ "attribute": "orientation",
10865
10507
  "inheritedFrom": {
10866
10508
  "name": "InputChoiceGroup",
10867
10509
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10868
10510
  }
10869
10511
  },
10870
10512
  {
10513
+ "kind": "field",
10871
10514
  "name": "fluid",
10872
10515
  "type": {
10873
10516
  "text": "boolean"
10874
10517
  },
10875
10518
  "default": "false",
10876
10519
  "description": "Specify if InputChoiceGroup should take the full width of its container",
10877
- "fieldName": "fluid",
10520
+ "attribute": "fluid",
10878
10521
  "inheritedFrom": {
10879
10522
  "name": "InputChoiceGroup",
10880
10523
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10881
10524
  }
10882
10525
  },
10883
10526
  {
10527
+ "kind": "field",
10884
10528
  "name": "required",
10885
10529
  "type": {
10886
10530
  "text": "boolean"
10887
10531
  },
10888
10532
  "default": "false",
10889
10533
  "description": "Specify if InputChoiceGroup is a required input",
10890
- "fieldName": "required",
10534
+ "attribute": "required",
10891
10535
  "inheritedFrom": {
10892
10536
  "name": "InputChoiceGroup",
10893
10537
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10894
10538
  }
10895
10539
  },
10896
10540
  {
10541
+ "kind": "field",
10897
10542
  "name": "hideRequiredMarker",
10898
10543
  "type": {
10899
10544
  "text": "boolean"
10900
10545
  },
10901
10546
  "default": "false",
10902
10547
  "description": "Specify if the InputChoiceGroup displays with an asterisk",
10903
- "fieldName": "hideRequiredMarker",
10548
+ "attribute": "hideRequiredMarker",
10904
10549
  "inheritedFrom": {
10905
10550
  "name": "InputChoiceGroup",
10906
10551
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10907
10552
  }
10908
10553
  },
10909
10554
  {
10555
+ "kind": "field",
10910
10556
  "name": "error",
10911
10557
  "type": {
10912
10558
  "text": "string | undefined"
10913
10559
  },
10914
10560
  "description": "Specify error text and display error state of a InputChoiceGroup",
10915
- "fieldName": "error",
10561
+ "attribute": "error",
10916
10562
  "inheritedFrom": {
10917
10563
  "name": "InputChoiceGroup",
10918
10564
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10919
10565
  }
10920
10566
  },
10921
10567
  {
10568
+ "kind": "field",
10922
10569
  "name": "readOnly",
10923
10570
  "type": {
10924
10571
  "text": "boolean"
10925
10572
  },
10926
10573
  "default": "false",
10927
10574
  "description": "Specify if InputChoiceGroup displays in a read-only state",
10928
- "fieldName": "readOnly",
10575
+ "attribute": "readOnly",
10929
10576
  "inheritedFrom": {
10930
10577
  "name": "InputChoiceGroup",
10931
10578
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10932
10579
  }
10933
10580
  },
10934
10581
  {
10582
+ "kind": "field",
10935
10583
  "name": "disabled",
10936
10584
  "type": {
10937
10585
  "text": "boolean"
10938
10586
  },
10939
10587
  "default": "false",
10940
10588
  "description": "Specify if InputChoiceGroup displays in a disabled state",
10941
- "fieldName": "disabled",
10589
+ "attribute": "disabled",
10590
+ "inheritedFrom": {
10591
+ "name": "InputChoiceGroup",
10592
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10593
+ }
10594
+ },
10595
+ {
10596
+ "kind": "field",
10597
+ "name": "radioButtons",
10598
+ "type": {
10599
+ "text": "NodeListOf<Element>"
10600
+ },
10601
+ "inheritedFrom": {
10602
+ "name": "InputChoiceGroup",
10603
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10604
+ }
10605
+ },
10606
+ {
10607
+ "kind": "field",
10608
+ "name": "checkboxes",
10609
+ "type": {
10610
+ "text": "NodeListOf<Element>"
10611
+ },
10612
+ "inheritedFrom": {
10613
+ "name": "InputChoiceGroup",
10614
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10615
+ }
10616
+ },
10617
+ {
10618
+ "kind": "field",
10619
+ "name": "switches",
10620
+ "type": {
10621
+ "text": "NodeListOf<Element>"
10622
+ },
10623
+ "inheritedFrom": {
10624
+ "name": "InputChoiceGroup",
10625
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10626
+ }
10627
+ },
10628
+ {
10629
+ "kind": "field",
10630
+ "name": "inputGroupContextValue",
10631
+ "type": {
10632
+ "text": "InputChoiceGroupContextProps"
10633
+ },
10634
+ "privacy": "public",
10635
+ "default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
10942
10636
  "inheritedFrom": {
10943
10637
  "name": "InputChoiceGroup",
10944
10638
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10945
10639
  }
10946
10640
  },
10947
10641
  {
10642
+ "kind": "field",
10643
+ "name": "formAssociated",
10644
+ "type": {
10645
+ "text": "boolean"
10646
+ },
10647
+ "static": true,
10648
+ "default": "true",
10649
+ "inheritedFrom": {
10650
+ "name": "FormField",
10651
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10652
+ }
10653
+ },
10654
+ {
10655
+ "kind": "field",
10948
10656
  "name": "id",
10949
10657
  "type": {
10950
10658
  "text": "string"
10951
10659
  },
10952
10660
  "default": "''",
10953
- "fieldName": "id",
10661
+ "attribute": "id",
10954
10662
  "inheritedFrom": {
10955
10663
  "name": "FormField",
10956
10664
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10957
10665
  }
10958
10666
  },
10959
10667
  {
10668
+ "kind": "field",
10960
10669
  "name": "name",
10961
10670
  "type": {
10962
10671
  "text": "string"
10963
10672
  },
10964
10673
  "default": "''",
10965
- "fieldName": "name",
10674
+ "attribute": "name",
10966
10675
  "inheritedFrom": {
10967
10676
  "name": "FormField",
10968
10677
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10969
10678
  }
10970
10679
  },
10971
10680
  {
10681
+ "kind": "field",
10972
10682
  "name": "value",
10973
10683
  "type": {
10974
10684
  "text": "string"
10975
10685
  },
10976
10686
  "default": "''",
10977
- "fieldName": "value",
10687
+ "attribute": "value",
10978
10688
  "inheritedFrom": {
10979
10689
  "name": "FormField",
10980
10690
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10981
10691
  }
10982
10692
  },
10983
10693
  {
10694
+ "kind": "field",
10984
10695
  "name": "validationRules",
10985
10696
  "type": {
10986
10697
  "text": "Array<FormValidator>"
10987
10698
  },
10988
10699
  "default": "[]",
10989
- "fieldName": "validationRules",
10700
+ "attribute": "validationRules",
10990
10701
  "inheritedFrom": {
10991
10702
  "name": "FormField",
10992
10703
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10993
10704
  }
10994
10705
  },
10995
10706
  {
10996
- "name": "input-aria-label",
10707
+ "kind": "field",
10708
+ "name": "inputAriaLabel",
10997
10709
  "type": {
10998
10710
  "text": "string | undefined"
10999
10711
  },
11000
- "fieldName": "inputAriaLabel",
10712
+ "attribute": "input-aria-label",
10713
+ "inheritedFrom": {
10714
+ "name": "FormField",
10715
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10716
+ }
10717
+ },
10718
+ {
10719
+ "kind": "field",
10720
+ "name": "formContext",
10721
+ "type": {
10722
+ "text": "BmFormContext"
10723
+ },
10724
+ "inheritedFrom": {
10725
+ "name": "FormField",
10726
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10727
+ }
10728
+ },
10729
+ {
10730
+ "kind": "method",
10731
+ "name": "formAssociatedCallback",
10732
+ "return": {
10733
+ "type": {
10734
+ "text": "void"
10735
+ }
10736
+ },
10737
+ "inheritedFrom": {
10738
+ "name": "FormField",
10739
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10740
+ }
10741
+ },
10742
+ {
10743
+ "kind": "method",
10744
+ "name": "formResetCallback",
10745
+ "return": {
10746
+ "type": {
10747
+ "text": "void"
10748
+ }
10749
+ },
10750
+ "inheritedFrom": {
10751
+ "name": "FormField",
10752
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10753
+ }
10754
+ },
10755
+ {
10756
+ "kind": "method",
10757
+ "name": "finalizeAssociatedCallback",
10758
+ "return": {
10759
+ "type": {
10760
+ "text": "FinalizeAssociatedResult"
10761
+ }
10762
+ },
10763
+ "parameters": [
10764
+ {
10765
+ "name": "ctxValue",
10766
+ "type": {
10767
+ "text": "string"
10768
+ }
10769
+ }
10770
+ ],
11001
10771
  "inheritedFrom": {
11002
10772
  "name": "FormField",
11003
10773
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11004
10774
  }
11005
10775
  }
11006
- ],
10776
+ ]
10777
+ }
10778
+ ],
10779
+ "exports": [
10780
+ {
10781
+ "kind": "js",
10782
+ "name": "BmSwitchGroup",
10783
+ "declaration": {
10784
+ "name": "BmSwitchGroup",
10785
+ "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
10786
+ }
10787
+ },
10788
+ {
10789
+ "kind": "custom-element-definition",
10790
+ "name": "bm-switch-group",
10791
+ "declaration": {
10792
+ "name": "BmSwitchGroup",
10793
+ "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
10794
+ }
10795
+ }
10796
+ ]
10797
+ },
10798
+ {
10799
+ "kind": "javascript-module",
10800
+ "path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
10801
+ "declarations": [
10802
+ {
10803
+ "kind": "class",
10804
+ "description": "",
10805
+ "name": "BmRadioButtonGroup",
11007
10806
  "members": [
11008
10807
  {
11009
10808
  "kind": "field",
@@ -11311,24 +11110,225 @@
11311
11110
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11312
11111
  }
11313
11112
  }
11113
+ ],
11114
+ "superclass": {
11115
+ "name": "InputChoiceGroup",
11116
+ "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
11117
+ },
11118
+ "tagName": "bm-radio-button-group",
11119
+ "customElement": true,
11120
+ "slots": [
11121
+ {
11122
+ "description": "Add label text to the InputChoiceGroup",
11123
+ "name": "label",
11124
+ "inheritedFrom": {
11125
+ "name": "InputChoiceGroup",
11126
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11127
+ }
11128
+ },
11129
+ {
11130
+ "description": "Add helper text to the InputChoiceGroup",
11131
+ "name": "helperText",
11132
+ "inheritedFrom": {
11133
+ "name": "InputChoiceGroup",
11134
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11135
+ }
11136
+ }
11137
+ ],
11138
+ "attributes": [
11139
+ {
11140
+ "name": "theme",
11141
+ "type": {
11142
+ "text": "'light' | 'dark' | undefined"
11143
+ },
11144
+ "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
11145
+ "fieldName": "theme",
11146
+ "inheritedFrom": {
11147
+ "name": "InputChoiceGroup",
11148
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11149
+ }
11150
+ },
11151
+ {
11152
+ "name": "layout",
11153
+ "type": {
11154
+ "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
11155
+ },
11156
+ "default": "'vertical'",
11157
+ "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
11158
+ "deprecated": "use `orientation` and `fluid` instead",
11159
+ "fieldName": "layout",
11160
+ "inheritedFrom": {
11161
+ "name": "InputChoiceGroup",
11162
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11163
+ }
11164
+ },
11165
+ {
11166
+ "name": "orientation",
11167
+ "type": {
11168
+ "text": "'horizontal' | 'vertical'"
11169
+ },
11170
+ "default": "'vertical'",
11171
+ "description": "Specify InputChoiceGroup orientation",
11172
+ "fieldName": "orientation",
11173
+ "inheritedFrom": {
11174
+ "name": "InputChoiceGroup",
11175
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11176
+ }
11177
+ },
11178
+ {
11179
+ "name": "fluid",
11180
+ "type": {
11181
+ "text": "boolean"
11182
+ },
11183
+ "default": "false",
11184
+ "description": "Specify if InputChoiceGroup should take the full width of its container",
11185
+ "fieldName": "fluid",
11186
+ "inheritedFrom": {
11187
+ "name": "InputChoiceGroup",
11188
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11189
+ }
11190
+ },
11191
+ {
11192
+ "name": "required",
11193
+ "type": {
11194
+ "text": "boolean"
11195
+ },
11196
+ "default": "false",
11197
+ "description": "Specify if InputChoiceGroup is a required input",
11198
+ "fieldName": "required",
11199
+ "inheritedFrom": {
11200
+ "name": "InputChoiceGroup",
11201
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11202
+ }
11203
+ },
11204
+ {
11205
+ "name": "hideRequiredMarker",
11206
+ "type": {
11207
+ "text": "boolean"
11208
+ },
11209
+ "default": "false",
11210
+ "description": "Specify if the InputChoiceGroup displays with an asterisk",
11211
+ "fieldName": "hideRequiredMarker",
11212
+ "inheritedFrom": {
11213
+ "name": "InputChoiceGroup",
11214
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11215
+ }
11216
+ },
11217
+ {
11218
+ "name": "error",
11219
+ "type": {
11220
+ "text": "string | undefined"
11221
+ },
11222
+ "description": "Specify error text and display error state of a InputChoiceGroup",
11223
+ "fieldName": "error",
11224
+ "inheritedFrom": {
11225
+ "name": "InputChoiceGroup",
11226
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11227
+ }
11228
+ },
11229
+ {
11230
+ "name": "readOnly",
11231
+ "type": {
11232
+ "text": "boolean"
11233
+ },
11234
+ "default": "false",
11235
+ "description": "Specify if InputChoiceGroup displays in a read-only state",
11236
+ "fieldName": "readOnly",
11237
+ "inheritedFrom": {
11238
+ "name": "InputChoiceGroup",
11239
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11240
+ }
11241
+ },
11242
+ {
11243
+ "name": "disabled",
11244
+ "type": {
11245
+ "text": "boolean"
11246
+ },
11247
+ "default": "false",
11248
+ "description": "Specify if InputChoiceGroup displays in a disabled state",
11249
+ "fieldName": "disabled",
11250
+ "inheritedFrom": {
11251
+ "name": "InputChoiceGroup",
11252
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11253
+ }
11254
+ },
11255
+ {
11256
+ "name": "id",
11257
+ "type": {
11258
+ "text": "string"
11259
+ },
11260
+ "default": "''",
11261
+ "fieldName": "id",
11262
+ "inheritedFrom": {
11263
+ "name": "FormField",
11264
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11265
+ }
11266
+ },
11267
+ {
11268
+ "name": "name",
11269
+ "type": {
11270
+ "text": "string"
11271
+ },
11272
+ "default": "''",
11273
+ "fieldName": "name",
11274
+ "inheritedFrom": {
11275
+ "name": "FormField",
11276
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11277
+ }
11278
+ },
11279
+ {
11280
+ "name": "value",
11281
+ "type": {
11282
+ "text": "string"
11283
+ },
11284
+ "default": "''",
11285
+ "fieldName": "value",
11286
+ "inheritedFrom": {
11287
+ "name": "FormField",
11288
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11289
+ }
11290
+ },
11291
+ {
11292
+ "name": "validationRules",
11293
+ "type": {
11294
+ "text": "Array<FormValidator>"
11295
+ },
11296
+ "default": "[]",
11297
+ "fieldName": "validationRules",
11298
+ "inheritedFrom": {
11299
+ "name": "FormField",
11300
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11301
+ }
11302
+ },
11303
+ {
11304
+ "name": "input-aria-label",
11305
+ "type": {
11306
+ "text": "string | undefined"
11307
+ },
11308
+ "fieldName": "inputAriaLabel",
11309
+ "inheritedFrom": {
11310
+ "name": "FormField",
11311
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11312
+ }
11313
+ }
11314
11314
  ]
11315
11315
  }
11316
11316
  ],
11317
11317
  "exports": [
11318
11318
  {
11319
11319
  "kind": "js",
11320
- "name": "BmSwitchGroup",
11320
+ "name": "BmRadioButtonGroup",
11321
11321
  "declaration": {
11322
- "name": "BmSwitchGroup",
11323
- "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
11322
+ "name": "BmRadioButtonGroup",
11323
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
11324
11324
  }
11325
11325
  },
11326
11326
  {
11327
11327
  "kind": "custom-element-definition",
11328
- "name": "bm-switch-group",
11328
+ "name": "bm-radio-button-group",
11329
11329
  "declaration": {
11330
- "name": "BmSwitchGroup",
11331
- "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
11330
+ "name": "BmRadioButtonGroup",
11331
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
11332
11332
  }
11333
11333
  }
11334
11334
  ]