@viasat/beam-web-components 2.50.0 → 2.51.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,147 +294,273 @@
294
294
  },
295
295
  {
296
296
  "kind": "javascript-module",
297
- "path": "libs/web-components/src/lib/Badge/Badge.ts",
297
+ "path": "libs/web-components/src/lib/Alert/Alert.ts",
298
298
  "declarations": [
299
299
  {
300
300
  "kind": "class",
301
- "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
302
- "name": "BmBadge",
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": "Provide text for the Badge",
306
- "name": "default"
305
+ "description": "Specify a different icon for the Alert",
306
+ "name": "icon"
307
307
  },
308
308
  {
309
- "description": "Specify a different icon for the Badge",
310
- "name": "icon"
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"
311
319
  }
312
320
  ],
313
321
  "members": [
314
322
  {
315
323
  "kind": "field",
316
- "name": "appearance",
324
+ "name": "heading",
317
325
  "type": {
318
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
326
+ "text": "string | undefined"
319
327
  },
320
- "default": "'infoPrimary'",
321
- "description": "Specify the appearance of the Badge",
322
- "attribute": "appearance"
328
+ "description": "Specify the heading text for Alert",
329
+ "attribute": "heading"
323
330
  },
324
331
  {
325
332
  "kind": "field",
326
- "name": "theme",
333
+ "name": "body",
327
334
  "type": {
328
- "text": "'light' | 'dark' | undefined"
335
+ "text": "string | undefined"
329
336
  },
330
- "description": "Theme of the Badge",
331
- "attribute": "theme"
337
+ "description": "Specify the body text for Alert",
338
+ "attribute": "body"
332
339
  },
333
340
  {
334
341
  "kind": "field",
335
342
  "name": "size",
336
343
  "type": {
337
- "text": "'sm' | 'md' | undefined"
344
+ "text": "'sm' | 'md'"
338
345
  },
339
346
  "default": "'sm'",
340
- "description": "Specify the size of the Badge",
347
+ "description": "Specify the size of the Alert",
341
348
  "attribute": "size"
342
349
  },
343
350
  {
344
351
  "kind": "field",
345
- "name": "emphasis",
352
+ "name": "fullWidth",
346
353
  "type": {
347
- "text": "'strong' | 'medium' | 'subtle'"
354
+ "text": "boolean"
348
355
  },
349
- "default": "'strong'",
350
- "description": "Specify the emphasis of the Badge",
351
- "attribute": "emphasis"
356
+ "default": "false",
357
+ "description": "Specify if the Alert has no border radius",
358
+ "attribute": "fullWidth"
359
+ },
360
+ {
361
+ "kind": "field",
362
+ "name": "theme",
363
+ "type": {
364
+ "text": "'light' | 'dark' | undefined"
365
+ },
366
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
367
+ "attribute": "theme"
368
+ },
369
+ {
370
+ "kind": "field",
371
+ "name": "appearance",
372
+ "type": {
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"
384
+ },
385
+ "default": "false",
386
+ "description": "Specify if the Alert is hidden",
387
+ "attribute": "hidden"
352
388
  },
353
389
  {
354
390
  "kind": "field",
355
391
  "name": "hideIcon",
356
392
  "type": {
357
- "text": "boolean | undefined"
393
+ "text": "boolean"
358
394
  },
359
- "description": "Hides Badge icon",
395
+ "default": "false",
396
+ "description": "Specify if the icon displays on the Alert",
360
397
  "attribute": "hideIcon"
398
+ },
399
+ {
400
+ "kind": "field",
401
+ "name": "dismissible",
402
+ "type": {
403
+ "text": "boolean"
404
+ },
405
+ "default": "false",
406
+ "description": "Specify if the Alert can be dismissed",
407
+ "attribute": "dismissible"
408
+ },
409
+ {
410
+ "kind": "field",
411
+ "name": "disableAutoFocus",
412
+ "type": {
413
+ "text": "boolean"
414
+ },
415
+ "default": "false",
416
+ "description": "Prevent autofocus on show",
417
+ "attribute": "disableAutoFocus"
418
+ },
419
+ {
420
+ "kind": "field",
421
+ "name": "disableCloseOnEscape",
422
+ "type": {
423
+ "text": "boolean"
424
+ },
425
+ "default": "false",
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"
361
434
  }
362
435
  ],
363
436
  "attributes": [
364
437
  {
365
- "name": "appearance",
438
+ "name": "heading",
366
439
  "type": {
367
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
440
+ "text": "string | undefined"
368
441
  },
369
- "default": "'infoPrimary'",
370
- "description": "Specify the appearance of the Badge",
371
- "fieldName": "appearance"
442
+ "description": "Specify the heading text for Alert",
443
+ "fieldName": "heading"
372
444
  },
373
445
  {
374
- "name": "theme",
446
+ "name": "body",
375
447
  "type": {
376
- "text": "'light' | 'dark' | undefined"
448
+ "text": "string | undefined"
377
449
  },
378
- "description": "Theme of the Badge",
379
- "fieldName": "theme"
450
+ "description": "Specify the body text for Alert",
451
+ "fieldName": "body"
380
452
  },
381
453
  {
382
454
  "name": "size",
383
455
  "type": {
384
- "text": "'sm' | 'md' | undefined"
456
+ "text": "'sm' | 'md'"
385
457
  },
386
458
  "default": "'sm'",
387
- "description": "Specify the size of the Badge",
459
+ "description": "Specify the size of the Alert",
388
460
  "fieldName": "size"
389
461
  },
390
462
  {
391
- "name": "emphasis",
463
+ "name": "fullWidth",
392
464
  "type": {
393
- "text": "'strong' | 'medium' | 'subtle'"
465
+ "text": "boolean"
394
466
  },
395
- "default": "'strong'",
396
- "description": "Specify the emphasis of the Badge",
397
- "fieldName": "emphasis"
467
+ "default": "false",
468
+ "description": "Specify if the Alert has no border radius",
469
+ "fieldName": "fullWidth"
470
+ },
471
+ {
472
+ "name": "theme",
473
+ "type": {
474
+ "text": "'light' | 'dark' | undefined"
475
+ },
476
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
477
+ "fieldName": "theme"
478
+ },
479
+ {
480
+ "name": "appearance",
481
+ "type": {
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"
492
+ },
493
+ "default": "false",
494
+ "description": "Specify if the Alert is hidden",
495
+ "fieldName": "hidden"
398
496
  },
399
497
  {
400
498
  "name": "hideIcon",
401
499
  "type": {
402
- "text": "boolean | undefined"
500
+ "text": "boolean"
403
501
  },
404
- "description": "Hides Badge icon",
502
+ "default": "false",
503
+ "description": "Specify if the icon displays on the Alert",
405
504
  "fieldName": "hideIcon"
505
+ },
506
+ {
507
+ "name": "dismissible",
508
+ "type": {
509
+ "text": "boolean"
510
+ },
511
+ "default": "false",
512
+ "description": "Specify if the Alert can be dismissed",
513
+ "fieldName": "dismissible"
514
+ },
515
+ {
516
+ "name": "disableAutoFocus",
517
+ "type": {
518
+ "text": "boolean"
519
+ },
520
+ "default": "false",
521
+ "description": "Prevent autofocus on show",
522
+ "fieldName": "disableAutoFocus"
523
+ },
524
+ {
525
+ "name": "disableCloseOnEscape",
526
+ "type": {
527
+ "text": "boolean"
528
+ },
529
+ "default": "false",
530
+ "description": "Prevent Escape from closing",
531
+ "fieldName": "disableCloseOnEscape"
406
532
  }
407
533
  ],
408
534
  "superclass": {
409
535
  "name": "LitElement",
410
536
  "package": "lit"
411
537
  },
412
- "tagName": "bm-badge",
538
+ "tagName": "bm-alert",
413
539
  "customElement": true
414
540
  }
415
541
  ],
416
542
  "exports": [
417
543
  {
418
544
  "kind": "js",
419
- "name": "BmBadge",
545
+ "name": "BmAlert",
420
546
  "declaration": {
421
- "name": "BmBadge",
422
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
547
+ "name": "BmAlert",
548
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
423
549
  }
424
550
  },
425
551
  {
426
552
  "kind": "custom-element-definition",
427
- "name": "bm-badge",
553
+ "name": "bm-alert",
428
554
  "declaration": {
429
- "name": "BmBadge",
430
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
555
+ "name": "BmAlert",
556
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
431
557
  }
432
558
  }
433
559
  ]
434
560
  },
435
561
  {
436
562
  "kind": "javascript-module",
437
- "path": "libs/web-components/src/lib/Badge/index.ts",
563
+ "path": "libs/web-components/src/lib/Alert/index.ts",
438
564
  "declarations": [],
439
565
  "exports": [
440
566
  {
@@ -442,35 +568,30 @@
442
568
  "name": "*",
443
569
  "declaration": {
444
570
  "name": "*",
445
- "package": "./Badge"
571
+ "package": "./Alert"
446
572
  }
447
573
  }
448
574
  ]
449
575
  },
