@viasat/beam-web-components 2.45.1 → 2.47.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,1352 +294,1254 @@
294
294
  },
295
295
  {
296
296
  "kind": "javascript-module",
297
- "path": "libs/web-components/src/lib/Avatar/Avatar.ts",
297
+ "path": "libs/web-components/src/lib/Alert/Alert.ts",
298
298
  "declarations": [
299
299
  {
300
300
  "kind": "class",
301
- "description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** ",
302
- "name": "BmAvatar",
301
+ "description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
302
+ "name": "BmAlert",
303
303
  "slots": [
304
304
  {
305
- "description": "Customize the default icon",
305
+ "description": "Specify a different icon for the Alert",
306
306
  "name": "icon"
307
+ },
308
+ {
309
+ "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
310
+ "name": "heading"
311
+ },
312
+ {
313
+ "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
314
+ "name": "body"
315
+ },
316
+ {
317
+ "description": "Specify if actions display on the Alert",
318
+ "name": "actions"
307
319
  }
308
320
  ],
309
321
  "members": [
310
322
  {
311
323
  "kind": "field",
312
- "name": "appearance",
324
+ "name": "heading",
313
325
  "type": {
314
- "text": "'accent' | 'neutral' | undefined"
326
+ "text": "string | undefined"
315
327
  },
316
- "default": "'neutral'",
317
- "description": "Specify the appearance of the Avatar",
318
- "attribute": "appearance"
328
+ "description": "Specify the heading text for Alert",
329
+ "attribute": "heading"
319
330
  },
320
331
  {
321
332
  "kind": "field",
322
- "name": "name",
333
+ "name": "body",
323
334
  "type": {
324
335
  "text": "string | undefined"
325
336
  },
326
- "description": "Specify a name to display initials in the Avatar",
327
- "attribute": "name"
337
+ "description": "Specify the body text for Alert",
338
+ "attribute": "body"
328
339
  },
329
340
  {
330
341
  "kind": "field",
331
- "name": "src",
342
+ "name": "size",
332
343
  "type": {
333
- "text": "string | undefined"
344
+ "text": "'sm' | 'md'"
334
345
  },
335
- "description": "Pass an image to the Avatar",
336
- "attribute": "src"
346
+ "default": "'sm'",
347
+ "description": "Specify the size of the Alert",
348
+ "attribute": "size"
337
349
  },
338
350
  {
339
351
  "kind": "field",
340
- "name": "alt",
352
+ "name": "fullWidth",
341
353
  "type": {
342
- "text": "string | undefined"
354
+ "text": "boolean"
343
355
  },
344
- "description": "Specify alt for image",
345
- "attribute": "alt"
356
+ "default": "false",
357
+ "description": "Specify if the Alert has no border radius",
358
+ "attribute": "fullWidth"
346
359
  },
347
360
  {
348
361
  "kind": "field",
349
- "name": "size",
362
+ "name": "theme",
350
363
  "type": {
351
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
364
+ "text": "'light' | 'dark' | undefined"
352
365
  },
353
- "default": "'md'",
354
- "description": "Specify the size of the Avatar",
355
- "attribute": "size"
366
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
367
+ "attribute": "theme"
356
368
  },
357
369
  {
358
370
  "kind": "field",
359
- "name": "disabled",
371
+ "name": "appearance",
360
372
  "type": {
361
- "text": "boolean | undefined"
373
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
374
+ },
375
+ "default": "'infoPrimary'",
376
+ "description": "Specify the appearance of the Alert",
377
+ "attribute": "appearance"
378
+ },
379
+ {
380
+ "kind": "field",
381
+ "name": "hidden",
382
+ "type": {
383
+ "text": "boolean"
362
384
  },
363
385
  "default": "false",
364
- "description": "Specify if the Avatar is disabled",
365
- "attribute": "disabled"
386
+ "description": "Specify if the Alert is hidden",
387
+ "attribute": "hidden"
366
388
  },
367
389
  {
368
390
  "kind": "field",
369
- "name": "shape",
391
+ "name": "hideIcon",
370
392
  "type": {
371
- "text": "'circle' | 'square' | undefined"
393
+ "text": "boolean"
372
394
  },
373
- "default": "'circle'",
374
- "description": "Specify the shape of the Avatar",
375
- "attribute": "shape"
395
+ "default": "false",
396
+ "description": "Specify if the icon displays on the Alert",
397
+ "attribute": "hideIcon"
376
398
  },
377
399
  {
378
400
  "kind": "field",
379
- "name": "isInteractive",
401
+ "name": "dismissible",
380
402
  "type": {
381
403
  "text": "boolean"
382
404
  },
383
405
  "default": "false",
384
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
385
- "attribute": "isInteractive"
406
+ "description": "Specify if the Alert can be dismissed",
407
+ "attribute": "dismissible"
386
408
  },
387
409
  {
388
410
  "kind": "field",
389
- "name": "isFocusable",
411
+ "name": "disableAutoFocus",
390
412
  "type": {
391
413
  "text": "boolean"
392
414
  },
393
415
  "default": "false",
394
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
395
- "attribute": "isFocusable"
416
+ "description": "Prevent autofocus on show",
417
+ "attribute": "disableAutoFocus"
396
418
  },
397
419
  {
398
420
  "kind": "field",
399
- "name": "withBorder",
421
+ "name": "disableCloseOnEscape",
400
422
  "type": {
401
423
  "text": "boolean"
402
424
  },
403
425
  "default": "false",
404
- "attribute": "withBorder"
426
+ "description": "Prevent Escape from closing",
427
+ "attribute": "disableCloseOnEscape"
428
+ }
429
+ ],
430
+ "events": [
431
+ {
432
+ "description": "Dispatched when the Alert has been dismissed",
433
+ "name": "bm-dismiss"
405
434
  }
406
435
  ],
407
436
  "attributes": [
408
437
  {
409
- "name": "appearance",
438
+ "name": "heading",
410
439
  "type": {
411
- "text": "'accent' | 'neutral' | undefined"
440
+ "text": "string | undefined"
412
441
  },
413
- "default": "'neutral'",
414
- "description": "Specify the appearance of the Avatar",
415
- "fieldName": "appearance"
442
+ "description": "Specify the heading text for Alert",
443
+ "fieldName": "heading"
416
444
  },
417
445
  {
418
- "name": "name",
446
+ "name": "body",
419
447
  "type": {
420
448
  "text": "string | undefined"
421
449
  },
422
- "description": "Specify a name to display initials in the Avatar",
423
- "fieldName": "name"
450
+ "description": "Specify the body text for Alert",
451
+ "fieldName": "body"
424
452
  },
425
453
  {
426
- "name": "src",
454
+ "name": "size",
427
455
  "type": {
428
- "text": "string | undefined"
456
+ "text": "'sm' | 'md'"
429
457
  },
430
- "description": "Pass an image to the Avatar",
431
- "fieldName": "src"
458
+ "default": "'sm'",
459
+ "description": "Specify the size of the Alert",
460
+ "fieldName": "size"
432
461
  },
433
462
  {
434
- "name": "alt",
463
+ "name": "fullWidth",
435
464
  "type": {
436
- "text": "string | undefined"
465
+ "text": "boolean"
437
466
  },
438
- "description": "Specify alt for image",
439
- "fieldName": "alt"
467
+ "default": "false",
468
+ "description": "Specify if the Alert has no border radius",
469
+ "fieldName": "fullWidth"
440
470
  },
441
471
  {
442
- "name": "size",
472
+ "name": "theme",
443
473
  "type": {
444
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
474
+ "text": "'light' | 'dark' | undefined"
445
475
  },
446
- "default": "'md'",
447
- "description": "Specify the size of the Avatar",
448
- "fieldName": "size"
476
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
477
+ "fieldName": "theme"
449
478
  },
450
479
  {
451
- "name": "disabled",
480
+ "name": "appearance",
452
481
  "type": {
453
- "text": "boolean | undefined"
482
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
483
+ },
484
+ "default": "'infoPrimary'",
485
+ "description": "Specify the appearance of the Alert",
486
+ "fieldName": "appearance"
487
+ },
488
+ {
489
+ "name": "hidden",
490
+ "type": {
491
+ "text": "boolean"
454
492
  },
455
493
  "default": "false",
456
- "description": "Specify if the Avatar is disabled",
457
- "fieldName": "disabled"
494
+ "description": "Specify if the Alert is hidden",
495
+ "fieldName": "hidden"
458
496
  },
459
497
  {
460
- "name": "shape",
498
+ "name": "hideIcon",
461
499
  "type": {
462
- "text": "'circle' | 'square' | undefined"
500
+ "text": "boolean"
463
501
  },
464
- "default": "'circle'",
465
- "description": "Specify the shape of the Avatar",
466
- "fieldName": "shape"
502
+ "default": "false",
503
+ "description": "Specify if the icon displays on the Alert",
504
+ "fieldName": "hideIcon"
467
505
  },
468
506
  {
469
- "name": "isInteractive",
507
+ "name": "dismissible",
470
508
  "type": {
471
509
  "text": "boolean"
472
510
  },
473
511
  "default": "false",
474
- "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
475
- "fieldName": "isInteractive"
512
+ "description": "Specify if the Alert can be dismissed",
513
+ "fieldName": "dismissible"
476
514
  },
477
515
  {
478
- "name": "isFocusable",
516
+ "name": "disableAutoFocus",
479
517
  "type": {
480
518
  "text": "boolean"
481
519
  },
482
520
  "default": "false",
483
- "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
484
- "fieldName": "isFocusable"
521
+ "description": "Prevent autofocus on show",
522
+ "fieldName": "disableAutoFocus"
485
523
  },
486
524
  {
487
- "name": "withBorder",
525
+ "name": "disableCloseOnEscape",
488
526
  "type": {
489
527
  "text": "boolean"
490
528
  },
491
529
  "default": "false",
492
- "fieldName": "withBorder"
530
+ "description": "Prevent Escape from closing",
531
+ "fieldName": "disableCloseOnEscape"
493
532
  }
494
533
  ],
495
534
  "superclass": {
496
535
  "name": "LitElement",
497
536
  "package": "lit"
498
537
  },
499
- "tagName": "bm-avatar",
538
+ "tagName": "bm-alert",
500
539
  "customElement": true
501
540
  }
502
541
  ],
503
542
  "exports": [
504
543
  {
505
544
  "kind": "js",
506
- "name": "BmAvatar",
545
+ "name": "BmAlert",
507
546
  "declaration": {
508
- "name": "BmAvatar",
509
- "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
547
+ "name": "BmAlert",
548
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
510
549
  }
511
550
  },
512
551
  {
513
552
  "kind": "custom-element-definition",
514
- "name": "bm-avatar",
553
+ "name": "bm-alert",
515
554
  "declaration": {
516
- "name": "BmAvatar",
517
- "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
555
+ "name": "BmAlert",
556
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
518
557
  }
519
558
  }
520
559
  ]
521
560
  },
522
561
  {
523
562
  "kind": "javascript-module",
524
- "path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
525
- "declarations": [
526
- {
527
- "kind": "variable",
528
- "name": "AvatarGroupCtx"
529
- }
530
- ],
563
+ "path": "libs/web-components/src/lib/Alert/index.ts",
564
+ "declarations": [],
531
565
  "exports": [
532
566
  {
533
567
  "kind": "js",
534
- "name": "AvatarGroupCtx",
568
+ "name": "*",
535
569
  "declaration": {
536
- "name": "AvatarGroupCtx",
537
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
570
+ "name": "*",
571
+ "package": "./Alert"
538
572
  }
539
573
  }
540
574
  ]
541
575
  },
