@viasat/beam-web-components 2.57.0 → 2.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +757 -757
- package/package.json +6 -6
- package/vscode.html-custom-data.json +169 -169
package/custom-elements.json
CHANGED
|
@@ -294,376 +294,428 @@
|
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"kind": "javascript-module",
|
|
297
|
-
"path": "libs/web-components/src/lib/
|
|
297
|
+
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
298
298
|
"declarations": [
|
|
299
299
|
{
|
|
300
300
|
"kind": "class",
|
|
301
|
-
"description": "`bm-
|
|
302
|
-
"name": "
|
|
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": "
|
|
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": "
|
|
324
|
+
"name": "heading",
|
|
313
325
|
"type": {
|
|
314
|
-
"text": "
|
|
326
|
+
"text": "string | undefined"
|
|
315
327
|
},
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"attribute": "appearance"
|
|
328
|
+
"description": "Specify the heading text for Alert",
|
|
329
|
+
"attribute": "heading"
|
|
319
330
|
},
|
|
320
331
|
{
|
|
321
332
|
"kind": "field",
|
|
322
|
-
"name": "
|
|
333
|
+
"name": "body",
|
|
323
334
|
"type": {
|
|
324
335
|
"text": "string | undefined"
|
|
325
336
|
},
|
|
326
|
-
"description": "Specify
|
|
327
|
-
"attribute": "
|
|
337
|
+
"description": "Specify the body text for Alert",
|
|
338
|
+
"attribute": "body"
|
|
328
339
|
},
|
|
329
340
|
{
|
|
330
341
|
"kind": "field",
|
|
331
|
-
"name": "
|
|
342
|
+
"name": "size",
|
|
332
343
|
"type": {
|
|
333
|
-
"text": "
|
|
344
|
+
"text": "'sm' | 'md'"
|
|
334
345
|
},
|
|
335
|
-
"
|
|
336
|
-
"
|
|
346
|
+
"default": "'sm'",
|
|
347
|
+
"description": "Specify the size of the Alert",
|
|
348
|
+
"attribute": "size"
|
|
337
349
|
},
|
|
338
350
|
{
|
|
339
351
|
"kind": "field",
|
|
340
|
-
"name": "
|
|
352
|
+
"name": "fullWidth",
|
|
341
353
|
"type": {
|
|
342
|
-
"text": "
|
|
354
|
+
"text": "boolean"
|
|
343
355
|
},
|
|
344
|
-
"
|
|
345
|
-
"
|
|
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": "
|
|
362
|
+
"name": "theme",
|
|
350
363
|
"type": {
|
|
351
|
-
"text": "'
|
|
364
|
+
"text": "'light' | 'dark' | undefined"
|
|
352
365
|
},
|
|
353
|
-
"
|
|
354
|
-
"
|
|
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": "
|
|
371
|
+
"name": "appearance",
|
|
360
372
|
"type": {
|
|
361
|
-
"text": "
|
|
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
|
|
365
|
-
"attribute": "
|
|
386
|
+
"description": "Specify if the Alert is hidden",
|
|
387
|
+
"attribute": "hidden"
|
|
366
388
|
},
|
|
367
389
|
{
|
|
368
390
|
"kind": "field",
|
|
369
|
-
"name": "
|
|
391
|
+
"name": "hideIcon",
|
|
370
392
|
"type": {
|
|
371
|
-
"text": "
|
|
393
|
+
"text": "boolean"
|
|
372
394
|
},
|
|
373
|
-
"default": "
|
|
374
|
-
"description": "Specify the
|
|
375
|
-
"attribute": "
|
|
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": "
|
|
401
|
+
"name": "dismissible",
|
|
380
402
|
"type": {
|
|
381
403
|
"text": "boolean"
|
|
382
404
|
},
|
|
383
405
|
"default": "false",
|
|
384
|
-
"description": "
|
|
385
|
-
"attribute": "
|
|
406
|
+
"description": "Specify if the Alert can be dismissed",
|
|
407
|
+
"attribute": "dismissible"
|
|
386
408
|
},
|
|
387
409
|
{
|
|
388
410
|
"kind": "field",
|
|
389
|
-
"name": "
|
|
411
|
+
"name": "disableAutoFocus",
|
|
390
412
|
"type": {
|
|
391
413
|
"text": "boolean"
|
|
392
414
|
},
|
|
393
415
|
"default": "false",
|
|
394
|
-
"description": "
|
|
395
|
-
"attribute": "
|
|
416
|
+
"description": "Prevent autofocus on show",
|
|
417
|
+
"attribute": "disableAutoFocus"
|
|
396
418
|
},
|
|
397
419
|
{
|
|
398
420
|
"kind": "field",
|
|
399
|
-
"name": "
|
|
421
|
+
"name": "disableCloseOnEscape",
|
|
400
422
|
"type": {
|
|
401
423
|
"text": "boolean"
|
|
402
424
|
},
|
|
403
425
|
"default": "false",
|
|
404
|
-
"
|
|
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": "
|
|
438
|
+
"name": "heading",
|
|
410
439
|
"type": {
|
|
411
|
-
"text": "
|
|
440
|
+
"text": "string | undefined"
|
|
412
441
|
},
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
"fieldName": "appearance"
|
|
442
|
+
"description": "Specify the heading text for Alert",
|
|
443
|
+
"fieldName": "heading"
|
|
416
444
|
},
|
|
417
445
|
{
|
|
418
|
-
"name": "
|
|
446
|
+
"name": "body",
|
|
419
447
|
"type": {
|
|
420
448
|
"text": "string | undefined"
|
|
421
449
|
},
|
|
422
|
-
"description": "Specify
|
|
423
|
-
"fieldName": "
|
|
450
|
+
"description": "Specify the body text for Alert",
|
|
451
|
+
"fieldName": "body"
|
|
424
452
|
},
|
|
425
453
|
{
|
|
426
|
-
"name": "
|
|
454
|
+
"name": "size",
|
|
427
455
|
"type": {
|
|
428
|
-
"text": "
|
|
456
|
+
"text": "'sm' | 'md'"
|
|
429
457
|
},
|
|
430
|
-
"
|
|
431
|
-
"
|
|
458
|
+
"default": "'sm'",
|
|
459
|
+
"description": "Specify the size of the Alert",
|
|
460
|
+
"fieldName": "size"
|
|
432
461
|
},
|
|
433
462
|
{
|
|
434
|
-
"name": "
|
|
463
|
+
"name": "fullWidth",
|
|
435
464
|
"type": {
|
|
436
|
-
"text": "
|
|
465
|
+
"text": "boolean"
|
|
437
466
|
},
|
|
438
|
-
"
|
|
439
|
-
"
|
|
467
|
+
"default": "false",
|
|
468
|
+
"description": "Specify if the Alert has no border radius",
|
|
469
|
+
"fieldName": "fullWidth"
|
|
440
470
|
},
|
|
441
471
|
{
|
|
442
|
-
"name": "
|
|
472
|
+
"name": "theme",
|
|
443
473
|
"type": {
|
|
444
|
-
"text": "'
|
|
474
|
+
"text": "'light' | 'dark' | undefined"
|
|
445
475
|
},
|
|
446
|
-
"
|
|
447
|
-
"
|
|
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": "
|
|
480
|
+
"name": "appearance",
|
|
452
481
|
"type": {
|
|
453
|
-
"text": "
|
|
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
|
|
457
|
-
"fieldName": "
|
|
494
|
+
"description": "Specify if the Alert is hidden",
|
|
495
|
+
"fieldName": "hidden"
|
|
458
496
|
},
|
|
459
497
|
{
|
|
460
|
-
"name": "
|
|
498
|
+
"name": "hideIcon",
|
|
461
499
|
"type": {
|
|
462
|
-
"text": "
|
|
500
|
+
"text": "boolean"
|
|
463
501
|
},
|
|
464
|
-
"default": "
|
|
465
|
-
"description": "Specify the
|
|
466
|
-
"fieldName": "
|
|
502
|
+
"default": "false",
|
|
503
|
+
"description": "Specify if the icon displays on the Alert",
|
|
504
|
+
"fieldName": "hideIcon"
|
|
467
505
|
},
|
|
468
506
|
{
|
|
469
|
-
"name": "
|
|
507
|
+
"name": "dismissible",
|
|
470
508
|
"type": {
|
|
471
509
|
"text": "boolean"
|
|
472
510
|
},
|
|
473
511
|
"default": "false",
|
|
474
|
-
"description": "
|
|
475
|
-
"fieldName": "
|
|
512
|
+
"description": "Specify if the Alert can be dismissed",
|
|
513
|
+
"fieldName": "dismissible"
|
|
476
514
|
},
|
|
477
515
|
{
|
|
478
|
-
"name": "
|
|
516
|
+
"name": "disableAutoFocus",
|
|
479
517
|
"type": {
|
|
480
518
|
"text": "boolean"
|
|
481
519
|
},
|
|
482
520
|
"default": "false",
|
|
483
|
-
"description": "
|
|
484
|
-
"fieldName": "
|
|
521
|
+
"description": "Prevent autofocus on show",
|
|
522
|
+
"fieldName": "disableAutoFocus"
|
|
485
523
|
},
|
|
486
524
|
{
|
|
487
|
-
"name": "
|
|
525
|
+
"name": "disableCloseOnEscape",
|
|
488
526
|
"type": {
|
|
489
527
|
"text": "boolean"
|
|
490
528
|
},
|
|
491
529
|
"default": "false",
|
|
492
|
-
"
|
|
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-
|
|
538
|
+
"tagName": "bm-alert",
|
|
500
539
|
"customElement": true
|
|
501
540
|
}
|
|
502
541
|
],
|
|
503
542
|
"exports": [
|
|
504
543
|
{
|
|
505
544
|
"kind": "js",
|
|
506
|
-
"name": "
|
|
545
|
+
"name": "BmAlert",
|
|
507
546
|
"declaration": {
|
|
508
|
-
"name": "
|
|
509
|
-
"module": "libs/web-components/src/lib/
|
|
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-
|
|
553
|
+
"name": "bm-alert",
|
|
515
554
|
"declaration": {
|
|
516
|
-
"name": "
|
|
517
|
-
"module": "libs/web-components/src/lib/
|
|
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/
|
|
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": "
|
|
568
|
+
"name": "*",
|
|
535
569
|
"declaration": {
|
|
536
|
-
"name": "
|
|
537
|
-
"
|
|
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/
|
|
578
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
545
579
|
"declarations": [
|
|
546
580
|
{
|
|
547
581
|
"kind": "class",
|
|
548
|
-
"description": "`bm-
|
|
549
|
-
"name": "
|
|
582
|
+
"description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
|
|
583
|
+
"name": "BmBadge",
|
|
550
584
|
"slots": [
|
|
551
585
|
{
|
|
552
|
-
"description": "
|
|
586
|
+
"description": "Provide text for the Badge",
|
|
553
587
|
"name": "default"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"description": "Specify a different icon for the Badge",
|
|
591
|
+
"name": "icon"
|
|
554
592
|
}
|
|
555
593
|
],
|
|
556
594
|
"members": [
|
|
557
595
|
{
|
|
558
596
|
"kind": "field",
|
|
559
|
-
"name": "
|
|
597
|
+
"name": "appearance",
|
|
560
598
|
"type": {
|
|
561
|
-
"text": "
|
|
599
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
562
600
|
},
|
|
563
|
-
"default": "
|
|
564
|
-
"description": "Specify
|
|
565
|
-
"attribute": "
|
|
601
|
+
"default": "'infoPrimary'",
|
|
602
|
+
"description": "Specify the appearance of the Badge",
|
|
603
|
+
"attribute": "appearance"
|
|
566
604
|
},
|
|
567
605
|
{
|
|
568
606
|
"kind": "field",
|
|
569
|
-
"name": "
|
|
607
|
+
"name": "theme",
|
|
570
608
|
"type": {
|
|
571
|
-
"text": "
|
|
609
|
+
"text": "'light' | 'dark' | undefined"
|
|
572
610
|
},
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
"attribute": "maxCount",
|
|
576
|
-
"reflects": true
|
|
611
|
+
"description": "Theme of the Badge",
|
|
612
|
+
"attribute": "theme"
|
|
577
613
|
},
|
|
578
614
|
{
|
|
579
615
|
"kind": "field",
|
|
580
616
|
"name": "size",
|
|
581
617
|
"type": {
|
|
582
|
-
"text": "'
|
|
618
|
+
"text": "'sm' | 'md' | undefined"
|
|
583
619
|
},
|
|
584
|
-
"default": "'
|
|
585
|
-
"description": "Specify the size of
|
|
620
|
+
"default": "'sm'",
|
|
621
|
+
"description": "Specify the size of the Badge",
|
|
586
622
|
"attribute": "size"
|
|
587
623
|
},
|
|
588
624
|
{
|
|
589
625
|
"kind": "field",
|
|
590
|
-
"name": "
|
|
626
|
+
"name": "emphasis",
|
|
591
627
|
"type": {
|
|
592
|
-
"text": "'
|
|
628
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
593
629
|
},
|
|
594
|
-
"default": "'
|
|
595
|
-
"description": "Specify the
|
|
596
|
-
"attribute": "
|
|
630
|
+
"default": "'strong'",
|
|
631
|
+
"description": "Specify the emphasis of the Badge",
|
|
632
|
+
"attribute": "emphasis"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"kind": "field",
|
|
636
|
+
"name": "hideIcon",
|
|
637
|
+
"type": {
|
|
638
|
+
"text": "boolean | undefined"
|
|
639
|
+
},
|
|
640
|
+
"description": "Hides Badge icon",
|
|
641
|
+
"attribute": "hideIcon"
|
|
597
642
|
}
|
|
598
643
|
],
|
|
599
644
|
"attributes": [
|
|
600
645
|
{
|
|
601
|
-
"name": "
|
|
646
|
+
"name": "appearance",
|
|
602
647
|
"type": {
|
|
603
|
-
"text": "
|
|
648
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
604
649
|
},
|
|
605
|
-
"default": "
|
|
606
|
-
"description": "Specify
|
|
607
|
-
"fieldName": "
|
|
650
|
+
"default": "'infoPrimary'",
|
|
651
|
+
"description": "Specify the appearance of the Badge",
|
|
652
|
+
"fieldName": "appearance"
|
|
608
653
|
},
|
|
609
654
|
{
|
|
610
|
-
"name": "
|
|
655
|
+
"name": "theme",
|
|
611
656
|
"type": {
|
|
612
|
-
"text": "
|
|
657
|
+
"text": "'light' | 'dark' | undefined"
|
|
613
658
|
},
|
|
614
|
-
"
|
|
615
|
-
"
|
|
616
|
-
"fieldName": "maxCount"
|
|
659
|
+
"description": "Theme of the Badge",
|
|
660
|
+
"fieldName": "theme"
|
|
617
661
|
},
|
|
618
662
|
{
|
|
619
663
|
"name": "size",
|
|
620
664
|
"type": {
|
|
621
|
-
"text": "'
|
|
665
|
+
"text": "'sm' | 'md' | undefined"
|
|
622
666
|
},
|
|
623
|
-
"default": "'
|
|
624
|
-
"description": "Specify the size of
|
|
667
|
+
"default": "'sm'",
|
|
668
|
+
"description": "Specify the size of the Badge",
|
|
625
669
|
"fieldName": "size"
|
|
626
670
|
},
|
|
627
671
|
{
|
|
628
|
-
"name": "
|
|
672
|
+
"name": "emphasis",
|
|
629
673
|
"type": {
|
|
630
|
-
"text": "'
|
|
674
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
631
675
|
},
|
|
632
|
-
"default": "'
|
|
633
|
-
"description": "Specify the
|
|
634
|
-
"fieldName": "
|
|
676
|
+
"default": "'strong'",
|
|
677
|
+
"description": "Specify the emphasis of the Badge",
|
|
678
|
+
"fieldName": "emphasis"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "hideIcon",
|
|
682
|
+
"type": {
|
|
683
|
+
"text": "boolean | undefined"
|
|
684
|
+
},
|
|
685
|
+
"description": "Hides Badge icon",
|
|
686
|
+
"fieldName": "hideIcon"
|
|
635
687
|
}
|
|
636
688
|
],
|
|
637
689
|
"superclass": {
|
|
638
690
|
"name": "LitElement",
|
|
639
691
|
"package": "lit"
|
|
640
692
|
},
|
|
641
|
-
"tagName": "bm-
|
|
693
|
+
"tagName": "bm-badge",
|
|
642
694
|
"customElement": true
|
|
643
695
|
}
|
|
644
696
|
],
|
|
645
697
|
"exports": [
|
|
646
698
|
{
|
|
647
699
|
"kind": "js",
|
|
648
|
-
"name": "
|
|
700
|
+
"name": "BmBadge",
|
|
649
701
|
"declaration": {
|
|
650
|
-
"name": "
|
|
651
|
-
"module": "libs/web-components/src/lib/
|
|
702
|
+
"name": "BmBadge",
|
|
703
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
652
704
|
}
|
|
653
705
|
},
|
|
654
706
|
{
|
|
655
707
|
"kind": "custom-element-definition",
|
|
656
|
-
"name": "bm-
|
|
708
|
+
"name": "bm-badge",
|
|
657
709
|
"declaration": {
|
|
658
|
-
"name": "
|
|
659
|
-
"module": "libs/web-components/src/lib/
|
|
710
|
+
"name": "BmBadge",
|
|
711
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
660
712
|
}
|
|
661
713
|
}
|
|
662
714
|
]
|
|
663
715
|
},
|
|
664
716
|
{
|
|
665
717
|
"kind": "javascript-module",
|
|
666
|
-
"path": "libs/web-components/src/lib/
|
|
718
|
+
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
667
719
|
"declarations": [],
|
|
668
720
|
"exports": [
|
|
669
721
|
{
|
|
@@ -671,34 +723,22 @@
|
|
|
671
723
|
"name": "*",
|
|
672
724
|
"declaration": {
|
|
673
725
|
"name": "*",
|
|
674
|
-
"package": "./
|
|
675
|
-
}
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"kind": "js",
|
|
679
|
-
"name": "*",
|
|
680
|
-
"declaration": {
|
|
681
|
-
"name": "*",
|
|
682
|
-
"package": "./AvatarGroup"
|
|
726
|
+
"package": "./Badge"
|
|
683
727
|
}
|
|
684
728
|
}
|
|
685
729
|
]
|
|
686
730
|
},
|
|
687
731
|
{
|
|
688
732
|
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/
|
|
733
|
+
"path": "libs/web-components/src/lib/Avatar/Avatar.ts",
|
|
690
734
|
"declarations": [
|
|
691
735
|
{
|
|
692
736
|
"kind": "class",
|
|
693
|
-
"description": "`bm-
|
|
694
|
-
"name": "
|
|
737
|
+
"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** ",
|
|
738
|
+
"name": "BmAvatar",
|
|
695
739
|
"slots": [
|
|
696
740
|
{
|
|
697
|
-
"description": "
|
|
698
|
-
"name": "default"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"description": "Specify a different icon for the Badge",
|
|
741
|
+
"description": "Customize the default icon",
|
|
702
742
|
"name": "icon"
|
|
703
743
|
}
|
|
704
744
|
],
|
|
@@ -707,320 +747,440 @@
|
|
|
707
747
|
"kind": "field",
|
|
708
748
|
"name": "appearance",
|
|
709
749
|
"type": {
|
|
710
|
-
"text": "'
|
|
750
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
711
751
|
},
|
|
712
|
-
"default": "'
|
|
713
|
-
"description": "Specify the appearance of the
|
|
752
|
+
"default": "'neutral'",
|
|
753
|
+
"description": "Specify the appearance of the Avatar",
|
|
714
754
|
"attribute": "appearance"
|
|
715
755
|
},
|
|
716
756
|
{
|
|
717
757
|
"kind": "field",
|
|
718
|
-
"name": "
|
|
758
|
+
"name": "name",
|
|
719
759
|
"type": {
|
|
720
|
-
"text": "
|
|
760
|
+
"text": "string | undefined"
|
|
721
761
|
},
|
|
722
|
-
"description": "
|
|
723
|
-
"attribute": "
|
|
762
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
763
|
+
"attribute": "name"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"kind": "field",
|
|
767
|
+
"name": "src",
|
|
768
|
+
"type": {
|
|
769
|
+
"text": "string | undefined"
|
|
770
|
+
},
|
|
771
|
+
"description": "Pass an image to the Avatar",
|
|
772
|
+
"attribute": "src"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"kind": "field",
|
|
776
|
+
"name": "alt",
|
|
777
|
+
"type": {
|
|
778
|
+
"text": "string | undefined"
|
|
779
|
+
},
|
|
780
|
+
"description": "Specify alt for image",
|
|
781
|
+
"attribute": "alt"
|
|
724
782
|
},
|
|
725
783
|
{
|
|
726
784
|
"kind": "field",
|
|
727
785
|
"name": "size",
|
|
728
786
|
"type": {
|
|
729
|
-
"text": "'sm' | 'md' | undefined"
|
|
787
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
730
788
|
},
|
|
731
|
-
"default": "'
|
|
732
|
-
"description": "Specify the size of the
|
|
789
|
+
"default": "'md'",
|
|
790
|
+
"description": "Specify the size of the Avatar",
|
|
733
791
|
"attribute": "size"
|
|
734
792
|
},
|
|
735
793
|
{
|
|
736
794
|
"kind": "field",
|
|
737
|
-
"name": "
|
|
795
|
+
"name": "disabled",
|
|
738
796
|
"type": {
|
|
739
|
-
"text": "
|
|
797
|
+
"text": "boolean | undefined"
|
|
740
798
|
},
|
|
741
|
-
"default": "
|
|
742
|
-
"description": "Specify the
|
|
743
|
-
"attribute": "
|
|
799
|
+
"default": "false",
|
|
800
|
+
"description": "Specify if the Avatar is disabled",
|
|
801
|
+
"attribute": "disabled"
|
|
744
802
|
},
|
|
745
803
|
{
|
|
746
804
|
"kind": "field",
|
|
747
|
-
"name": "
|
|
805
|
+
"name": "shape",
|
|
748
806
|
"type": {
|
|
749
|
-
"text": "
|
|
807
|
+
"text": "'circle' | 'square' | undefined"
|
|
750
808
|
},
|
|
751
|
-
"
|
|
752
|
-
"
|
|
809
|
+
"default": "'circle'",
|
|
810
|
+
"description": "Specify the shape of the Avatar",
|
|
811
|
+
"attribute": "shape"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"kind": "field",
|
|
815
|
+
"name": "isInteractive",
|
|
816
|
+
"type": {
|
|
817
|
+
"text": "boolean"
|
|
818
|
+
},
|
|
819
|
+
"default": "false",
|
|
820
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
821
|
+
"attribute": "isInteractive"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"kind": "field",
|
|
825
|
+
"name": "isFocusable",
|
|
826
|
+
"type": {
|
|
827
|
+
"text": "boolean"
|
|
828
|
+
},
|
|
829
|
+
"default": "false",
|
|
830
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
831
|
+
"attribute": "isFocusable"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"kind": "field",
|
|
835
|
+
"name": "withBorder",
|
|
836
|
+
"type": {
|
|
837
|
+
"text": "boolean"
|
|
838
|
+
},
|
|
839
|
+
"default": "false",
|
|
840
|
+
"attribute": "withBorder"
|
|
753
841
|
}
|
|
754
842
|
],
|
|
755
843
|
"attributes": [
|
|
756
844
|
{
|
|
757
845
|
"name": "appearance",
|
|
758
846
|
"type": {
|
|
759
|
-
"text": "'
|
|
847
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
760
848
|
},
|
|
761
|
-
"default": "'
|
|
762
|
-
"description": "Specify the appearance of the
|
|
849
|
+
"default": "'neutral'",
|
|
850
|
+
"description": "Specify the appearance of the Avatar",
|
|
763
851
|
"fieldName": "appearance"
|
|
764
852
|
},
|
|
765
853
|
{
|
|
766
|
-
"name": "
|
|
854
|
+
"name": "name",
|
|
767
855
|
"type": {
|
|
768
|
-
"text": "
|
|
856
|
+
"text": "string | undefined"
|
|
769
857
|
},
|
|
770
|
-
"description": "
|
|
771
|
-
"fieldName": "
|
|
858
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
859
|
+
"fieldName": "name"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"name": "src",
|
|
863
|
+
"type": {
|
|
864
|
+
"text": "string | undefined"
|
|
865
|
+
},
|
|
866
|
+
"description": "Pass an image to the Avatar",
|
|
867
|
+
"fieldName": "src"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "alt",
|
|
871
|
+
"type": {
|
|
872
|
+
"text": "string | undefined"
|
|
873
|
+
},
|
|
874
|
+
"description": "Specify alt for image",
|
|
875
|
+
"fieldName": "alt"
|
|
772
876
|
},
|
|
773
877
|
{
|
|
774
878
|
"name": "size",
|
|
775
879
|
"type": {
|
|
776
|
-
"text": "'sm' | 'md' | undefined"
|
|
880
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
777
881
|
},
|
|
778
|
-
"default": "'
|
|
779
|
-
"description": "Specify the size of the
|
|
882
|
+
"default": "'md'",
|
|
883
|
+
"description": "Specify the size of the Avatar",
|
|
780
884
|
"fieldName": "size"
|
|
781
885
|
},
|
|
782
886
|
{
|
|
783
|
-
"name": "
|
|
887
|
+
"name": "disabled",
|
|
784
888
|
"type": {
|
|
785
|
-
"text": "
|
|
889
|
+
"text": "boolean | undefined"
|
|
786
890
|
},
|
|
787
|
-
"default": "
|
|
788
|
-
"description": "Specify the
|
|
789
|
-
"fieldName": "
|
|
891
|
+
"default": "false",
|
|
892
|
+
"description": "Specify if the Avatar is disabled",
|
|
893
|
+
"fieldName": "disabled"
|
|
790
894
|
},
|
|
791
895
|
{
|
|
792
|
-
"name": "
|
|
896
|
+
"name": "shape",
|
|
793
897
|
"type": {
|
|
794
|
-
"text": "
|
|
898
|
+
"text": "'circle' | 'square' | undefined"
|
|
795
899
|
},
|
|
796
|
-
"
|
|
797
|
-
"
|
|
900
|
+
"default": "'circle'",
|
|
901
|
+
"description": "Specify the shape of the Avatar",
|
|
902
|
+
"fieldName": "shape"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"name": "isInteractive",
|
|
906
|
+
"type": {
|
|
907
|
+
"text": "boolean"
|
|
908
|
+
},
|
|
909
|
+
"default": "false",
|
|
910
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
911
|
+
"fieldName": "isInteractive"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"name": "isFocusable",
|
|
915
|
+
"type": {
|
|
916
|
+
"text": "boolean"
|
|
917
|
+
},
|
|
918
|
+
"default": "false",
|
|
919
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
920
|
+
"fieldName": "isFocusable"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"name": "withBorder",
|
|
924
|
+
"type": {
|
|
925
|
+
"text": "boolean"
|
|
926
|
+
},
|
|
927
|
+
"default": "false",
|
|
928
|
+
"fieldName": "withBorder"
|
|
798
929
|
}
|
|
799
930
|
],
|
|
800
931
|
"superclass": {
|
|
801
932
|
"name": "LitElement",
|
|
802
933
|
"package": "lit"
|
|
803
934
|
},
|
|
804
|
-
"tagName": "bm-
|
|
935
|
+
"tagName": "bm-avatar",
|
|
805
936
|
"customElement": true
|
|
806
937
|
}
|
|
807
938
|
],
|
|
808
939
|
"exports": [
|
|
809
940
|
{
|
|
810
941
|
"kind": "js",
|
|
811
|
-
"name": "
|
|
942
|
+
"name": "BmAvatar",
|
|
812
943
|
"declaration": {
|
|
813
|
-
"name": "
|
|
814
|
-
"module": "libs/web-components/src/lib/
|
|
944
|
+
"name": "BmAvatar",
|
|
945
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
815
946
|
}
|
|
816
947
|
},
|
|
817
948
|
{
|
|
818
949
|
"kind": "custom-element-definition",
|
|
819
|
-
"name": "bm-
|
|
950
|
+
"name": "bm-avatar",
|
|
820
951
|
"declaration": {
|
|
821
|
-
"name": "
|
|
822
|
-
"module": "libs/web-components/src/lib/
|
|
952
|
+
"name": "BmAvatar",
|
|
953
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
823
954
|
}
|
|
824
955
|
}
|
|
825
956
|
]
|
|
826
957
|
},
|
|
827
958
|
{
|
|
828
959
|
"kind": "javascript-module",
|
|
829
|
-
"path": "libs/web-components/src/lib/
|
|
830
|
-
"declarations": [
|
|
960
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
|
|
961
|
+
"declarations": [
|
|
962
|
+
{
|
|
963
|
+
"kind": "variable",
|
|
964
|
+
"name": "AvatarGroupCtx"
|
|
965
|
+
}
|
|
966
|
+
],
|
|
831
967
|
"exports": [
|
|
832
968
|
{
|
|
833
969
|
"kind": "js",
|
|
834
|
-
"name": "
|
|
970
|
+
"name": "AvatarGroupCtx",
|
|
835
971
|
"declaration": {
|
|
836
|
-
"name": "
|
|
837
|
-
"
|
|
972
|
+
"name": "AvatarGroupCtx",
|
|
973
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
|
|
838
974
|
}
|
|
839
975
|
}
|
|
840
976
|
]
|
|
841
977
|
},
|
|
842
978
|
{
|
|
843
979
|
"kind": "javascript-module",
|
|
844
|
-
"path": "libs/web-components/src/lib/
|
|
980
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
|
|
845
981
|
"declarations": [
|
|
846
982
|
{
|
|
847
983
|
"kind": "class",
|
|
848
|
-
"description": "`bm-
|
|
849
|
-
"name": "
|
|
984
|
+
"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.",
|
|
985
|
+
"name": "BmAvatarGroup",
|
|
850
986
|
"slots": [
|
|
851
987
|
{
|
|
852
|
-
"description": "
|
|
853
|
-
"name": "
|
|
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"
|
|
988
|
+
"description": "Add Avatars to create a group",
|
|
989
|
+
"name": "default"
|
|
866
990
|
}
|
|
867
991
|
],
|
|
868
992
|
"members": [
|
|
869
993
|
{
|
|
870
994
|
"kind": "field",
|
|
871
|
-
"name": "
|
|
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",
|
|
995
|
+
"name": "wrapping",
|
|
900
996
|
"type": {
|
|
901
997
|
"text": "boolean"
|
|
902
998
|
},
|
|
903
999
|
"default": "false",
|
|
904
|
-
"description": "Specify if the
|
|
905
|
-
"attribute": "
|
|
1000
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
1001
|
+
"attribute": "wrapping"
|
|
906
1002
|
},
|
|
907
1003
|
{
|
|
908
1004
|
"kind": "field",
|
|
909
|
-
"name": "
|
|
1005
|
+
"name": "maxCount",
|
|
910
1006
|
"type": {
|
|
911
|
-
"text": "
|
|
1007
|
+
"text": "number"
|
|
912
1008
|
},
|
|
913
|
-
"
|
|
914
|
-
"
|
|
1009
|
+
"default": "5",
|
|
1010
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
1011
|
+
"attribute": "maxCount",
|
|
1012
|
+
"reflects": true
|
|
915
1013
|
},
|
|
916
1014
|
{
|
|
917
1015
|
"kind": "field",
|
|
918
|
-
"name": "
|
|
1016
|
+
"name": "size",
|
|
919
1017
|
"type": {
|
|
920
|
-
"text": "'
|
|
1018
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
921
1019
|
},
|
|
922
|
-
"default": "'
|
|
923
|
-
"description": "Specify the
|
|
924
|
-
"attribute": "
|
|
1020
|
+
"default": "'md'",
|
|
1021
|
+
"description": "Specify the size of all Avatars",
|
|
1022
|
+
"attribute": "size"
|
|
925
1023
|
},
|
|
926
1024
|
{
|
|
927
1025
|
"kind": "field",
|
|
928
|
-
"name": "
|
|
1026
|
+
"name": "layout",
|
|
929
1027
|
"type": {
|
|
930
|
-
"text": "
|
|
1028
|
+
"text": "'stacked' | 'spaced' | undefined"
|
|
931
1029
|
},
|
|
932
|
-
"default": "
|
|
933
|
-
"description": "Specify
|
|
934
|
-
"attribute": "
|
|
935
|
-
}
|
|
1030
|
+
"default": "'stacked'",
|
|
1031
|
+
"description": "Specify the kind of the group.",
|
|
1032
|
+
"attribute": "layout"
|
|
1033
|
+
}
|
|
1034
|
+
],
|
|
1035
|
+
"attributes": [
|
|
936
1036
|
{
|
|
937
|
-
"
|
|
938
|
-
"name": "hideIcon",
|
|
1037
|
+
"name": "wrapping",
|
|
939
1038
|
"type": {
|
|
940
1039
|
"text": "boolean"
|
|
941
1040
|
},
|
|
942
1041
|
"default": "false",
|
|
943
|
-
"description": "Specify if the
|
|
944
|
-
"
|
|
1042
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
1043
|
+
"fieldName": "wrapping"
|
|
945
1044
|
},
|
|
946
1045
|
{
|
|
947
|
-
"
|
|
948
|
-
"name": "dismissible",
|
|
1046
|
+
"name": "maxCount",
|
|
949
1047
|
"type": {
|
|
950
|
-
"text": "
|
|
1048
|
+
"text": "number"
|
|
951
1049
|
},
|
|
952
|
-
"default": "
|
|
953
|
-
"description": "Specify
|
|
954
|
-
"
|
|
1050
|
+
"default": "5",
|
|
1051
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
1052
|
+
"fieldName": "maxCount"
|
|
955
1053
|
},
|
|
956
1054
|
{
|
|
957
|
-
"
|
|
958
|
-
"name": "disableAutoFocus",
|
|
1055
|
+
"name": "size",
|
|
959
1056
|
"type": {
|
|
960
|
-
"text": "
|
|
1057
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
961
1058
|
},
|
|
962
|
-
"default": "
|
|
963
|
-
"description": "
|
|
964
|
-
"
|
|
1059
|
+
"default": "'md'",
|
|
1060
|
+
"description": "Specify the size of all Avatars",
|
|
1061
|
+
"fieldName": "size"
|
|
965
1062
|
},
|
|
966
1063
|
{
|
|
967
|
-
"
|
|
968
|
-
"name": "disableCloseOnEscape",
|
|
1064
|
+
"name": "layout",
|
|
969
1065
|
"type": {
|
|
970
|
-
"text": "
|
|
1066
|
+
"text": "'stacked' | 'spaced' | undefined"
|
|
971
1067
|
},
|
|
972
|
-
"default": "
|
|
973
|
-
"description": "
|
|
974
|
-
"
|
|
1068
|
+
"default": "'stacked'",
|
|
1069
|
+
"description": "Specify the kind of the group.",
|
|
1070
|
+
"fieldName": "layout"
|
|
975
1071
|
}
|
|
976
1072
|
],
|
|
977
|
-
"
|
|
1073
|
+
"superclass": {
|
|
1074
|
+
"name": "LitElement",
|
|
1075
|
+
"package": "lit"
|
|
1076
|
+
},
|
|
1077
|
+
"tagName": "bm-avatar-group",
|
|
1078
|
+
"customElement": true
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
"exports": [
|
|
1082
|
+
{
|
|
1083
|
+
"kind": "js",
|
|
1084
|
+
"name": "BmAvatarGroup",
|
|
1085
|
+
"declaration": {
|
|
1086
|
+
"name": "BmAvatarGroup",
|
|
1087
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"kind": "custom-element-definition",
|
|
1092
|
+
"name": "bm-avatar-group",
|
|
1093
|
+
"declaration": {
|
|
1094
|
+
"name": "BmAvatarGroup",
|
|
1095
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
]
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"kind": "javascript-module",
|
|
1102
|
+
"path": "libs/web-components/src/lib/Avatar/index.ts",
|
|
1103
|
+
"declarations": [],
|
|
1104
|
+
"exports": [
|
|
1105
|
+
{
|
|
1106
|
+
"kind": "js",
|
|
1107
|
+
"name": "*",
|
|
1108
|
+
"declaration": {
|
|
1109
|
+
"name": "*",
|
|
1110
|
+
"package": "./Avatar"
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"kind": "js",
|
|
1115
|
+
"name": "*",
|
|
1116
|
+
"declaration": {
|
|
1117
|
+
"name": "*",
|
|
1118
|
+
"package": "./AvatarGroup"
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
]
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"kind": "javascript-module",
|
|
1125
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
1126
|
+
"declarations": [
|
|
1127
|
+
{
|
|
1128
|
+
"kind": "class",
|
|
1129
|
+
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
|
|
1130
|
+
"name": "BmBadgeDot",
|
|
1131
|
+
"slots": [
|
|
978
1132
|
{
|
|
979
|
-
"description": "
|
|
980
|
-
"name": "
|
|
1133
|
+
"description": "Provide text for the BadgeDot",
|
|
1134
|
+
"name": "default"
|
|
981
1135
|
}
|
|
982
1136
|
],
|
|
983
|
-
"
|
|
1137
|
+
"members": [
|
|
984
1138
|
{
|
|
985
|
-
"
|
|
1139
|
+
"kind": "field",
|
|
1140
|
+
"name": "theme",
|
|
986
1141
|
"type": {
|
|
987
|
-
"text": "
|
|
1142
|
+
"text": "'light' | 'dark' | undefined"
|
|
988
1143
|
},
|
|
989
|
-
"description": "Specify the
|
|
990
|
-
"
|
|
1144
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1145
|
+
"attribute": "theme"
|
|
991
1146
|
},
|
|
992
1147
|
{
|
|
993
|
-
"
|
|
1148
|
+
"kind": "field",
|
|
1149
|
+
"name": "appearance",
|
|
994
1150
|
"type": {
|
|
995
|
-
"text": "
|
|
1151
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
996
1152
|
},
|
|
997
|
-
"
|
|
998
|
-
"
|
|
1153
|
+
"default": "'infoPrimary'",
|
|
1154
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1155
|
+
"attribute": "appearance"
|
|
999
1156
|
},
|
|
1000
1157
|
{
|
|
1001
|
-
"
|
|
1158
|
+
"kind": "field",
|
|
1159
|
+
"name": "emphasis",
|
|
1002
1160
|
"type": {
|
|
1003
|
-
"text": "'
|
|
1161
|
+
"text": "'strong' | 'subtle'"
|
|
1004
1162
|
},
|
|
1005
|
-
"default": "'
|
|
1006
|
-
"description": "Specify the
|
|
1007
|
-
"
|
|
1163
|
+
"default": "'strong'",
|
|
1164
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1165
|
+
"attribute": "emphasis"
|
|
1008
1166
|
},
|
|
1009
1167
|
{
|
|
1010
|
-
"
|
|
1168
|
+
"kind": "field",
|
|
1169
|
+
"name": "overrideDotColor",
|
|
1011
1170
|
"type": {
|
|
1012
|
-
"text": "
|
|
1171
|
+
"text": "string | undefined"
|
|
1013
1172
|
},
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1016
|
-
|
|
1017
|
-
|
|
1173
|
+
"description": "Overrides default dot color",
|
|
1174
|
+
"attribute": "overrideDotColor"
|
|
1175
|
+
}
|
|
1176
|
+
],
|
|
1177
|
+
"attributes": [
|
|
1018
1178
|
{
|
|
1019
1179
|
"name": "theme",
|
|
1020
1180
|
"type": {
|
|
1021
1181
|
"text": "'light' | 'dark' | undefined"
|
|
1022
1182
|
},
|
|
1023
|
-
"description": "Specify the theme of the
|
|
1183
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1024
1184
|
"fieldName": "theme"
|
|
1025
1185
|
},
|
|
1026
1186
|
{
|
|
@@ -1029,85 +1189,57 @@
|
|
|
1029
1189
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1030
1190
|
},
|
|
1031
1191
|
"default": "'infoPrimary'",
|
|
1032
|
-
"description": "Specify the appearance of the
|
|
1192
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1033
1193
|
"fieldName": "appearance"
|
|
1034
1194
|
},
|
|
1035
1195
|
{
|
|
1036
|
-
"name": "
|
|
1037
|
-
"type": {
|
|
1038
|
-
"text": "boolean"
|
|
1039
|
-
},
|
|
1040
|
-
"default": "false",
|
|
1041
|
-
"description": "Specify if the Alert is hidden",
|
|
1042
|
-
"fieldName": "hidden"
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
"name": "hideIcon",
|
|
1046
|
-
"type": {
|
|
1047
|
-
"text": "boolean"
|
|
1048
|
-
},
|
|
1049
|
-
"default": "false",
|
|
1050
|
-
"description": "Specify if the icon displays on the Alert",
|
|
1051
|
-
"fieldName": "hideIcon"
|
|
1052
|
-
},
|
|
1053
|
-
{
|
|
1054
|
-
"name": "dismissible",
|
|
1055
|
-
"type": {
|
|
1056
|
-
"text": "boolean"
|
|
1057
|
-
},
|
|
1058
|
-
"default": "false",
|
|
1059
|
-
"description": "Specify if the Alert can be dismissed",
|
|
1060
|
-
"fieldName": "dismissible"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"name": "disableAutoFocus",
|
|
1196
|
+
"name": "emphasis",
|
|
1064
1197
|
"type": {
|
|
1065
|
-
"text": "
|
|
1198
|
+
"text": "'strong' | 'subtle'"
|
|
1066
1199
|
},
|
|
1067
|
-
"default": "
|
|
1068
|
-
"description": "
|
|
1069
|
-
"fieldName": "
|
|
1200
|
+
"default": "'strong'",
|
|
1201
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1202
|
+
"fieldName": "emphasis"
|
|
1070
1203
|
},
|
|
1071
1204
|
{
|
|
1072
|
-
"name": "
|
|
1205
|
+
"name": "overrideDotColor",
|
|
1073
1206
|
"type": {
|
|
1074
|
-
"text": "
|
|
1207
|
+
"text": "string | undefined"
|
|
1075
1208
|
},
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1078
|
-
"fieldName": "disableCloseOnEscape"
|
|
1209
|
+
"description": "Overrides default dot color",
|
|
1210
|
+
"fieldName": "overrideDotColor"
|
|
1079
1211
|
}
|
|
1080
1212
|
],
|
|
1081
1213
|
"superclass": {
|
|
1082
1214
|
"name": "LitElement",
|
|
1083
1215
|
"package": "lit"
|
|
1084
1216
|
},
|
|
1085
|
-
"tagName": "bm-
|
|
1217
|
+
"tagName": "bm-badge-dot",
|
|
1086
1218
|
"customElement": true
|
|
1087
1219
|
}
|
|
1088
1220
|
],
|
|
1089
1221
|
"exports": [
|
|
1090
1222
|
{
|
|
1091
1223
|
"kind": "js",
|
|
1092
|
-
"name": "
|
|
1224
|
+
"name": "BmBadgeDot",
|
|
1093
1225
|
"declaration": {
|
|
1094
|
-
"name": "
|
|
1095
|
-
"module": "libs/web-components/src/lib/
|
|
1226
|
+
"name": "BmBadgeDot",
|
|
1227
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1096
1228
|
}
|
|
1097
1229
|
},
|
|
1098
1230
|
{
|
|
1099
1231
|
"kind": "custom-element-definition",
|
|
1100
|
-
"name": "bm-
|
|
1232
|
+
"name": "bm-badge-dot",
|
|
1101
1233
|
"declaration": {
|
|
1102
|
-
"name": "
|
|
1103
|
-
"module": "libs/web-components/src/lib/
|
|
1234
|
+
"name": "BmBadgeDot",
|
|
1235
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1104
1236
|
}
|
|
1105
1237
|
}
|
|
1106
1238
|
]
|
|
1107
1239
|
},
|
|
1108
1240
|
{
|
|
1109
1241
|
"kind": "javascript-module",
|
|
1110
|
-
"path": "libs/web-components/src/lib/
|
|
1242
|
+
"path": "libs/web-components/src/lib/BadgeDot/index.ts",
|
|
1111
1243
|
"declarations": [],
|
|
1112
1244
|
"exports": [
|
|
1113
1245
|
{
|
|
@@ -1115,7 +1247,7 @@
|
|
|
1115
1247
|
"name": "*",
|
|
1116
1248
|
"declaration": {
|
|
1117
1249
|
"name": "*",
|
|
1118
|
-
"package": "./
|
|
1250
|
+
"package": "./BadgeDot"
|
|
1119
1251
|
}
|
|
1120
1252
|
}
|
|
1121
1253
|
]
|
|
@@ -1459,187 +1591,55 @@
|
|
|
1459
1591
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1460
1592
|
},
|
|
1461
1593
|
"description": "Specify all padding",
|
|
1462
|
-
"fieldName": "p"
|
|
1463
|
-
},
|
|
1464
|
-
{
|
|
1465
|
-
"name": "gap",
|
|
1466
|
-
"type": {
|
|
1467
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1468
|
-
},
|
|
1469
|
-
"description": "Specify gap between child elements",
|
|
1470
|
-
"fieldName": "gap"
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"name": "shadow",
|
|
1474
|
-
"type": {
|
|
1475
|
-
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1476
|
-
},
|
|
1477
|
-
"description": "Specify if a Box has a shadow",
|
|
1478
|
-
"fieldName": "shadow"
|
|
1479
|
-
}
|
|
1480
|
-
],
|
|
1481
|
-
"superclass": {
|
|
1482
|
-
"name": "LitElement",
|
|
1483
|
-
"package": "lit"
|
|
1484
|
-
},
|
|
1485
|
-
"tagName": "bm-box",
|
|
1486
|
-
"customElement": true
|
|
1487
|
-
}
|
|
1488
|
-
],
|
|
1489
|
-
"exports": [
|
|
1490
|
-
{
|
|
1491
|
-
"kind": "js",
|
|
1492
|
-
"name": "BmBox",
|
|
1493
|
-
"declaration": {
|
|
1494
|
-
"name": "BmBox",
|
|
1495
|
-
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1496
|
-
}
|
|
1497
|
-
},
|
|
1498
|
-
{
|
|
1499
|
-
"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": "*",
|
|
1516
|
-
"declaration": {
|
|
1517
|
-
"name": "*",
|
|
1518
|
-
"package": "./Box"
|
|
1519
|
-
}
|
|
1520
|
-
}
|
|
1521
|
-
]
|
|
1522
|
-
},
|
|
1523
|
-
{
|
|
1524
|
-
"kind": "javascript-module",
|
|
1525
|
-
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
1526
|
-
"declarations": [
|
|
1527
|
-
{
|
|
1528
|
-
"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",
|
|
1531
|
-
"slots": [
|
|
1532
|
-
{
|
|
1533
|
-
"description": "Provide text for the BadgeDot",
|
|
1534
|
-
"name": "default"
|
|
1535
|
-
}
|
|
1536
|
-
],
|
|
1537
|
-
"members": [
|
|
1538
|
-
{
|
|
1539
|
-
"kind": "field",
|
|
1540
|
-
"name": "theme",
|
|
1541
|
-
"type": {
|
|
1542
|
-
"text": "'light' | 'dark' | undefined"
|
|
1543
|
-
},
|
|
1544
|
-
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1545
|
-
"attribute": "theme"
|
|
1546
|
-
},
|
|
1547
|
-
{
|
|
1548
|
-
"kind": "field",
|
|
1549
|
-
"name": "appearance",
|
|
1550
|
-
"type": {
|
|
1551
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1552
|
-
},
|
|
1553
|
-
"default": "'infoPrimary'",
|
|
1554
|
-
"description": "Specify the appearance of the BadgeDot",
|
|
1555
|
-
"attribute": "appearance"
|
|
1556
|
-
},
|
|
1557
|
-
{
|
|
1558
|
-
"kind": "field",
|
|
1559
|
-
"name": "emphasis",
|
|
1560
|
-
"type": {
|
|
1561
|
-
"text": "'strong' | 'subtle'"
|
|
1562
|
-
},
|
|
1563
|
-
"default": "'strong'",
|
|
1564
|
-
"description": "Specify the emphasis of the BadgeDot",
|
|
1565
|
-
"attribute": "emphasis"
|
|
1566
|
-
},
|
|
1567
|
-
{
|
|
1568
|
-
"kind": "field",
|
|
1569
|
-
"name": "overrideDotColor",
|
|
1570
|
-
"type": {
|
|
1571
|
-
"text": "string | undefined"
|
|
1572
|
-
},
|
|
1573
|
-
"description": "Overrides default dot color",
|
|
1574
|
-
"attribute": "overrideDotColor"
|
|
1575
|
-
}
|
|
1576
|
-
],
|
|
1577
|
-
"attributes": [
|
|
1578
|
-
{
|
|
1579
|
-
"name": "theme",
|
|
1580
|
-
"type": {
|
|
1581
|
-
"text": "'light' | 'dark' | undefined"
|
|
1582
|
-
},
|
|
1583
|
-
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1584
|
-
"fieldName": "theme"
|
|
1585
|
-
},
|
|
1586
|
-
{
|
|
1587
|
-
"name": "appearance",
|
|
1588
|
-
"type": {
|
|
1589
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1590
|
-
},
|
|
1591
|
-
"default": "'infoPrimary'",
|
|
1592
|
-
"description": "Specify the appearance of the BadgeDot",
|
|
1593
|
-
"fieldName": "appearance"
|
|
1594
|
+
"fieldName": "p"
|
|
1594
1595
|
},
|
|
1595
1596
|
{
|
|
1596
|
-
"name": "
|
|
1597
|
+
"name": "gap",
|
|
1597
1598
|
"type": {
|
|
1598
|
-
"text": "'
|
|
1599
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1599
1600
|
},
|
|
1600
|
-
"
|
|
1601
|
-
"
|
|
1602
|
-
"fieldName": "emphasis"
|
|
1601
|
+
"description": "Specify gap between child elements",
|
|
1602
|
+
"fieldName": "gap"
|
|
1603
1603
|
},
|
|
1604
1604
|
{
|
|
1605
|
-
"name": "
|
|
1605
|
+
"name": "shadow",
|
|
1606
1606
|
"type": {
|
|
1607
|
-
"text": "
|
|
1607
|
+
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1608
1608
|
},
|
|
1609
|
-
"description": "
|
|
1610
|
-
"fieldName": "
|
|
1609
|
+
"description": "Specify if a Box has a shadow",
|
|
1610
|
+
"fieldName": "shadow"
|
|
1611
1611
|
}
|
|
1612
1612
|
],
|
|
1613
1613
|
"superclass": {
|
|
1614
1614
|
"name": "LitElement",
|
|
1615
1615
|
"package": "lit"
|
|
1616
1616
|
},
|
|
1617
|
-
"tagName": "bm-
|
|
1617
|
+
"tagName": "bm-box",
|
|
1618
1618
|
"customElement": true
|
|
1619
1619
|
}
|
|
1620
1620
|
],
|
|
1621
1621
|
"exports": [
|
|
1622
1622
|
{
|
|
1623
1623
|
"kind": "js",
|
|
1624
|
-
"name": "
|
|
1624
|
+
"name": "BmBox",
|
|
1625
1625
|
"declaration": {
|
|
1626
|
-
"name": "
|
|
1627
|
-
"module": "libs/web-components/src/lib/
|
|
1626
|
+
"name": "BmBox",
|
|
1627
|
+
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1628
1628
|
}
|
|
1629
1629
|
},
|
|
1630
1630
|
{
|
|
1631
1631
|
"kind": "custom-element-definition",
|
|
1632
|
-
"name": "bm-
|
|
1632
|
+
"name": "bm-box",
|
|
1633
1633
|
"declaration": {
|
|
1634
|
-
"name": "
|
|
1635
|
-
"module": "libs/web-components/src/lib/
|
|
1634
|
+
"name": "BmBox",
|
|
1635
|
+
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1636
1636
|
}
|
|
1637
1637
|
}
|
|
1638
1638
|
]
|
|
1639
1639
|
},
|
|
1640
1640
|
{
|
|
1641
1641
|
"kind": "javascript-module",
|
|
1642
|
-
"path": "libs/web-components/src/lib/
|
|
1642
|
+
"path": "libs/web-components/src/lib/Box/index.ts",
|
|
1643
1643
|
"declarations": [],
|
|
1644
1644
|
"exports": [
|
|
1645
1645
|
{
|
|
@@ -1647,7 +1647,7 @@
|
|
|
1647
1647
|
"name": "*",
|
|
1648
1648
|
"declaration": {
|
|
1649
1649
|
"name": "*",
|
|
1650
|
-
"package": "./
|
|
1650
|
+
"package": "./Box"
|
|
1651
1651
|
}
|
|
1652
1652
|
}
|
|
1653
1653
|
]
|
|
@@ -8971,8 +8971,230 @@
|
|
|
8971
8971
|
"type": {
|
|
8972
8972
|
"text": "string | undefined"
|
|
8973
8973
|
},
|
|
8974
|
-
"description": "The value attribute for the input element",
|
|
8975
|
-
"fieldName": "value"
|
|
8974
|
+
"description": "The value attribute for the input element",
|
|
8975
|
+
"fieldName": "value"
|
|
8976
|
+
},
|
|
8977
|
+
{
|
|
8978
|
+
"name": "checked",
|
|
8979
|
+
"type": {
|
|
8980
|
+
"text": "boolean"
|
|
8981
|
+
},
|
|
8982
|
+
"default": "false",
|
|
8983
|
+
"description": "The checked attribute for the input element",
|
|
8984
|
+
"fieldName": "checked"
|
|
8985
|
+
},
|
|
8986
|
+
{
|
|
8987
|
+
"name": "onKeyDown",
|
|
8988
|
+
"type": {
|
|
8989
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8990
|
+
},
|
|
8991
|
+
"description": "A user-defined function to handle keydown events",
|
|
8992
|
+
"fieldName": "onKeyDown"
|
|
8993
|
+
}
|
|
8994
|
+
],
|
|
8995
|
+
"superclass": {
|
|
8996
|
+
"name": "LitElement",
|
|
8997
|
+
"package": "lit"
|
|
8998
|
+
},
|
|
8999
|
+
"tagName": "bm-radio-button",
|
|
9000
|
+
"customElement": true
|
|
9001
|
+
}
|
|
9002
|
+
],
|
|
9003
|
+
"exports": [
|
|
9004
|
+
{
|
|
9005
|
+
"kind": "js",
|
|
9006
|
+
"name": "BmRadioButton",
|
|
9007
|
+
"declaration": {
|
|
9008
|
+
"name": "BmRadioButton",
|
|
9009
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
9010
|
+
}
|
|
9011
|
+
},
|
|
9012
|
+
{
|
|
9013
|
+
"kind": "custom-element-definition",
|
|
9014
|
+
"name": "bm-radio-button",
|
|
9015
|
+
"declaration": {
|
|
9016
|
+
"name": "BmRadioButton",
|
|
9017
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
9018
|
+
}
|
|
9019
|
+
}
|
|
9020
|
+
]
|
|
9021
|
+
},
|
|
9022
|
+
{
|
|
9023
|
+
"kind": "javascript-module",
|
|
9024
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
9025
|
+
"declarations": [],
|
|
9026
|
+
"exports": [
|
|
9027
|
+
{
|
|
9028
|
+
"kind": "js",
|
|
9029
|
+
"name": "*",
|
|
9030
|
+
"declaration": {
|
|
9031
|
+
"name": "*",
|
|
9032
|
+
"package": "./RadioButton"
|
|
9033
|
+
}
|
|
9034
|
+
},
|
|
9035
|
+
{
|
|
9036
|
+
"kind": "js",
|
|
9037
|
+
"name": "*",
|
|
9038
|
+
"declaration": {
|
|
9039
|
+
"name": "*",
|
|
9040
|
+
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
9041
|
+
}
|
|
9042
|
+
}
|
|
9043
|
+
]
|
|
9044
|
+
},
|
|
9045
|
+
{
|
|
9046
|
+
"kind": "javascript-module",
|
|
9047
|
+
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
9048
|
+
"declarations": [
|
|
9049
|
+
{
|
|
9050
|
+
"kind": "class",
|
|
9051
|
+
"description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
|
|
9052
|
+
"name": "BmSwitch",
|
|
9053
|
+
"slots": [
|
|
9054
|
+
{
|
|
9055
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
9056
|
+
"name": "onText"
|
|
9057
|
+
},
|
|
9058
|
+
{
|
|
9059
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
9060
|
+
"name": "offText"
|
|
9061
|
+
}
|
|
9062
|
+
],
|
|
9063
|
+
"members": [
|
|
9064
|
+
{
|
|
9065
|
+
"kind": "field",
|
|
9066
|
+
"name": "inputChoiceGroupContext",
|
|
9067
|
+
"type": {
|
|
9068
|
+
"text": "InputChoiceGroupContextProps"
|
|
9069
|
+
}
|
|
9070
|
+
},
|
|
9071
|
+
{
|
|
9072
|
+
"kind": "field",
|
|
9073
|
+
"name": "onText",
|
|
9074
|
+
"type": {
|
|
9075
|
+
"text": "string | undefined"
|
|
9076
|
+
},
|
|
9077
|
+
"default": "undefined",
|
|
9078
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
9079
|
+
"attribute": "onText"
|
|
9080
|
+
},
|
|
9081
|
+
{
|
|
9082
|
+
"kind": "field",
|
|
9083
|
+
"name": "offText",
|
|
9084
|
+
"type": {
|
|
9085
|
+
"text": "string | undefined"
|
|
9086
|
+
},
|
|
9087
|
+
"default": "undefined",
|
|
9088
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
9089
|
+
"attribute": "offText"
|
|
9090
|
+
},
|
|
9091
|
+
{
|
|
9092
|
+
"kind": "field",
|
|
9093
|
+
"name": "theme",
|
|
9094
|
+
"type": {
|
|
9095
|
+
"text": "ThemeTypes | undefined"
|
|
9096
|
+
},
|
|
9097
|
+
"default": "undefined",
|
|
9098
|
+
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
9099
|
+
},
|
|
9100
|
+
{
|
|
9101
|
+
"kind": "field",
|
|
9102
|
+
"name": "textPosition",
|
|
9103
|
+
"type": {
|
|
9104
|
+
"text": "'before' | 'after'"
|
|
9105
|
+
},
|
|
9106
|
+
"default": "'after'",
|
|
9107
|
+
"description": "Specify the position of the side label",
|
|
9108
|
+
"attribute": "textPosition"
|
|
9109
|
+
},
|
|
9110
|
+
{
|
|
9111
|
+
"kind": "field",
|
|
9112
|
+
"name": "readOnly",
|
|
9113
|
+
"type": {
|
|
9114
|
+
"text": "boolean"
|
|
9115
|
+
},
|
|
9116
|
+
"default": "false",
|
|
9117
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
9118
|
+
"attribute": "readOnly"
|
|
9119
|
+
},
|
|
9120
|
+
{
|
|
9121
|
+
"kind": "field",
|
|
9122
|
+
"name": "disabled",
|
|
9123
|
+
"type": {
|
|
9124
|
+
"text": "boolean"
|
|
9125
|
+
},
|
|
9126
|
+
"default": "false",
|
|
9127
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
9128
|
+
"attribute": "disabled"
|
|
9129
|
+
},
|
|
9130
|
+
{
|
|
9131
|
+
"kind": "field",
|
|
9132
|
+
"name": "checked",
|
|
9133
|
+
"type": {
|
|
9134
|
+
"text": "boolean"
|
|
9135
|
+
},
|
|
9136
|
+
"default": "false",
|
|
9137
|
+
"attribute": "checked"
|
|
9138
|
+
},
|
|
9139
|
+
{
|
|
9140
|
+
"kind": "field",
|
|
9141
|
+
"name": "value",
|
|
9142
|
+
"type": {
|
|
9143
|
+
"text": "string | undefined"
|
|
9144
|
+
},
|
|
9145
|
+
"description": "The value attribute for the input element",
|
|
9146
|
+
"attribute": "value"
|
|
9147
|
+
},
|
|
9148
|
+
{
|
|
9149
|
+
"kind": "field",
|
|
9150
|
+
"name": "switchRef"
|
|
9151
|
+
}
|
|
9152
|
+
],
|
|
9153
|
+
"attributes": [
|
|
9154
|
+
{
|
|
9155
|
+
"name": "onText",
|
|
9156
|
+
"type": {
|
|
9157
|
+
"text": "string | undefined"
|
|
9158
|
+
},
|
|
9159
|
+
"default": "undefined",
|
|
9160
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
9161
|
+
"fieldName": "onText"
|
|
9162
|
+
},
|
|
9163
|
+
{
|
|
9164
|
+
"name": "offText",
|
|
9165
|
+
"type": {
|
|
9166
|
+
"text": "string | undefined"
|
|
9167
|
+
},
|
|
9168
|
+
"default": "undefined",
|
|
9169
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
9170
|
+
"fieldName": "offText"
|
|
9171
|
+
},
|
|
9172
|
+
{
|
|
9173
|
+
"name": "textPosition",
|
|
9174
|
+
"type": {
|
|
9175
|
+
"text": "'before' | 'after'"
|
|
9176
|
+
},
|
|
9177
|
+
"default": "'after'",
|
|
9178
|
+
"description": "Specify the position of the side label",
|
|
9179
|
+
"fieldName": "textPosition"
|
|
9180
|
+
},
|
|
9181
|
+
{
|
|
9182
|
+
"name": "readOnly",
|
|
9183
|
+
"type": {
|
|
9184
|
+
"text": "boolean"
|
|
9185
|
+
},
|
|
9186
|
+
"default": "false",
|
|
9187
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
9188
|
+
"fieldName": "readOnly"
|
|
9189
|
+
},
|
|
9190
|
+
{
|
|
9191
|
+
"name": "disabled",
|
|
9192
|
+
"type": {
|
|
9193
|
+
"text": "boolean"
|
|
9194
|
+
},
|
|
9195
|
+
"default": "false",
|
|
9196
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
9197
|
+
"fieldName": "disabled"
|
|
8976
9198
|
},
|
|
8977
9199
|
{
|
|
8978
9200
|
"name": "checked",
|
|
@@ -8980,48 +9202,47 @@
|
|
|
8980
9202
|
"text": "boolean"
|
|
8981
9203
|
},
|
|
8982
9204
|
"default": "false",
|
|
8983
|
-
"description": "The checked attribute for the input element",
|
|
8984
9205
|
"fieldName": "checked"
|
|
8985
9206
|
},
|
|
8986
9207
|
{
|
|
8987
|
-
"name": "
|
|
9208
|
+
"name": "value",
|
|
8988
9209
|
"type": {
|
|
8989
|
-
"text": "
|
|
9210
|
+
"text": "string | undefined"
|
|
8990
9211
|
},
|
|
8991
|
-
"description": "
|
|
8992
|
-
"fieldName": "
|
|
9212
|
+
"description": "The value attribute for the input element",
|
|
9213
|
+
"fieldName": "value"
|
|
8993
9214
|
}
|
|
8994
9215
|
],
|
|
8995
9216
|
"superclass": {
|
|
8996
9217
|
"name": "LitElement",
|
|
8997
9218
|
"package": "lit"
|
|
8998
9219
|
},
|
|
8999
|
-
"tagName": "bm-
|
|
9220
|
+
"tagName": "bm-switch",
|
|
9000
9221
|
"customElement": true
|
|
9001
9222
|
}
|
|
9002
9223
|
],
|
|
9003
9224
|
"exports": [
|
|
9004
9225
|
{
|
|
9005
9226
|
"kind": "js",
|
|
9006
|
-
"name": "
|
|
9227
|
+
"name": "BmSwitch",
|
|
9007
9228
|
"declaration": {
|
|
9008
|
-
"name": "
|
|
9009
|
-
"module": "libs/web-components/src/lib/wip/
|
|
9229
|
+
"name": "BmSwitch",
|
|
9230
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
9010
9231
|
}
|
|
9011
9232
|
},
|
|
9012
9233
|
{
|
|
9013
9234
|
"kind": "custom-element-definition",
|
|
9014
|
-
"name": "bm-
|
|
9235
|
+
"name": "bm-switch",
|
|
9015
9236
|
"declaration": {
|
|
9016
|
-
"name": "
|
|
9017
|
-
"module": "libs/web-components/src/lib/wip/
|
|
9237
|
+
"name": "BmSwitch",
|
|
9238
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
9018
9239
|
}
|
|
9019
9240
|
}
|
|
9020
9241
|
]
|
|
9021
9242
|
},
|
|
9022
9243
|
{
|
|
9023
9244
|
"kind": "javascript-module",
|
|
9024
|
-
"path": "libs/web-components/src/lib/wip/
|
|
9245
|
+
"path": "libs/web-components/src/lib/wip/Switch/index.ts",
|
|
9025
9246
|
"declarations": [],
|
|
9026
9247
|
"exports": [
|
|
9027
9248
|
{
|
|
@@ -9029,7 +9250,7 @@
|
|
|
9029
9250
|
"name": "*",
|
|
9030
9251
|
"declaration": {
|
|
9031
9252
|
"name": "*",
|
|
9032
|
-
"package": "./
|
|
9253
|
+
"package": "./Switch"
|
|
9033
9254
|
}
|
|
9034
9255
|
},
|
|
9035
9256
|
{
|
|
@@ -9037,7 +9258,7 @@
|
|
|
9037
9258
|
"name": "*",
|
|
9038
9259
|
"declaration": {
|
|
9039
9260
|
"name": "*",
|
|
9040
|
-
"package": "./
|
|
9261
|
+
"package": "./SwitchGroup/SwitchGroup"
|
|
9041
9262
|
}
|
|
9042
9263
|
}
|
|
9043
9264
|
]
|
|
@@ -9557,227 +9778,6 @@
|
|
|
9557
9778
|
}
|
|
9558
9779
|
]
|
|
9559
9780
|
},
|
|
9560
|
-
{
|
|
9561
|
-
"kind": "javascript-module",
|
|
9562
|
-
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
9563
|
-
"declarations": [
|
|
9564
|
-
{
|
|
9565
|
-
"kind": "class",
|
|
9566
|
-
"description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
|
|
9567
|
-
"name": "BmSwitch",
|
|
9568
|
-
"slots": [
|
|
9569
|
-
{
|
|
9570
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
9571
|
-
"name": "onText"
|
|
9572
|
-
},
|
|
9573
|
-
{
|
|
9574
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
9575
|
-
"name": "offText"
|
|
9576
|
-
}
|
|
9577
|
-
],
|
|
9578
|
-
"members": [
|
|
9579
|
-
{
|
|
9580
|
-
"kind": "field",
|
|
9581
|
-
"name": "inputChoiceGroupContext",
|
|
9582
|
-
"type": {
|
|
9583
|
-
"text": "InputChoiceGroupContextProps"
|
|
9584
|
-
}
|
|
9585
|
-
},
|
|
9586
|
-
{
|
|
9587
|
-
"kind": "field",
|
|
9588
|
-
"name": "onText",
|
|
9589
|
-
"type": {
|
|
9590
|
-
"text": "string | undefined"
|
|
9591
|
-
},
|
|
9592
|
-
"default": "undefined",
|
|
9593
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
9594
|
-
"attribute": "onText"
|
|
9595
|
-
},
|
|
9596
|
-
{
|
|
9597
|
-
"kind": "field",
|
|
9598
|
-
"name": "offText",
|
|
9599
|
-
"type": {
|
|
9600
|
-
"text": "string | undefined"
|
|
9601
|
-
},
|
|
9602
|
-
"default": "undefined",
|
|
9603
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
9604
|
-
"attribute": "offText"
|
|
9605
|
-
},
|
|
9606
|
-
{
|
|
9607
|
-
"kind": "field",
|
|
9608
|
-
"name": "theme",
|
|
9609
|
-
"type": {
|
|
9610
|
-
"text": "ThemeTypes | undefined"
|
|
9611
|
-
},
|
|
9612
|
-
"default": "undefined",
|
|
9613
|
-
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
9614
|
-
},
|
|
9615
|
-
{
|
|
9616
|
-
"kind": "field",
|
|
9617
|
-
"name": "textPosition",
|
|
9618
|
-
"type": {
|
|
9619
|
-
"text": "'before' | 'after'"
|
|
9620
|
-
},
|
|
9621
|
-
"default": "'after'",
|
|
9622
|
-
"description": "Specify the position of the side label",
|
|
9623
|
-
"attribute": "textPosition"
|
|
9624
|
-
},
|
|
9625
|
-
{
|
|
9626
|
-
"kind": "field",
|
|
9627
|
-
"name": "readOnly",
|
|
9628
|
-
"type": {
|
|
9629
|
-
"text": "boolean"
|
|
9630
|
-
},
|
|
9631
|
-
"default": "false",
|
|
9632
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
9633
|
-
"attribute": "readOnly"
|
|
9634
|
-
},
|
|
9635
|
-
{
|
|
9636
|
-
"kind": "field",
|
|
9637
|
-
"name": "disabled",
|
|
9638
|
-
"type": {
|
|
9639
|
-
"text": "boolean"
|
|
9640
|
-
},
|
|
9641
|
-
"default": "false",
|
|
9642
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
9643
|
-
"attribute": "disabled"
|
|
9644
|
-
},
|
|
9645
|
-
{
|
|
9646
|
-
"kind": "field",
|
|
9647
|
-
"name": "checked",
|
|
9648
|
-
"type": {
|
|
9649
|
-
"text": "boolean"
|
|
9650
|
-
},
|
|
9651
|
-
"default": "false",
|
|
9652
|
-
"attribute": "checked"
|
|
9653
|
-
},
|
|
9654
|
-
{
|
|
9655
|
-
"kind": "field",
|
|
9656
|
-
"name": "value",
|
|
9657
|
-
"type": {
|
|
9658
|
-
"text": "string | undefined"
|
|
9659
|
-
},
|
|
9660
|
-
"description": "The value attribute for the input element",
|
|
9661
|
-
"attribute": "value"
|
|
9662
|
-
},
|
|
9663
|
-
{
|
|
9664
|
-
"kind": "field",
|
|
9665
|
-
"name": "switchRef"
|
|
9666
|
-
}
|
|
9667
|
-
],
|
|
9668
|
-
"attributes": [
|
|
9669
|
-
{
|
|
9670
|
-
"name": "onText",
|
|
9671
|
-
"type": {
|
|
9672
|
-
"text": "string | undefined"
|
|
9673
|
-
},
|
|
9674
|
-
"default": "undefined",
|
|
9675
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
9676
|
-
"fieldName": "onText"
|
|
9677
|
-
},
|
|
9678
|
-
{
|
|
9679
|
-
"name": "offText",
|
|
9680
|
-
"type": {
|
|
9681
|
-
"text": "string | undefined"
|
|
9682
|
-
},
|
|
9683
|
-
"default": "undefined",
|
|
9684
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
9685
|
-
"fieldName": "offText"
|
|
9686
|
-
},
|
|
9687
|
-
{
|
|
9688
|
-
"name": "textPosition",
|
|
9689
|
-
"type": {
|
|
9690
|
-
"text": "'before' | 'after'"
|
|
9691
|
-
},
|
|
9692
|
-
"default": "'after'",
|
|
9693
|
-
"description": "Specify the position of the side label",
|
|
9694
|
-
"fieldName": "textPosition"
|
|
9695
|
-
},
|
|
9696
|
-
{
|
|
9697
|
-
"name": "readOnly",
|
|
9698
|
-
"type": {
|
|
9699
|
-
"text": "boolean"
|
|
9700
|
-
},
|
|
9701
|
-
"default": "false",
|
|
9702
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
9703
|
-
"fieldName": "readOnly"
|
|
9704
|
-
},
|
|
9705
|
-
{
|
|
9706
|
-
"name": "disabled",
|
|
9707
|
-
"type": {
|
|
9708
|
-
"text": "boolean"
|
|
9709
|
-
},
|
|
9710
|
-
"default": "false",
|
|
9711
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
9712
|
-
"fieldName": "disabled"
|
|
9713
|
-
},
|
|
9714
|
-
{
|
|
9715
|
-
"name": "checked",
|
|
9716
|
-
"type": {
|
|
9717
|
-
"text": "boolean"
|
|
9718
|
-
},
|
|
9719
|
-
"default": "false",
|
|
9720
|
-
"fieldName": "checked"
|
|
9721
|
-
},
|
|
9722
|
-
{
|
|
9723
|
-
"name": "value",
|
|
9724
|
-
"type": {
|
|
9725
|
-
"text": "string | undefined"
|
|
9726
|
-
},
|
|
9727
|
-
"description": "The value attribute for the input element",
|
|
9728
|
-
"fieldName": "value"
|
|
9729
|
-
}
|
|
9730
|
-
],
|
|
9731
|
-
"superclass": {
|
|
9732
|
-
"name": "LitElement",
|
|
9733
|
-
"package": "lit"
|
|
9734
|
-
},
|
|
9735
|
-
"tagName": "bm-switch",
|
|
9736
|
-
"customElement": true
|
|
9737
|
-
}
|
|
9738
|
-
],
|
|
9739
|
-
"exports": [
|
|
9740
|
-
{
|
|
9741
|
-
"kind": "js",
|
|
9742
|
-
"name": "BmSwitch",
|
|
9743
|
-
"declaration": {
|
|
9744
|
-
"name": "BmSwitch",
|
|
9745
|
-
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
9746
|
-
}
|
|
9747
|
-
},
|
|
9748
|
-
{
|
|
9749
|
-
"kind": "custom-element-definition",
|
|
9750
|
-
"name": "bm-switch",
|
|
9751
|
-
"declaration": {
|
|
9752
|
-
"name": "BmSwitch",
|
|
9753
|
-
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
9754
|
-
}
|
|
9755
|
-
}
|
|
9756
|
-
]
|
|
9757
|
-
},
|
|
9758
|
-
{
|
|
9759
|
-
"kind": "javascript-module",
|
|
9760
|
-
"path": "libs/web-components/src/lib/wip/Switch/index.ts",
|
|
9761
|
-
"declarations": [],
|
|
9762
|
-
"exports": [
|
|
9763
|
-
{
|
|
9764
|
-
"kind": "js",
|
|
9765
|
-
"name": "*",
|
|
9766
|
-
"declaration": {
|
|
9767
|
-
"name": "*",
|
|
9768
|
-
"package": "./Switch"
|
|
9769
|
-
}
|
|
9770
|
-
},
|
|
9771
|
-
{
|
|
9772
|
-
"kind": "js",
|
|
9773
|
-
"name": "*",
|
|
9774
|
-
"declaration": {
|
|
9775
|
-
"name": "*",
|
|
9776
|
-
"package": "./SwitchGroup/SwitchGroup"
|
|
9777
|
-
}
|
|
9778
|
-
}
|
|
9779
|
-
]
|
|
9780
|
-
},
|
|
9781
9781
|
{
|
|
9782
9782
|
"kind": "javascript-module",
|
|
9783
9783
|
"path": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts",
|