450
576
  {
451
577
  "kind": "javascript-module",
452
- "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
578
+ "path": "libs/web-components/src/lib/Badge/Badge.ts",
453
579
  "declarations": [
454
580
  {
455
581
  "kind": "class",
456
- "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
457
- "name": "BmBadgeDot",
582
+ "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
583
+ "name": "BmBadge",
458
584
  "slots": [
459
585
  {
460
- "description": "Provide text for the BadgeDot",
586
+ "description": "Provide text for the Badge",
461
587
  "name": "default"
588
+ },
589
+ {
590
+ "description": "Specify a different icon for the Badge",
591
+ "name": "icon"
462
592
  }
463
593
  ],
464
594
  "members": [
465
- {
466
- "kind": "field",
467
- "name": "theme",
468
- "type": {
469
- "text": "'light' | 'dark' | undefined"
470
- },
471
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
472
- "attribute": "theme"
473
- },
474
595
  {
475
596
  "kind": "field",
476
597
  "name": "appearance",
@@ -478,14 +599,174 @@
478
599
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
479
600
  },
480
601
  "default": "'infoPrimary'",
481
- "description": "Specify the appearance of the BadgeDot",
602
+ "description": "Specify the appearance of the Badge",
482
603
  "attribute": "appearance"
483
604
  },
484
605
  {
485
606
  "kind": "field",
486
- "name": "emphasis",
607
+ "name": "theme",
487
608
  "type": {
488
- "text": "'strong' | 'subtle'"
609
+ "text": "'light' | 'dark' | undefined"
610
+ },
611
+ "description": "Theme of the Badge",
612
+ "attribute": "theme"
613
+ },
614
+ {
615
+ "kind": "field",
616
+ "name": "size",
617
+ "type": {
618
+ "text": "'sm' | 'md' | undefined"
619
+ },
620
+ "default": "'sm'",
621
+ "description": "Specify the size of the Badge",
622
+ "attribute": "size"
623
+ },
624
+ {
625
+ "kind": "field",
626
+ "name": "emphasis",
627
+ "type": {
628
+ "text": "'strong' | 'medium' | 'subtle'"
629
+ },
630
+ "default": "'strong'",
631
+ "description": "Specify the emphasis of the Badge",
632
+ "attribute": "emphasis"
633
+ },
634
+ {
635
+ "kind": "field",
636
+ "name": "hideIcon",
637
+ "type": {
638
+ "text": "boolean | undefined"
639
+ },
640
+ "description": "Hides Badge icon",
641
+ "attribute": "hideIcon"
642
+ }
643
+ ],
644
+ "attributes": [
645
+ {
646
+ "name": "appearance",
647
+ "type": {
648
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
649
+ },
650
+ "default": "'infoPrimary'",
651
+ "description": "Specify the appearance of the Badge",
652
+ "fieldName": "appearance"
653
+ },
654
+ {
655
+ "name": "theme",
656
+ "type": {
657
+ "text": "'light' | 'dark' | undefined"
658
+ },
659
+ "description": "Theme of the Badge",
660
+ "fieldName": "theme"
661
+ },
662
+ {
663
+ "name": "size",
664
+ "type": {
665
+ "text": "'sm' | 'md' | undefined"
666
+ },
667
+ "default": "'sm'",
668
+ "description": "Specify the size of the Badge",
669
+ "fieldName": "size"
670
+ },
671
+ {
672
+ "name": "emphasis",
673
+ "type": {
674
+ "text": "'strong' | 'medium' | 'subtle'"
675
+ },
676
+ "default": "'strong'",
677
+ "description": "Specify the emphasis of the Badge",
678
+ "fieldName": "emphasis"
679
+ },
680
+ {
681
+ "name": "hideIcon",
682
+ "type": {
683
+ "text": "boolean | undefined"
684
+ },
685
+ "description": "Hides Badge icon",
686
+ "fieldName": "hideIcon"
687
+ }
688
+ ],
689
+ "superclass": {
690
+ "name": "LitElement",
691
+ "package": "lit"
692
+ },
693
+ "tagName": "bm-badge",
694
+ "customElement": true
695
+ }
696
+ ],
697
+ "exports": [
698
+ {
699
+ "kind": "js",
700
+ "name": "BmBadge",
701
+ "declaration": {
702
+ "name": "BmBadge",
703
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
704
+ }
705
+ },
706
+ {
707
+ "kind": "custom-element-definition",
708
+ "name": "bm-badge",
709
+ "declaration": {
710
+ "name": "BmBadge",
711
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
712
+ }
713
+ }
714
+ ]
715
+ },
716
+ {
717
+ "kind": "javascript-module",
718
+ "path": "libs/web-components/src/lib/Badge/index.ts",
719
+ "declarations": [],
720
+ "exports": [
721
+ {
722
+ "kind": "js",
723
+ "name": "*",
724
+ "declaration": {
725
+ "name": "*",
726
+ "package": "./Badge"
727
+ }
728
+ }
729
+ ]
730
+ },
731
+ {
732
+ "kind": "javascript-module",
733
+ "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
734
+ "declarations": [
735
+ {
736
+ "kind": "class",
737
+ "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",
738
+ "name": "BmBadgeDot",
739
+ "slots": [
740
+ {
741
+ "description": "Provide text for the BadgeDot",
742
+ "name": "default"
743
+ }
744
+ ],
745
+ "members": [
746
+ {
747
+ "kind": "field",
748
+ "name": "theme",
749
+ "type": {
750
+ "text": "'light' | 'dark' | undefined"
751
+ },
752
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
753
+ "attribute": "theme"
754
+ },
755
+ {
756
+ "kind": "field",
757
+ "name": "appearance",
758
+ "type": {
759
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
760
+ },
761
+ "default": "'infoPrimary'",
762
+ "description": "Specify the appearance of the BadgeDot",
763
+ "attribute": "appearance"
764
+ },
765
+ {
766
+ "kind": "field",
767
+ "name": "emphasis",
768
+ "type": {
769
+ "text": "'strong' | 'subtle'"
489
770
  },
490
771
  "default": "'strong'",
491
772
  "description": "Specify the emphasis of the BadgeDot",
@@ -581,392 +862,376 @@
581
862
  },
582
863
  {
583
864
  "kind": "javascript-module",
584
- "path": "libs/web-components/src/lib/Box/Box.ts",
865
+ "path": "libs/web-components/src/lib/Avatar/Avatar.ts",
585
866
  "declarations": [
586
867
  {
587
868
  "kind": "class",
588
- "description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
589
- "name": "BmBox",
869
+ "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** ",
870
+ "name": "BmAvatar",
590
871
  "slots": [
591
872
  {
592
- "description": "Provide content for the Box",
593
- "name": "default"
873
+ "description": "Customize the default icon",
874
+ "name": "icon"
594
875
  }
595
876
  ],
596
877
  "members": [
597
878
  {
598
879
  "kind": "field",
599
- "name": "backgroundColor",
880
+ "name": "appearance",
600
881
  "type": {
601
- "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
882
+ "text": "'accent' | 'neutral' | undefined"
602
883
  },
603
- "description": "Specify the background color of a Box",
604
- "attribute": "backgroundColor"
884
+ "default": "'neutral'",
885
+ "description": "Specify the appearance of the Avatar",
886
+ "attribute": "appearance"
605
887
  },
606
888
  {
607
889
  "kind": "field",
608
- "name": "borderColor",
890
+ "name": "name",
609
891
  "type": {
610
- "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
892
+ "text": "string | undefined"
611
893
  },
612
- "description": "Specify the border color of a Box",
613
- "attribute": "borderColor"
894
+ "description": "Specify a name to display initials in the Avatar",
895
+ "attribute": "name"
614
896
  },
615
897
  {
616
898
  "kind": "field",
617
- "name": "borderWidth",
899
+ "name": "src",
618
900
  "type": {
619
- "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
901
+ "text": "string | undefined"
620
902
  },
621
- "description": "Specify the border width of a Box",
622
- "attribute": "borderWidth"
903
+ "description": "Pass an image to the Avatar",
904
+ "attribute": "src"
623
905
  },
624
906
  {
625
907
  "kind": "field",
626
- "name": "borderRadius",
908
+ "name": "alt",
627
909
  "type": {
628
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
910
+ "text": "string | undefined"
629
911
  },
630
- "description": "Specify the border radius of a Box",
631
- "attribute": "borderRadius"
912
+ "description": "Specify alt for image",
913
+ "attribute": "alt"
632
914
  },
633
915
  {
634
916
  "kind": "field",
635
- "name": "px",
917
+ "name": "size",
636
918
  "type": {
637
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
919
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
638
920
  },
639
- "description": "Specify before and after padding of a Box",
640
- "attribute": "px"
921
+ "default": "'md'",
922
+ "description": "Specify the size of the Avatar",
923
+ "attribute": "size"
641
924
  },
642
925
  {
643
926
  "kind": "field",
644
- "name": "py",
927
+ "name": "disabled",
645
928
  "type": {
646
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
929
+ "text": "boolean | undefined"
647
930
  },
648
- "description": "Specify top and bottom padding of a Box",
649
- "attribute": "py"
931
+ "default": "false",
932
+ "description": "Specify if the Avatar is disabled",
933
+ "attribute": "disabled"
650
934
  },
651
935
  {
652
936
  "kind": "field",
653
- "name": "pTop",
937
+ "name": "shape",
654
938
  "type": {
655
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
939
+ "text": "'circle' | 'square' | undefined"
656
940
  },
657
- "description": "Specify top padding of a Box",
658
- "attribute": "pTop"
941
+ "default": "'circle'",
942
+ "description": "Specify the shape of the Avatar",
943
+ "attribute": "shape"
659
944
  },
660
945
  {
661
946
  "kind": "field",
662
- "name": "pBottom",
947
+ "name": "isInteractive",
663
948
  "type": {
664
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
949
+ "text": "boolean"
665
950
  },
666
- "description": "Specify bottom padding of a Box",
667
- "attribute": "pBottom"
951
+ "default": "false",
952
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
953
+ "attribute": "isInteractive"
668
954
  },
669
955
  {
670
956
  "kind": "field",
671
- "name": "pBefore",
957
+ "name": "isFocusable",
672
958
  "type": {
673
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
959
+ "text": "boolean"
674
960
  },
675
- "description": "Specify before padding of a Box",
676
- "attribute": "pBefore"
961
+ "default": "false",
962
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
963
+ "attribute": "isFocusable"
677
964
  },
678
965
  {
679
966
  "kind": "field",
680
- "name": "pAfter",
967
+ "name": "withBorder",
681
968
  "type": {
682
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
969
+ "text": "boolean"
683
970
  },
684
- "description": "Specify after padding of a Box",
685
- "attribute": "pAfter"
686
- },
971
+ "default": "false",
972
+ "attribute": "withBorder"
973
+ }
974
+ ],
975
+ "attributes": [
687
976
  {
688
- "kind": "field",
689
- "name": "mx",
977
+ "name": "appearance",
690
978
  "type": {
691
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
979
+ "text": "'accent' | 'neutral' | undefined"
692
980
  },
693
- "description": "Specify before and after margin of a Box",
694
- "attribute": "mx"
981
+ "default": "'neutral'",
982
+ "description": "Specify the appearance of the Avatar",
983
+ "fieldName": "appearance"
695
984
  },
696
985
  {
697
- "kind": "field",
698
- "name": "my",
986
+ "name": "name",
699
987
  "type": {
700
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
988
+ "text": "string | undefined"
701
989
  },
702
- "description": "Specify top and bottom margin of a Box",
703
- "attribute": "my"
990
+ "description": "Specify a name to display initials in the Avatar",
991
+ "fieldName": "name"
704
992
  },
705
993
  {
706
- "kind": "field",
707
- "name": "mTop",
994
+ "name": "src",
708
995
  "type": {
709
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
996
+ "text": "string | undefined"
710
997
  },
711
- "description": "Specify top margin of a Box",
712
- "attribute": "mTop"
998
+ "description": "Pass an image to the Avatar",
999
+ "fieldName": "src"
713
1000
  },
714
1001
  {
715
- "kind": "field",
716
- "name": "mBottom",
1002
+ "name": "alt",
717
1003
  "type": {
718
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1004
+ "text": "string | undefined"
719
1005
  },
720
- "description": "Specify bottom margin of a Box",
721
- "attribute": "mBottom"
1006
+ "description": "Specify alt for image",
1007
+ "fieldName": "alt"
722
1008
  },
723
1009
  {
724
- "kind": "field",
725
- "name": "mBefore",
1010
+ "name": "size",
726
1011
  "type": {
727
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1012
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
728
1013
  },
729
- "description": "Specify before margin of a Box",
730
- "attribute": "mBefore"
1014
+ "default": "'md'",
1015
+ "description": "Specify the size of the Avatar",
1016
+ "fieldName": "size"
731
1017
  },
732
1018
  {
733
- "kind": "field",
734
- "name": "mAfter",
1019
+ "name": "disabled",
735
1020
  "type": {
736
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1021
+ "text": "boolean | undefined"
737
1022
  },
738
- "description": "Specify after margin of a Box",
739
- "attribute": "mAfter"
1023
+ "default": "false",
1024
+ "description": "Specify if the Avatar is disabled",
1025
+ "fieldName": "disabled"
740
1026
  },
741
1027
  {
742
- "kind": "field",
743
- "name": "m",
1028
+ "name": "shape",
744
1029
  "type": {
745
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1030
+ "text": "'circle' | 'square' | undefined"
746
1031
  },
747
- "description": "Specify all margin",
748
- "attribute": "m"
1032
+ "default": "'circle'",
1033
+ "description": "Specify the shape of the Avatar",
1034
+ "fieldName": "shape"
749
1035
  },
750
1036
  {
751
- "kind": "field",
752
- "name": "p",
1037
+ "name": "isInteractive",
753
1038
  "type": {
754
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1039
+ "text": "boolean"
755
1040
  },
756
- "description": "Specify all padding",
757
- "attribute": "p"
1041
+ "default": "false",
1042
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
1043
+ "fieldName": "isInteractive"
758
1044
  },
759
1045
  {
760
- "kind": "field",
761
- "name": "gap",
1046
+ "name": "isFocusable",
762
1047
  "type": {
763
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1048
+ "text": "boolean"
764
1049
  },
765
- "description": "Specify gap between child elements",
766
- "attribute": "gap"
1050
+ "default": "false",
1051
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
1052
+ "fieldName": "isFocusable"
767
1053
  },
768
1054
  {
769
- "kind": "field",
770
- "name": "shadow",
1055
+ "name": "withBorder",
771
1056
  "type": {
772
- "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1057
+ "text": "boolean"
773
1058
  },
774
- "description": "Specify if a Box has a shadow",
775
- "attribute": "shadow"
1059
+ "default": "false",
1060
+ "fieldName": "withBorder"
776
1061
  }
777
1062
  ],
778
- "attributes": [
779
- {
780
- "name": "backgroundColor",
781
- "type": {
782
- "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
783
- },
784
- "description": "Specify the background color of a Box",
785
- "fieldName": "backgroundColor"
786
- },
1063
+ "superclass": {
1064
+ "name": "LitElement",
1065
+ "package": "lit"
1066
+ },
1067
+ "tagName": "bm-avatar",
1068
+ "customElement": true
1069
+ }
1070
+ ],
1071
+ "exports": [
1072
+ {
1073
+ "kind": "js",
1074
+ "name": "BmAvatar",
1075
+ "declaration": {
1076
+ "name": "BmAvatar",
1077
+ "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
1078
+ }
1079
+ },
1080
+ {
1081
+ "kind": "custom-element-definition",
1082
+ "name": "bm-avatar",
1083
+ "declaration": {
1084
+ "name": "BmAvatar",
1085
+ "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
1086
+ }
1087
+ }
1088
+ ]
1089
+ },
1090
+ {
1091
+ "kind": "javascript-module",
1092
+ "path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
1093
+ "declarations": [
1094
+ {
1095
+ "kind": "variable",
1096
+ "name": "AvatarGroupCtx"
1097
+ }
1098
+ ],
1099
+ "exports": [
1100
+ {
1101
+ "kind": "js",
1102
+ "name": "AvatarGroupCtx",
1103
+ "declaration": {
1104
+ "name": "AvatarGroupCtx",
1105
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
1106
+ }
1107
+ }
1108
+ ]
1109
+ },
1110
+ {
1111
+ "kind": "javascript-module",
1112
+ "path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
1113
+ "declarations": [
1114
+ {
1115
+ "kind": "class",
1116
+ "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.",
1117
+ "name": "BmAvatarGroup",
1118
+ "slots": [
787
1119
  {
788
- "name": "borderColor",
789
- "type": {
790
- "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
791
- },
792
- "description": "Specify the border color of a Box",
793
- "fieldName": "borderColor"
794
- },
1120
+ "description": "Add Avatars to create a group",
1121
+ "name": "default"
1122
+ }
1123
+ ],
1124
+ "members": [
795
1125
  {
796
- "name": "borderWidth",
1126
+ "kind": "field",
1127
+ "name": "wrapping",
797
1128
  "type": {
798
- "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1129
+ "text": "boolean"
799
1130
  },
800
- "description": "Specify the border width of a Box",
801
- "fieldName": "borderWidth"
1131
+ "default": "false",
1132
+ "description": "Specify if the AvatarGroup wraps",
1133
+ "attribute": "wrapping"
802
1134
  },
803
1135
  {
804
- "name": "borderRadius",
1136
+ "kind": "field",
1137
+ "name": "maxCount",
805
1138
  "type": {
806
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1139
+ "text": "number"
807
1140
  },
808
- "description": "Specify the border radius of a Box",
809
- "fieldName": "borderRadius"
1141
+ "default": "5",
1142
+ "description": "Specify the max number of avatars displayed in the group.",
1143
+ "attribute": "maxCount",
1144
+ "reflects": true
810
1145
  },
811
1146
  {
812
- "name": "px",
1147
+ "kind": "field",
1148
+ "name": "size",
813
1149
  "type": {
814
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1150
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
815
1151
  },
816
- "description": "Specify before and after padding of a Box",
817
- "fieldName": "px"
1152
+ "default": "'md'",
1153
+ "description": "Specify the size of all Avatars",
1154
+ "attribute": "size"
818
1155
  },
819
1156
  {
820
- "name": "py",
1157
+ "kind": "field",
1158
+ "name": "layout",
821
1159
  "type": {
822
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1160
+ "text": "'stacked' | 'spaced' | undefined"
823
1161
  },
824
- "description": "Specify top and bottom padding of a Box",
825
- "fieldName": "py"
826
- },
1162
+ "default": "'stacked'",
1163
+ "description": "Specify the kind of the group.",
1164
+ "attribute": "layout"
1165
+ }
1166
+ ],
1167
+ "attributes": [
827
1168
  {
828
- "name": "pTop",
1169
+ "name": "wrapping",
829
1170
  "type": {
830
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1171
+ "text": "boolean"
831
1172
  },
832
- "description": "Specify top padding of a Box",
833
- "fieldName": "pTop"
1173
+ "default": "false",
1174
+ "description": "Specify if the AvatarGroup wraps",
1175
+ "fieldName": "wrapping"
834
1176
  },
835
1177
  {
836
- "name": "pBottom",
1178
+ "name": "maxCount",
837
1179
  "type": {
838
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1180
+ "text": "number"
839
1181
  },
840
- "description": "Specify bottom padding of a Box",
841
- "fieldName": "pBottom"
1182
+ "default": "5",
1183
+ "description": "Specify the max number of avatars displayed in the group.",
1184
+ "fieldName": "maxCount"
842
1185
  },
843
1186
  {
844
- "name": "pBefore",
1187
+ "name": "size",
845
1188
  "type": {
846
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1189
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
847
1190
  },
848
- "description": "Specify before padding of a Box",
849
- "fieldName": "pBefore"
1191
+ "default": "'md'",
1192
+ "description": "Specify the size of all Avatars",
1193
+ "fieldName": "size"
850
1194
  },
851
1195
  {
852
- "name": "pAfter",
1196
+ "name": "layout",
853
1197
  "type": {
854
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1198
+ "text": "'stacked' | 'spaced' | undefined"
855
1199
  },
856
- "description": "Specify after padding of a Box",
857
- "fieldName": "pAfter"
858
- },
859
- {
860
- "name": "mx",
861
- "type": {
862
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
863
- },
864
- "description": "Specify before and after margin of a Box",
865
- "fieldName": "mx"
866
- },
867
- {
868
- "name": "my",
869
- "type": {
870
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
871
- },
872
- "description": "Specify top and bottom margin of a Box",
873
- "fieldName": "my"
874
- },
875
- {
876
- "name": "mTop",
877
- "type": {
878
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
879
- },
880
- "description": "Specify top margin of a Box",
881
- "fieldName": "mTop"
882
- },
883
- {
884
- "name": "mBottom",
885
- "type": {
886
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
887
- },
888
- "description": "Specify bottom margin of a Box",
889
- "fieldName": "mBottom"
890
- },
891
- {
892
- "name": "mBefore",
893
- "type": {
894
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
895
- },
896
- "description": "Specify before margin of a Box",
897
- "fieldName": "mBefore"
898
- },
899
- {
900
- "name": "mAfter",
901
- "type": {
902
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
903
- },
904
- "description": "Specify after margin of a Box",
905
- "fieldName": "mAfter"
906
- },
907
- {
908
- "name": "m",
909
- "type": {
910
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
911
- },
912
- "description": "Specify all margin",
913
- "fieldName": "m"
914
- },
915
- {
916
- "name": "p",
917
- "type": {
918
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
919
- },
920
- "description": "Specify all padding",
921
- "fieldName": "p"
922
- },
923
- {
924
- "name": "gap",
925
- "type": {
926
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
927
- },
928
- "description": "Specify gap between child elements",
929
- "fieldName": "gap"
930
- },
931
- {
932
- "name": "shadow",
933
- "type": {
934
- "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
935
- },
936
- "description": "Specify if a Box has a shadow",
937
- "fieldName": "shadow"
1200
+ "default": "'stacked'",
1201
+ "description": "Specify the kind of the group.",
1202
+ "fieldName": "layout"
938
1203
  }
939
1204
  ],
940
1205
  "superclass": {
941
1206
  "name": "LitElement",
942
1207
  "package": "lit"
943
1208
  },
944
- "tagName": "bm-box",
1209
+ "tagName": "bm-avatar-group",
945
1210
  "customElement": true
946
1211
  }
947
1212
  ],
948
1213
  "exports": [
949
1214
  {
950
1215
  "kind": "js",
951
- "name": "BmBox",
1216
+ "name": "BmAvatarGroup",
952
1217
  "declaration": {
953
- "name": "BmBox",
954
- "module": "libs/web-components/src/lib/Box/Box.ts"
1218
+ "name": "BmAvatarGroup",
1219
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
955
1220
  }
956
1221
  },
957
1222
  {
958
1223
  "kind": "custom-element-definition",
959
- "name": "bm-box",
1224
+ "name": "bm-avatar-group",
960
1225
  "declaration": {
961
- "name": "BmBox",
962
- "module": "libs/web-components/src/lib/Box/Box.ts"
1226
+ "name": "BmAvatarGroup",
1227
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
963
1228
  }
964
1229
  }
965
1230
  ]
966
1231
  },
967
1232
  {
968
1233
  "kind": "javascript-module",
969
- "path": "libs/web-components/src/lib/Box/index.ts",
1234
+ "path": "libs/web-components/src/lib/Avatar/index.ts",
970
1235
  "declarations": [],
971
1236
  "exports": [
972
1237
  {
@@ -974,574 +1239,407 @@
974
1239
  "name": "*",
975
1240
  "declaration": {
976
1241
  "name": "*",
977
- "package": "./Box"
1242
+ "package": "./Avatar"
1243
+ }
1244
+ },
1245
+ {
1246
+ "kind": "js",
1247
+ "name": "*",
1248
+ "declaration": {
1249
+ "name": "*",
1250
+ "package": "./AvatarGroup"
978
1251
  }
979
1252
  }
980
1253
  ]
981
1254
  },
982
1255
  {
983
1256
  "kind": "javascript-module",
984
- "path": "libs/web-components/src/lib/Alert/Alert.ts",
1257
+ "path": "libs/web-components/src/lib/Box/Box.ts",
985
1258
  "declarations": [
986
1259
  {
987
1260
  "kind": "class",
988
- "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",
989
- "name": "BmAlert",
1261
+ "description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
1262
+ "name": "BmBox",
990
1263
  "slots": [
991
1264
  {
992
- "description": "Specify a different icon for the Alert",
993
- "name": "icon"
994
- },
995
- {
996
- "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
997
- "name": "heading"
998
- },
999
- {
1000
- "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
1001
- "name": "body"
1002
- },
1003
- {
1004
- "description": "Specify if actions display on the Alert",
1005
- "name": "actions"
1265
+ "description": "Provide content for the Box",
1266
+ "name": "default"
1006
1267
  }
1007
1268
  ],
1008
1269
  "members": [
1009
1270
  {
1010
1271
  "kind": "field",
1011
- "name": "heading",
1272
+ "name": "backgroundColor",
1012
1273
  "type": {
1013
- "text": "string | undefined"
1274
+ "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
1014
1275
  },
1015
- "description": "Specify the heading text for Alert",
1016
- "attribute": "heading"
1276
+ "description": "Specify the background color of a Box",
1277
+ "attribute": "backgroundColor"
1017
1278
  },
1018
1279
  {
1019
1280
  "kind": "field",
1020
- "name": "body",
1281
+ "name": "borderColor",
1021
1282
  "type": {
1022
- "text": "string | undefined"
1283
+ "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
1023
1284
  },
1024
- "description": "Specify the body text for Alert",
1025
- "attribute": "body"
1285
+ "description": "Specify the border color of a Box",
1286
+ "attribute": "borderColor"
1026
1287
  },
1027
1288
  {
1028
1289
  "kind": "field",
1029
- "name": "size",
1290
+ "name": "borderWidth",
1030
1291
  "type": {
1031
- "text": "'sm' | 'md'"
1292
+ "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1032
1293
  },
1033
- "default": "'sm'",
1034
- "description": "Specify the size of the Alert",
1035
- "attribute": "size"
1294
+ "description": "Specify the border width of a Box",
1295
+ "attribute": "borderWidth"
1036
1296
  },
1037
1297
  {
1038
1298
  "kind": "field",
1039
- "name": "fullWidth",
1299
+ "name": "borderRadius",
1040
1300
  "type": {
1041
- "text": "boolean"
1301
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1042
1302
  },
1043
- "default": "false",
1044
- "description": "Specify if the Alert has no border radius",
1045
- "attribute": "fullWidth"
1303
+ "description": "Specify the border radius of a Box",
1304
+ "attribute": "borderRadius"
1046
1305
  },
1047
1306
  {
1048
1307
  "kind": "field",
1049
- "name": "theme",
1308
+ "name": "px",
1050
1309
  "type": {
1051
- "text": "'light' | 'dark' | undefined"
1310
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1052
1311
  },
1053
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1054
- "attribute": "theme"
1312
+ "description": "Specify before and after padding of a Box",
1313
+ "attribute": "px"
1055
1314
  },
1056
1315
  {
1057
1316
  "kind": "field",
1058
- "name": "appearance",
1317
+ "name": "py",
1059
1318
  "type": {
1060
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1319
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1061
1320
  },
1062
- "default": "'infoPrimary'",
1063
- "description": "Specify the appearance of the Alert",
1064
- "attribute": "appearance"
1321
+ "description": "Specify top and bottom padding of a Box",
1322
+ "attribute": "py"
1065
1323
  },
1066
1324
  {
1067
1325
  "kind": "field",
1068
- "name": "hidden",
1326
+ "name": "pTop",
1069
1327
  "type": {
1070
- "text": "boolean"
1328
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1071
1329
  },
1072
- "default": "false",
1073
- "description": "Specify if the Alert is hidden",
1074
- "attribute": "hidden"
1330
+ "description": "Specify top padding of a Box",
1331
+ "attribute": "pTop"
1075
1332
  },
1076
1333
  {
1077
1334
  "kind": "field",
1078
- "name": "hideIcon",
1335
+ "name": "pBottom",
1079
1336
  "type": {
1080
- "text": "boolean"
1337
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1081
1338
  },
1082
- "default": "false",
1083
- "description": "Specify if the icon displays on the Alert",
1084
- "attribute": "hideIcon"
1339
+ "description": "Specify bottom padding of a Box",
1340
+ "attribute": "pBottom"
1085
1341
  },
1086
1342
  {
1087
1343
  "kind": "field",
1088
- "name": "dismissible",
1344
+ "name": "pBefore",
1089
1345
  "type": {
1090
- "text": "boolean"
1346
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1091
1347
  },
1092
- "default": "false",
1093
- "description": "Specify if the Alert can be dismissed",
1094
- "attribute": "dismissible"
1348
+ "description": "Specify before padding of a Box",
1349
+ "attribute": "pBefore"
1095
1350
  },
1096
1351
  {
1097
1352
  "kind": "field",
1098
- "name": "disableAutoFocus",
1353
+ "name": "pAfter",
1099
1354
  "type": {
1100
- "text": "boolean"
1355
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1101
1356
  },
1102
- "default": "false",
1103
- "description": "Prevent autofocus on show",
1104
- "attribute": "disableAutoFocus"
1357
+ "description": "Specify after padding of a Box",
1358
+ "attribute": "pAfter"
1105
1359
  },
1106
1360
  {
1107
1361
  "kind": "field",
1108
- "name": "disableCloseOnEscape",
1362
+ "name": "mx",
1109
1363
  "type": {
1110
- "text": "boolean"
1364
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1111
1365
  },
1112
- "default": "false",
1113
- "description": "Prevent Escape from closing",
1114
- "attribute": "disableCloseOnEscape"
1115
- }
1116
- ],
1117
- "events": [
1118
- {
1119
- "description": "Dispatched when the Alert has been dismissed",
1120
- "name": "bm-dismiss"
1121
- }
1122
- ],
1123
- "attributes": [
1366
+ "description": "Specify before and after margin of a Box",
1367
+ "attribute": "mx"
1368
+ },
1124
1369
  {
1125
- "name": "heading",
1370
+ "kind": "field",
1371
+ "name": "my",
1126
1372
  "type": {
1127
- "text": "string | undefined"
1373
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1128
1374
  },
1129
- "description": "Specify the heading text for Alert",
1130
- "fieldName": "heading"
1375
+ "description": "Specify top and bottom margin of a Box",
1376
+ "attribute": "my"
1131
1377
  },
1132
1378
  {
1133
- "name": "body",
1379
+ "kind": "field",
1380
+ "name": "mTop",
1134
1381
  "type": {
1135
- "text": "string | undefined"
1382
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1136
1383
  },
1137
- "description": "Specify the body text for Alert",
1138
- "fieldName": "body"
1384
+ "description": "Specify top margin of a Box",
1385
+ "attribute": "mTop"
1139
1386
  },
1140
1387
  {
1141
- "name": "size",
1142
- "type": {
1143
- "text": "'sm' | 'md'"
1144
- },
1145
- "default": "'sm'",
1146
- "description": "Specify the size of the Alert",
1147
- "fieldName": "size"
1148
- },
1149
- {
1150
- "name": "fullWidth",
1151
- "type": {
1152
- "text": "boolean"
1153
- },
1154
- "default": "false",
1155
- "description": "Specify if the Alert has no border radius",
1156
- "fieldName": "fullWidth"
1157
- },
1158
- {
1159
- "name": "theme",
1160
- "type": {
1161
- "text": "'light' | 'dark' | undefined"
1162
- },
1163
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1164
- "fieldName": "theme"
1165
- },
1166
- {
1167
- "name": "appearance",
1168
- "type": {
1169
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1170
- },
1171
- "default": "'infoPrimary'",
1172
- "description": "Specify the appearance of the Alert",
1173
- "fieldName": "appearance"
1174
- },
1175
- {
1176
- "name": "hidden",
1177
- "type": {
1178
- "text": "boolean"
1179
- },
1180
- "default": "false",
1181
- "description": "Specify if the Alert is hidden",
1182
- "fieldName": "hidden"
1183
- },
1184
- {
1185
- "name": "hideIcon",
1388
+ "kind": "field",
1389
+ "name": "mBottom",
1186
1390
  "type": {
1187
- "text": "boolean"
1391
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1188
1392
  },
1189
- "default": "false",
1190
- "description": "Specify if the icon displays on the Alert",
1191
- "fieldName": "hideIcon"
1393
+ "description": "Specify bottom margin of a Box",
1394
+ "attribute": "mBottom"
1192
1395
  },
1193
1396
  {
1194
- "name": "dismissible",
1397
+ "kind": "field",
1398
+ "name": "mBefore",
1195
1399
  "type": {
1196
- "text": "boolean"
1400
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1197
1401
  },
1198
- "default": "false",
1199
- "description": "Specify if the Alert can be dismissed",
1200
- "fieldName": "dismissible"
1402
+ "description": "Specify before margin of a Box",
1403
+ "attribute": "mBefore"
1201
1404
  },
1202
1405
  {
1203
- "name": "disableAutoFocus",
1406
+ "kind": "field",
1407
+ "name": "mAfter",
1204
1408
  "type": {
1205
- "text": "boolean"
1409
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1206
1410
  },
1207
- "default": "false",
1208
- "description": "Prevent autofocus on show",
1209
- "fieldName": "disableAutoFocus"
1411
+ "description": "Specify after margin of a Box",
1412
+ "attribute": "mAfter"
1210
1413
  },
1211
- {
1212
- "name": "disableCloseOnEscape",
1213
- "type": {
1214
- "text": "boolean"
1215
- },
1216
- "default": "false",
1217
- "description": "Prevent Escape from closing",
1218
- "fieldName": "disableCloseOnEscape"
1219
- }
1220
- ],
1221
- "superclass": {
1222
- "name": "LitElement",
1223
- "package": "lit"
1224
- },
1225
- "tagName": "bm-alert",
1226
- "customElement": true
1227
- }
1228
- ],
1229
- "exports": [
1230
- {
1231
- "kind": "js",
1232
- "name": "BmAlert",
1233
- "declaration": {
1234
- "name": "BmAlert",
1235
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1236
- }
1237
- },
1238
- {
1239
- "kind": "custom-element-definition",
1240
- "name": "bm-alert",
1241
- "declaration": {
1242
- "name": "BmAlert",
1243
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1244
- }
1245
- }
1246
- ]
1247
- },
1248
- {
1249
- "kind": "javascript-module",
1250
- "path": "libs/web-components/src/lib/Alert/index.ts",
1251
- "declarations": [],
1252
- "exports": [
1253
- {
1254
- "kind": "js",
1255
- "name": "*",
1256
- "declaration": {
1257
- "name": "*",
1258
- "package": "./Alert"
1259
- }
1260
- }
1261
- ]
1262
- },
1263
- {
1264
- "kind": "javascript-module",
1265
- "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
1266
- "declarations": [
1267
- {
1268
- "kind": "variable",
1269
- "name": "BreadcrumbGroupCtx"
1270
- }
1271
- ],
1272
- "exports": [
1273
- {
1274
- "kind": "js",
1275
- "name": "BreadcrumbGroupCtx",
1276
- "declaration": {
1277
- "name": "BreadcrumbGroupCtx",
1278
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
1279
- }
1280
- }
1281
- ]
1282
- },
1283
- {
1284
- "kind": "javascript-module",
1285
- "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts",
1286
- "declarations": [
1287
- {
1288
- "kind": "class",
1289
- "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",
1290
- "name": "BmBreadcrumbs",
1291
- "slots": [
1292
- {
1293
- "description": "Pass items to the Breadcrumb",
1294
- "name": "default"
1295
- }
1296
- ],
1297
- "members": [
1298
1414
  {
1299
1415
  "kind": "field",
1300
- "name": "wrap",
1416
+ "name": "m",
1301
1417
  "type": {
1302
- "text": "boolean"
1418
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1303
1419
  },
1304
- "default": "true",
1305
- "description": "Specify if items wrap or collapse to an ellipsis",
1306
- "attribute": "wrap"
1420
+ "description": "Specify all margin",
1421
+ "attribute": "m"
1307
1422
  },
1308
1423
  {
1309
1424
  "kind": "field",
1310
- "name": "itemsBeforeCollapse",
1425
+ "name": "p",
1311
1426
  "type": {
1312
- "text": "number"
1427
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1313
1428
  },
1314
- "default": "1",
1315
- "description": "Specify how many items show before ellipsis",
1316
- "attribute": "itemsBeforeCollapse"
1429
+ "description": "Specify all padding",
1430
+ "attribute": "p"
1317
1431
  },
1318
1432
  {
1319
1433
  "kind": "field",
1320
- "name": "itemsAfterCollapse",
1434
+ "name": "gap",
1321
1435
  "type": {
1322
- "text": "number"
1436
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1323
1437
  },
1324
- "default": "1",
1325
- "description": "Specify how many items show after ellipsis",
1326
- "attribute": "itemsAfterCollapse"
1438
+ "description": "Specify gap between child elements",
1439
+ "attribute": "gap"
1327
1440
  },
1328
1441
  {
1329
1442
  "kind": "field",
1330
- "name": "theme",
1443
+ "name": "shadow",
1331
1444
  "type": {
1332
- "text": "'light' | 'dark' | undefined"
1445
+ "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1333
1446
  },
1334
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1335
- "attribute": "theme"
1447
+ "description": "Specify if a Box has a shadow",
1448
+ "attribute": "shadow"
1336
1449
  }
1337
1450
  ],
1338
1451
  "attributes": [
1339
1452
  {
1340
- "name": "wrap",
1453
+ "name": "backgroundColor",
1341
1454
  "type": {
1342
- "text": "boolean"
1455
+ "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
1343
1456
  },
1344
- "default": "true",
1345
- "description": "Specify if items wrap or collapse to an ellipsis",
1346
- "fieldName": "wrap"
1457
+ "description": "Specify the background color of a Box",
1458
+ "fieldName": "backgroundColor"
1347
1459
  },
1348
1460
  {
1349
- "name": "itemsBeforeCollapse",
1461
+ "name": "borderColor",
1350
1462
  "type": {
1351
- "text": "number"
1463
+ "text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
1352
1464
  },
1353
- "default": "1",
1354
- "description": "Specify how many items show before ellipsis",
1355
- "fieldName": "itemsBeforeCollapse"
1465
+ "description": "Specify the border color of a Box",
1466
+ "fieldName": "borderColor"
1356
1467
  },
1357
1468
  {
1358
- "name": "itemsAfterCollapse",
1469
+ "name": "borderWidth",
1359
1470
  "type": {
1360
- "text": "number"
1471
+ "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1361
1472
  },
1362
- "default": "1",
1363
- "description": "Specify how many items show after ellipsis",
1364
- "fieldName": "itemsAfterCollapse"
1473
+ "description": "Specify the border width of a Box",
1474
+ "fieldName": "borderWidth"
1365
1475
  },
1366
1476
  {
1367
- "name": "theme",
1477
+ "name": "borderRadius",
1368
1478
  "type": {
1369
- "text": "'light' | 'dark' | undefined"
1479
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1370
1480
  },
1371
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1372
- "fieldName": "theme"
1373
- }
1374
- ],
1375
- "superclass": {
1376
- "name": "LitElement",
1377
- "package": "lit"
1378
- },
1379
- "tagName": "bm-breadcrumb",
1380
- "customElement": true
1381
- }
1382
- ],
1383
- "exports": [
1384
- {
1385
- "kind": "js",
1386
- "name": "BmBreadcrumbs",
1387
- "declaration": {
1388
- "name": "BmBreadcrumbs",
1389
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1390
- }
1391
- },
1392
- {
1393
- "kind": "custom-element-definition",
1394
- "name": "bm-breadcrumb",
1395
- "declaration": {
1396
- "name": "BmBreadcrumbs",
1397
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1398
- }
1399
- }
1400
- ]
1401
- },
1402
- {
1403
- "kind": "javascript-module",
1404
- "path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
1405
- "declarations": [
1406
- {
1407
- "kind": "class",
1408
- "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** ",
1409
- "name": "BmBreadcrumbsItem",
1410
- "slots": [
1481
+ "description": "Specify the border radius of a Box",
1482
+ "fieldName": "borderRadius"
1483
+ },
1411
1484
  {
1412
- "description": "Pass text to an item",
1413
- "name": "default"
1485
+ "name": "px",
1486
+ "type": {
1487
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1488
+ },
1489
+ "description": "Specify before and after padding of a Box",
1490
+ "fieldName": "px"
1414
1491
  },
1415
1492
  {
1416
- "description": "Pass icon to an item",
1417
- "name": "icon"
1418
- }
1419
- ],
1420
- "members": [
1493
+ "name": "py",
1494
+ "type": {
1495
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1496
+ },
1497
+ "description": "Specify top and bottom padding of a Box",
1498
+ "fieldName": "py"
1499
+ },
1421
1500
  {
1422
- "kind": "field",
1423
- "name": "href",
1501
+ "name": "pTop",
1424
1502
  "type": {
1425
- "text": "string | undefined"
1503
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1426
1504
  },
1427
- "description": "Pass href to an item",
1428
- "attribute": "href"
1505
+ "description": "Specify top padding of a Box",
1506
+ "fieldName": "pTop"
1429
1507
  },
1430
1508
  {
1431
- "kind": "field",
1432
- "name": "clickable",
1509
+ "name": "pBottom",
1433
1510
  "type": {
1434
- "text": "boolean"
1511
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1435
1512
  },
1436
- "default": "false",
1437
- "description": "Specify if the item is interactive without an href",
1438
- "attribute": "clickable"
1513
+ "description": "Specify bottom padding of a Box",
1514
+ "fieldName": "pBottom"
1439
1515
  },
1440
1516
  {
1441
- "kind": "field",
1442
- "name": "truncationWidth",
1517
+ "name": "pBefore",
1443
1518
  "type": {
1444
- "text": "string | undefined"
1519
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1445
1520
  },
1446
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1447
- "attribute": "truncationWidth"
1521
+ "description": "Specify before padding of a Box",
1522
+ "fieldName": "pBefore"
1448
1523
  },
1449
1524
  {
1450
- "kind": "field",
1451
- "name": "isCurrent",
1525
+ "name": "pAfter",
1452
1526
  "type": {
1453
- "text": "boolean"
1527
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1454
1528
  },
1455
- "default": "false",
1456
- "description": "Specify explicitly if the item is the last one",
1457
- "attribute": "isCurrent",
1458
- "reflects": true
1529
+ "description": "Specify after padding of a Box",
1530
+ "fieldName": "pAfter"
1459
1531
  },
1460
1532
  {
1461
- "kind": "field",
1462
- "name": "isCollapsed",
1533
+ "name": "mx",
1463
1534
  "type": {
1464
- "text": "boolean"
1535
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1465
1536
  },
1466
- "default": "false",
1467
- "attribute": "isCollapsed",
1468
- "reflects": true
1469
- }
1470
- ],
1471
- "attributes": [
1537
+ "description": "Specify before and after margin of a Box",
1538
+ "fieldName": "mx"
1539
+ },
1472
1540
  {
1473
- "name": "href",
1541
+ "name": "my",
1474
1542
  "type": {
1475
- "text": "string | undefined"
1543
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1476
1544
  },
1477
- "description": "Pass href to an item",
1478
- "fieldName": "href"
1545
+ "description": "Specify top and bottom margin of a Box",
1546
+ "fieldName": "my"
1479
1547
  },
1480
1548
  {
1481
- "name": "clickable",
1549
+ "name": "mTop",
1482
1550
  "type": {
1483
- "text": "boolean"
1551
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1484
1552
  },
1485
- "default": "false",
1486
- "description": "Specify if the item is interactive without an href",
1487
- "fieldName": "clickable"
1553
+ "description": "Specify top margin of a Box",
1554
+ "fieldName": "mTop"
1488
1555
  },
1489
1556
  {
1490
- "name": "truncationWidth",
1557
+ "name": "mBottom",
1491
1558
  "type": {
1492
- "text": "string | undefined"
1559
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1493
1560
  },
1494
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1495
- "fieldName": "truncationWidth"
1561
+ "description": "Specify bottom margin of a Box",
1562
+ "fieldName": "mBottom"
1496
1563
  },
1497
1564
  {
1498
- "name": "isCurrent",
1565
+ "name": "mBefore",
1499
1566
  "type": {
1500
- "text": "boolean"
1567
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1501
1568
  },
1502
- "default": "false",
1503
- "description": "Specify explicitly if the item is the last one",
1504
- "fieldName": "isCurrent"
1569
+ "description": "Specify before margin of a Box",
1570
+ "fieldName": "mBefore"
1505
1571
  },
1506
1572
  {
1507
- "name": "isCollapsed",
1573
+ "name": "mAfter",
1508
1574
  "type": {
1509
- "text": "boolean"
1575
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1510
1576
  },
1511
- "default": "false",
1512
- "fieldName": "isCollapsed"
1577
+ "description": "Specify after margin of a Box",
1578
+ "fieldName": "mAfter"
1579
+ },
1580
+ {
1581
+ "name": "m",
1582
+ "type": {
1583
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1584
+ },
1585
+ "description": "Specify all margin",
1586
+ "fieldName": "m"
1587
+ },
1588
+ {
1589
+ "name": "p",
1590
+ "type": {
1591
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1592
+ },
1593
+ "description": "Specify all padding",
1594
+ "fieldName": "p"
1595
+ },
1596
+ {
1597
+ "name": "gap",
1598
+ "type": {
1599
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1600
+ },
1601
+ "description": "Specify gap between child elements",
1602
+ "fieldName": "gap"
1603
+ },
1604
+ {
1605
+ "name": "shadow",
1606
+ "type": {
1607
+ "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1608
+ },
1609
+ "description": "Specify if a Box has a shadow",
1610
+ "fieldName": "shadow"
1513
1611
  }
1514
1612
  ],
1515
1613
  "superclass": {
1516
1614
  "name": "LitElement",
1517
1615
  "package": "lit"
1518
1616
  },
1519
- "tagName": "bm-breadcrumb-item",
1617
+ "tagName": "bm-box",
1520
1618
  "customElement": true
1521
1619
  }