542
576
  {
543
577
  "kind": "javascript-module",
544
- "path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
578
+ "path": "libs/web-components/src/lib/Box/Box.ts",
545
579
  "declarations": [
546
580
  {
547
581
  "kind": "class",
548
- "description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.",
549
- "name": "BmAvatarGroup",
582
+ "description": "`bm-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",
583
+ "name": "BmBox",
550
584
  "slots": [
551
585
  {
552
- "description": "Add Avatars to create a group",
586
+ "description": "Provide content for the Box",
553
587
  "name": "default"
554
588
  }
555
589
  ],
556
590
  "members": [
557
591
  {
558
592
  "kind": "field",
559
- "name": "wrapping",
593
+ "name": "backgroundColor",
560
594
  "type": {
561
- "text": "boolean"
595
+ "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"
562
596
  },
563
- "default": "false",
564
- "description": "Specify if the AvatarGroup wraps",
565
- "attribute": "wrapping"
597
+ "description": "Specify the background color of a Box",
598
+ "attribute": "backgroundColor"
566
599
  },
567
600
  {
568
601
  "kind": "field",
569
- "name": "maxCount",
602
+ "name": "borderColor",
570
603
  "type": {
571
- "text": "number"
604
+ "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"
572
605
  },
573
- "default": "5",
574
- "description": "Specify the max number of avatars displayed in the group.",
575
- "attribute": "maxCount",
576
- "reflects": true
606
+ "description": "Specify the border color of a Box",
607
+ "attribute": "borderColor"
577
608
  },
578
609
  {
579
610
  "kind": "field",
580
- "name": "size",
581
- "type": {
582
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
583
- },
584
- "default": "'md'",
585
- "description": "Specify the size of all Avatars",
586
- "attribute": "size"
587
- },
588
- {
589
- "kind": "field",
590
- "name": "layout",
591
- "type": {
592
- "text": "'stacked' | 'spaced' | undefined"
593
- },
594
- "default": "'stacked'",
595
- "description": "Specify the kind of the group.",
596
- "attribute": "layout"
597
- }
598
- ],
599
- "attributes": [
600
- {
601
- "name": "wrapping",
602
- "type": {
603
- "text": "boolean"
604
- },
605
- "default": "false",
606
- "description": "Specify if the AvatarGroup wraps",
607
- "fieldName": "wrapping"
608
- },
609
- {
610
- "name": "maxCount",
611
- "type": {
612
- "text": "number"
613
- },
614
- "default": "5",
615
- "description": "Specify the max number of avatars displayed in the group.",
616
- "fieldName": "maxCount"
617
- },
618
- {
619
- "name": "size",
620
- "type": {
621
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
622
- },
623
- "default": "'md'",
624
- "description": "Specify the size of all Avatars",
625
- "fieldName": "size"
626
- },
627
- {
628
- "name": "layout",
629
- "type": {
630
- "text": "'stacked' | 'spaced' | undefined"
631
- },
632
- "default": "'stacked'",
633
- "description": "Specify the kind of the group.",
634
- "fieldName": "layout"
635
- }
636
- ],
637
- "superclass": {
638
- "name": "LitElement",
639
- "package": "lit"
640
- },
641
- "tagName": "bm-avatar-group",
642
- "customElement": true
643
- }
644
- ],
645
- "exports": [
646
- {
647
- "kind": "js",
648
- "name": "BmAvatarGroup",
649
- "declaration": {
650
- "name": "BmAvatarGroup",
651
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
652
- }
653
- },
654
- {
655
- "kind": "custom-element-definition",
656
- "name": "bm-avatar-group",
657
- "declaration": {
658
- "name": "BmAvatarGroup",
659
- "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
660
- }
661
- }
662
- ]
663
- },
664
- {
665
- "kind": "javascript-module",
666
- "path": "libs/web-components/src/lib/Avatar/index.ts",
667
- "declarations": [],
668
- "exports": [
669
- {
670
- "kind": "js",
671
- "name": "*",
672
- "declaration": {
673
- "name": "*",
674
- "package": "./Avatar"
675
- }
676
- },
677
- {
678
- "kind": "js",
679
- "name": "*",
680
- "declaration": {
681
- "name": "*",
682
- "package": "./AvatarGroup"
683
- }
684
- }
685
- ]
686
- },
687
- {
688
- "kind": "javascript-module",
689
- "path": "libs/web-components/src/lib/Badge/Badge.ts",
690
- "declarations": [
691
- {
692
- "kind": "class",
693
- "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",
694
- "name": "BmBadge",
695
- "slots": [
696
- {
697
- "description": "Provide text for the Badge",
698
- "name": "default"
699
- },
700
- {
701
- "description": "Specify a different icon for the Badge",
702
- "name": "icon"
703
- }
704
- ],
705
- "members": [
706
- {
707
- "kind": "field",
708
- "name": "appearance",
709
- "type": {
710
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
711
- },
712
- "default": "'infoPrimary'",
713
- "description": "Specify the appearance of the Badge",
714
- "attribute": "appearance"
715
- },
716
- {
717
- "kind": "field",
718
- "name": "theme",
719
- "type": {
720
- "text": "'light' | 'dark' | undefined"
721
- },
722
- "description": "Theme of the Badge",
723
- "attribute": "theme"
724
- },
725
- {
726
- "kind": "field",
727
- "name": "size",
728
- "type": {
729
- "text": "'sm' | 'md' | undefined"
730
- },
731
- "default": "'sm'",
732
- "description": "Specify the size of the Badge",
733
- "attribute": "size"
734
- },
735
- {
736
- "kind": "field",
737
- "name": "emphasis",
738
- "type": {
739
- "text": "'strong' | 'medium' | 'subtle'"
740
- },
741
- "default": "'strong'",
742
- "description": "Specify the emphasis of the Badge",
743
- "attribute": "emphasis"
744
- },
745
- {
746
- "kind": "field",
747
- "name": "hideIcon",
748
- "type": {
749
- "text": "boolean | undefined"
750
- },
751
- "description": "Hides Badge icon",
752
- "attribute": "hideIcon"
753
- }
754
- ],
755
- "attributes": [
756
- {
757
- "name": "appearance",
758
- "type": {
759
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
760
- },
761
- "default": "'infoPrimary'",
762
- "description": "Specify the appearance of the Badge",
763
- "fieldName": "appearance"
764
- },
765
- {
766
- "name": "theme",
767
- "type": {
768
- "text": "'light' | 'dark' | undefined"
769
- },
770
- "description": "Theme of the Badge",
771
- "fieldName": "theme"
772
- },
773
- {
774
- "name": "size",
775
- "type": {
776
- "text": "'sm' | 'md' | undefined"
777
- },
778
- "default": "'sm'",
779
- "description": "Specify the size of the Badge",
780
- "fieldName": "size"
781
- },
782
- {
783
- "name": "emphasis",
784
- "type": {
785
- "text": "'strong' | 'medium' | 'subtle'"
786
- },
787
- "default": "'strong'",
788
- "description": "Specify the emphasis of the Badge",
789
- "fieldName": "emphasis"
790
- },
791
- {
792
- "name": "hideIcon",
793
- "type": {
794
- "text": "boolean | undefined"
795
- },
796
- "description": "Hides Badge icon",
797
- "fieldName": "hideIcon"
798
- }
799
- ],
800
- "superclass": {
801
- "name": "LitElement",
802
- "package": "lit"
803
- },
804
- "tagName": "bm-badge",
805
- "customElement": true
806
- }
807
- ],
808
- "exports": [
809
- {
810
- "kind": "js",
811
- "name": "BmBadge",
812
- "declaration": {
813
- "name": "BmBadge",
814
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
815
- }
816
- },
817
- {
818
- "kind": "custom-element-definition",
819
- "name": "bm-badge",
820
- "declaration": {
821
- "name": "BmBadge",
822
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
823
- }
824
- }
825
- ]
826
- },
827
- {
828
- "kind": "javascript-module",
829
- "path": "libs/web-components/src/lib/Badge/index.ts",
830
- "declarations": [],
831
- "exports": [
832
- {
833
- "kind": "js",
834
- "name": "*",
835
- "declaration": {
836
- "name": "*",
837
- "package": "./Badge"
838
- }
839
- }
840
- ]
841
- },
842
- {
843
- "kind": "javascript-module",
844
- "path": "libs/web-components/src/lib/Alert/Alert.ts",
845
- "declarations": [
846
- {
847
- "kind": "class",
848
- "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",
849
- "name": "BmAlert",
850
- "slots": [
851
- {
852
- "description": "Specify a different icon for the Alert",
853
- "name": "icon"
854
- },
855
- {
856
- "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
857
- "name": "heading"
858
- },
859
- {
860
- "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
861
- "name": "body"
862
- },
863
- {
864
- "description": "Specify if actions display on the Alert",
865
- "name": "actions"
866
- }
867
- ],
868
- "members": [
869
- {
870
- "kind": "field",
871
- "name": "heading",
872
- "type": {
873
- "text": "string | undefined"
874
- },
875
- "description": "Specify the heading text for Alert",
876
- "attribute": "heading"
877
- },
878
- {
879
- "kind": "field",
880
- "name": "body",
881
- "type": {
882
- "text": "string | undefined"
883
- },
884
- "description": "Specify the body text for Alert",
885
- "attribute": "body"
886
- },
887
- {
888
- "kind": "field",
889
- "name": "size",
890
- "type": {
891
- "text": "'sm' | 'md'"
892
- },
893
- "default": "'sm'",
894
- "description": "Specify the size of the Alert",
895
- "attribute": "size"
896
- },
897
- {
898
- "kind": "field",
899
- "name": "fullWidth",
900
- "type": {
901
- "text": "boolean"
902
- },
903
- "default": "false",
904
- "description": "Specify if the Alert has no border radius",
905
- "attribute": "fullWidth"
906
- },
907
- {
908
- "kind": "field",
909
- "name": "theme",
611
+ "name": "borderWidth",
910
612
  "type": {
911
- "text": "'light' | 'dark' | undefined"
613
+ "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
912
614
  },
913
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
914
- "attribute": "theme"
615
+ "description": "Specify the border width of a Box",
616
+ "attribute": "borderWidth"
915
617
  },
916
618
  {
917
619
  "kind": "field",
918
- "name": "appearance",
620
+ "name": "borderRadius",
919
621
  "type": {
920
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
622
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
921
623
  },
922
- "default": "'infoPrimary'",
923
- "description": "Specify the appearance of the Alert",
924
- "attribute": "appearance"
624
+ "description": "Specify the border radius of a Box",
625
+ "attribute": "borderRadius"
925
626
  },
926
627
  {
927
628
  "kind": "field",
928
- "name": "hidden",
629
+ "name": "px",
929
630
  "type": {
930
- "text": "boolean"
631
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
931
632
  },
932
- "default": "false",
933
- "description": "Specify if the Alert is hidden",
934
- "attribute": "hidden"
633
+ "description": "Specify before and after padding of a Box",
634
+ "attribute": "px"
935
635
  },
936
636
  {
937
637
  "kind": "field",
938
- "name": "hideIcon",
638
+ "name": "py",
939
639
  "type": {
940
- "text": "boolean"
640
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
941
641
  },
942
- "default": "false",
943
- "description": "Specify if the icon displays on the Alert",
944
- "attribute": "hideIcon"
642
+ "description": "Specify top and bottom padding of a Box",
643
+ "attribute": "py"
945
644
  },
946
645
  {
947
646
  "kind": "field",
948
- "name": "dismissible",
647
+ "name": "pTop",
949
648
  "type": {
950
- "text": "boolean"
649
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
951
650
  },
952
- "default": "false",
953
- "description": "Specify if the Alert can be dismissed",
954
- "attribute": "dismissible"
651
+ "description": "Specify top padding of a Box",
652
+ "attribute": "pTop"
955
653
  },
956
654
  {
957
655
  "kind": "field",
958
- "name": "disableAutoFocus",
656
+ "name": "pBottom",
959
657
  "type": {
960
- "text": "boolean"
658
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
961
659
  },
962
- "default": "false",
963
- "description": "Prevent autofocus on show",
964
- "attribute": "disableAutoFocus"
660
+ "description": "Specify bottom padding of a Box",
661
+ "attribute": "pBottom"
965
662
  },
966
663
  {
967
664
  "kind": "field",
968
- "name": "disableCloseOnEscape",
665
+ "name": "pBefore",
969
666
  "type": {
970
- "text": "boolean"
667
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
971
668
  },
972
- "default": "false",
973
- "description": "Prevent Escape from closing",
974
- "attribute": "disableCloseOnEscape"
975
- }
976
- ],
977
- "events": [
978
- {
979
- "description": "Dispatched when the Alert has been dismissed",
980
- "name": "bm-dismiss"
981
- }
982
- ],
983
- "attributes": [
669
+ "description": "Specify before padding of a Box",
670
+ "attribute": "pBefore"
671
+ },
984
672
  {
985
- "name": "heading",
673
+ "kind": "field",
674
+ "name": "pAfter",
986
675
  "type": {
987
- "text": "string | undefined"
676
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
988
677
  },
989
- "description": "Specify the heading text for Alert",
990
- "fieldName": "heading"
678
+ "description": "Specify after padding of a Box",
679
+ "attribute": "pAfter"
991
680
  },
992
681
  {
993
- "name": "body",
682
+ "kind": "field",
683
+ "name": "mx",
994
684
  "type": {
995
- "text": "string | undefined"
685
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
996
686
  },
997
- "description": "Specify the body text for Alert",
998
- "fieldName": "body"
687
+ "description": "Specify before and after margin of a Box",
688
+ "attribute": "mx"
999
689
  },
1000
690
  {
1001
- "name": "size",
691
+ "kind": "field",
692
+ "name": "my",
1002
693
  "type": {
1003
- "text": "'sm' | 'md'"
694
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1004
695
  },
1005
- "default": "'sm'",
1006
- "description": "Specify the size of the Alert",
1007
- "fieldName": "size"
696
+ "description": "Specify top and bottom margin of a Box",
697
+ "attribute": "my"
1008
698
  },
1009
699
  {
1010
- "name": "fullWidth",
700
+ "kind": "field",
701
+ "name": "mTop",
1011
702
  "type": {
1012
- "text": "boolean"
703
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1013
704
  },
1014
- "default": "false",
1015
- "description": "Specify if the Alert has no border radius",
1016
- "fieldName": "fullWidth"
705
+ "description": "Specify top margin of a Box",
706
+ "attribute": "mTop"
1017
707
  },
1018
708
  {
1019
- "name": "theme",
709
+ "kind": "field",
710
+ "name": "mBottom",
1020
711
  "type": {
1021
- "text": "'light' | 'dark' | undefined"
712
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1022
713
  },
1023
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1024
- "fieldName": "theme"
714
+ "description": "Specify bottom margin of a Box",
715
+ "attribute": "mBottom"
1025
716
  },
1026
717
  {
1027
- "name": "appearance",
718
+ "kind": "field",
719
+ "name": "mBefore",
1028
720
  "type": {
1029
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
721
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1030
722
  },
1031
- "default": "'infoPrimary'",
1032
- "description": "Specify the appearance of the Alert",
1033
- "fieldName": "appearance"
723
+ "description": "Specify before margin of a Box",
724
+ "attribute": "mBefore"
1034
725
  },
1035
726
  {
1036
- "name": "hidden",
727
+ "kind": "field",
728
+ "name": "mAfter",
1037
729
  "type": {
1038
- "text": "boolean"
730
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1039
731
  },
1040
- "default": "false",
1041
- "description": "Specify if the Alert is hidden",
1042
- "fieldName": "hidden"
732
+ "description": "Specify after margin of a Box",
733
+ "attribute": "mAfter"
1043
734
  },
1044
735
  {
1045
- "name": "hideIcon",
736
+ "kind": "field",
737
+ "name": "m",
1046
738
  "type": {
1047
- "text": "boolean"
739
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1048
740
  },
1049
- "default": "false",
1050
- "description": "Specify if the icon displays on the Alert",
1051
- "fieldName": "hideIcon"
741
+ "description": "Specify all margin",
742
+ "attribute": "m"
1052
743
  },
1053
744
  {
1054
- "name": "dismissible",
745
+ "kind": "field",
746
+ "name": "p",
1055
747
  "type": {
1056
- "text": "boolean"
748
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1057
749
  },
1058
- "default": "false",
1059
- "description": "Specify if the Alert can be dismissed",
1060
- "fieldName": "dismissible"
750
+ "description": "Specify all padding",
751
+ "attribute": "p"
1061
752
  },
1062
753
  {
1063
- "name": "disableAutoFocus",
754
+ "kind": "field",
755
+ "name": "gap",
1064
756
  "type": {
1065
- "text": "boolean"
757
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1066
758
  },
1067
- "default": "false",
1068
- "description": "Prevent autofocus on show",
1069
- "fieldName": "disableAutoFocus"
759
+ "description": "Specify gap between child elements",
760
+ "attribute": "gap"
1070
761
  },
1071
762
  {
1072
- "name": "disableCloseOnEscape",
763
+ "kind": "field",
764
+ "name": "shadow",
1073
765
  "type": {
1074
- "text": "boolean"
766
+ "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1075
767
  },
1076
- "default": "false",
1077
- "description": "Prevent Escape from closing",
1078
- "fieldName": "disableCloseOnEscape"
1079
- }
1080
- ],
1081
- "superclass": {
1082
- "name": "LitElement",
1083
- "package": "lit"
1084
- },
1085
- "tagName": "bm-alert",
1086
- "customElement": true
1087
- }
1088
- ],
1089
- "exports": [
1090
- {
1091
- "kind": "js",
1092
- "name": "BmAlert",
1093
- "declaration": {
1094
- "name": "BmAlert",
1095
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1096
- }
1097
- },
1098
- {
1099
- "kind": "custom-element-definition",
1100
- "name": "bm-alert",
1101
- "declaration": {
1102
- "name": "BmAlert",
1103
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1104
- }
1105
- }
1106
- ]
1107
- },
1108
- {
1109
- "kind": "javascript-module",
1110
- "path": "libs/web-components/src/lib/Alert/index.ts",
1111
- "declarations": [],
1112
- "exports": [
1113
- {
1114
- "kind": "js",
1115
- "name": "*",
1116
- "declaration": {
1117
- "name": "*",
1118
- "package": "./Alert"
1119
- }
1120
- }
1121
- ]
1122
- },
1123
- {
1124
- "kind": "javascript-module",
1125
- "path": "libs/web-components/src/lib/Box/Box.ts",
1126
- "declarations": [
1127
- {
1128
- "kind": "class",
1129
- "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",
1130
- "name": "BmBox",
1131
- "slots": [
1132
- {
1133
- "description": "Provide content for the Box",
1134
- "name": "default"
768
+ "description": "Specify if a Box has a shadow",
769
+ "attribute": "shadow"
1135
770
  }
1136
771
  ],
1137
- "members": [
772
+ "attributes": [
1138
773
  {
1139
- "kind": "field",
1140
774
  "name": "backgroundColor",
1141
775
  "type": {
1142
776
  "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"
1143
777
  },
1144
778
  "description": "Specify the background color of a Box",
1145
- "attribute": "backgroundColor"
779
+ "fieldName": "backgroundColor"
1146
780
  },
1147
781
  {
1148
- "kind": "field",
1149
782
  "name": "borderColor",
1150
783
  "type": {
1151
784
  "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"
1152
785
  },
1153
786
  "description": "Specify the border color of a Box",
1154
- "attribute": "borderColor"
787
+ "fieldName": "borderColor"
1155
788
  },
1156
789
  {
1157
- "kind": "field",
1158
790
  "name": "borderWidth",
1159
791
  "type": {
1160
792
  "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1161
793
  },
1162
794
  "description": "Specify the border width of a Box",
1163
- "attribute": "borderWidth"
795
+ "fieldName": "borderWidth"
1164
796
  },
1165
797
  {
1166
- "kind": "field",
1167
798
  "name": "borderRadius",
1168
799
  "type": {
1169
800
  "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1170
801
  },
1171
802
  "description": "Specify the border radius of a Box",
1172
- "attribute": "borderRadius"
803
+ "fieldName": "borderRadius"
1173
804
  },
1174
805
  {
1175
- "kind": "field",
1176
806
  "name": "px",
1177
807
  "type": {
1178
808
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1179
809
  },
1180
810
  "description": "Specify before and after padding of a Box",
1181
- "attribute": "px"
811
+ "fieldName": "px"
1182
812
  },
1183
813
  {
1184
- "kind": "field",
1185
814
  "name": "py",
1186
815
  "type": {
1187
816
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1188
817
  },
1189
818
  "description": "Specify top and bottom padding of a Box",
1190
- "attribute": "py"
819
+ "fieldName": "py"
1191
820
  },
1192
821
  {
1193
- "kind": "field",
1194
822
  "name": "pTop",
1195
823
  "type": {
1196
824
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1197
825
  },
1198
826
  "description": "Specify top padding of a Box",
1199
- "attribute": "pTop"
827
+ "fieldName": "pTop"
1200
828
  },
1201
829
  {
1202
- "kind": "field",
1203
830
  "name": "pBottom",
1204
831
  "type": {
1205
832
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1206
833
  },
1207
834
  "description": "Specify bottom padding of a Box",
1208
- "attribute": "pBottom"
835
+ "fieldName": "pBottom"
1209
836
  },
1210
837
  {
1211
- "kind": "field",
1212
838
  "name": "pBefore",
1213
839
  "type": {
1214
840
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1215
841
  },
1216
842
  "description": "Specify before padding of a Box",
1217
- "attribute": "pBefore"
843
+ "fieldName": "pBefore"
1218
844
  },
1219
845
  {
1220
- "kind": "field",
1221
846
  "name": "pAfter",
1222
847
  "type": {
1223
848
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1224
849
  },
1225
850
  "description": "Specify after padding of a Box",
1226
- "attribute": "pAfter"
851
+ "fieldName": "pAfter"
1227
852
  },
1228
853
  {
1229
- "kind": "field",
1230
854
  "name": "mx",
1231
855
  "type": {
1232
856
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1233
857
  },
1234
858
  "description": "Specify before and after margin of a Box",
1235
- "attribute": "mx"
859
+ "fieldName": "mx"
1236
860
  },
1237
861
  {
1238
- "kind": "field",
1239
862
  "name": "my",
1240
863
  "type": {
1241
864
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1242
865
  },
1243
866
  "description": "Specify top and bottom margin of a Box",
1244
- "attribute": "my"
867
+ "fieldName": "my"
1245
868
  },
1246
869
  {
1247
- "kind": "field",
1248
870
  "name": "mTop",
1249
871
  "type": {
1250
872
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1251
873
  },
1252
874
  "description": "Specify top margin of a Box",
1253
- "attribute": "mTop"
875
+ "fieldName": "mTop"
1254
876
  },
1255
877
  {
1256
- "kind": "field",
1257
878
  "name": "mBottom",
1258
879
  "type": {
1259
880
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1260
881
  },
1261
882
  "description": "Specify bottom margin of a Box",
1262
- "attribute": "mBottom"
883
+ "fieldName": "mBottom"
1263
884
  },
1264
885
  {
1265
- "kind": "field",
1266
886
  "name": "mBefore",
1267
887
  "type": {
1268
888
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1269
889
  },
1270
890
  "description": "Specify before margin of a Box",
1271
- "attribute": "mBefore"
891
+ "fieldName": "mBefore"
1272
892
  },
1273
893
  {
1274
- "kind": "field",
1275
894
  "name": "mAfter",
1276
895
  "type": {
1277
896
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1278
897
  },
1279
898
  "description": "Specify after margin of a Box",
1280
- "attribute": "mAfter"
899
+ "fieldName": "mAfter"
1281
900
  },
1282
901
  {
1283
- "kind": "field",
1284
902
  "name": "m",
1285
903
  "type": {
1286
904
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1287
905
  },
1288
906
  "description": "Specify all margin",
1289
- "attribute": "m"
907
+ "fieldName": "m"
1290
908
  },
1291
909
  {
1292
- "kind": "field",
1293
910
  "name": "p",
1294
911
  "type": {
1295
912
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1296
913
  },
1297
914
  "description": "Specify all padding",
1298
- "attribute": "p"
915
+ "fieldName": "p"
1299
916
  },
1300
917
  {
1301
- "kind": "field",
1302
918
  "name": "gap",
1303
919
  "type": {
1304
920
  "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1305
921
  },
1306
922
  "description": "Specify gap between child elements",
1307
- "attribute": "gap"
923
+ "fieldName": "gap"
1308
924
  },
1309
925
  {
1310
- "kind": "field",
1311
926
  "name": "shadow",
1312
927
  "type": {
1313
928
  "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1314
929
  },
1315
930
  "description": "Specify if a Box has a shadow",
1316
- "attribute": "shadow"
931
+ "fieldName": "shadow"
932
+ }
933
+ ],
934
+ "superclass": {
935
+ "name": "LitElement",
936
+ "package": "lit"
937
+ },
938
+ "tagName": "bm-box",
939
+ "customElement": true
940
+ }
941
+ ],
942
+ "exports": [
943
+ {
944
+ "kind": "js",
945
+ "name": "BmBox",
946
+ "declaration": {
947
+ "name": "BmBox",
948
+ "module": "libs/web-components/src/lib/Box/Box.ts"
949
+ }
950
+ },
951
+ {
952
+ "kind": "custom-element-definition",
953
+ "name": "bm-box",
954
+ "declaration": {
955
+ "name": "BmBox",
956
+ "module": "libs/web-components/src/lib/Box/Box.ts"
957
+ }
958
+ }
959
+ ]
960
+ },
961
+ {
962
+ "kind": "javascript-module",
963
+ "path": "libs/web-components/src/lib/Box/index.ts",
964
+ "declarations": [],
965
+ "exports": [
966
+ {
967
+ "kind": "js",
968
+ "name": "*",
969
+ "declaration": {
970
+ "name": "*",
971
+ "package": "./Box"
972
+ }
973
+ }
974
+ ]
975
+ },
976
+ {
977
+ "kind": "javascript-module",
978
+ "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
979
+ "declarations": [
980
+ {
981
+ "kind": "class",
982
+ "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",
983
+ "name": "BmBadgeDot",
984
+ "slots": [
985
+ {
986
+ "description": "Provide text for the BadgeDot",
987
+ "name": "default"
988
+ }
989
+ ],
990
+ "members": [
991
+ {
992
+ "kind": "field",
993
+ "name": "theme",
994
+ "type": {
995
+ "text": "'light' | 'dark' | undefined"
996
+ },
997
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
998
+ "attribute": "theme"
999
+ },
1000
+ {
1001
+ "kind": "field",
1002
+ "name": "appearance",
1003
+ "type": {
1004
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1005
+ },
1006
+ "default": "'infoPrimary'",
1007
+ "description": "Specify the appearance of the BadgeDot",
1008
+ "attribute": "appearance"
1009
+ },
1010
+ {
1011
+ "kind": "field",
1012
+ "name": "emphasis",
1013
+ "type": {
1014
+ "text": "'strong' | 'subtle'"
1015
+ },
1016
+ "default": "'strong'",
1017
+ "description": "Specify the emphasis of the BadgeDot",
1018
+ "attribute": "emphasis"
1019
+ },
1020
+ {
1021
+ "kind": "field",
1022
+ "name": "overrideDotColor",
1023
+ "type": {
1024
+ "text": "string | undefined"
1025
+ },
1026
+ "description": "Overrides default dot color",
1027
+ "attribute": "overrideDotColor"
1317
1028
  }
1318
1029
  ],
1319
1030
  "attributes": [
1320
1031
  {
1321
- "name": "backgroundColor",
1032
+ "name": "theme",
1322
1033
  "type": {
1323
- "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"
1034
+ "text": "'light' | 'dark' | undefined"
1324
1035
  },
1325
- "description": "Specify the background color of a Box",
1326
- "fieldName": "backgroundColor"
1036
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1037
+ "fieldName": "theme"
1327
1038
  },
1328
1039
  {
1329
- "name": "borderColor",
1040
+ "name": "appearance",
1330
1041
  "type": {
1331
- "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"
1042
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1332
1043
  },
1333
- "description": "Specify the border color of a Box",
1334
- "fieldName": "borderColor"
1044
+ "default": "'infoPrimary'",
1045
+ "description": "Specify the appearance of the BadgeDot",
1046
+ "fieldName": "appearance"
1335
1047
  },
1336
1048
  {
1337
- "name": "borderWidth",
1049
+ "name": "emphasis",
1338
1050
  "type": {
1339
- "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1051
+ "text": "'strong' | 'subtle'"
1340
1052
  },
1341
- "description": "Specify the border width of a Box",
1342
- "fieldName": "borderWidth"
1053
+ "default": "'strong'",
1054
+ "description": "Specify the emphasis of the BadgeDot",
1055
+ "fieldName": "emphasis"
1343
1056
  },
1344
1057
  {
1345
- "name": "borderRadius",
1058
+ "name": "overrideDotColor",
1346
1059
  "type": {
1347
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1060
+ "text": "string | undefined"
1348
1061
  },
1349
- "description": "Specify the border radius of a Box",
1350
- "fieldName": "borderRadius"
1062
+ "description": "Overrides default dot color",
1063
+ "fieldName": "overrideDotColor"
1064
+ }
1065
+ ],
1066
+ "superclass": {
1067
+ "name": "LitElement",
1068
+ "package": "lit"
1069
+ },
1070
+ "tagName": "bm-badge-dot",
1071
+ "customElement": true
1072
+ }
1073
+ ],
1074
+ "exports": [
1075
+ {
1076
+ "kind": "js",
1077
+ "name": "BmBadgeDot",
1078
+ "declaration": {
1079
+ "name": "BmBadgeDot",
1080
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1081
+ }
1082
+ },
1083
+ {
1084
+ "kind": "custom-element-definition",
1085
+ "name": "bm-badge-dot",
1086
+ "declaration": {
1087
+ "name": "BmBadgeDot",
1088
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1089
+ }
1090
+ }
1091
+ ]
1092
+ },
1093
+ {
1094
+ "kind": "javascript-module",
1095
+ "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1096
+ "declarations": [],
1097
+ "exports": [
1098
+ {
1099
+ "kind": "js",
1100
+ "name": "*",
1101
+ "declaration": {
1102
+ "name": "*",
1103
+ "package": "./BadgeDot"
1104
+ }
1105
+ }
1106
+ ]
1107
+ },
1108
+ {
1109
+ "kind": "javascript-module",
1110
+ "path": "libs/web-components/src/lib/Badge/Badge.ts",
1111
+ "declarations": [
1112
+ {
1113
+ "kind": "class",
1114
+ "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",
1115
+ "name": "BmBadge",
1116
+ "slots": [
1117
+ {
1118
+ "description": "Provide text for the Badge",
1119
+ "name": "default"
1351
1120
  },
1352
1121
  {
1353
- "name": "px",
1122
+ "description": "Specify a different icon for the Badge",
1123
+ "name": "icon"
1124
+ }
1125
+ ],
1126
+ "members": [
1127
+ {
1128
+ "kind": "field",
1129
+ "name": "appearance",
1354
1130
  "type": {
1355
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1131
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1356
1132
  },
1357
- "description": "Specify before and after padding of a Box",
1358
- "fieldName": "px"
1133
+ "default": "'infoPrimary'",
1134
+ "description": "Specify the appearance of the Badge",
1135
+ "attribute": "appearance"
1359
1136
  },
1360
1137
  {
1361
- "name": "py",
1138
+ "kind": "field",
1139
+ "name": "theme",
1362
1140
  "type": {
1363
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1141
+ "text": "'light' | 'dark' | undefined"
1364
1142
  },
1365
- "description": "Specify top and bottom padding of a Box",
1366
- "fieldName": "py"
1143
+ "description": "Theme of the Badge",
1144
+ "attribute": "theme"
1367
1145
  },
1368
1146
  {
1369
- "name": "pTop",
1147
+ "kind": "field",
1148
+ "name": "size",
1370
1149
  "type": {
1371
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1150
+ "text": "'sm' | 'md' | undefined"
1372
1151
  },
1373
- "description": "Specify top padding of a Box",
1374
- "fieldName": "pTop"
1152
+ "default": "'sm'",
1153
+ "description": "Specify the size of the Badge",
1154
+ "attribute": "size"
1155
+ },
1156
+ {
1157
+ "kind": "field",
1158
+ "name": "emphasis",
1159
+ "type": {
1160
+ "text": "'strong' | 'medium' | 'subtle'"
1161
+ },
1162
+ "default": "'strong'",
1163
+ "description": "Specify the emphasis of the Badge",
1164
+ "attribute": "emphasis"
1375
1165
  },
1376
1166
  {
1377
- "name": "pBottom",
1167
+ "kind": "field",
1168
+ "name": "hideIcon",
1169
+ "type": {
1170
+ "text": "boolean | undefined"
1171
+ },
1172
+ "description": "Hides Badge icon",
1173
+ "attribute": "hideIcon"
1174
+ }
1175
+ ],
1176
+ "attributes": [
1177
+ {
1178
+ "name": "appearance",
1378
1179
  "type": {
1379
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1180
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1380
1181
  },
1381
- "description": "Specify bottom padding of a Box",
1382
- "fieldName": "pBottom"
1182
+ "default": "'infoPrimary'",
1183
+ "description": "Specify the appearance of the Badge",
1184
+ "fieldName": "appearance"
1383
1185
  },
1384
1186
  {
1385
- "name": "pBefore",
1187
+ "name": "theme",
1386
1188
  "type": {
1387
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1189
+ "text": "'light' | 'dark' | undefined"
1388
1190
  },
1389
- "description": "Specify before padding of a Box",
1390
- "fieldName": "pBefore"
1191
+ "description": "Theme of the Badge",
1192
+ "fieldName": "theme"
1391
1193
  },
1392
1194
  {
1393
- "name": "pAfter",
1195
+ "name": "size",
1394
1196
  "type": {
1395
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1197
+ "text": "'sm' | 'md' | undefined"
1396
1198
  },
1397
- "description": "Specify after padding of a Box",
1398
- "fieldName": "pAfter"
1199
+ "default": "'sm'",
1200
+ "description": "Specify the size of the Badge",
1201
+ "fieldName": "size"
1399
1202
  },
1400
1203
  {
1401
- "name": "mx",
1204
+ "name": "emphasis",
1402
1205
  "type": {
1403
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1206
+ "text": "'strong' | 'medium' | 'subtle'"
1404
1207
  },
1405
- "description": "Specify before and after margin of a Box",
1406
- "fieldName": "mx"
1208
+ "default": "'strong'",
1209
+ "description": "Specify the emphasis of the Badge",
1210
+ "fieldName": "emphasis"
1407
1211
  },
1408
1212
  {
1409
- "name": "my",
1213
+ "name": "hideIcon",
1410
1214
  "type": {
1411
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1215
+ "text": "boolean | undefined"
1412
1216
  },
1413
- "description": "Specify top and bottom margin of a Box",
1414
- "fieldName": "my"
1415
- },
1217
+ "description": "Hides Badge icon",
1218
+ "fieldName": "hideIcon"
1219
+ }
1220
+ ],
1221
+ "superclass": {
1222
+ "name": "LitElement",
1223
+ "package": "lit"
1224
+ },
1225
+ "tagName": "bm-badge",
1226
+ "customElement": true
1227
+ }
1228
+ ],
1229
+ "exports": [
1230
+ {
1231
+ "kind": "js",
1232
+ "name": "BmBadge",
1233
+ "declaration": {
1234
+ "name": "BmBadge",
1235
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
1236
+ }
1237
+ },
1238
+ {
1239
+ "kind": "custom-element-definition",
1240
+ "name": "bm-badge",
1241
+ "declaration": {
1242
+ "name": "BmBadge",
1243
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
1244
+ }
1245
+ }
1246
+ ]
1247
+ },
1248
+ {
1249
+ "kind": "javascript-module",
1250
+ "path": "libs/web-components/src/lib/Badge/index.ts",
1251
+ "declarations": [],
1252
+ "exports": [
1253
+ {
1254
+ "kind": "js",
1255
+ "name": "*",
1256
+ "declaration": {
1257
+ "name": "*",
1258
+ "package": "./Badge"
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": [
1416
1292
  {
1417
- "name": "mTop",
1293
+ "description": "Pass items to the Breadcrumb",
1294
+ "name": "default"
1295
+ }
1296
+ ],
1297
+ "members": [
1298
+ {
1299
+ "kind": "field",
1300
+ "name": "wrap",
1418
1301
  "type": {
1419
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1302
+ "text": "boolean"
1420
1303
  },
1421
- "description": "Specify top margin of a Box",
1422
- "fieldName": "mTop"
1304
+ "default": "true",
1305
+ "description": "Specify if items wrap or collapse to an ellipsis",
1306
+ "attribute": "wrap"
1423
1307
  },
1424
1308
  {
1425
- "name": "mBottom",
1309
+ "kind": "field",
1310
+ "name": "itemsBeforeCollapse",
1426
1311
  "type": {
1427
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1312
+ "text": "number"
1428
1313
  },
1429
- "description": "Specify bottom margin of a Box",
1430
- "fieldName": "mBottom"
1314
+ "default": "1",
1315
+ "description": "Specify how many items show before ellipsis",
1316
+ "attribute": "itemsBeforeCollapse"
1431
1317
  },
1432
1318
  {
1433
- "name": "mBefore",
1319
+ "kind": "field",
1320
+ "name": "itemsAfterCollapse",
1434
1321
  "type": {
1435
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1322
+ "text": "number"
1436
1323
  },
1437
- "description": "Specify before margin of a Box",
1438
- "fieldName": "mBefore"
1324
+ "default": "1",
1325
+ "description": "Specify how many items show after ellipsis",
1326
+ "attribute": "itemsAfterCollapse"
1439
1327
  },
1440
1328
  {
1441
- "name": "mAfter",
1329
+ "kind": "field",
1330
+ "name": "theme",
1442
1331
  "type": {
1443
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1332
+ "text": "'light' | 'dark' | undefined"
1444
1333
  },
1445
- "description": "Specify after margin of a Box",
1446
- "fieldName": "mAfter"
1447
- },
1334
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1335
+ "attribute": "theme"
1336
+ }
1337
+ ],
1338
+ "attributes": [
1448
1339
  {
1449
- "name": "m",
1340
+ "name": "wrap",
1450
1341
  "type": {
1451
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1342
+ "text": "boolean"
1452
1343
  },
1453
- "description": "Specify all margin",
1454
- "fieldName": "m"
1344
+ "default": "true",
1345
+ "description": "Specify if items wrap or collapse to an ellipsis",
1346
+ "fieldName": "wrap"
1455
1347
  },
1456
1348
  {
1457
- "name": "p",
1349
+ "name": "itemsBeforeCollapse",
1458
1350
  "type": {
1459
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1351
+ "text": "number"
1460
1352
  },
1461
- "description": "Specify all padding",
1462
- "fieldName": "p"
1353
+ "default": "1",
1354
+ "description": "Specify how many items show before ellipsis",
1355
+ "fieldName": "itemsBeforeCollapse"
1463
1356
  },
1464
1357
  {
1465
- "name": "gap",
1358
+ "name": "itemsAfterCollapse",
1466
1359
  "type": {
1467
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1360
+ "text": "number"
1468
1361
  },
1469
- "description": "Specify gap between child elements",
1470
- "fieldName": "gap"
1362
+ "default": "1",
1363
+ "description": "Specify how many items show after ellipsis",
1364
+ "fieldName": "itemsAfterCollapse"
1471
1365
  },
1472
1366
  {
1473
- "name": "shadow",
1367
+ "name": "theme",
1474
1368
  "type": {
1475
- "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1369
+ "text": "'light' | 'dark' | undefined"
1476
1370
  },
1477
- "description": "Specify if a Box has a shadow",
1478
- "fieldName": "shadow"
1371
+ "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1372
+ "fieldName": "theme"
1479
1373
  }
1480
1374
  ],
1481
1375
  "superclass": {
1482
1376
  "name": "LitElement",
1483
1377
  "package": "lit"
1484
1378
  },
1485
- "tagName": "bm-box",
1379
+ "tagName": "bm-breadcrumb",
1486
1380
  "customElement": true
1487
1381
  }
1488
1382
  ],