1522
1620
  ],
1523
1621
  "exports": [
1524
1622
  {
1525
1623
  "kind": "js",
1526
- "name": "BmBreadcrumbsItem",
1624
+ "name": "BmBox",
1527
1625
  "declaration": {
1528
- "name": "BmBreadcrumbsItem",
1529
- "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1626
+ "name": "BmBox",
1627
+ "module": "libs/web-components/src/lib/Box/Box.ts"
1530
1628
  }
1531
1629
  },
1532
1630
  {
1533
1631
  "kind": "custom-element-definition",
1534
- "name": "bm-breadcrumb-item",
1632
+ "name": "bm-box",
1535
1633
  "declaration": {
1536
- "name": "BmBreadcrumbsItem",
1537
- "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1634
+ "name": "BmBox",
1635
+ "module": "libs/web-components/src/lib/Box/Box.ts"
1538
1636
  }
1539
1637
  }
1540
1638
  ]
1541
1639
  },
1542
1640
  {
1543
1641
  "kind": "javascript-module",
1544
- "path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
1642
+ "path": "libs/web-components/src/lib/Box/index.ts",
1545
1643
  "declarations": [],
1546
1644
  "exports": [
1547
1645
  {
@@ -1549,391 +1647,293 @@
1549
1647
  "name": "*",
1550
1648
  "declaration": {
1551
1649
  "name": "*",
1552
- "package": "./Breadcrumbs"
1650
+ "package": "./Box"
1553
1651
  }
1554
- },
1652
+ }
1653
+ ]
1654
+ },
1655
+ {
1656
+ "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": [
1555
1665
  {
1556
1666
  "kind": "js",
1557
- "name": "*",
1667
+ "name": "BreadcrumbGroupCtx",
1558
1668
  "declaration": {
1559
- "name": "*",
1560
- "package": "./BreadcrumbsItem"
1669
+ "name": "BreadcrumbGroupCtx",
1670
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
1561
1671
  }
1562
1672
  }
1563
1673
  ]
1564
1674
  },
1565
1675
  {
1566
1676
  "kind": "javascript-module",
1567
- "path": "libs/web-components/src/lib/Avatar/Avatar.ts",
1677
+ "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts",
1568
1678
  "declarations": [
1569
1679
  {
1570
1680
  "kind": "class",
1571
- "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** ",
1572
- "name": "BmAvatar",
1573
- "slots": [
1574
- {
1575
- "description": "Customize the default icon",
1576
- "name": "icon"
1577
- }
1578
- ],
1579
- "members": [
1580
- {
1581
- "kind": "field",
1582
- "name": "appearance",
1583
- "type": {
1584
- "text": "'accent' | 'neutral' | undefined"
1585
- },
1586
- "default": "'neutral'",
1587
- "description": "Specify the appearance of the Avatar",
1588
- "attribute": "appearance"
1589
- },
1590
- {
1591
- "kind": "field",
1592
- "name": "name",
1593
- "type": {
1594
- "text": "string | undefined"
1595
- },
1596
- "description": "Specify a name to display initials in the Avatar",
1597
- "attribute": "name"
1598
- },
1599
- {
1600
- "kind": "field",
1601
- "name": "src",
1602
- "type": {
1603
- "text": "string | undefined"
1604
- },
1605
- "description": "Pass an image to the Avatar",
1606
- "attribute": "src"
1607
- },
1608
- {
1609
- "kind": "field",
1610
- "name": "alt",
1611
- "type": {
1612
- "text": "string | undefined"
1613
- },
1614
- "description": "Specify alt for image",
1615
- "attribute": "alt"
1616
- },
1617
- {
1618
- "kind": "field",
1619
- "name": "size",
1620
- "type": {
1621
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
1622
- },
1623
- "default": "'md'",
1624
- "description": "Specify the size of the Avatar",
1625
- "attribute": "size"
1626
- },
1627
- {
1628
- "kind": "field",
1629
- "name": "disabled",
1630
- "type": {
1631
- "text": "boolean | undefined"
1632
- },
1633
- "default": "false",
1634
- "description": "Specify if the Avatar is disabled",
1635
- "attribute": "disabled"
1636
- },
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",
1683
+ "slots": [
1684
+ {
1685
+ "description": "Pass items to the Breadcrumb",
1686
+ "name": "default"
1687
+ }
1688
+ ],
1689
+ "members": [
1637
1690
  {
1638
1691
  "kind": "field",
1639
- "name": "shape",
1692
+ "name": "wrap",
1640
1693
  "type": {
1641
- "text": "'circle' | 'square' | undefined"
1694
+ "text": "boolean"
1642
1695
  },
1643
- "default": "'circle'",
1644
- "description": "Specify the shape of the Avatar",
1645
- "attribute": "shape"
1696
+ "default": "true",
1697
+ "description": "Specify if items wrap or collapse to an ellipsis",
1698
+ "attribute": "wrap"
1646
1699
  },
1647
1700
  {
1648
1701
  "kind": "field",
1649
- "name": "isInteractive",
1702
+ "name": "itemsBeforeCollapse",
1650
1703
  "type": {
1651
- "text": "boolean"
1704
+ "text": "number"
1652
1705
  },
1653
- "default": "false",
1654
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
1655
- "attribute": "isInteractive"
1706
+ "default": "1",
1707
+ "description": "Specify how many items show before ellipsis",
1708
+ "attribute": "itemsBeforeCollapse"
1656
1709
  },
1657
1710
  {
1658
1711
  "kind": "field",
1659
- "name": "isFocusable",
1712
+ "name": "itemsAfterCollapse",
1660
1713
  "type": {
1661
- "text": "boolean"
1714
+ "text": "number"
1662
1715
  },
1663
- "default": "false",
1664
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
1665
- "attribute": "isFocusable"
1716
+ "default": "1",
1717
+ "description": "Specify how many items show after ellipsis",
1718
+ "attribute": "itemsAfterCollapse"
1666
1719
  },
1667
1720
  {
1668
1721
  "kind": "field",
1669
- "name": "withBorder",
1722
+ "name": "theme",
1670
1723
  "type": {
1671
- "text": "boolean"
1724
+ "text": "'light' | 'dark' | undefined"
1672
1725
  },
1673
- "default": "false",
1674
- "attribute": "withBorder"
1726
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1727
+ "attribute": "theme"
1675
1728
  }
1676
1729
  ],
1677
1730
  "attributes": [
1678
1731
  {
1679
- "name": "appearance",
1680
- "type": {
1681
- "text": "'accent' | 'neutral' | undefined"
1682
- },
1683
- "default": "'neutral'",
1684
- "description": "Specify the appearance of the Avatar",
1685
- "fieldName": "appearance"
1686
- },
1687
- {
1688
- "name": "name",
1689
- "type": {
1690
- "text": "string | undefined"
1691
- },
1692
- "description": "Specify a name to display initials in the Avatar",
1693
- "fieldName": "name"
1694
- },
1695
- {
1696
- "name": "src",
1697
- "type": {
1698
- "text": "string | undefined"
1699
- },
1700
- "description": "Pass an image to the Avatar",
1701
- "fieldName": "src"
1702
- },
1703
- {
1704
- "name": "alt",
1705
- "type": {
1706
- "text": "string | undefined"
1707
- },
1708
- "description": "Specify alt for image",
1709
- "fieldName": "alt"
1710
- },
1711
- {
1712
- "name": "size",
1713
- "type": {
1714
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
1715
- },
1716
- "default": "'md'",
1717
- "description": "Specify the size of the Avatar",
1718
- "fieldName": "size"
1719
- },
1720
- {
1721
- "name": "disabled",
1722
- "type": {
1723
- "text": "boolean | undefined"
1724
- },
1725
- "default": "false",
1726
- "description": "Specify if the Avatar is disabled",
1727
- "fieldName": "disabled"
1728
- },
1729
- {
1730
- "name": "shape",
1732
+ "name": "wrap",
1731
1733
  "type": {
1732
- "text": "'circle' | 'square' | undefined"
1734
+ "text": "boolean"
1733
1735
  },
1734
- "default": "'circle'",
1735
- "description": "Specify the shape of the Avatar",
1736
- "fieldName": "shape"
1736
+ "default": "true",
1737
+ "description": "Specify if items wrap or collapse to an ellipsis",
1738
+ "fieldName": "wrap"
1737
1739
  },
1738
1740
  {
1739
- "name": "isInteractive",
1741
+ "name": "itemsBeforeCollapse",
1740
1742
  "type": {
1741
- "text": "boolean"
1743
+ "text": "number"
1742
1744
  },
1743
- "default": "false",
1744
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
1745
- "fieldName": "isInteractive"
1745
+ "default": "1",
1746
+ "description": "Specify how many items show before ellipsis",
1747
+ "fieldName": "itemsBeforeCollapse"
1746
1748
  },
1747
1749
  {
1748
- "name": "isFocusable",
1750
+ "name": "itemsAfterCollapse",
1749
1751
  "type": {
1750
- "text": "boolean"
1752
+ "text": "number"
1751
1753
  },
1752
- "default": "false",
1753
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
1754
- "fieldName": "isFocusable"
1754
+ "default": "1",
1755
+ "description": "Specify how many items show after ellipsis",
1756
+ "fieldName": "itemsAfterCollapse"
1755
1757
  },
1756
1758
  {
1757
- "name": "withBorder",
1759
+ "name": "theme",
1758
1760
  "type": {
1759
- "text": "boolean"
1761
+ "text": "'light' | 'dark' | undefined"
1760
1762
  },
1761
- "default": "false",
1762
- "fieldName": "withBorder"
1763
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1764
+ "fieldName": "theme"
1763
1765
  }
1764
1766
  ],
1765
1767
  "superclass": {
1766
1768
  "name": "LitElement",
1767
1769
  "package": "lit"
1768
1770
  },
1769
- "tagName": "bm-avatar",
1771
+ "tagName": "bm-breadcrumb",
1770
1772
  "customElement": true
1771
1773
  }
1772
1774
  ],
1773
1775
  "exports": [
1774
1776
  {
1775
1777
  "kind": "js",
1776
- "name": "BmAvatar",
1778
+ "name": "BmBreadcrumbs",
1777
1779
  "declaration": {
1778
- "name": "BmAvatar",
1779
- "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
1780
+ "name": "BmBreadcrumbs",
1781
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1780
1782
  }
1781
1783
  },
1782
1784
  {
1783
1785
  "kind": "custom-element-definition",
1784
- "name": "bm-avatar",
1785
- "declaration": {
1786
- "name": "BmAvatar",
1787
- "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
1788
- }
1789
- }
1790
- ]
1791
- },
1792
- {
1793
- "kind": "javascript-module",
1794
- "path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
1795
- "declarations": [
1796
- {
1797
- "kind": "variable",
1798
- "name": "AvatarGroupCtx"
1799
- }
1800
- ],
1801
- "exports": [
1802
- {
1803
- "kind": "js",
1804
- "name": "AvatarGroupCtx",
1786
+ "name": "bm-breadcrumb",
1805
1787
  "declaration": {
1806
- "name": "AvatarGroupCtx",
1807
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
1788
+ "name": "BmBreadcrumbs",
1789
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1808
1790
  }
1809
1791
  }
1810
1792
  ]
1811
1793
  },
1812
1794
  {
1813
1795
  "kind": "javascript-module",
1814
- "path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
1796
+ "path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
1815
1797
  "declarations": [
1816
1798
  {
1817
1799
  "kind": "class",
1818
- "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.",
1819
- "name": "BmAvatarGroup",
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",
1820
1802
  "slots": [
1821
1803
  {
1822
- "description": "Add Avatars to create a group",
1804
+ "description": "Pass text to an item",
1823
1805
  "name": "default"
1806
+ },
1807
+ {
1808
+ "description": "Pass icon to an item",
1809
+ "name": "icon"
1824
1810
  }
1825
1811
  ],
1826
1812
  "members": [
1827
1813
  {
1828
1814
  "kind": "field",
1829
- "name": "wrapping",
1815
+ "name": "href",
1816
+ "type": {
1817
+ "text": "string | undefined"
1818
+ },
1819
+ "description": "Pass href to an item",
1820
+ "attribute": "href"
1821
+ },
1822
+ {
1823
+ "kind": "field",
1824
+ "name": "clickable",
1830
1825
  "type": {
1831
1826
  "text": "boolean"
1832
1827
  },
1833
1828
  "default": "false",
1834
- "description": "Specify if the AvatarGroup wraps",
1835
- "attribute": "wrapping"
1829
+ "description": "Specify if the item is interactive without an href",
1830
+ "attribute": "clickable"
1836
1831
  },
1837
1832
  {
1838
1833
  "kind": "field",
1839
- "name": "maxCount",
1834
+ "name": "truncationWidth",
1840
1835
  "type": {
1841
- "text": "number"
1836
+ "text": "string | undefined"
1842
1837
  },
1843
- "default": "5",
1844
- "description": "Specify the max number of avatars displayed in the group.",
1845
- "attribute": "maxCount",
1846
- "reflects": true
1838
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1839
+ "attribute": "truncationWidth"
1847
1840
  },
1848
1841
  {
1849
1842
  "kind": "field",
1850
- "name": "size",
1843
+ "name": "isCurrent",
1851
1844
  "type": {
1852
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
1845
+ "text": "boolean"
1853
1846
  },
1854
- "default": "'md'",
1855
- "description": "Specify the size of all Avatars",
1856
- "attribute": "size"
1847
+ "default": "false",
1848
+ "description": "Specify explicitly if the item is the last one",
1849
+ "attribute": "isCurrent",
1850
+ "reflects": true
1857
1851
  },
1858
1852
  {
1859
1853
  "kind": "field",
1860
- "name": "layout",
1854
+ "name": "isCollapsed",
1861
1855
  "type": {
1862
- "text": "'stacked' | 'spaced' | undefined"
1856
+ "text": "boolean"
1863
1857
  },
1864
- "default": "'stacked'",
1865
- "description": "Specify the kind of the group.",
1866
- "attribute": "layout"
1858
+ "default": "false",
1859
+ "attribute": "isCollapsed",
1860
+ "reflects": true
1867
1861
  }
1868
1862
  ],
1869
1863
  "attributes": [
1870
1864
  {
1871
- "name": "wrapping",
1865
+ "name": "href",
1866
+ "type": {
1867
+ "text": "string | undefined"
1868
+ },
1869
+ "description": "Pass href to an item",
1870
+ "fieldName": "href"
1871
+ },
1872
+ {
1873
+ "name": "clickable",
1872
1874
  "type": {
1873
1875
  "text": "boolean"
1874
1876
  },
1875
1877
  "default": "false",
1876
- "description": "Specify if the AvatarGroup wraps",
1877
- "fieldName": "wrapping"
1878
+ "description": "Specify if the item is interactive without an href",
1879
+ "fieldName": "clickable"
1878
1880
  },
1879
1881
  {
1880
- "name": "maxCount",
1882
+ "name": "truncationWidth",
1881
1883
  "type": {
1882
- "text": "number"
1884
+ "text": "string | undefined"
1883
1885
  },
1884
- "default": "5",
1885
- "description": "Specify the max number of avatars displayed in the group.",
1886
- "fieldName": "maxCount"
1886
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1887
+ "fieldName": "truncationWidth"
1887
1888
  },
1888
1889
  {
1889
- "name": "size",
1890
+ "name": "isCurrent",
1890
1891
  "type": {
1891
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
1892
- },
1893
- "default": "'md'",
1894
- "description": "Specify the size of all Avatars",
1895
- "fieldName": "size"
1892
+ "text": "boolean"
1893
+ },
1894
+ "default": "false",
1895
+ "description": "Specify explicitly if the item is the last one",
1896
+ "fieldName": "isCurrent"
1896
1897
  },
1897
1898
  {
1898
- "name": "layout",
1899
+ "name": "isCollapsed",
1899
1900
  "type": {
1900
- "text": "'stacked' | 'spaced' | undefined"
1901
+ "text": "boolean"
1901
1902
  },
1902
- "default": "'stacked'",
1903
- "description": "Specify the kind of the group.",
1904
- "fieldName": "layout"
1903
+ "default": "false",
1904
+ "fieldName": "isCollapsed"
1905
1905
  }
1906
1906
  ],
1907
1907
  "superclass": {
1908
1908
  "name": "LitElement",
1909
1909
  "package": "lit"
1910
1910
  },
1911
- "tagName": "bm-avatar-group",
1911
+ "tagName": "bm-breadcrumb-item",
1912
1912
  "customElement": true
1913
1913
  }
1914
1914
  ],
1915
1915
  "exports": [
1916
1916
  {
1917
1917
  "kind": "js",
1918
- "name": "BmAvatarGroup",
1918
+ "name": "BmBreadcrumbsItem",
1919
1919
  "declaration": {
1920
- "name": "BmAvatarGroup",
1921
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
1920
+ "name": "BmBreadcrumbsItem",
1921
+ "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1922
1922
  }
1923
1923
  },
1924
1924
  {
1925
1925
  "kind": "custom-element-definition",
1926
- "name": "bm-avatar-group",
1926
+ "name": "bm-breadcrumb-item",
1927
1927
  "declaration": {
1928
- "name": "BmAvatarGroup",
1929
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
1928
+ "name": "BmBreadcrumbsItem",
1929
+ "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1930
1930
  }
1931
1931
  }
1932
1932
  ]
1933
1933
  },