1489
1383
  "exports": [
1490
1384
  {
1491
1385
  "kind": "js",
1492
- "name": "BmBox",
1386
+ "name": "BmBreadcrumbs",
1493
1387
  "declaration": {
1494
- "name": "BmBox",
1495
- "module": "libs/web-components/src/lib/Box/Box.ts"
1388
+ "name": "BmBreadcrumbs",
1389
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1496
1390
  }
1497
1391
  },
1498
1392
  {
1499
1393
  "kind": "custom-element-definition",
1500
- "name": "bm-box",
1501
- "declaration": {
1502
- "name": "BmBox",
1503
- "module": "libs/web-components/src/lib/Box/Box.ts"
1504
- }
1505
- }
1506
- ]
1507
- },
1508
- {
1509
- "kind": "javascript-module",
1510
- "path": "libs/web-components/src/lib/Box/index.ts",
1511
- "declarations": [],
1512
- "exports": [
1513
- {
1514
- "kind": "js",
1515
- "name": "*",
1394
+ "name": "bm-breadcrumb",
1516
1395
  "declaration": {
1517
- "name": "*",
1518
- "package": "./Box"
1396
+ "name": "BmBreadcrumbs",
1397
+ "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1519
1398
  }
1520
1399
  }
1521
1400
  ]
1522
1401
  },