1934
1934
  {
1935
1935
  "kind": "javascript-module",
1936
- "path": "libs/web-components/src/lib/Avatar/index.ts",
1936
+ "path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
1937
1937
  "declarations": [],
1938
1938
  "exports": [
1939
1939
  {
@@ -1941,7 +1941,7 @@
1941
1941
  "name": "*",
1942
1942
  "declaration": {
1943
1943
  "name": "*",
1944
- "package": "./Avatar"
1944
+ "package": "./Breadcrumbs"
1945
1945
  }
1946
1946
  },
1947
1947
  {
@@ -1949,7 +1949,7 @@
1949
1949
  "name": "*",
1950
1950
  "declaration": {
1951
1951
  "name": "*",
1952
- "package": "./AvatarGroup"
1952
+ "package": "./BreadcrumbsItem"
1953
1953
  }
1954
1954
  }
1955
1955
  ]
@@ -8969,232 +8969,10 @@
8969
8969
  {
8970
8970
  "name": "value",
8971
8971
  "type": {
8972
- "text": "string | undefined"
8973
- },
8974
- "description": "The value attribute for the input element",
8975
- "fieldName": "value"
8976
- },
8977
- {
8978
- "name": "checked",
8979
- "type": {
8980
- "text": "boolean"
8981
- },
8982
- "default": "false",
8983
- "description": "The checked attribute for the input element",
8984
- "fieldName": "checked"
8985
- },
8986
- {
8987
- "name": "onKeyDown",
8988
- "type": {
8989
- "text": "(event: KeyboardEvent) => void | undefined"
8990
- },
8991
- "description": "A user-defined function to handle keydown events",
8992
- "fieldName": "onKeyDown"
8993
- }
8994
- ],
8995
- "superclass": {
8996
- "name": "LitElement",
8997
- "package": "lit"
8998
- },
8999
- "tagName": "bm-radio-button",
9000
- "customElement": true
9001
- }
9002
- ],
9003
- "exports": [
9004
- {
9005
- "kind": "js",
9006
- "name": "BmRadioButton",
9007
- "declaration": {
9008
- "name": "BmRadioButton",
9009
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9010
- }
9011
- },
9012
- {
9013
- "kind": "custom-element-definition",
9014
- "name": "bm-radio-button",
9015
- "declaration": {
9016
- "name": "BmRadioButton",
9017
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9018
- }
9019
- }
9020
- ]
9021
- },
9022
- {
9023
- "kind": "javascript-module",
9024
- "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
9025
- "declarations": [],
9026
- "exports": [
9027
- {
9028
- "kind": "js",
9029
- "name": "*",
9030
- "declaration": {
9031
- "name": "*",
9032
- "package": "./RadioButton"
9033
- }
9034
- },
9035
- {
9036
- "kind": "js",
9037
- "name": "*",
9038
- "declaration": {
9039
- "name": "*",
9040
- "package": "./RadioButtonGroup/RadioButtonGroup"
9041
- }
9042
- }
9043
- ]
9044
- },
9045
- {
9046
- "kind": "javascript-module",
9047
- "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
9048
- "declarations": [
9049
- {
9050
- "kind": "class",
9051
- "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",
9052
- "name": "BmSwitch",
9053
- "slots": [
9054
- {
9055
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9056
- "name": "onText"
9057
- },
9058
- {
9059
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9060
- "name": "offText"
9061
- }
9062
- ],
9063
- "members": [
9064
- {
9065
- "kind": "field",
9066
- "name": "inputChoiceGroupContext",
9067
- "type": {
9068
- "text": "InputChoiceGroupContextProps"
9069
- }
9070
- },
9071
- {
9072
- "kind": "field",
9073
- "name": "onText",
9074
- "type": {
9075
- "text": "string | undefined"
9076
- },
9077
- "default": "undefined",
9078
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9079
- "attribute": "onText"
9080
- },
9081
- {
9082
- "kind": "field",
9083
- "name": "offText",
9084
- "type": {
9085
- "text": "string | undefined"
9086
- },
9087
- "default": "undefined",
9088
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9089
- "attribute": "offText"
9090
- },
9091
- {
9092
- "kind": "field",
9093
- "name": "theme",
9094
- "type": {
9095
- "text": "ThemeTypes | undefined"
9096
- },
9097
- "default": "undefined",
9098
- "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
9099
- },
9100
- {
9101
- "kind": "field",
9102
- "name": "textPosition",
9103
- "type": {
9104
- "text": "'before' | 'after'"
9105
- },
9106
- "default": "'after'",
9107
- "description": "Specify the position of the side label",
9108
- "attribute": "textPosition"
9109
- },
9110
- {
9111
- "kind": "field",
9112
- "name": "readOnly",
9113
- "type": {
9114
- "text": "boolean"
9115
- },
9116
- "default": "false",
9117
- "description": "Specify if Switch displays in a read-only state",
9118
- "attribute": "readOnly"
9119
- },
9120
- {
9121
- "kind": "field",
9122
- "name": "disabled",
9123
- "type": {
9124
- "text": "boolean"
9125
- },
9126
- "default": "false",
9127
- "description": "Specify if Switch displays in a disabled state",
9128
- "attribute": "disabled"
9129
- },
9130
- {
9131
- "kind": "field",
9132
- "name": "checked",
9133
- "type": {
9134
- "text": "boolean"
9135
- },
9136
- "default": "false",
9137
- "attribute": "checked"
9138
- },
9139
- {
9140
- "kind": "field",
9141
- "name": "value",
9142
- "type": {
9143
- "text": "string | undefined"
9144
- },
9145
- "description": "The value attribute for the input element",
9146
- "attribute": "value"
9147
- },
9148
- {
9149
- "kind": "field",
9150
- "name": "switchRef"
9151
- }
9152
- ],
9153
- "attributes": [
9154
- {
9155
- "name": "onText",
9156
- "type": {
9157
- "text": "string | undefined"
9158
- },
9159
- "default": "undefined",
9160
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9161
- "fieldName": "onText"
9162
- },
9163
- {
9164
- "name": "offText",
9165
- "type": {
9166
- "text": "string | undefined"
9167
- },
9168
- "default": "undefined",
9169
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9170
- "fieldName": "offText"
9171
- },
9172
- {
9173
- "name": "textPosition",
9174
- "type": {
9175
- "text": "'before' | 'after'"
9176
- },
9177
- "default": "'after'",
9178
- "description": "Specify the position of the side label",
9179
- "fieldName": "textPosition"
9180
- },
9181
- {
9182
- "name": "readOnly",
9183
- "type": {
9184
- "text": "boolean"
9185
- },
9186
- "default": "false",
9187
- "description": "Specify if Switch displays in a read-only state",
9188
- "fieldName": "readOnly"
9189
- },
9190
- {
9191
- "name": "disabled",
9192
- "type": {
9193
- "text": "boolean"
8972
+ "text": "string | undefined"
9194
8973
  },
9195
- "default": "false",
9196
- "description": "Specify if Switch displays in a disabled state",
9197
- "fieldName": "disabled"
8974
+ "description": "The value attribute for the input element",
8975
+ "fieldName": "value"
9198
8976
  },
9199
8977
  {
9200
8978
  "name": "checked",
@@ -9202,47 +8980,48 @@
9202
8980
  "text": "boolean"
9203
8981
  },
9204
8982
  "default": "false",
8983
+ "description": "The checked attribute for the input element",
9205
8984
  "fieldName": "checked"
9206
8985
  },
9207
8986
  {
9208
- "name": "value",
8987
+ "name": "onKeyDown",
9209
8988
  "type": {
9210
- "text": "string | undefined"
8989
+ "text": "(event: KeyboardEvent) => void | undefined"
9211
8990
  },
9212
- "description": "The value attribute for the input element",
9213
- "fieldName": "value"
8991
+ "description": "A user-defined function to handle keydown events",
8992
+ "fieldName": "onKeyDown"
9214
8993
  }
9215
8994
  ],
9216
8995
  "superclass": {
9217
8996
  "name": "LitElement",
9218
8997
  "package": "lit"
9219
8998
  },
9220
- "tagName": "bm-switch",
8999
+ "tagName": "bm-radio-button",
9221
9000
  "customElement": true
9222
9001
  }
9223
9002
  ],
9224
9003
  "exports": [
9225
9004
  {
9226
9005
  "kind": "js",
9227
- "name": "BmSwitch",
9006
+ "name": "BmRadioButton",
9228
9007
  "declaration": {
9229
- "name": "BmSwitch",
9230
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9008
+ "name": "BmRadioButton",
9009
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9231
9010
  }
9232
9011
  },
9233
9012
  {
9234
9013
  "kind": "custom-element-definition",
9235
- "name": "bm-switch",
9014
+ "name": "bm-radio-button",
9236
9015
  "declaration": {
9237
- "name": "BmSwitch",
9238
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9016
+ "name": "BmRadioButton",
9017
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9239
9018
  }
9240
9019
  }
9241
9020
  ]
9242
9021
  },
9243
9022
  {
9244
9023
  "kind": "javascript-module",
9245
- "path": "libs/web-components/src/lib/wip/Switch/index.ts",
9024
+ "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
9246
9025
  "declarations": [],
9247
9026
  "exports": [
9248
9027
  {
@@ -9250,7 +9029,7 @@
9250
9029
  "name": "*",
9251
9030
  "declaration": {
9252
9031
  "name": "*",
9253
- "package": "./Switch"
9032
+ "package": "./RadioButton"
9254
9033
  }
9255
9034
  },
9256
9035
  {
@@ -9258,7 +9037,7 @@
9258
9037
  "name": "*",
9259
9038
  "declaration": {
9260
9039
  "name": "*",
9261
- "package": "./SwitchGroup/SwitchGroup"
9040
+ "package": "./RadioButtonGroup/RadioButtonGroup"
9262
9041
  }
9263
9042
  }
9264
9043
  ]
@@ -9778,6 +9557,227 @@
9778
9557
  }