1523
1402
  {
1524
1403
  "kind": "javascript-module",
1525
- "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
1404
+ "path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
1526
1405
  "declarations": [
1527
1406
  {
1528
1407
  "kind": "class",
1529
- "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",
1530
- "name": "BmBadgeDot",
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",
1531
1410
  "slots": [
1532
1411
  {
1533
- "description": "Provide text for the BadgeDot",
1412
+ "description": "Pass text to an item",
1534
1413
  "name": "default"
1414
+ },
1415
+ {
1416
+ "description": "Pass icon to an item",
1417
+ "name": "icon"
1535
1418
  }
1536
1419
  ],
1537
1420
  "members": [
1538
1421
  {
1539
1422
  "kind": "field",
1540
- "name": "theme",
1423
+ "name": "href",
1424
+ "type": {
1425
+ "text": "string | undefined"
1426
+ },
1427
+ "description": "Pass href to an item",
1428
+ "attribute": "href"
1429
+ },
1430
+ {
1431
+ "kind": "field",
1432
+ "name": "clickable",
1541
1433
  "type": {
1542
- "text": "'light' | 'dark' | undefined"
1434
+ "text": "boolean"
1543
1435
  },
1544
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1545
- "attribute": "theme"
1436
+ "default": "false",
1437
+ "description": "Specify if the item is interactive without an href",
1438
+ "attribute": "clickable"
1546
1439
  },
1547
1440
  {
1548
1441
  "kind": "field",
1549
- "name": "appearance",
1442
+ "name": "truncationWidth",
1550
1443
  "type": {
1551
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1444
+ "text": "string | undefined"
1552
1445
  },
1553
- "default": "'infoPrimary'",
1554
- "description": "Specify the appearance of the BadgeDot",
1555
- "attribute": "appearance"
1446
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1447
+ "attribute": "truncationWidth"
1556
1448
  },
1557
1449
  {
1558
1450
  "kind": "field",
1559
- "name": "emphasis",
1451
+ "name": "isCurrent",
1560
1452
  "type": {
1561
- "text": "'strong' | 'subtle'"
1453
+ "text": "boolean"
1562
1454
  },
1563
- "default": "'strong'",
1564
- "description": "Specify the emphasis of the BadgeDot",
1565
- "attribute": "emphasis"
1455
+ "default": "false",
1456
+ "description": "Specify explicitly if the item is the last one",
1457
+ "attribute": "isCurrent",
1458
+ "reflects": true
1566
1459
  },
1567
1460
  {
1568
1461
  "kind": "field",
1569
- "name": "overrideDotColor",
1462
+ "name": "isCollapsed",
1570
1463
  "type": {
1571
- "text": "string | undefined"
1464
+ "text": "boolean"
1572
1465
  },
1573
- "description": "Overrides default dot color",
1574
- "attribute": "overrideDotColor"
1466
+ "default": "false",
1467
+ "attribute": "isCollapsed",
1468
+ "reflects": true
1575
1469
  }
1576
1470
  ],
1577
1471
  "attributes": [
1578
1472
  {
1579
- "name": "theme",
1473
+ "name": "href",
1580
1474
  "type": {
1581
- "text": "'light' | 'dark' | undefined"
1475
+ "text": "string | undefined"
1582
1476
  },
1583
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1584
- "fieldName": "theme"
1477
+ "description": "Pass href to an item",
1478
+ "fieldName": "href"
1585
1479
  },
1586
1480
  {
1587
- "name": "appearance",
1481
+ "name": "clickable",
1588
1482
  "type": {
1589
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1483
+ "text": "boolean"
1590
1484
  },
1591
- "default": "'infoPrimary'",
1592
- "description": "Specify the appearance of the BadgeDot",
1593
- "fieldName": "appearance"
1485
+ "default": "false",
1486
+ "description": "Specify if the item is interactive without an href",
1487
+ "fieldName": "clickable"
1594
1488
  },
1595
1489
  {
1596
- "name": "emphasis",
1490
+ "name": "truncationWidth",
1597
1491
  "type": {
1598
- "text": "'strong' | 'subtle'"
1492
+ "text": "string | undefined"
1599
1493
  },
1600
- "default": "'strong'",
1601
- "description": "Specify the emphasis of the BadgeDot",
1602
- "fieldName": "emphasis"
1494
+ "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1495
+ "fieldName": "truncationWidth"
1603
1496
  },
1604
1497
  {
1605
- "name": "overrideDotColor",
1498
+ "name": "isCurrent",
1606
1499
  "type": {
1607
- "text": "string | undefined"
1500
+ "text": "boolean"
1608
1501
  },
1609
- "description": "Overrides default dot color",
1610
- "fieldName": "overrideDotColor"
1502
+ "default": "false",
1503
+ "description": "Specify explicitly if the item is the last one",
1504
+ "fieldName": "isCurrent"
1505
+ },
1506
+ {
1507
+ "name": "isCollapsed",
1508
+ "type": {
1509
+ "text": "boolean"
1510
+ },
1511
+ "default": "false",
1512
+ "fieldName": "isCollapsed"
1611
1513
  }
1612
1514
  ],
1613
1515
  "superclass": {
1614
1516
  "name": "LitElement",
1615
1517
  "package": "lit"
1616
1518
  },
1617
- "tagName": "bm-badge-dot",
1519
+ "tagName": "bm-breadcrumb-item",
1618
1520
  "customElement": true
1619
1521
  }
1620
1522
  ],
1621
1523
  "exports": [
1622
1524
  {
1623
1525
  "kind": "js",
1624
- "name": "BmBadgeDot",
1526
+ "name": "BmBreadcrumbsItem",
1625
1527
  "declaration": {
1626
- "name": "BmBadgeDot",
1627
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1528
+ "name": "BmBreadcrumbsItem",
1529
+ "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1628
1530
  }
1629
1531
  },
1630
1532
  {
1631
1533
  "kind": "custom-element-definition",
1632
- "name": "bm-badge-dot",
1534
+ "name": "bm-breadcrumb-item",
1633
1535
  "declaration": {
1634
- "name": "BmBadgeDot",
1635
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1536
+ "name": "BmBreadcrumbsItem",
1537
+ "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1636
1538
  }
1637
1539
  }
1638
1540
  ]
1639
1541
  },
1640
1542
  {
1641
1543
  "kind": "javascript-module",
1642
- "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1544
+ "path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
1643
1545
  "declarations": [],
1644
1546
  "exports": [
1645
1547
  {
@@ -1647,293 +1549,391 @@
1647
1549
  "name": "*",
1648
1550
  "declaration": {
1649
1551
  "name": "*",
1650
- "package": "./BadgeDot"
1552
+ "package": "./Breadcrumbs"
1651
1553
  }
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": [
1554
+ },
1665
1555
  {
1666
1556
  "kind": "js",
1667
- "name": "BreadcrumbGroupCtx",
1557
+ "name": "*",
1668
1558
  "declaration": {
1669
- "name": "BreadcrumbGroupCtx",
1670
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
1559
+ "name": "*",
1560
+ "package": "./BreadcrumbsItem"
1671
1561
  }
1672
1562
  }
1673
1563
  ]
1674
1564
  },
1675
1565
  {
1676
1566
  "kind": "javascript-module",
1677
- "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts",
1567
+ "path": "libs/web-components/src/lib/Avatar/Avatar.ts",
1678
1568
  "declarations": [
1679
1569
  {
1680
1570
  "kind": "class",
1681
- "description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1682
- "name": "BmBreadcrumbs",
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",
1683
1573
  "slots": [
1684
1574
  {
1685
- "description": "Pass items to the Breadcrumb",
1686
- "name": "default"
1575
+ "description": "Customize the default icon",
1576
+ "name": "icon"
1687
1577
  }
1688
1578
  ],
1689
1579
  "members": [
1690
1580
  {
1691
1581
  "kind": "field",
1692
- "name": "wrap",
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
+ },
1637
+ {
1638
+ "kind": "field",
1639
+ "name": "shape",
1640
+ "type": {
1641
+ "text": "'circle' | 'square' | undefined"
1642
+ },
1643
+ "default": "'circle'",
1644
+ "description": "Specify the shape of the Avatar",
1645
+ "attribute": "shape"
1646
+ },
1647
+ {
1648
+ "kind": "field",
1649
+ "name": "isInteractive",
1693
1650
  "type": {
1694
1651
  "text": "boolean"
1695
1652
  },
1696
- "default": "true",
1697
- "description": "Specify if items wrap or collapse to an ellipsis",
1698
- "attribute": "wrap"
1653
+ "default": "false",
1654
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
1655
+ "attribute": "isInteractive"
1699
1656
  },
1700
1657
  {
1701
1658
  "kind": "field",
1702
- "name": "itemsBeforeCollapse",
1659
+ "name": "isFocusable",
1703
1660
  "type": {
1704
- "text": "number"
1661
+ "text": "boolean"
1705
1662
  },
1706
- "default": "1",
1707
- "description": "Specify how many items show before ellipsis",
1708
- "attribute": "itemsBeforeCollapse"
1663
+ "default": "false",
1664
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
1665
+ "attribute": "isFocusable"
1666
+ },
1667
+ {
1668
+ "kind": "field",
1669
+ "name": "withBorder",
1670
+ "type": {
1671
+ "text": "boolean"
1672
+ },
1673
+ "default": "false",
1674
+ "attribute": "withBorder"
1675
+ }
1676
+ ],
1677
+ "attributes": [
1678
+ {
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"
1709
1710
  },
1710
1711
  {
1711
- "kind": "field",
1712
- "name": "itemsAfterCollapse",
1712
+ "name": "size",
1713
1713
  "type": {
1714
- "text": "number"
1714
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
1715
1715
  },
1716
- "default": "1",
1717
- "description": "Specify how many items show after ellipsis",
1718
- "attribute": "itemsAfterCollapse"
1716
+ "default": "'md'",
1717
+ "description": "Specify the size of the Avatar",
1718
+ "fieldName": "size"
1719
1719
  },
1720
1720
  {
1721
- "kind": "field",
1722
- "name": "theme",
1721
+ "name": "disabled",
1723
1722
  "type": {
1724
- "text": "'light' | 'dark' | undefined"
1723
+ "text": "boolean | undefined"
1725
1724
  },
1726
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1727
- "attribute": "theme"
1728
- }
1729
- ],
1730
- "attributes": [
1725
+ "default": "false",
1726
+ "description": "Specify if the Avatar is disabled",
1727
+ "fieldName": "disabled"
1728
+ },
1731
1729
  {
1732
- "name": "wrap",
1730
+ "name": "shape",
1733
1731
  "type": {
1734
- "text": "boolean"
1732
+ "text": "'circle' | 'square' | undefined"
1735
1733
  },
1736
- "default": "true",
1737
- "description": "Specify if items wrap or collapse to an ellipsis",
1738
- "fieldName": "wrap"
1734
+ "default": "'circle'",
1735
+ "description": "Specify the shape of the Avatar",
1736
+ "fieldName": "shape"
1739
1737
  },
1740
1738
  {
1741
- "name": "itemsBeforeCollapse",
1739
+ "name": "isInteractive",
1742
1740
  "type": {
1743
- "text": "number"
1741
+ "text": "boolean"
1744
1742
  },
1745
- "default": "1",
1746
- "description": "Specify how many items show before ellipsis",
1747
- "fieldName": "itemsBeforeCollapse"
1743
+ "default": "false",
1744
+ "description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
1745
+ "fieldName": "isInteractive"
1748
1746
  },
1749
1747
  {
1750
- "name": "itemsAfterCollapse",
1748
+ "name": "isFocusable",
1751
1749
  "type": {
1752
- "text": "number"
1750
+ "text": "boolean"
1753
1751
  },
1754
- "default": "1",
1755
- "description": "Specify how many items show after ellipsis",
1756
- "fieldName": "itemsAfterCollapse"
1752
+ "default": "false",
1753
+ "description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
1754
+ "fieldName": "isFocusable"
1757
1755
  },
1758
1756
  {
1759
- "name": "theme",
1757
+ "name": "withBorder",
1760
1758
  "type": {
1761
- "text": "'light' | 'dark' | undefined"
1759
+ "text": "boolean"
1762
1760
  },
1763
- "description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
1764
- "fieldName": "theme"
1761
+ "default": "false",
1762
+ "fieldName": "withBorder"
1765
1763
  }
1766
1764
  ],
1767
1765
  "superclass": {
1768
1766
  "name": "LitElement",
1769
1767
  "package": "lit"
1770
1768
  },
1771
- "tagName": "bm-breadcrumb",
1769
+ "tagName": "bm-avatar",
1772
1770
  "customElement": true
1773
1771
  }
1774
1772
  ],
1775
1773
  "exports": [
1776
1774
  {
1777
1775
  "kind": "js",
1778
- "name": "BmBreadcrumbs",
1776
+ "name": "BmAvatar",
1779
1777
  "declaration": {
1780
- "name": "BmBreadcrumbs",
1781
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1778
+ "name": "BmAvatar",
1779
+ "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
1782
1780
  }
1783
1781
  },
1784
1782
  {
1785
1783
  "kind": "custom-element-definition",
1786
- "name": "bm-breadcrumb",
1784
+ "name": "bm-avatar",
1787
1785
  "declaration": {
1788
- "name": "BmBreadcrumbs",
1789
- "module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
1786
+ "name": "BmAvatar",
1787
+ "module": "libs/web-components/src/lib/Avatar/Avatar.ts"
1790
1788
  }
1791
1789
  }
1792
1790
  ]
1793
1791
  },
1794
1792
  {
1795
1793
  "kind": "javascript-module",
1796
- "path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
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",
1805
+ "declaration": {
1806
+ "name": "AvatarGroupCtx",
1807
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
1808
+ }
1809
+ }
1810
+ ]
1811
+ },
1812
+ {
1813
+ "kind": "javascript-module",
1814
+ "path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
1797
1815
  "declarations": [
1798
1816
  {
1799
1817
  "kind": "class",
1800
- "description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** ",
1801
- "name": "BmBreadcrumbsItem",
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",
1802
1820
  "slots": [
1803
1821
  {
1804
- "description": "Pass text to an item",
1822
+ "description": "Add Avatars to create a group",
1805
1823
  "name": "default"
1806
- },
1807
- {
1808
- "description": "Pass icon to an item",
1809
- "name": "icon"
1810
1824
  }
1811
1825
  ],
1812
1826
  "members": [
1813
1827
  {
1814
1828
  "kind": "field",
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",
1829
+ "name": "wrapping",
1825
1830
  "type": {
1826
1831
  "text": "boolean"
1827
1832
  },
1828
1833
  "default": "false",
1829
- "description": "Specify if the item is interactive without an href",
1830
- "attribute": "clickable"
1834
+ "description": "Specify if the AvatarGroup wraps",
1835
+ "attribute": "wrapping"
1831
1836
  },
1832
1837
  {
1833
1838
  "kind": "field",
1834
- "name": "truncationWidth",
1839
+ "name": "maxCount",
1835
1840
  "type": {
1836
- "text": "string | undefined"
1841
+ "text": "number"
1837
1842
  },
1838
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1839
- "attribute": "truncationWidth"
1843
+ "default": "5",
1844
+ "description": "Specify the max number of avatars displayed in the group.",
1845
+ "attribute": "maxCount",
1846
+ "reflects": true
1840
1847
  },
1841
1848
  {
1842
1849
  "kind": "field",
1843
- "name": "isCurrent",
1850
+ "name": "size",
1844
1851
  "type": {
1845
- "text": "boolean"
1852
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
1846
1853
  },
1847
- "default": "false",
1848
- "description": "Specify explicitly if the item is the last one",
1849
- "attribute": "isCurrent",
1850
- "reflects": true
1854
+ "default": "'md'",
1855
+ "description": "Specify the size of all Avatars",
1856
+ "attribute": "size"
1851
1857
  },
1852
1858
  {
1853
1859
  "kind": "field",
1854
- "name": "isCollapsed",
1860
+ "name": "layout",
1855
1861
  "type": {
1856
- "text": "boolean"
1862
+ "text": "'stacked' | 'spaced' | undefined"
1857
1863
  },
1858
- "default": "false",
1859
- "attribute": "isCollapsed",
1860
- "reflects": true
1864
+ "default": "'stacked'",
1865
+ "description": "Specify the kind of the group.",
1866
+ "attribute": "layout"
1861
1867
  }
1862
1868
  ],
1863
1869
  "attributes": [
1864
1870
  {
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",
1871
+ "name": "wrapping",
1874
1872
  "type": {
1875
1873
  "text": "boolean"
1876
1874
  },
1877
1875
  "default": "false",
1878
- "description": "Specify if the item is interactive without an href",
1879
- "fieldName": "clickable"
1876
+ "description": "Specify if the AvatarGroup wraps",
1877
+ "fieldName": "wrapping"
1880
1878
  },
1881
1879
  {
1882
- "name": "truncationWidth",
1880
+ "name": "maxCount",
1883
1881
  "type": {
1884
- "text": "string | undefined"
1882
+ "text": "number"
1885
1883
  },
1886
- "description": "Specify truncation width of the items. Sets max-width for all items but the last.",
1887
- "fieldName": "truncationWidth"
1884
+ "default": "5",
1885
+ "description": "Specify the max number of avatars displayed in the group.",
1886
+ "fieldName": "maxCount"
1888
1887
  },
1889
1888
  {
1890
- "name": "isCurrent",
1889
+ "name": "size",
1891
1890
  "type": {
1892
- "text": "boolean"
1891
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
1893
1892
  },
1894
- "default": "false",
1895
- "description": "Specify explicitly if the item is the last one",
1896
- "fieldName": "isCurrent"
1893
+ "default": "'md'",
1894
+ "description": "Specify the size of all Avatars",
1895
+ "fieldName": "size"
1897
1896
  },
1898
1897
  {
1899
- "name": "isCollapsed",
1898
+ "name": "layout",
1900
1899
  "type": {
1901
- "text": "boolean"
1900
+ "text": "'stacked' | 'spaced' | undefined"
1902
1901
  },
1903
- "default": "false",
1904
- "fieldName": "isCollapsed"
1902
+ "default": "'stacked'",
1903
+ "description": "Specify the kind of the group.",
1904
+ "fieldName": "layout"
1905
1905
  }
1906
1906
  ],
1907
1907
  "superclass": {
1908
1908
  "name": "LitElement",
1909
1909
  "package": "lit"
1910
1910
  },
1911
- "tagName": "bm-breadcrumb-item",
1911
+ "tagName": "bm-avatar-group",
1912
1912
  "customElement": true
1913
1913
  }
1914
1914
  ],
1915
1915
  "exports": [
1916
1916
  {
1917
1917
  "kind": "js",
1918
- "name": "BmBreadcrumbsItem",
1918
+ "name": "BmAvatarGroup",
1919
1919
  "declaration": {
1920
- "name": "BmBreadcrumbsItem",
1921
- "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1920
+ "name": "BmAvatarGroup",
1921
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
1922
1922
  }
1923
1923
  },
1924
1924
  {
1925
1925
  "kind": "custom-element-definition",
1926
- "name": "bm-breadcrumb-item",
1926
+ "name": "bm-avatar-group",
1927
1927
  "declaration": {
1928
- "name": "BmBreadcrumbsItem",
1929
- "module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
1928
+ "name": "BmAvatarGroup",
1929
+ "module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
1930
1930
  }
1931
1931
  }
1932
1932
  ]
1933
1933
  },
1934
1934
  {
1935
1935
  "kind": "javascript-module",
1936
- "path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
1936
+ "path": "libs/web-components/src/lib/Avatar/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": "./Breadcrumbs"
1944
+ "package": "./Avatar"
1945
1945
  }
1946
1946
  },
1947
1947
  {
@@ -1949,7 +1949,7 @@
1949
1949
  "name": "*",
1950
1950
  "declaration": {
1951
1951
  "name": "*",
1952
- "package": "./BreadcrumbsItem"
1952
+ "package": "./AvatarGroup"
1953
1953
  }
1954
1954
  }
1955
1955
  ]
@@ -7871,153 +7871,150 @@
7871
7871
  }
7872
7872
  },
7873
7873
  {
7874
- "kind": "js",
7875
- "name": "*",
7876
- "declaration": {
7877
- "name": "*",
7878
- "package": "./FileUpload.Dropzone"
7879
- }
7880
- },
7881
- {
7882
- "kind": "js",
7883
- "name": "*",
7884
- "declaration": {
7885
- "name": "*",
7886
- "package": "./FileUpload.List"
7887
- }
7888
- },
7889
- {
7890
- "kind": "js",
7891
- "name": "*",
7892
- "declaration": {
7893
- "name": "*",
7894
- "package": "./FileUpload.List.Item"
7895
- }
7896
- }
7897
- ]
7898
- },
7899
- {
7900
- "kind": "javascript-module",
7901
- "path": "libs/web-components/src/lib/wip/Form/Form.context.ts",
7902
- "declarations": [
7903
- {
7904
- "kind": "variable",
7905
- "name": "bmFormInitials",
7906
- "type": {
7907
- "text": "BmFormContext"
7908
- },
7909
- "default": "{ required: false, disabled: false, readOnly: false, initialValues: {}, registerField: () => undefined, formBlurHandler: () => undefined, formChangeHandler: () => undefined, }"
7910
- },
7911
- {
7912
- "kind": "variable",
7913
- "name": "bmFormContext"
7914
- }
7915
- ],
7916
- "exports": [
7874
+ "kind": "js",
7875
+ "name": "*",
7876
+ "declaration": {
7877
+ "name": "*",
7878
+ "package": "./FileUpload.Dropzone"
7879
+ }
7880
+ },
7917
7881
  {
7918
7882
  "kind": "js",
7919
- "name": "bmFormInitials",
7883
+ "name": "*",
7920
7884
  "declaration": {
7921
- "name": "bmFormInitials",
7922
- "module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
7885
+ "name": "*",
7886
+ "package": "./FileUpload.List"
7923
7887
  }
7924
7888
  },
7925
7889
  {
7926
7890
  "kind": "js",
7927
- "name": "bmFormContext",
7891
+ "name": "*",
7928
7892
  "declaration": {
7929
- "name": "bmFormContext",
7930
- "module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
7893
+ "name": "*",
7894
+ "package": "./FileUpload.List.Item"
7931
7895
  }
7932
7896
  }
7933
7897
  ]
7934
7898
  },
7935
7899
  {
7936
7900
  "kind": "javascript-module",
7937
- "path": "libs/web-components/src/lib/wip/Form/Form.decorator.ts",
7901
+ "path": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts",
7938
7902
  "declarations": [
7939
7903
  {
7940
7904
  "kind": "class",
7941
- "description": "### Attributes:\n- **id** \n- **name** \n- **value** \n- **validationRules** \n- **input-aria-label** ",
7942
- "name": "FormField",
7905
+ "description": "### Attributes:\n- **required** - Specify if NativeSelect is a required input\n- **readOnly** - Specify if NativeSelect displays in a read-only state\n- **disabled** - Specify if NativeSelect displays in a disabled state\n- **error** - Specify error text and display error state of a NativeSelect\n- **fluid** - Specify if NativeSelect is fluid\n- **size** - Specify the size of NativeSelect\n- **width** - Specify the width of NativeSelect\n- **ellipse** - Specify if overflow displays ellipsis\n- **hideRequiredMarker** - Specify if the NativeSelect displays with an asterisk\n- **theme** - Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
7906
+ "name": "BmNativeSelect",
7907
+ "slots": [
7908
+ {
7909
+ "description": "Specify Options for NativeSelect",
7910
+ "name": "slot"
7911
+ },
7912
+ {
7913
+ "description": "Specify Label for NativeSelect",
7914
+ "name": "label"
7915
+ },
7916
+ {
7917
+ "description": "Specify HelperText for NativeSelect",
7918
+ "name": "helper-text"
7919
+ }
7920
+ ],
7943
7921
  "members": [
7944
7922
  {
7945
7923
  "kind": "field",
7946
- "name": "formAssociated",
7924
+ "name": "required",
7947
7925
  "type": {
7948
7926
  "text": "boolean"
7949
7927
  },
7950
- "static": true,
7951
- "default": "true"
7928
+ "default": "false",
7929
+ "description": "Specify if NativeSelect is a required input",
7930
+ "attribute": "required"
7952
7931
  },
7953
7932
  {
7954
7933
  "kind": "field",
7955
- "name": "id",
7934
+ "name": "readOnly",
7956
7935
  "type": {
7957
- "text": "string"
7936
+ "text": "boolean"
7958
7937
  },
7959
- "default": "''",
7960
- "attribute": "id"
7938
+ "default": "false",
7939
+ "description": "Specify if NativeSelect displays in a read-only state",
7940
+ "attribute": "readOnly"
7961
7941
  },
7962
7942
  {
7963
7943
  "kind": "field",
7964
- "name": "name",
7944
+ "name": "disabled",
7965
7945
  "type": {
7966
- "text": "string"
7946
+ "text": "boolean"
7967
7947
  },
7968
- "default": "''",
7969
- "attribute": "name"
7948
+ "default": "false",
7949
+ "description": "Specify if NativeSelect displays in a disabled state",
7950
+ "attribute": "disabled"
7970
7951
  },
7971
7952
  {
7972
7953
  "kind": "field",
7973
- "name": "value",
7954
+ "name": "error",
7974
7955
  "type": {
7975
- "text": "string"
7956
+ "text": "string | undefined"
7976
7957
  },
7977
- "default": "''",
7978
- "attribute": "value"
7958
+ "description": "Specify error text and display error state of a NativeSelect",
7959
+ "attribute": "error"
7979
7960
  },
7980
7961
  {
7981
7962
  "kind": "field",
7982
- "name": "validationRules",
7963
+ "name": "fluid",
7983
7964
  "type": {
7984
- "text": "Array<FormValidator>"
7965
+ "text": "boolean"
7985
7966
  },
7986
- "default": "[]",
7987
- "attribute": "validationRules"
7967
+ "default": "false",
7968
+ "description": "Specify if NativeSelect is fluid",
7969
+ "attribute": "fluid"
7988
7970
  },
7989
7971
  {
7990
7972
  "kind": "field",
7991
- "name": "inputAriaLabel",
7973
+ "name": "size",
7974
+ "type": {
7975
+ "text": "'sm' | 'md' | 'lg'"
7976
+ },
7977
+ "default": "defaultInputSize",
7978
+ "description": "Specify the size of NativeSelect",
7979
+ "attribute": "size"
7980
+ },
7981
+ {
7982
+ "kind": "field",
7983
+ "name": "width",
7992
7984
  "type": {
7993
7985
  "text": "string | undefined"
7994
7986
  },
7995
- "attribute": "input-aria-label"
7987
+ "description": "Specify the width of NativeSelect",
7988
+ "attribute": "width"
7996
7989
  },
7997
7990
  {
7998
7991
  "kind": "field",
7999
- "name": "formContext",
7992
+ "name": "ellipse",
8000
7993
  "type": {
8001
- "text": "BmFormContext"
8002
- }
7994
+ "text": "boolean"
7995
+ },
7996
+ "default": "true",
7997
+ "description": "Specify if overflow displays ellipsis",
7998
+ "attribute": "ellipse"
8003
7999
  },
8004
8000
  {
8005
- "kind": "method",
8006
- "name": "formAssociatedCallback",
8007
- "return": {
8008
- "type": {
8009
- "text": "void"
8010
- }
8011
- }
8001
+ "kind": "field",
8002
+ "name": "hideRequiredMarker",
8003
+ "type": {
8004
+ "text": "boolean"
8005
+ },
8006
+ "default": "false",
8007
+ "description": "Specify if the NativeSelect displays with an asterisk",
8008
+ "attribute": "hideRequiredMarker"
8012
8009
  },
8013
8010
  {
8014
- "kind": "method",
8015
- "name": "formResetCallback",
8016
- "return": {
8017
- "type": {
8018
- "text": "void"
8019
- }
8020
- }
8011
+ "kind": "field",
8012
+ "name": "theme",
8013
+ "type": {
8014
+ "text": "'light' | 'dark' | undefined"
8015
+ },
8016
+ "description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
8017
+ "attribute": "theme"
8021
8018
  },
8022
8019
  {
8023
8020
  "kind": "method",
@@ -8029,476 +8026,445 @@
8029
8026
  },
8030
8027
  "parameters": [
8031
8028
  {
8032
- "name": "ctxValue",
8029
+ "name": "value",
8033
8030
  "type": {
8034
8031
  "text": "string"
8035
8032
  }
8036
8033
  }
8037
- ]
8038
- }
8039
- ],
8040
- "attributes": [
8034
+ ],
8035
+ "inheritedFrom": {
8036
+ "name": "FormField",
8037
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8038
+ }
8039
+ },
8040
+ {
8041
+ "kind": "field",
8042
+ "name": "formAssociated",
8043
+ "type": {
8044
+ "text": "boolean"
8045
+ },
8046
+ "static": true,
8047
+ "default": "true",
8048
+ "inheritedFrom": {
8049
+ "name": "FormField",
8050
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8051
+ }
8052
+ },
8041
8053
  {
8054
+ "kind": "field",
8042
8055
  "name": "id",
8043
8056
  "type": {
8044
8057
  "text": "string"
8045
8058
  },
8046
8059
  "default": "''",
8047
- "fieldName": "id"
8060
+ "attribute": "id",
8061
+ "inheritedFrom": {
8062
+ "name": "FormField",
8063
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8064
+ }
8048
8065
  },
8049
8066
  {
8067
+ "kind": "field",
8050
8068
  "name": "name",
8051
8069
  "type": {
8052
8070
  "text": "string"
8053
8071
  },
8054
8072
  "default": "''",
8055
- "fieldName": "name"
8073
+ "attribute": "name",
8074
+ "inheritedFrom": {
8075
+ "name": "FormField",
8076
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8077
+ }
8056
8078
  },
8057
8079
  {
8080
+ "kind": "field",
8058
8081
  "name": "value",
8059
8082
  "type": {
8060
8083
  "text": "string"
8061
8084
  },
8062
8085
  "default": "''",
8063
- "fieldName": "value"
8086
+ "attribute": "value",
8087
+ "inheritedFrom": {
8088
+ "name": "FormField",
8089
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8090
+ }
8064
8091
  },
8065
8092
  {
8093
+ "kind": "field",
8066
8094
  "name": "validationRules",
8067
8095
  "type": {
8068
8096
  "text": "Array<FormValidator>"
8069
8097
  },
8070
8098
  "default": "[]",
8071
- "fieldName": "validationRules"
8099
+ "attribute": "validationRules",
8100
+ "inheritedFrom": {
8101
+ "name": "FormField",
8102
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8103
+ }
8072
8104
  },
8073
8105
  {
8074
- "name": "input-aria-label",
8106
+ "kind": "field",
8107
+ "name": "inputAriaLabel",
8075
8108
  "type": {
8076
8109
  "text": "string | undefined"
8077
8110
  },
8078
- "fieldName": "inputAriaLabel"
8079
- }
8080
- ],
8081
- "superclass": {
8082
- "name": "LitElement",
8083
- "package": "lit"
8084
- },
8085
- "customElement": true
8086
- }
8087
- ],
8088
- "exports": [
8089
- {
8090
- "kind": "js",
8091
- "name": "FormField",
8092
- "declaration": {
8093
- "name": "FormField",
8094
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8095
- }
8096
- }
8097
- ]
8098
- },
8099
- {
8100
- "kind": "javascript-module",
8101
- "path": "libs/web-components/src/lib/wip/Form/Form.ts",
8102
- "declarations": [
8103
- {
8104
- "kind": "class",
8105
- "description": "### Attributes:\n- **validationMode** - Specify if validation runs on change or when loosing focus\n- **initialValues** - Specify initial values on Form controls based on their names\n- **required** - Specify if input is a required\n- **disabled** - Specify if input is a disabled\n- **readOnly** - Specify if input is a read only\n- **action** \n- **method** \n- **target** \n- **enctype** ",
8106
- "name": "BmForm",
8107
- "slots": [
8108
- {
8109
- "description": "Add controls to the Form",
8110
- "name": "slot"
8111
- }
8112
- ],
8113
- "members": [
8111
+ "attribute": "input-aria-label",
8112
+ "inheritedFrom": {
8113
+ "name": "FormField",
8114
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8115
+ }
8116
+ },
8114
8117
  {
8115
8118
  "kind": "field",
8116
- "name": "validationMode",
8119
+ "name": "formContext",
8117
8120
  "type": {
8118
- "text": "'onChange' | 'onBlur' | 'onSubmit'"
8121
+ "text": "BmFormContext"
8119
8122
  },
8120
- "default": "'onBlur'",
8121
- "description": "Specify if validation runs on change or when loosing focus",
8122
- "attribute": "validationMode"
8123
+ "inheritedFrom": {
8124
+ "name": "FormField",
8125
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8126
+ }
8127
+ },
8128
+ {
8129
+ "kind": "method",
8130
+ "name": "formAssociatedCallback",
8131
+ "return": {
8132
+ "type": {
8133
+ "text": "void"
8134
+ }
8135
+ },
8136
+ "inheritedFrom": {
8137
+ "name": "FormField",
8138
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8139
+ }
8123
8140
  },
8124
8141
  {
8125
- "kind": "field",
8126
- "name": "initialValues",
8127
- "type": {
8128
- "text": "Record<string, FormValue>"
8142
+ "kind": "method",
8143
+ "name": "formResetCallback",
8144
+ "return": {
8145
+ "type": {
8146
+ "text": "void"
8147
+ }
8129
8148
  },
8130
- "default": "{}",
8131
- "description": "Specify initial values on Form controls based on their names",
8132
- "attribute": "initialValues"
8133
- },
8149
+ "inheritedFrom": {
8150
+ "name": "FormField",
8151
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8152
+ }
8153
+ }
8154
+ ],
8155
+ "attributes": [
8134
8156
  {
8135
- "kind": "field",
8136
8157
  "name": "required",
8137
8158
  "type": {
8138
8159
  "text": "boolean"
8139
8160
  },
8140
8161
  "default": "false",
8141
- "description": "Specify if input is a required",
8142
- "attribute": "required"
8162
+ "description": "Specify if NativeSelect is a required input",
8163
+ "fieldName": "required"
8143
8164
  },
8144
8165
  {
8145
- "kind": "field",
8146
- "name": "disabled",
8166
+ "name": "readOnly",
8147
8167
  "type": {
8148
8168
  "text": "boolean"
8149
8169
  },
8150
8170
  "default": "false",
8151
- "description": "Specify if input is a disabled",
8152
- "attribute": "disabled"
8171
+ "description": "Specify if NativeSelect displays in a read-only state",
8172
+ "fieldName": "readOnly"
8153
8173
  },
8154
8174
  {
8155
- "kind": "field",
8156
- "name": "readOnly",
8175
+ "name": "disabled",
8157
8176
  "type": {
8158
8177
  "text": "boolean"
8159
8178
  },
8160
8179
  "default": "false",
8161
- "description": "Specify if input is a read only",
8162
- "attribute": "readOnly"
8180
+ "description": "Specify if NativeSelect displays in a disabled state",
8181
+ "fieldName": "disabled"
8163
8182
  },
8164
8183
  {
8165
- "kind": "field",
8166
- "name": "action",
8184
+ "name": "error",
8167
8185
  "type": {
8168
8186
  "text": "string | undefined"
8169
8187
  },
8170
- "attribute": "action"
8188
+ "description": "Specify error text and display error state of a NativeSelect",
8189
+ "fieldName": "error"
8171
8190
  },
8172
8191
  {
8173
- "kind": "field",
8174
- "name": "method",
8192
+ "name": "fluid",
8175
8193
  "type": {
8176
- "text": "string | undefined"
8194
+ "text": "boolean"
8177
8195
  },
8178
- "attribute": "method"
8196
+ "default": "false",
8197
+ "description": "Specify if NativeSelect is fluid",
8198
+ "fieldName": "fluid"
8179
8199
  },
8180
8200
  {
8181
- "kind": "field",
8182
- "name": "target",
8201
+ "name": "size",
8183
8202
  "type": {
8184
- "text": "string | undefined"
8203
+ "text": "'sm' | 'md' | 'lg'"
8185
8204
  },
8186
- "attribute": "target"
8205
+ "default": "defaultInputSize",
8206
+ "description": "Specify the size of NativeSelect",
8207
+ "fieldName": "size"
8187
8208
  },
8188
8209
  {
8189
- "kind": "field",
8190
- "name": "enctype",
8210
+ "name": "width",
8191
8211
  "type": {
8192
8212
  "text": "string | undefined"
8193
8213
  },
8194
- "attribute": "enctype"
8195
- },
8196
- {
8197
- "kind": "field",
8198
- "name": "formMeta",
8199
- "type": {
8200
- "text": "Record<string, FieldMeta>"
8201
- },
8202
- "default": "{}"
8203
- },
8204
- {
8205
- "kind": "field",
8206
- "name": "formRef"
8207
- },
8208
- {
8209
- "kind": "field",
8210
- "name": "formContext",
8211
- "type": {
8212
- "text": "BmFormContext"
8213
- },
8214
- "privacy": "public",
8215
- "default": "bmFormInitials"
8216
- }
8217
- ],
8218
- "events": [
8219
- {
8220
- "description": "Validates the inputs and submits the form",
8221
- "name": "submit"
8222
- }
8223
- ],
8224
- "attributes": [
8225
- {
8226
- "name": "validationMode",
8227
- "type": {
8228
- "text": "'onChange' | 'onBlur' | 'onSubmit'"
8229
- },
8230
- "default": "'onBlur'",
8231
- "description": "Specify if validation runs on change or when loosing focus",
8232
- "fieldName": "validationMode"
8214
+ "description": "Specify the width of NativeSelect",
8215
+ "fieldName": "width"
8233
8216
  },
8234
8217
  {
8235
- "name": "initialValues",
8218
+ "name": "ellipse",
8236
8219
  "type": {
8237
- "text": "Record<string, FormValue>"
8220
+ "text": "boolean"
8238
8221
  },
8239
- "default": "{}",
8240
- "description": "Specify initial values on Form controls based on their names",
8241
- "fieldName": "initialValues"
8222
+ "default": "true",
8223
+ "description": "Specify if overflow displays ellipsis",
8224
+ "fieldName": "ellipse"
8242
8225
  },
8243
8226
  {
8244
- "name": "required",
8227
+ "name": "hideRequiredMarker",
8245
8228
  "type": {
8246
8229
  "text": "boolean"
8247
8230
  },
8248
8231
  "default": "false",
8249
- "description": "Specify if input is a required",
8250
- "fieldName": "required"
8232
+ "description": "Specify if the NativeSelect displays with an asterisk",
8233
+ "fieldName": "hideRequiredMarker"
8251
8234
  },
8252
8235
  {
8253
- "name": "disabled",
8236
+ "name": "theme",
8254
8237
  "type": {
8255
- "text": "boolean"
8238
+ "text": "'light' | 'dark' | undefined"
8256
8239
  },
8257
- "default": "false",
8258
- "description": "Specify if input is a disabled",
8259
- "fieldName": "disabled"
8240
+ "description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
8241
+ "fieldName": "theme"
8260
8242
  },
8261
8243
  {
8262
- "name": "readOnly",
8244
+ "name": "id",
8263
8245
  "type": {
8264
- "text": "boolean"
8246
+ "text": "string"
8265
8247
  },
8266
- "default": "false",
8267
- "description": "Specify if input is a read only",
8268
- "fieldName": "readOnly"
8248
+ "default": "''",
8249
+ "fieldName": "id",
8250
+ "inheritedFrom": {
8251
+ "name": "FormField",
8252
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8253
+ }
8269
8254
  },
8270
8255
  {
8271
- "name": "action",
8256
+ "name": "name",
8272
8257
  "type": {
8273
- "text": "string | undefined"
8258
+ "text": "string"
8274
8259
  },
8275
- "fieldName": "action"
8260
+ "default": "''",
8261
+ "fieldName": "name",
8262
+ "inheritedFrom": {
8263
+ "name": "FormField",
8264
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8265
+ }
8276
8266
  },
8277
8267
  {
8278
- "name": "method",
8268
+ "name": "value",
8279
8269
  "type": {
8280
- "text": "string | undefined"
8270
+ "text": "string"
8281
8271
  },
8282
- "fieldName": "method"
8272
+ "default": "''",
8273
+ "fieldName": "value",
8274
+ "inheritedFrom": {
8275
+ "name": "FormField",
8276
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8277
+ }
8283
8278
  },
8284
8279
  {
8285
- "name": "target",
8280
+ "name": "validationRules",
8286
8281
  "type": {
8287
- "text": "string | undefined"
8282
+ "text": "Array<FormValidator>"
8288
8283
  },
8289
- "fieldName": "target"
8284
+ "default": "[]",
8285
+ "fieldName": "validationRules",
8286
+ "inheritedFrom": {
8287
+ "name": "FormField",
8288
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8289
+ }
8290
8290
  },
8291
8291
  {
8292
- "name": "enctype",
8292
+ "name": "input-aria-label",
8293
8293
  "type": {
8294
8294
  "text": "string | undefined"
8295
8295
  },
8296
- "fieldName": "enctype"
8296
+ "fieldName": "inputAriaLabel",
8297
+ "inheritedFrom": {
8298
+ "name": "FormField",
8299
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8300
+ }
8297
8301
  }
8298
8302
  ],
8299
8303
  "superclass": {
8300
- "name": "LitElement",
8301
- "package": "lit"
8304
+ "name": "FormField",
8305
+ "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
8302
8306
  },
8303
- "summary": "`bm-form`",
8304
- "tagName": "bm-form",
8307
+ "summary": "`bm-native-select`",
8308
+ "tagName": "bm-native-select",
8305
8309
  "customElement": true
8306
8310
  }
8307
8311
  ],
8308
8312
  "exports": [
8309
8313
  {
8310
8314
  "kind": "js",
8311
- "name": "validators",
8312
- "declaration": {
8313
- "name": "validators",
8314
- "package": "@viasat/beam-shared/components/form"
8315
- }
8316
- },
8317
- {
8318
- "kind": "js",
8319
- "name": "BmForm",
8315
+ "name": "BmNativeSelect",
8320
8316
  "declaration": {
8321
- "name": "BmForm",
8322
- "module": "libs/web-components/src/lib/wip/Form/Form.ts"
8317
+ "name": "BmNativeSelect",
8318
+ "module": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts"
8323
8319
  }
8324
8320
  },
8325
8321
  {
8326
8322
  "kind": "custom-element-definition",
8327
- "name": "bm-form",
8323
+ "name": "bm-native-select",
8328
8324
  "declaration": {
8329
- "name": "BmForm",
8330
- "module": "libs/web-components/src/lib/wip/Form/Form.ts"
8325
+ "name": "BmNativeSelect",
8326
+ "module": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts"
8331
8327
  }
8332
8328
  }
8333
8329
  ]
8334
8330
  },
8335
8331
  {
8336
8332
  "kind": "javascript-module",
8337
- "path": "libs/web-components/src/lib/wip/Form/Form.utils.ts",
8338
- "declarations": [
8339
- {
8340
- "kind": "function",
8341
- "name": "createId",
8342
- "return": {
8343
- "type": {
8344
- "text": "string"
8345
- }
8346
- }
8347
- }
8348
- ],
8333
+ "path": "libs/web-components/src/lib/wip/NativeSelect/index.ts",
8334
+ "declarations": [],
8349
8335
  "exports": [
8350
8336
  {
8351
8337
  "kind": "js",
8352
- "name": "createId",
8338
+ "name": "*",
8353
8339
  "declaration": {
8354
- "name": "createId",
8355
- "module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
8340
+ "name": "*",
8341
+ "package": "./NativeSelect"
8356
8342
  }
8357
8343
  }
8358
- ]
8359
- },
8360
- {
8361
- "kind": "javascript-module",
8362
- "path": "libs/web-components/src/lib/wip/Form/index.ts",
8363
- "declarations": [],
8344
+ ]
8345
+ },
8346
+ {
8347
+ "kind": "javascript-module",
8348
+ "path": "libs/web-components/src/lib/wip/Form/Form.context.ts",
8349
+ "declarations": [
8350
+ {
8351
+ "kind": "variable",
8352
+ "name": "bmFormInitials",
8353
+ "type": {
8354
+ "text": "BmFormContext"
8355
+ },
8356
+ "default": "{ required: false, disabled: false, readOnly: false, initialValues: {}, registerField: () => undefined, formBlurHandler: () => undefined, formChangeHandler: () => undefined, }"
8357
+ },
8358
+ {
8359
+ "kind": "variable",
8360
+ "name": "bmFormContext"
8361
+ }
8362
+ ],
8364
8363
  "exports": [
8365
8364
  {
8366
8365
  "kind": "js",
8367
- "name": "*",
8366
+ "name": "bmFormInitials",
8368
8367
  "declaration": {
8369
- "name": "*",
8370
- "package": "./Form"
8368
+ "name": "bmFormInitials",
8369
+ "module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
8371
8370
  }
8372
8371
  },
8373
8372
  {
8374
8373
  "kind": "js",
8375
- "name": "*",
8374
+ "name": "bmFormContext",
8376
8375
  "declaration": {
8377
- "name": "*",
8378
- "package": "./Form.decorator"
8376
+ "name": "bmFormContext",
8377
+ "module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
8379
8378
  }
8380
8379
  }
8381
8380
  ]
8382
8381
  },
8383
8382
  {
8384
8383
  "kind": "javascript-module",
8385
- "path": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts",
8384
+ "path": "libs/web-components/src/lib/wip/Form/Form.decorator.ts",
8386
8385
  "declarations": [
8387
8386
  {
8388
8387
  "kind": "class",
8389
- "description": "### Attributes:\n- **required** - Specify if NativeSelect is a required input\n- **readOnly** - Specify if NativeSelect displays in a read-only state\n- **disabled** - Specify if NativeSelect displays in a disabled state\n- **error** - Specify error text and display error state of a NativeSelect\n- **fluid** - Specify if NativeSelect is fluid\n- **size** - Specify the size of NativeSelect\n- **width** - Specify the width of NativeSelect\n- **ellipse** - Specify if overflow displays ellipsis\n- **hideRequiredMarker** - Specify if the NativeSelect displays with an asterisk\n- **theme** - Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
8390
- "name": "BmNativeSelect",
8391
- "slots": [
8392
- {
8393
- "description": "Specify Options for NativeSelect",
8394
- "name": "slot"
8395
- },
8396
- {
8397
- "description": "Specify Label for NativeSelect",
8398
- "name": "label"
8399
- },
8400
- {
8401
- "description": "Specify HelperText for NativeSelect",
8402
- "name": "helper-text"
8403
- }
8404
- ],
8388
+ "description": "### Attributes:\n- **id** \n- **name** \n- **value** \n- **validationRules** \n- **input-aria-label** ",
8389
+ "name": "FormField",
8405
8390
  "members": [
8406
8391
  {
8407
8392
  "kind": "field",
8408
- "name": "required",
8409
- "type": {
8410
- "text": "boolean"
8411
- },
8412
- "default": "false",
8413
- "description": "Specify if NativeSelect is a required input",
8414
- "attribute": "required"
8415
- },
8416
- {
8417
- "kind": "field",
8418
- "name": "readOnly",
8393
+ "name": "formAssociated",
8419
8394
  "type": {
8420
8395
  "text": "boolean"
8421
8396
  },
8422
- "default": "false",
8423
- "description": "Specify if NativeSelect displays in a read-only state",
8424
- "attribute": "readOnly"
8397
+ "static": true,
8398
+ "default": "true"
8425
8399
  },
8426
8400
  {
8427
8401
  "kind": "field",
8428
- "name": "disabled",
8402
+ "name": "id",
8429
8403
  "type": {
8430
- "text": "boolean"
8404
+ "text": "string"
8431
8405
  },
8432
- "default": "false",
8433
- "description": "Specify if NativeSelect displays in a disabled state",
8434
- "attribute": "disabled"
8406
+ "default": "''",
8407
+ "attribute": "id"
8435
8408
  },
8436
8409
  {
8437
8410
  "kind": "field",
8438
- "name": "error",
8411
+ "name": "name",
8439
8412
  "type": {
8440
- "text": "string | undefined"
8413
+ "text": "string"
8441
8414
  },
8442
- "description": "Specify error text and display error state of a NativeSelect",
8443
- "attribute": "error"
8415
+ "default": "''",
8416
+ "attribute": "name"
8444
8417
  },
8445
8418
  {
8446
8419
  "kind": "field",
8447
- "name": "fluid",
8420
+ "name": "value",
8448
8421
  "type": {
8449
- "text": "boolean"
8422
+ "text": "string"
8450
8423
  },
8451
- "default": "false",
8452
- "description": "Specify if NativeSelect is fluid",
8453
- "attribute": "fluid"
8424
+ "default": "''",
8425
+ "attribute": "value"
8454
8426
  },
8455
8427
  {
8456
8428
  "kind": "field",
8457
- "name": "size",
8429
+ "name": "validationRules",
8458
8430
  "type": {
8459
- "text": "'sm' | 'md' | 'lg'"
8431
+ "text": "Array<FormValidator>"
8460
8432
  },
8461
- "default": "defaultInputSize",
8462
- "description": "Specify the size of NativeSelect",
8463
- "attribute": "size"
8433
+ "default": "[]",
8434
+ "attribute": "validationRules"
8464
8435
  },
8465
8436
  {
8466
8437
  "kind": "field",
8467
- "name": "width",
8438
+ "name": "inputAriaLabel",
8468
8439
  "type": {
8469
8440
  "text": "string | undefined"
8470
8441
  },
8471
- "description": "Specify the width of NativeSelect",
8472
- "attribute": "width"
8442
+ "attribute": "input-aria-label"
8473
8443
  },
8474
8444
  {
8475
8445
  "kind": "field",
8476
- "name": "ellipse",
8446
+ "name": "formContext",
8477
8447
  "type": {
8478
- "text": "boolean"
8479
- },
8480
- "default": "true",
8481
- "description": "Specify if overflow displays ellipsis",
8482
- "attribute": "ellipse"
8448
+ "text": "BmFormContext"
8449
+ }
8483
8450
  },
8484
8451
  {
8485
- "kind": "field",
8486
- "name": "hideRequiredMarker",
8487
- "type": {
8488
- "text": "boolean"
8489
- },
8490
- "default": "false",
8491
- "description": "Specify if the NativeSelect displays with an asterisk",
8492
- "attribute": "hideRequiredMarker"
8452
+ "kind": "method",
8453
+ "name": "formAssociatedCallback",
8454
+ "return": {
8455
+ "type": {
8456
+ "text": "void"
8457
+ }
8458
+ }
8493
8459
  },
8494
8460
  {
8495
- "kind": "field",
8496
- "name": "theme",
8497
- "type": {
8498
- "text": "'light' | 'dark' | undefined"
8499
- },
8500
- "description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
8501
- "attribute": "theme"
8461
+ "kind": "method",
8462
+ "name": "formResetCallback",
8463
+ "return": {
8464
+ "type": {
8465
+ "text": "void"
8466
+ }
8467
+ }
8502
8468
  },
8503
8469
  {
8504
8470
  "kind": "method",
@@ -8510,311 +8476,337 @@
8510
8476
  },
8511
8477
  "parameters": [
8512
8478
  {
8513
- "name": "value",
8479
+ "name": "ctxValue",
8514
8480
  "type": {
8515
8481
  "text": "string"
8516
8482
  }
8517
8483
  }
8518
- ],
8519
- "inheritedFrom": {
8520
- "name": "FormField",
8521
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8522
- }
8523
- },
8524
- {
8525
- "kind": "field",
8526
- "name": "formAssociated",
8527
- "type": {
8528
- "text": "boolean"
8529
- },
8530
- "static": true,
8531
- "default": "true",
8532
- "inheritedFrom": {
8533
- "name": "FormField",
8534
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8535
- }
8536
- },
8484
+ ]
8485
+ }
8486
+ ],
8487
+ "attributes": [
8537
8488
  {
8538
- "kind": "field",
8539
8489
  "name": "id",
8540
8490
  "type": {
8541
8491
  "text": "string"
8542
8492
  },
8543
8493
  "default": "''",
8544
- "attribute": "id",
8545
- "inheritedFrom": {
8546
- "name": "FormField",
8547
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8548
- }
8494
+ "fieldName": "id"
8549
8495
  },
8550
8496
  {
8551
- "kind": "field",
8552
8497
  "name": "name",
8553
8498
  "type": {
8554
8499
  "text": "string"
8555
8500
  },
8556
8501
  "default": "''",
8557
- "attribute": "name",
8558
- "inheritedFrom": {
8559
- "name": "FormField",
8560
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8561
- }
8502
+ "fieldName": "name"
8562
8503
  },
8563
8504
  {
8564
- "kind": "field",
8565
8505
  "name": "value",
8566
8506
  "type": {
8567
8507
  "text": "string"
8568
8508
  },
8569
8509
  "default": "''",
8570
- "attribute": "value",
8571
- "inheritedFrom": {
8572
- "name": "FormField",
8573
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8574
- }
8510
+ "fieldName": "value"
8575
8511
  },
8576
8512
  {
8577
- "kind": "field",
8578
8513
  "name": "validationRules",
8579
8514
  "type": {
8580
8515
  "text": "Array<FormValidator>"
8581
8516
  },
8582
8517
  "default": "[]",
8583
- "attribute": "validationRules",
8584
- "inheritedFrom": {
8585
- "name": "FormField",
8586
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8587
- }
8518
+ "fieldName": "validationRules"
8588
8519
  },
8589
8520
  {
8590
- "kind": "field",
8591
- "name": "inputAriaLabel",
8521
+ "name": "input-aria-label",
8592
8522
  "type": {
8593
8523
  "text": "string | undefined"
8594
8524
  },
8595
- "attribute": "input-aria-label",
8596
- "inheritedFrom": {
8597
- "name": "FormField",
8598
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8599
- }
8600
- },
8525
+ "fieldName": "inputAriaLabel"
8526
+ }
8527
+ ],
8528
+ "superclass": {
8529
+ "name": "LitElement",
8530
+ "package": "lit"
8531
+ },
8532
+ "customElement": true
8533
+ }
8534
+ ],
8535
+ "exports": [
8536
+ {
8537
+ "kind": "js",
8538
+ "name": "FormField",
8539
+ "declaration": {
8540
+ "name": "FormField",
8541
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8542
+ }
8543
+ }
8544
+ ]
8545
+ },
8546
+ {
8547
+ "kind": "javascript-module",
8548
+ "path": "libs/web-components/src/lib/wip/Form/Form.ts",
8549
+ "declarations": [
8550
+ {
8551
+ "kind": "class",
8552
+ "description": "### Attributes:\n- **validationMode** - Specify if validation runs on change or when loosing focus\n- **initialValues** - Specify initial values on Form controls based on their names\n- **required** - Specify if input is a required\n- **disabled** - Specify if input is a disabled\n- **readOnly** - Specify if input is a read only\n- **action** \n- **method** \n- **target** \n- **enctype** ",
8553
+ "name": "BmForm",
8554
+ "slots": [
8555
+ {
8556
+ "description": "Add controls to the Form",
8557
+ "name": "slot"
8558
+ }
8559
+ ],
8560
+ "members": [
8601
8561
  {
8602
8562
  "kind": "field",
8603
- "name": "formContext",
8563
+ "name": "validationMode",
8604
8564
  "type": {
8605
- "text": "BmFormContext"
8606
- },
8607
- "inheritedFrom": {
8608
- "name": "FormField",
8609
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8610
- }
8611
- },
8612
- {
8613
- "kind": "method",
8614
- "name": "formAssociatedCallback",
8615
- "return": {
8616
- "type": {
8617
- "text": "void"
8618
- }
8619
- },
8620
- "inheritedFrom": {
8621
- "name": "FormField",
8622
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8623
- }
8565
+ "text": "'onChange' | 'onBlur' | 'onSubmit'"
8566
+ },
8567
+ "default": "'onBlur'",
8568
+ "description": "Specify if validation runs on change or when loosing focus",
8569
+ "attribute": "validationMode"
8624
8570
  },
8625
8571
  {
8626
- "kind": "method",
8627
- "name": "formResetCallback",
8628
- "return": {
8629
- "type": {
8630
- "text": "void"
8631
- }
8572
+ "kind": "field",
8573
+ "name": "initialValues",
8574
+ "type": {
8575
+ "text": "Record<string, FormValue>"
8632
8576
  },
8633
- "inheritedFrom": {
8634
- "name": "FormField",
8635
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8636
- }
8637
- }
8638
- ],
8639
- "attributes": [
8577
+ "default": "{}",
8578
+ "description": "Specify initial values on Form controls based on their names",
8579
+ "attribute": "initialValues"
8580
+ },
8640
8581
  {
8582
+ "kind": "field",
8641
8583
  "name": "required",
8642
8584
  "type": {
8643
8585
  "text": "boolean"
8644
8586
  },
8645
8587
  "default": "false",
8646
- "description": "Specify if NativeSelect is a required input",
8647
- "fieldName": "required"
8588
+ "description": "Specify if input is a required",
8589
+ "attribute": "required"
8648
8590
  },
8649
8591
  {
8650
- "name": "readOnly",
8592
+ "kind": "field",
8593
+ "name": "disabled",
8651
8594
  "type": {
8652
8595
  "text": "boolean"
8653
8596
  },
8654
8597
  "default": "false",
8655
- "description": "Specify if NativeSelect displays in a read-only state",
8656
- "fieldName": "readOnly"
8598
+ "description": "Specify if input is a disabled",
8599
+ "attribute": "disabled"
8657
8600
  },
8658
8601
  {
8659
- "name": "disabled",
8602
+ "kind": "field",
8603
+ "name": "readOnly",
8660
8604
  "type": {
8661
8605
  "text": "boolean"
8662
8606
  },
8663
8607
  "default": "false",
8664
- "description": "Specify if NativeSelect displays in a disabled state",
8665
- "fieldName": "disabled"
8608
+ "description": "Specify if input is a read only",
8609
+ "attribute": "readOnly"
8666
8610
  },
8667
8611
  {
8668
- "name": "error",
8612
+ "kind": "field",
8613
+ "name": "action",
8669
8614
  "type": {
8670
8615
  "text": "string | undefined"
8671
8616
  },
8672
- "description": "Specify error text and display error state of a NativeSelect",
8673
- "fieldName": "error"
8617
+ "attribute": "action"
8674
8618
  },
8675
8619
  {
8676
- "name": "fluid",
8620
+ "kind": "field",
8621
+ "name": "method",
8677
8622
  "type": {
8678
- "text": "boolean"
8623
+ "text": "string | undefined"
8679
8624
  },
8680
- "default": "false",
8681
- "description": "Specify if NativeSelect is fluid",
8682
- "fieldName": "fluid"
8625
+ "attribute": "method"
8683
8626
  },
8684
8627
  {
8685
- "name": "size",
8628
+ "kind": "field",
8629
+ "name": "target",
8686
8630
  "type": {
8687
- "text": "'sm' | 'md' | 'lg'"
8631
+ "text": "string | undefined"
8688
8632
  },
8689
- "default": "defaultInputSize",
8690
- "description": "Specify the size of NativeSelect",
8691
- "fieldName": "size"
8633
+ "attribute": "target"
8692
8634
  },
8693
8635
  {
8694
- "name": "width",
8636
+ "kind": "field",
8637
+ "name": "enctype",
8695
8638
  "type": {
8696
8639
  "text": "string | undefined"
8697
8640
  },
8698
- "description": "Specify the width of NativeSelect",
8699
- "fieldName": "width"
8641
+ "attribute": "enctype"
8700
8642
  },
8701
8643
  {
8702
- "name": "ellipse",
8644
+ "kind": "field",
8645
+ "name": "formMeta",
8703
8646
  "type": {
8704
- "text": "boolean"
8647
+ "text": "Record<string, FieldMeta>"
8705
8648
  },
8706
- "default": "true",
8707
- "description": "Specify if overflow displays ellipsis",
8708
- "fieldName": "ellipse"
8649
+ "default": "{}"
8709
8650
  },
8710
8651
  {
8711
- "name": "hideRequiredMarker",
8652
+ "kind": "field",
8653
+ "name": "formRef"
8654
+ },
8655
+ {
8656
+ "kind": "field",
8657
+ "name": "formContext",
8658
+ "type": {
8659
+ "text": "BmFormContext"
8660
+ },
8661
+ "privacy": "public",
8662
+ "default": "bmFormInitials"
8663
+ }
8664
+ ],
8665
+ "events": [
8666
+ {
8667
+ "description": "Validates the inputs and submits the form",
8668
+ "name": "submit"
8669
+ }
8670
+ ],
8671
+ "attributes": [
8672
+ {
8673
+ "name": "validationMode",
8674
+ "type": {
8675
+ "text": "'onChange' | 'onBlur' | 'onSubmit'"
8676
+ },
8677
+ "default": "'onBlur'",
8678
+ "description": "Specify if validation runs on change or when loosing focus",
8679
+ "fieldName": "validationMode"
8680
+ },
8681
+ {
8682
+ "name": "initialValues",
8683
+ "type": {
8684
+ "text": "Record<string, FormValue>"
8685
+ },
8686
+ "default": "{}",
8687
+ "description": "Specify initial values on Form controls based on their names",
8688
+ "fieldName": "initialValues"
8689
+ },
8690
+ {
8691
+ "name": "required",
8712
8692
  "type": {
8713
8693
  "text": "boolean"
8714
8694
  },
8715
8695
  "default": "false",
8716
- "description": "Specify if the NativeSelect displays with an asterisk",
8717
- "fieldName": "hideRequiredMarker"
8696
+ "description": "Specify if input is a required",
8697
+ "fieldName": "required"
8718
8698
  },
8719
8699
  {
8720
- "name": "theme",
8700
+ "name": "disabled",
8721
8701
  "type": {
8722
- "text": "'light' | 'dark' | undefined"
8702
+ "text": "boolean"
8723
8703
  },
8724
- "description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
8725
- "fieldName": "theme"
8704
+ "default": "false",
8705
+ "description": "Specify if input is a disabled",
8706
+ "fieldName": "disabled"
8726
8707
  },
8727
8708
  {
8728
- "name": "id",
8709
+ "name": "readOnly",
8729
8710
  "type": {
8730
- "text": "string"
8711
+ "text": "boolean"
8731
8712
  },
8732
- "default": "''",
8733
- "fieldName": "id",
8734
- "inheritedFrom": {
8735
- "name": "FormField",
8736
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8737
- }
8713
+ "default": "false",
8714
+ "description": "Specify if input is a read only",
8715
+ "fieldName": "readOnly"
8738
8716
  },
8739
8717
  {
8740
- "name": "name",
8718
+ "name": "action",
8741
8719
  "type": {
8742
- "text": "string"
8720
+ "text": "string | undefined"
8743
8721
  },
8744
- "default": "''",
8745
- "fieldName": "name",
8746
- "inheritedFrom": {
8747
- "name": "FormField",
8748
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8749
- }
8722
+ "fieldName": "action"
8750
8723
  },
8751
8724
  {
8752
- "name": "value",
8725
+ "name": "method",
8753
8726
  "type": {
8754
- "text": "string"
8727
+ "text": "string | undefined"
8755
8728
  },
8756
- "default": "''",
8757
- "fieldName": "value",
8758
- "inheritedFrom": {
8759
- "name": "FormField",
8760
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8761
- }
8729
+ "fieldName": "method"
8762
8730
  },
8763
8731
  {
8764
- "name": "validationRules",
8732
+ "name": "target",
8765
8733
  "type": {
8766
- "text": "Array<FormValidator>"
8734
+ "text": "string | undefined"
8767
8735
  },
8768
- "default": "[]",
8769
- "fieldName": "validationRules",
8770
- "inheritedFrom": {
8771
- "name": "FormField",
8772
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8773
- }
8736
+ "fieldName": "target"
8774
8737
  },
8775
8738
  {
8776
- "name": "input-aria-label",
8739
+ "name": "enctype",
8777
8740
  "type": {
8778
8741
  "text": "string | undefined"
8779
8742
  },
8780
- "fieldName": "inputAriaLabel",
8781
- "inheritedFrom": {
8782
- "name": "FormField",
8783
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8784
- }
8743
+ "fieldName": "enctype"
8785
8744
  }
8786
8745
  ],
8787
8746
  "superclass": {
8788
- "name": "FormField",
8789
- "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
8747
+ "name": "LitElement",
8748
+ "package": "lit"
8790
8749
  },
8791
- "summary": "`bm-native-select`",
8792
- "tagName": "bm-native-select",
8750
+ "summary": "`bm-form`",
8751
+ "tagName": "bm-form",
8793
8752
  "customElement": true
8794
8753
  }
8795
8754
  ],
8796
8755
  "exports": [
8797
8756
  {
8798
8757
  "kind": "js",
8799
- "name": "BmNativeSelect",
8758
+ "name": "validators",
8800
8759
  "declaration": {
8801
- "name": "BmNativeSelect",
8802
- "module": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts"
8760
+ "name": "validators",
8761
+ "package": "@viasat/beam-shared/components/form"
8762
+ }
8763
+ },
8764
+ {
8765
+ "kind": "js",
8766
+ "name": "BmForm",
8767
+ "declaration": {
8768
+ "name": "BmForm",
8769
+ "module": "libs/web-components/src/lib/wip/Form/Form.ts"
8803
8770
  }
8804
8771
  },
8805
8772
  {
8806
8773
  "kind": "custom-element-definition",
8807
- "name": "bm-native-select",
8774
+ "name": "bm-form",
8808
8775
  "declaration": {
8809
- "name": "BmNativeSelect",
8810
- "module": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts"
8776
+ "name": "BmForm",
8777
+ "module": "libs/web-components/src/lib/wip/Form/Form.ts"
8811
8778
  }
8812
8779
  }
8813
8780
  ]
8814
8781
  },
8815
8782
  {
8816
8783
  "kind": "javascript-module",
8817
- "path": "libs/web-components/src/lib/wip/NativeSelect/index.ts",
8784
+ "path": "libs/web-components/src/lib/wip/Form/Form.utils.ts",
8785
+ "declarations": [
8786
+ {
8787
+ "kind": "function",
8788
+ "name": "createId",
8789
+ "return": {
8790
+ "type": {
8791
+ "text": "string"
8792
+ }
8793
+ }
8794
+ }
8795
+ ],
8796
+ "exports": [
8797
+ {
8798
+ "kind": "js",
8799
+ "name": "createId",
8800
+ "declaration": {
8801
+ "name": "createId",
8802
+ "module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
8803
+ }
8804
+ }
8805
+ ]
8806
+ },
8807
+ {
8808
+ "kind": "javascript-module",
8809
+ "path": "libs/web-components/src/lib/wip/Form/index.ts",
8818
8810
  "declarations": [],
8819
8811
  "exports": [
8820
8812
  {
@@ -8822,7 +8814,15 @@
8822
8814
  "name": "*",
8823
8815
  "declaration": {
8824
8816
  "name": "*",
8825
- "package": "./NativeSelect"
8817
+ "package": "./Form"
8818
+ }
8819
+ },
8820
+ {
8821
+ "kind": "js",
8822
+ "name": "*",
8823
+ "declaration": {
8824
+ "name": "*",
8825
+ "package": "./Form.decorator"
8826
8826
  }
8827
8827
  }
8828
8828
  ]