9779
9558
  ]
9780
9559
  },
9560
+ {
9561
+ "kind": "javascript-module",
9562
+ "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
9563
+ "declarations": [
9564
+ {
9565
+ "kind": "class",
9566
+ "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",
9567
+ "name": "BmSwitch",
9568
+ "slots": [
9569
+ {
9570
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9571
+ "name": "onText"
9572
+ },
9573
+ {
9574
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9575
+ "name": "offText"
9576
+ }
9577
+ ],
9578
+ "members": [
9579
+ {
9580
+ "kind": "field",
9581
+ "name": "inputChoiceGroupContext",
9582
+ "type": {
9583
+ "text": "InputChoiceGroupContextProps"
9584
+ }
9585
+ },
9586
+ {
9587
+ "kind": "field",
9588
+ "name": "onText",
9589
+ "type": {
9590
+ "text": "string | undefined"
9591
+ },
9592
+ "default": "undefined",
9593
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9594
+ "attribute": "onText"
9595
+ },
9596
+ {
9597
+ "kind": "field",
9598
+ "name": "offText",
9599
+ "type": {
9600
+ "text": "string | undefined"
9601
+ },
9602
+ "default": "undefined",
9603
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9604
+ "attribute": "offText"
9605
+ },
9606
+ {
9607
+ "kind": "field",
9608
+ "name": "theme",
9609
+ "type": {
9610
+ "text": "ThemeTypes | undefined"
9611
+ },
9612
+ "default": "undefined",
9613
+ "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
9614
+ },
9615
+ {
9616
+ "kind": "field",
9617
+ "name": "textPosition",
9618
+ "type": {
9619
+ "text": "'before' | 'after'"
9620
+ },
9621
+ "default": "'after'",
9622
+ "description": "Specify the position of the side label",
9623
+ "attribute": "textPosition"
9624
+ },
9625
+ {
9626
+ "kind": "field",
9627
+ "name": "readOnly",
9628
+ "type": {
9629
+ "text": "boolean"
9630
+ },
9631
+ "default": "false",
9632
+ "description": "Specify if Switch displays in a read-only state",
9633
+ "attribute": "readOnly"
9634
+ },
9635
+ {
9636
+ "kind": "field",
9637
+ "name": "disabled",
9638
+ "type": {
9639
+ "text": "boolean"
9640
+ },
9641
+ "default": "false",
9642
+ "description": "Specify if Switch displays in a disabled state",
9643
+ "attribute": "disabled"
9644
+ },
9645
+ {
9646
+ "kind": "field",
9647
+ "name": "checked",
9648
+ "type": {
9649
+ "text": "boolean"
9650
+ },
9651
+ "default": "false",
9652
+ "attribute": "checked"
9653
+ },
9654
+ {
9655
+ "kind": "field",
9656
+ "name": "value",
9657
+ "type": {
9658
+ "text": "string | undefined"
9659
+ },
9660
+ "description": "The value attribute for the input element",
9661
+ "attribute": "value"
9662
+ },
9663
+ {
9664
+ "kind": "field",
9665
+ "name": "switchRef"
9666
+ }
9667
+ ],
9668
+ "attributes": [
9669
+ {
9670
+ "name": "onText",
9671
+ "type": {
9672
+ "text": "string | undefined"
9673
+ },
9674
+ "default": "undefined",
9675
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9676
+ "fieldName": "onText"
9677
+ },
9678
+ {
9679
+ "name": "offText",
9680
+ "type": {
9681
+ "text": "string | undefined"
9682
+ },
9683
+ "default": "undefined",
9684
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9685
+ "fieldName": "offText"
9686
+ },
9687
+ {
9688
+ "name": "textPosition",
9689
+ "type": {
9690
+ "text": "'before' | 'after'"
9691
+ },
9692
+ "default": "'after'",
9693
+ "description": "Specify the position of the side label",
9694
+ "fieldName": "textPosition"
9695
+ },
9696
+ {
9697
+ "name": "readOnly",
9698
+ "type": {
9699
+ "text": "boolean"
9700
+ },
9701
+ "default": "false",
9702
+ "description": "Specify if Switch displays in a read-only state",
9703
+ "fieldName": "readOnly"
9704
+ },
9705
+ {
9706
+ "name": "disabled",
9707
+ "type": {
9708
+ "text": "boolean"
9709
+ },
9710
+ "default": "false",
9711
+ "description": "Specify if Switch displays in a disabled state",
9712
+ "fieldName": "disabled"
9713
+ },
9714
+ {
9715
+ "name": "checked",
9716
+ "type": {
9717
+ "text": "boolean"
9718
+ },
9719
+ "default": "false",
9720
+ "fieldName": "checked"
9721
+ },
9722
+ {
9723
+ "name": "value",
9724
+ "type": {
9725
+ "text": "string | undefined"
9726
+ },
9727
+ "description": "The value attribute for the input element",
9728
+ "fieldName": "value"
9729
+ }
9730
+ ],
9731
+ "superclass": {
9732
+ "name": "LitElement",
9733
+ "package": "lit"
9734
+ },
9735
+ "tagName": "bm-switch",
9736
+ "customElement": true
9737
+ }
9738
+ ],
9739
+ "exports": [
9740
+ {
9741
+ "kind": "js",
9742
+ "name": "BmSwitch",
9743
+ "declaration": {
9744
+ "name": "BmSwitch",
9745
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9746
+ }
9747
+ },
9748
+ {
9749
+ "kind": "custom-element-definition",
9750
+ "name": "bm-switch",
9751
+ "declaration": {
9752
+ "name": "BmSwitch",
9753
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9754
+ }
9755
+ }
9756
+ ]
9757
+ },
9758
+ {
9759
+ "kind": "javascript-module",
9760
+ "path": "libs/web-components/src/lib/wip/Switch/index.ts",
9761
+ "declarations": [],
9762
+ "exports": [
9763
+ {
9764
+ "kind": "js",
9765
+ "name": "*",
9766
+ "declaration": {
9767
+ "name": "*",
9768
+ "package": "./Switch"
9769
+ }
9770
+ },
9771
+ {
9772
+ "kind": "js",
9773
+ "name": "*",
9774
+ "declaration": {
9775
+ "name": "*",
9776
+ "package": "./SwitchGroup/SwitchGroup"
9777
+ }
9778
+ }
9779
+ ]
9780
+ },
9781
9781
  {
9782
9782
  "kind": "javascript-module",
9783
9783
  "path": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts",