@viasat/beam-web-components 2.60.0 → 2.62.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.
- package/custom-elements.json +639 -639
- package/package.json +6 -6
- package/vscode.html-custom-data.json +159 -159
package/custom-elements.json
CHANGED
|
@@ -292,6 +292,287 @@
|
|
|
292
292
|
}
|
|
293
293
|
]
|
|
294
294
|
},
|
|
295
|
+
{
|
|
296
|
+
"kind": "javascript-module",
|
|
297
|
+
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
298
|
+
"declarations": [
|
|
299
|
+
{
|
|
300
|
+
"kind": "class",
|
|
301
|
+
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
|
|
302
|
+
"name": "BmAlert",
|
|
303
|
+
"slots": [
|
|
304
|
+
{
|
|
305
|
+
"description": "Specify a different icon for the Alert",
|
|
306
|
+
"name": "icon"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
310
|
+
"name": "heading"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
314
|
+
"name": "body"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"description": "Specify if actions display on the Alert",
|
|
318
|
+
"name": "actions"
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"members": [
|
|
322
|
+
{
|
|
323
|
+
"kind": "field",
|
|
324
|
+
"name": "heading",
|
|
325
|
+
"type": {
|
|
326
|
+
"text": "string | undefined"
|
|
327
|
+
},
|
|
328
|
+
"description": "Specify the heading text for Alert",
|
|
329
|
+
"attribute": "heading"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"kind": "field",
|
|
333
|
+
"name": "body",
|
|
334
|
+
"type": {
|
|
335
|
+
"text": "string | undefined"
|
|
336
|
+
},
|
|
337
|
+
"description": "Specify the body text for Alert",
|
|
338
|
+
"attribute": "body"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"kind": "field",
|
|
342
|
+
"name": "size",
|
|
343
|
+
"type": {
|
|
344
|
+
"text": "'sm' | 'md'"
|
|
345
|
+
},
|
|
346
|
+
"default": "'sm'",
|
|
347
|
+
"description": "Specify the size of the Alert",
|
|
348
|
+
"attribute": "size"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"kind": "field",
|
|
352
|
+
"name": "fullWidth",
|
|
353
|
+
"type": {
|
|
354
|
+
"text": "boolean"
|
|
355
|
+
},
|
|
356
|
+
"default": "false",
|
|
357
|
+
"description": "Specify if the Alert has no border radius",
|
|
358
|
+
"attribute": "fullWidth"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"kind": "field",
|
|
362
|
+
"name": "theme",
|
|
363
|
+
"type": {
|
|
364
|
+
"text": "'light' | 'dark' | undefined"
|
|
365
|
+
},
|
|
366
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
367
|
+
"attribute": "theme"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"kind": "field",
|
|
371
|
+
"name": "appearance",
|
|
372
|
+
"type": {
|
|
373
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
374
|
+
},
|
|
375
|
+
"default": "'infoPrimary'",
|
|
376
|
+
"description": "Specify the appearance of the Alert",
|
|
377
|
+
"attribute": "appearance"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"kind": "field",
|
|
381
|
+
"name": "hidden",
|
|
382
|
+
"type": {
|
|
383
|
+
"text": "boolean"
|
|
384
|
+
},
|
|
385
|
+
"default": "false",
|
|
386
|
+
"description": "Specify if the Alert is hidden",
|
|
387
|
+
"attribute": "hidden"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"kind": "field",
|
|
391
|
+
"name": "hideIcon",
|
|
392
|
+
"type": {
|
|
393
|
+
"text": "boolean"
|
|
394
|
+
},
|
|
395
|
+
"default": "false",
|
|
396
|
+
"description": "Specify if the icon displays on the Alert",
|
|
397
|
+
"attribute": "hideIcon"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"kind": "field",
|
|
401
|
+
"name": "dismissible",
|
|
402
|
+
"type": {
|
|
403
|
+
"text": "boolean"
|
|
404
|
+
},
|
|
405
|
+
"default": "false",
|
|
406
|
+
"description": "Specify if the Alert can be dismissed",
|
|
407
|
+
"attribute": "dismissible"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"kind": "field",
|
|
411
|
+
"name": "disableAutoFocus",
|
|
412
|
+
"type": {
|
|
413
|
+
"text": "boolean"
|
|
414
|
+
},
|
|
415
|
+
"default": "false",
|
|
416
|
+
"description": "Prevent autofocus on show",
|
|
417
|
+
"attribute": "disableAutoFocus"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"kind": "field",
|
|
421
|
+
"name": "disableCloseOnEscape",
|
|
422
|
+
"type": {
|
|
423
|
+
"text": "boolean"
|
|
424
|
+
},
|
|
425
|
+
"default": "false",
|
|
426
|
+
"description": "Prevent Escape from closing",
|
|
427
|
+
"attribute": "disableCloseOnEscape"
|
|
428
|
+
}
|
|
429
|
+
],
|
|
430
|
+
"events": [
|
|
431
|
+
{
|
|
432
|
+
"description": "Dispatched when the Alert has been dismissed",
|
|
433
|
+
"name": "bm-dismiss"
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
"attributes": [
|
|
437
|
+
{
|
|
438
|
+
"name": "heading",
|
|
439
|
+
"type": {
|
|
440
|
+
"text": "string | undefined"
|
|
441
|
+
},
|
|
442
|
+
"description": "Specify the heading text for Alert",
|
|
443
|
+
"fieldName": "heading"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "body",
|
|
447
|
+
"type": {
|
|
448
|
+
"text": "string | undefined"
|
|
449
|
+
},
|
|
450
|
+
"description": "Specify the body text for Alert",
|
|
451
|
+
"fieldName": "body"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"name": "size",
|
|
455
|
+
"type": {
|
|
456
|
+
"text": "'sm' | 'md'"
|
|
457
|
+
},
|
|
458
|
+
"default": "'sm'",
|
|
459
|
+
"description": "Specify the size of the Alert",
|
|
460
|
+
"fieldName": "size"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"name": "fullWidth",
|
|
464
|
+
"type": {
|
|
465
|
+
"text": "boolean"
|
|
466
|
+
},
|
|
467
|
+
"default": "false",
|
|
468
|
+
"description": "Specify if the Alert has no border radius",
|
|
469
|
+
"fieldName": "fullWidth"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"name": "theme",
|
|
473
|
+
"type": {
|
|
474
|
+
"text": "'light' | 'dark' | undefined"
|
|
475
|
+
},
|
|
476
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
477
|
+
"fieldName": "theme"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"name": "appearance",
|
|
481
|
+
"type": {
|
|
482
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
483
|
+
},
|
|
484
|
+
"default": "'infoPrimary'",
|
|
485
|
+
"description": "Specify the appearance of the Alert",
|
|
486
|
+
"fieldName": "appearance"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "hidden",
|
|
490
|
+
"type": {
|
|
491
|
+
"text": "boolean"
|
|
492
|
+
},
|
|
493
|
+
"default": "false",
|
|
494
|
+
"description": "Specify if the Alert is hidden",
|
|
495
|
+
"fieldName": "hidden"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "hideIcon",
|
|
499
|
+
"type": {
|
|
500
|
+
"text": "boolean"
|
|
501
|
+
},
|
|
502
|
+
"default": "false",
|
|
503
|
+
"description": "Specify if the icon displays on the Alert",
|
|
504
|
+
"fieldName": "hideIcon"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "dismissible",
|
|
508
|
+
"type": {
|
|
509
|
+
"text": "boolean"
|
|
510
|
+
},
|
|
511
|
+
"default": "false",
|
|
512
|
+
"description": "Specify if the Alert can be dismissed",
|
|
513
|
+
"fieldName": "dismissible"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "disableAutoFocus",
|
|
517
|
+
"type": {
|
|
518
|
+
"text": "boolean"
|
|
519
|
+
},
|
|
520
|
+
"default": "false",
|
|
521
|
+
"description": "Prevent autofocus on show",
|
|
522
|
+
"fieldName": "disableAutoFocus"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "disableCloseOnEscape",
|
|
526
|
+
"type": {
|
|
527
|
+
"text": "boolean"
|
|
528
|
+
},
|
|
529
|
+
"default": "false",
|
|
530
|
+
"description": "Prevent Escape from closing",
|
|
531
|
+
"fieldName": "disableCloseOnEscape"
|
|
532
|
+
}
|
|
533
|
+
],
|
|
534
|
+
"superclass": {
|
|
535
|
+
"name": "LitElement",
|
|
536
|
+
"package": "lit"
|
|
537
|
+
},
|
|
538
|
+
"tagName": "bm-alert",
|
|
539
|
+
"customElement": true
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"exports": [
|
|
543
|
+
{
|
|
544
|
+
"kind": "js",
|
|
545
|
+
"name": "BmAlert",
|
|
546
|
+
"declaration": {
|
|
547
|
+
"name": "BmAlert",
|
|
548
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"kind": "custom-element-definition",
|
|
553
|
+
"name": "bm-alert",
|
|
554
|
+
"declaration": {
|
|
555
|
+
"name": "BmAlert",
|
|
556
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
]
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"kind": "javascript-module",
|
|
563
|
+
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
564
|
+
"declarations": [],
|
|
565
|
+
"exports": [
|
|
566
|
+
{
|
|
567
|
+
"kind": "js",
|
|
568
|
+
"name": "*",
|
|
569
|
+
"declaration": {
|
|
570
|
+
"name": "*",
|
|
571
|
+
"package": "./Alert"
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
]
|
|
575
|
+
},
|
|
295
576
|
{
|
|
296
577
|
"kind": "javascript-module",
|
|
297
578
|
"path": "libs/web-components/src/lib/Avatar/Avatar.ts",
|
|
@@ -686,147 +967,124 @@
|
|
|
686
967
|
},
|
|
687
968
|
{
|
|
688
969
|
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/
|
|
970
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
690
971
|
"declarations": [
|
|
691
972
|
{
|
|
692
973
|
"kind": "class",
|
|
693
|
-
"description": "`bm-badge`\n\n### Attributes:\n- **
|
|
694
|
-
"name": "
|
|
974
|
+
"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",
|
|
975
|
+
"name": "BmBadgeDot",
|
|
695
976
|
"slots": [
|
|
696
977
|
{
|
|
697
|
-
"description": "Provide text for the
|
|
978
|
+
"description": "Provide text for the BadgeDot",
|
|
698
979
|
"name": "default"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"description": "Specify a different icon for the Badge",
|
|
702
|
-
"name": "icon"
|
|
703
980
|
}
|
|
704
981
|
],
|
|
705
982
|
"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
983
|
{
|
|
717
984
|
"kind": "field",
|
|
718
985
|
"name": "theme",
|
|
719
986
|
"type": {
|
|
720
987
|
"text": "'light' | 'dark' | undefined"
|
|
721
988
|
},
|
|
722
|
-
"description": "
|
|
989
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
723
990
|
"attribute": "theme"
|
|
724
991
|
},
|
|
725
992
|
{
|
|
726
993
|
"kind": "field",
|
|
727
|
-
"name": "
|
|
994
|
+
"name": "appearance",
|
|
728
995
|
"type": {
|
|
729
|
-
"text": "'
|
|
996
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
730
997
|
},
|
|
731
|
-
"default": "'
|
|
732
|
-
"description": "Specify the
|
|
733
|
-
"attribute": "
|
|
998
|
+
"default": "'infoPrimary'",
|
|
999
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1000
|
+
"attribute": "appearance"
|
|
734
1001
|
},
|
|
735
1002
|
{
|
|
736
1003
|
"kind": "field",
|
|
737
1004
|
"name": "emphasis",
|
|
738
1005
|
"type": {
|
|
739
|
-
"text": "'strong' | '
|
|
1006
|
+
"text": "'strong' | 'subtle'"
|
|
740
1007
|
},
|
|
741
1008
|
"default": "'strong'",
|
|
742
|
-
"description": "Specify the emphasis of the
|
|
1009
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
743
1010
|
"attribute": "emphasis"
|
|
744
1011
|
},
|
|
745
1012
|
{
|
|
746
1013
|
"kind": "field",
|
|
747
|
-
"name": "
|
|
1014
|
+
"name": "overrideDotColor",
|
|
748
1015
|
"type": {
|
|
749
|
-
"text": "
|
|
1016
|
+
"text": "string | undefined"
|
|
750
1017
|
},
|
|
751
|
-
"description": "
|
|
752
|
-
"attribute": "
|
|
1018
|
+
"description": "Overrides default dot color",
|
|
1019
|
+
"attribute": "overrideDotColor"
|
|
753
1020
|
}
|
|
754
1021
|
],
|
|
755
1022
|
"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
1023
|
{
|
|
766
1024
|
"name": "theme",
|
|
767
1025
|
"type": {
|
|
768
1026
|
"text": "'light' | 'dark' | undefined"
|
|
769
1027
|
},
|
|
770
|
-
"description": "
|
|
1028
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
771
1029
|
"fieldName": "theme"
|
|
772
1030
|
},
|
|
773
1031
|
{
|
|
774
|
-
"name": "
|
|
1032
|
+
"name": "appearance",
|
|
775
1033
|
"type": {
|
|
776
|
-
"text": "'
|
|
1034
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
777
1035
|
},
|
|
778
|
-
"default": "'
|
|
779
|
-
"description": "Specify the
|
|
780
|
-
"fieldName": "
|
|
1036
|
+
"default": "'infoPrimary'",
|
|
1037
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1038
|
+
"fieldName": "appearance"
|
|
781
1039
|
},
|
|
782
1040
|
{
|
|
783
1041
|
"name": "emphasis",
|
|
784
1042
|
"type": {
|
|
785
|
-
"text": "'strong' | '
|
|
1043
|
+
"text": "'strong' | 'subtle'"
|
|
786
1044
|
},
|
|
787
1045
|
"default": "'strong'",
|
|
788
|
-
"description": "Specify the emphasis of the
|
|
1046
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
789
1047
|
"fieldName": "emphasis"
|
|
790
1048
|
},
|
|
791
1049
|
{
|
|
792
|
-
"name": "
|
|
1050
|
+
"name": "overrideDotColor",
|
|
793
1051
|
"type": {
|
|
794
|
-
"text": "
|
|
1052
|
+
"text": "string | undefined"
|
|
795
1053
|
},
|
|
796
|
-
"description": "
|
|
797
|
-
"fieldName": "
|
|
1054
|
+
"description": "Overrides default dot color",
|
|
1055
|
+
"fieldName": "overrideDotColor"
|
|
798
1056
|
}
|
|
799
1057
|
],
|
|
800
1058
|
"superclass": {
|
|
801
1059
|
"name": "LitElement",
|
|
802
1060
|
"package": "lit"
|
|
803
1061
|
},
|
|
804
|
-
"tagName": "bm-badge",
|
|
1062
|
+
"tagName": "bm-badge-dot",
|
|
805
1063
|
"customElement": true
|
|
806
1064
|
}
|
|
807
1065
|
],
|
|
808
1066
|
"exports": [
|
|
809
1067
|
{
|
|
810
1068
|
"kind": "js",
|
|
811
|
-
"name": "
|
|
1069
|
+
"name": "BmBadgeDot",
|
|
812
1070
|
"declaration": {
|
|
813
|
-
"name": "
|
|
814
|
-
"module": "libs/web-components/src/lib/
|
|
1071
|
+
"name": "BmBadgeDot",
|
|
1072
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
815
1073
|
}
|
|
816
1074
|
},
|
|
817
1075
|
{
|
|
818
1076
|
"kind": "custom-element-definition",
|
|
819
|
-
"name": "bm-badge",
|
|
1077
|
+
"name": "bm-badge-dot",
|
|
820
1078
|
"declaration": {
|
|
821
|
-
"name": "
|
|
822
|
-
"module": "libs/web-components/src/lib/
|
|
1079
|
+
"name": "BmBadgeDot",
|
|
1080
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
823
1081
|
}
|
|
824
1082
|
}
|
|
825
1083
|
]
|
|
826
1084
|
},
|
|
827
1085
|
{
|
|
828
1086
|
"kind": "javascript-module",
|
|
829
|
-
"path": "libs/web-components/src/lib/
|
|
1087
|
+
"path": "libs/web-components/src/lib/BadgeDot/index.ts",
|
|
830
1088
|
"declarations": [],
|
|
831
1089
|
"exports": [
|
|
832
1090
|
{
|
|
@@ -834,280 +1092,154 @@
|
|
|
834
1092
|
"name": "*",
|
|
835
1093
|
"declaration": {
|
|
836
1094
|
"name": "*",
|
|
837
|
-
"package": "./
|
|
1095
|
+
"package": "./BadgeDot"
|
|
838
1096
|
}
|
|
839
1097
|
}
|
|
840
1098
|
]
|
|
841
1099
|
},
|
|
842
1100
|
{
|
|
843
1101
|
"kind": "javascript-module",
|
|
844
|
-
"path": "libs/web-components/src/lib/
|
|
1102
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
845
1103
|
"declarations": [
|
|
846
1104
|
{
|
|
847
1105
|
"kind": "class",
|
|
848
|
-
"description": "`bm-
|
|
849
|
-
"name": "
|
|
1106
|
+
"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",
|
|
1107
|
+
"name": "BmBadge",
|
|
850
1108
|
"slots": [
|
|
851
1109
|
{
|
|
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"
|
|
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",
|
|
910
|
-
"type": {
|
|
911
|
-
"text": "'light' | 'dark' | undefined"
|
|
912
|
-
},
|
|
913
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
914
|
-
"attribute": "theme"
|
|
915
|
-
},
|
|
916
|
-
{
|
|
917
|
-
"kind": "field",
|
|
918
|
-
"name": "appearance",
|
|
919
|
-
"type": {
|
|
920
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
921
|
-
},
|
|
922
|
-
"default": "'infoPrimary'",
|
|
923
|
-
"description": "Specify the appearance of the Alert",
|
|
924
|
-
"attribute": "appearance"
|
|
925
|
-
},
|
|
926
|
-
{
|
|
927
|
-
"kind": "field",
|
|
928
|
-
"name": "hidden",
|
|
929
|
-
"type": {
|
|
930
|
-
"text": "boolean"
|
|
931
|
-
},
|
|
932
|
-
"default": "false",
|
|
933
|
-
"description": "Specify if the Alert is hidden",
|
|
934
|
-
"attribute": "hidden"
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
"kind": "field",
|
|
938
|
-
"name": "hideIcon",
|
|
939
|
-
"type": {
|
|
940
|
-
"text": "boolean"
|
|
941
|
-
},
|
|
942
|
-
"default": "false",
|
|
943
|
-
"description": "Specify if the icon displays on the Alert",
|
|
944
|
-
"attribute": "hideIcon"
|
|
945
|
-
},
|
|
946
|
-
{
|
|
947
|
-
"kind": "field",
|
|
948
|
-
"name": "dismissible",
|
|
949
|
-
"type": {
|
|
950
|
-
"text": "boolean"
|
|
951
|
-
},
|
|
952
|
-
"default": "false",
|
|
953
|
-
"description": "Specify if the Alert can be dismissed",
|
|
954
|
-
"attribute": "dismissible"
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
"kind": "field",
|
|
958
|
-
"name": "disableAutoFocus",
|
|
959
|
-
"type": {
|
|
960
|
-
"text": "boolean"
|
|
961
|
-
},
|
|
962
|
-
"default": "false",
|
|
963
|
-
"description": "Prevent autofocus on show",
|
|
964
|
-
"attribute": "disableAutoFocus"
|
|
965
|
-
},
|
|
966
|
-
{
|
|
967
|
-
"kind": "field",
|
|
968
|
-
"name": "disableCloseOnEscape",
|
|
969
|
-
"type": {
|
|
970
|
-
"text": "boolean"
|
|
971
|
-
},
|
|
972
|
-
"default": "false",
|
|
973
|
-
"description": "Prevent Escape from closing",
|
|
974
|
-
"attribute": "disableCloseOnEscape"
|
|
975
|
-
}
|
|
976
|
-
],
|
|
977
|
-
"events": [
|
|
1110
|
+
"description": "Provide text for the Badge",
|
|
1111
|
+
"name": "default"
|
|
1112
|
+
},
|
|
978
1113
|
{
|
|
979
|
-
"description": "
|
|
980
|
-
"name": "
|
|
1114
|
+
"description": "Specify a different icon for the Badge",
|
|
1115
|
+
"name": "icon"
|
|
981
1116
|
}
|
|
982
1117
|
],
|
|
983
|
-
"
|
|
1118
|
+
"members": [
|
|
984
1119
|
{
|
|
985
|
-
"
|
|
1120
|
+
"kind": "field",
|
|
1121
|
+
"name": "appearance",
|
|
986
1122
|
"type": {
|
|
987
|
-
"text": "
|
|
1123
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
988
1124
|
},
|
|
989
|
-
"
|
|
990
|
-
"
|
|
1125
|
+
"default": "'infoPrimary'",
|
|
1126
|
+
"description": "Specify the appearance of the Badge",
|
|
1127
|
+
"attribute": "appearance"
|
|
991
1128
|
},
|
|
992
1129
|
{
|
|
993
|
-
"
|
|
1130
|
+
"kind": "field",
|
|
1131
|
+
"name": "theme",
|
|
994
1132
|
"type": {
|
|
995
|
-
"text": "
|
|
1133
|
+
"text": "'light' | 'dark' | undefined"
|
|
996
1134
|
},
|
|
997
|
-
"description": "
|
|
998
|
-
"
|
|
1135
|
+
"description": "Theme of the Badge",
|
|
1136
|
+
"attribute": "theme"
|
|
999
1137
|
},
|
|
1000
1138
|
{
|
|
1139
|
+
"kind": "field",
|
|
1001
1140
|
"name": "size",
|
|
1002
1141
|
"type": {
|
|
1003
|
-
"text": "'sm' | 'md'"
|
|
1142
|
+
"text": "'sm' | 'md' | undefined"
|
|
1004
1143
|
},
|
|
1005
1144
|
"default": "'sm'",
|
|
1006
|
-
"description": "Specify the size of the
|
|
1007
|
-
"
|
|
1145
|
+
"description": "Specify the size of the Badge",
|
|
1146
|
+
"attribute": "size"
|
|
1008
1147
|
},
|
|
1009
1148
|
{
|
|
1010
|
-
"
|
|
1149
|
+
"kind": "field",
|
|
1150
|
+
"name": "emphasis",
|
|
1011
1151
|
"type": {
|
|
1012
|
-
"text": "
|
|
1152
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1013
1153
|
},
|
|
1014
|
-
"default": "
|
|
1015
|
-
"description": "Specify
|
|
1016
|
-
"
|
|
1154
|
+
"default": "'strong'",
|
|
1155
|
+
"description": "Specify the emphasis of the Badge",
|
|
1156
|
+
"attribute": "emphasis"
|
|
1017
1157
|
},
|
|
1018
1158
|
{
|
|
1019
|
-
"
|
|
1159
|
+
"kind": "field",
|
|
1160
|
+
"name": "hideIcon",
|
|
1020
1161
|
"type": {
|
|
1021
|
-
"text": "
|
|
1162
|
+
"text": "boolean | undefined"
|
|
1022
1163
|
},
|
|
1023
|
-
"description": "
|
|
1024
|
-
"
|
|
1025
|
-
}
|
|
1164
|
+
"description": "Hides Badge icon",
|
|
1165
|
+
"attribute": "hideIcon"
|
|
1166
|
+
}
|
|
1167
|
+
],
|
|
1168
|
+
"attributes": [
|
|
1026
1169
|
{
|
|
1027
1170
|
"name": "appearance",
|
|
1028
1171
|
"type": {
|
|
1029
1172
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1030
1173
|
},
|
|
1031
1174
|
"default": "'infoPrimary'",
|
|
1032
|
-
"description": "Specify the appearance of the
|
|
1175
|
+
"description": "Specify the appearance of the Badge",
|
|
1033
1176
|
"fieldName": "appearance"
|
|
1034
1177
|
},
|
|
1035
1178
|
{
|
|
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",
|
|
1179
|
+
"name": "theme",
|
|
1046
1180
|
"type": {
|
|
1047
|
-
"text": "
|
|
1181
|
+
"text": "'light' | 'dark' | undefined"
|
|
1048
1182
|
},
|
|
1049
|
-
"
|
|
1050
|
-
"
|
|
1051
|
-
"fieldName": "hideIcon"
|
|
1183
|
+
"description": "Theme of the Badge",
|
|
1184
|
+
"fieldName": "theme"
|
|
1052
1185
|
},
|
|
1053
1186
|
{
|
|
1054
|
-
"name": "
|
|
1187
|
+
"name": "size",
|
|
1055
1188
|
"type": {
|
|
1056
|
-
"text": "
|
|
1189
|
+
"text": "'sm' | 'md' | undefined"
|
|
1057
1190
|
},
|
|
1058
|
-
"default": "
|
|
1059
|
-
"description": "Specify
|
|
1060
|
-
"fieldName": "
|
|
1191
|
+
"default": "'sm'",
|
|
1192
|
+
"description": "Specify the size of the Badge",
|
|
1193
|
+
"fieldName": "size"
|
|
1061
1194
|
},
|
|
1062
1195
|
{
|
|
1063
|
-
"name": "
|
|
1196
|
+
"name": "emphasis",
|
|
1064
1197
|
"type": {
|
|
1065
|
-
"text": "
|
|
1198
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1066
1199
|
},
|
|
1067
|
-
"default": "
|
|
1068
|
-
"description": "
|
|
1069
|
-
"fieldName": "
|
|
1200
|
+
"default": "'strong'",
|
|
1201
|
+
"description": "Specify the emphasis of the Badge",
|
|
1202
|
+
"fieldName": "emphasis"
|
|
1070
1203
|
},
|
|
1071
1204
|
{
|
|
1072
|
-
"name": "
|
|
1205
|
+
"name": "hideIcon",
|
|
1073
1206
|
"type": {
|
|
1074
|
-
"text": "boolean"
|
|
1207
|
+
"text": "boolean | undefined"
|
|
1075
1208
|
},
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1078
|
-
"fieldName": "disableCloseOnEscape"
|
|
1209
|
+
"description": "Hides Badge icon",
|
|
1210
|
+
"fieldName": "hideIcon"
|
|
1079
1211
|
}
|
|
1080
1212
|
],
|
|
1081
1213
|
"superclass": {
|
|
1082
1214
|
"name": "LitElement",
|
|
1083
1215
|
"package": "lit"
|
|
1084
1216
|
},
|
|
1085
|
-
"tagName": "bm-
|
|
1217
|
+
"tagName": "bm-badge",
|
|
1086
1218
|
"customElement": true
|
|
1087
1219
|
}
|
|
1088
1220
|
],
|
|
1089
1221
|
"exports": [
|
|
1090
1222
|
{
|
|
1091
1223
|
"kind": "js",
|
|
1092
|
-
"name": "
|
|
1224
|
+
"name": "BmBadge",
|
|
1093
1225
|
"declaration": {
|
|
1094
|
-
"name": "
|
|
1095
|
-
"module": "libs/web-components/src/lib/
|
|
1226
|
+
"name": "BmBadge",
|
|
1227
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1096
1228
|
}
|
|
1097
1229
|
},
|
|
1098
1230
|
{
|
|
1099
1231
|
"kind": "custom-element-definition",
|
|
1100
|
-
"name": "bm-
|
|
1232
|
+
"name": "bm-badge",
|
|
1101
1233
|
"declaration": {
|
|
1102
|
-
"name": "
|
|
1103
|
-
"module": "libs/web-components/src/lib/
|
|
1234
|
+
"name": "BmBadge",
|
|
1235
|
+
"module": "libs/web-components/src/lib/Badge/Badge.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/Badge/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": "./Badge"
|
|
1119
1251
|
}
|
|
1120
1252
|
}
|
|
1121
1253
|
]
|
|
@@ -1433,213 +1565,81 @@
|
|
|
1433
1565
|
"name": "mBefore",
|
|
1434
1566
|
"type": {
|
|
1435
1567
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1436
|
-
},
|
|
1437
|
-
"description": "Specify before margin of a Box",
|
|
1438
|
-
"fieldName": "mBefore"
|
|
1439
|
-
},
|
|
1440
|
-
{
|
|
1441
|
-
"name": "mAfter",
|
|
1442
|
-
"type": {
|
|
1443
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1444
|
-
},
|
|
1445
|
-
"description": "Specify after margin of a Box",
|
|
1446
|
-
"fieldName": "mAfter"
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
"name": "m",
|
|
1450
|
-
"type": {
|
|
1451
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1452
|
-
},
|
|
1453
|
-
"description": "Specify all margin",
|
|
1454
|
-
"fieldName": "m"
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
"name": "p",
|
|
1458
|
-
"type": {
|
|
1459
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1460
|
-
},
|
|
1461
|
-
"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"
|
|
1568
|
+
},
|
|
1569
|
+
"description": "Specify before margin of a Box",
|
|
1570
|
+
"fieldName": "mBefore"
|
|
1566
1571
|
},
|
|
1567
1572
|
{
|
|
1568
|
-
"
|
|
1569
|
-
"name": "overrideDotColor",
|
|
1573
|
+
"name": "mAfter",
|
|
1570
1574
|
"type": {
|
|
1571
|
-
"text": "
|
|
1575
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1572
1576
|
},
|
|
1573
|
-
"description": "
|
|
1574
|
-
"
|
|
1575
|
-
}
|
|
1576
|
-
],
|
|
1577
|
-
"attributes": [
|
|
1577
|
+
"description": "Specify after margin of a Box",
|
|
1578
|
+
"fieldName": "mAfter"
|
|
1579
|
+
},
|
|
1578
1580
|
{
|
|
1579
|
-
"name": "
|
|
1581
|
+
"name": "m",
|
|
1580
1582
|
"type": {
|
|
1581
|
-
"text": "'
|
|
1583
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1582
1584
|
},
|
|
1583
|
-
"description": "Specify
|
|
1584
|
-
"fieldName": "
|
|
1585
|
+
"description": "Specify all margin",
|
|
1586
|
+
"fieldName": "m"
|
|
1585
1587
|
},
|
|
1586
1588
|
{
|
|
1587
|
-
"name": "
|
|
1589
|
+
"name": "p",
|
|
1588
1590
|
"type": {
|
|
1589
|
-
"text": "'
|
|
1591
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1590
1592
|
},
|
|
1591
|
-
"
|
|
1592
|
-
"
|
|
1593
|
-
"fieldName": "appearance"
|
|
1593
|
+
"description": "Specify all padding",
|
|
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
|
]
|
|
@@ -8343,23 +8343,238 @@
|
|
|
8343
8343
|
"type": {
|
|
8344
8344
|
"text": "string"
|
|
8345
8345
|
}
|
|
8346
|
-
}
|
|
8346
|
+
}
|
|
8347
|
+
}
|
|
8348
|
+
],
|
|
8349
|
+
"exports": [
|
|
8350
|
+
{
|
|
8351
|
+
"kind": "js",
|
|
8352
|
+
"name": "createId",
|
|
8353
|
+
"declaration": {
|
|
8354
|
+
"name": "createId",
|
|
8355
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
|
|
8356
|
+
}
|
|
8357
|
+
}
|
|
8358
|
+
]
|
|
8359
|
+
},
|
|
8360
|
+
{
|
|
8361
|
+
"kind": "javascript-module",
|
|
8362
|
+
"path": "libs/web-components/src/lib/wip/Form/index.ts",
|
|
8363
|
+
"declarations": [],
|
|
8364
|
+
"exports": [
|
|
8365
|
+
{
|
|
8366
|
+
"kind": "js",
|
|
8367
|
+
"name": "*",
|
|
8368
|
+
"declaration": {
|
|
8369
|
+
"name": "*",
|
|
8370
|
+
"package": "./Form"
|
|
8371
|
+
}
|
|
8372
|
+
},
|
|
8373
|
+
{
|
|
8374
|
+
"kind": "js",
|
|
8375
|
+
"name": "*",
|
|
8376
|
+
"declaration": {
|
|
8377
|
+
"name": "*",
|
|
8378
|
+
"package": "./Form.decorator"
|
|
8379
|
+
}
|
|
8380
|
+
}
|
|
8381
|
+
]
|
|
8382
|
+
},
|
|
8383
|
+
{
|
|
8384
|
+
"kind": "javascript-module",
|
|
8385
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
|
|
8386
|
+
"declarations": [
|
|
8387
|
+
{
|
|
8388
|
+
"kind": "class",
|
|
8389
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events",
|
|
8390
|
+
"name": "BmRadioButton",
|
|
8391
|
+
"members": [
|
|
8392
|
+
{
|
|
8393
|
+
"kind": "field",
|
|
8394
|
+
"name": "label",
|
|
8395
|
+
"type": {
|
|
8396
|
+
"text": "string | undefined"
|
|
8397
|
+
},
|
|
8398
|
+
"description": "Specify the text for the label",
|
|
8399
|
+
"attribute": "label"
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
"kind": "field",
|
|
8403
|
+
"name": "error",
|
|
8404
|
+
"type": {
|
|
8405
|
+
"text": "boolean | undefined"
|
|
8406
|
+
},
|
|
8407
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8408
|
+
"attribute": "error"
|
|
8409
|
+
},
|
|
8410
|
+
{
|
|
8411
|
+
"kind": "field",
|
|
8412
|
+
"name": "readOnly",
|
|
8413
|
+
"type": {
|
|
8414
|
+
"text": "boolean | undefined"
|
|
8415
|
+
},
|
|
8416
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8417
|
+
"attribute": "readOnly"
|
|
8418
|
+
},
|
|
8419
|
+
{
|
|
8420
|
+
"kind": "field",
|
|
8421
|
+
"name": "disabled",
|
|
8422
|
+
"type": {
|
|
8423
|
+
"text": "boolean | undefined"
|
|
8424
|
+
},
|
|
8425
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8426
|
+
"attribute": "disabled"
|
|
8427
|
+
},
|
|
8428
|
+
{
|
|
8429
|
+
"kind": "field",
|
|
8430
|
+
"name": "theme",
|
|
8431
|
+
"type": {
|
|
8432
|
+
"text": "'light' | 'dark' | undefined"
|
|
8433
|
+
},
|
|
8434
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8435
|
+
"attribute": "theme"
|
|
8436
|
+
},
|
|
8437
|
+
{
|
|
8438
|
+
"kind": "field",
|
|
8439
|
+
"name": "value",
|
|
8440
|
+
"type": {
|
|
8441
|
+
"text": "string | undefined"
|
|
8442
|
+
},
|
|
8443
|
+
"description": "The value attribute for the input element",
|
|
8444
|
+
"attribute": "value"
|
|
8445
|
+
},
|
|
8446
|
+
{
|
|
8447
|
+
"kind": "field",
|
|
8448
|
+
"name": "checked",
|
|
8449
|
+
"type": {
|
|
8450
|
+
"text": "boolean"
|
|
8451
|
+
},
|
|
8452
|
+
"default": "false",
|
|
8453
|
+
"description": "The checked attribute for the input element",
|
|
8454
|
+
"attribute": "checked"
|
|
8455
|
+
},
|
|
8456
|
+
{
|
|
8457
|
+
"kind": "field",
|
|
8458
|
+
"name": "onKeyDown",
|
|
8459
|
+
"type": {
|
|
8460
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8461
|
+
},
|
|
8462
|
+
"description": "A user-defined function to handle keydown events",
|
|
8463
|
+
"attribute": "onKeyDown"
|
|
8464
|
+
},
|
|
8465
|
+
{
|
|
8466
|
+
"kind": "field",
|
|
8467
|
+
"name": "inputChoiceGroupContext",
|
|
8468
|
+
"type": {
|
|
8469
|
+
"text": "InputChoiceGroupContextProps"
|
|
8470
|
+
}
|
|
8471
|
+
},
|
|
8472
|
+
{
|
|
8473
|
+
"kind": "field",
|
|
8474
|
+
"name": "radioButtonRef"
|
|
8475
|
+
},
|
|
8476
|
+
{
|
|
8477
|
+
"kind": "method",
|
|
8478
|
+
"name": "focus"
|
|
8479
|
+
}
|
|
8480
|
+
],
|
|
8481
|
+
"attributes": [
|
|
8482
|
+
{
|
|
8483
|
+
"name": "label",
|
|
8484
|
+
"type": {
|
|
8485
|
+
"text": "string | undefined"
|
|
8486
|
+
},
|
|
8487
|
+
"description": "Specify the text for the label",
|
|
8488
|
+
"fieldName": "label"
|
|
8489
|
+
},
|
|
8490
|
+
{
|
|
8491
|
+
"name": "error",
|
|
8492
|
+
"type": {
|
|
8493
|
+
"text": "boolean | undefined"
|
|
8494
|
+
},
|
|
8495
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8496
|
+
"fieldName": "error"
|
|
8497
|
+
},
|
|
8498
|
+
{
|
|
8499
|
+
"name": "readOnly",
|
|
8500
|
+
"type": {
|
|
8501
|
+
"text": "boolean | undefined"
|
|
8502
|
+
},
|
|
8503
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8504
|
+
"fieldName": "readOnly"
|
|
8505
|
+
},
|
|
8506
|
+
{
|
|
8507
|
+
"name": "disabled",
|
|
8508
|
+
"type": {
|
|
8509
|
+
"text": "boolean | undefined"
|
|
8510
|
+
},
|
|
8511
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8512
|
+
"fieldName": "disabled"
|
|
8513
|
+
},
|
|
8514
|
+
{
|
|
8515
|
+
"name": "theme",
|
|
8516
|
+
"type": {
|
|
8517
|
+
"text": "'light' | 'dark' | undefined"
|
|
8518
|
+
},
|
|
8519
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8520
|
+
"fieldName": "theme"
|
|
8521
|
+
},
|
|
8522
|
+
{
|
|
8523
|
+
"name": "value",
|
|
8524
|
+
"type": {
|
|
8525
|
+
"text": "string | undefined"
|
|
8526
|
+
},
|
|
8527
|
+
"description": "The value attribute for the input element",
|
|
8528
|
+
"fieldName": "value"
|
|
8529
|
+
},
|
|
8530
|
+
{
|
|
8531
|
+
"name": "checked",
|
|
8532
|
+
"type": {
|
|
8533
|
+
"text": "boolean"
|
|
8534
|
+
},
|
|
8535
|
+
"default": "false",
|
|
8536
|
+
"description": "The checked attribute for the input element",
|
|
8537
|
+
"fieldName": "checked"
|
|
8538
|
+
},
|
|
8539
|
+
{
|
|
8540
|
+
"name": "onKeyDown",
|
|
8541
|
+
"type": {
|
|
8542
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8543
|
+
},
|
|
8544
|
+
"description": "A user-defined function to handle keydown events",
|
|
8545
|
+
"fieldName": "onKeyDown"
|
|
8546
|
+
}
|
|
8547
|
+
],
|
|
8548
|
+
"superclass": {
|
|
8549
|
+
"name": "LitElement",
|
|
8550
|
+
"package": "lit"
|
|
8551
|
+
},
|
|
8552
|
+
"tagName": "bm-radio-button",
|
|
8553
|
+
"customElement": true
|
|
8347
8554
|
}
|
|
8348
8555
|
],
|
|
8349
8556
|
"exports": [
|
|
8350
8557
|
{
|
|
8351
8558
|
"kind": "js",
|
|
8352
|
-
"name": "
|
|
8559
|
+
"name": "BmRadioButton",
|
|
8353
8560
|
"declaration": {
|
|
8354
|
-
"name": "
|
|
8355
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8561
|
+
"name": "BmRadioButton",
|
|
8562
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8563
|
+
}
|
|
8564
|
+
},
|
|
8565
|
+
{
|
|
8566
|
+
"kind": "custom-element-definition",
|
|
8567
|
+
"name": "bm-radio-button",
|
|
8568
|
+
"declaration": {
|
|
8569
|
+
"name": "BmRadioButton",
|
|
8570
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8356
8571
|
}
|
|
8357
8572
|
}
|
|
8358
8573
|
]
|
|
8359
8574
|
},
|
|
8360
8575
|
{
|
|
8361
8576
|
"kind": "javascript-module",
|
|
8362
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8577
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
8363
8578
|
"declarations": [],
|
|
8364
8579
|
"exports": [
|
|
8365
8580
|
{
|
|
@@ -8367,7 +8582,7 @@
|
|
|
8367
8582
|
"name": "*",
|
|
8368
8583
|
"declaration": {
|
|
8369
8584
|
"name": "*",
|
|
8370
|
-
"package": "./
|
|
8585
|
+
"package": "./RadioButton"
|
|
8371
8586
|
}
|
|
8372
8587
|
},
|
|
8373
8588
|
{
|
|
@@ -8375,7 +8590,7 @@
|
|
|
8375
8590
|
"name": "*",
|
|
8376
8591
|
"declaration": {
|
|
8377
8592
|
"name": "*",
|
|
8378
|
-
"package": "./
|
|
8593
|
+
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
8379
8594
|
}
|
|
8380
8595
|
}
|
|
8381
8596
|
]
|
|
@@ -8827,221 +9042,6 @@
|
|
|
8827
9042
|
}
|
|
8828
9043
|
]
|
|
8829
9044
|
},
|
|
8830
|
-
{
|
|
8831
|
-
"kind": "javascript-module",
|
|
8832
|
-
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
|
|
8833
|
-
"declarations": [
|
|
8834
|
-
{
|
|
8835
|
-
"kind": "class",
|
|
8836
|
-
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events",
|
|
8837
|
-
"name": "BmRadioButton",
|
|
8838
|
-
"members": [
|
|
8839
|
-
{
|
|
8840
|
-
"kind": "field",
|
|
8841
|
-
"name": "label",
|
|
8842
|
-
"type": {
|
|
8843
|
-
"text": "string | undefined"
|
|
8844
|
-
},
|
|
8845
|
-
"description": "Specify the text for the label",
|
|
8846
|
-
"attribute": "label"
|
|
8847
|
-
},
|
|
8848
|
-
{
|
|
8849
|
-
"kind": "field",
|
|
8850
|
-
"name": "error",
|
|
8851
|
-
"type": {
|
|
8852
|
-
"text": "boolean | undefined"
|
|
8853
|
-
},
|
|
8854
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
8855
|
-
"attribute": "error"
|
|
8856
|
-
},
|
|
8857
|
-
{
|
|
8858
|
-
"kind": "field",
|
|
8859
|
-
"name": "readOnly",
|
|
8860
|
-
"type": {
|
|
8861
|
-
"text": "boolean | undefined"
|
|
8862
|
-
},
|
|
8863
|
-
"description": "Specify if RadioButton displays in a read-only state",
|
|
8864
|
-
"attribute": "readOnly"
|
|
8865
|
-
},
|
|
8866
|
-
{
|
|
8867
|
-
"kind": "field",
|
|
8868
|
-
"name": "disabled",
|
|
8869
|
-
"type": {
|
|
8870
|
-
"text": "boolean | undefined"
|
|
8871
|
-
},
|
|
8872
|
-
"description": "Specify if RadioButton displays in a disabled state",
|
|
8873
|
-
"attribute": "disabled"
|
|
8874
|
-
},
|
|
8875
|
-
{
|
|
8876
|
-
"kind": "field",
|
|
8877
|
-
"name": "theme",
|
|
8878
|
-
"type": {
|
|
8879
|
-
"text": "'light' | 'dark' | undefined"
|
|
8880
|
-
},
|
|
8881
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8882
|
-
"attribute": "theme"
|
|
8883
|
-
},
|
|
8884
|
-
{
|
|
8885
|
-
"kind": "field",
|
|
8886
|
-
"name": "value",
|
|
8887
|
-
"type": {
|
|
8888
|
-
"text": "string | undefined"
|
|
8889
|
-
},
|
|
8890
|
-
"description": "The value attribute for the input element",
|
|
8891
|
-
"attribute": "value"
|
|
8892
|
-
},
|
|
8893
|
-
{
|
|
8894
|
-
"kind": "field",
|
|
8895
|
-
"name": "checked",
|
|
8896
|
-
"type": {
|
|
8897
|
-
"text": "boolean"
|
|
8898
|
-
},
|
|
8899
|
-
"default": "false",
|
|
8900
|
-
"description": "The checked attribute for the input element",
|
|
8901
|
-
"attribute": "checked"
|
|
8902
|
-
},
|
|
8903
|
-
{
|
|
8904
|
-
"kind": "field",
|
|
8905
|
-
"name": "onKeyDown",
|
|
8906
|
-
"type": {
|
|
8907
|
-
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8908
|
-
},
|
|
8909
|
-
"description": "A user-defined function to handle keydown events",
|
|
8910
|
-
"attribute": "onKeyDown"
|
|
8911
|
-
},
|
|
8912
|
-
{
|
|
8913
|
-
"kind": "field",
|
|
8914
|
-
"name": "inputChoiceGroupContext",
|
|
8915
|
-
"type": {
|
|
8916
|
-
"text": "InputChoiceGroupContextProps"
|
|
8917
|
-
}
|
|
8918
|
-
},
|
|
8919
|
-
{
|
|
8920
|
-
"kind": "field",
|
|
8921
|
-
"name": "radioButtonRef"
|
|
8922
|
-
},
|
|
8923
|
-
{
|
|
8924
|
-
"kind": "method",
|
|
8925
|
-
"name": "focus"
|
|
8926
|
-
}
|
|
8927
|
-
],
|
|
8928
|
-
"attributes": [
|
|
8929
|
-
{
|
|
8930
|
-
"name": "label",
|
|
8931
|
-
"type": {
|
|
8932
|
-
"text": "string | undefined"
|
|
8933
|
-
},
|
|
8934
|
-
"description": "Specify the text for the label",
|
|
8935
|
-
"fieldName": "label"
|
|
8936
|
-
},
|
|
8937
|
-
{
|
|
8938
|
-
"name": "error",
|
|
8939
|
-
"type": {
|
|
8940
|
-
"text": "boolean | undefined"
|
|
8941
|
-
},
|
|
8942
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
8943
|
-
"fieldName": "error"
|
|
8944
|
-
},
|
|
8945
|
-
{
|
|
8946
|
-
"name": "readOnly",
|
|
8947
|
-
"type": {
|
|
8948
|
-
"text": "boolean | undefined"
|
|
8949
|
-
},
|
|
8950
|
-
"description": "Specify if RadioButton displays in a read-only state",
|
|
8951
|
-
"fieldName": "readOnly"
|
|
8952
|
-
},
|
|
8953
|
-
{
|
|
8954
|
-
"name": "disabled",
|
|
8955
|
-
"type": {
|
|
8956
|
-
"text": "boolean | undefined"
|
|
8957
|
-
},
|
|
8958
|
-
"description": "Specify if RadioButton displays in a disabled state",
|
|
8959
|
-
"fieldName": "disabled"
|
|
8960
|
-
},
|
|
8961
|
-
{
|
|
8962
|
-
"name": "theme",
|
|
8963
|
-
"type": {
|
|
8964
|
-
"text": "'light' | 'dark' | undefined"
|
|
8965
|
-
},
|
|
8966
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8967
|
-
"fieldName": "theme"
|
|
8968
|
-
},
|
|
8969
|
-
{
|
|
8970
|
-
"name": "value",
|
|
8971
|
-
"type": {
|
|
8972
|
-
"text": "string | undefined"
|
|
8973
|
-
},
|
|
8974
|
-
"description": "The value attribute for the input element",
|
|
8975
|
-
"fieldName": "value"
|
|
8976
|
-
},
|
|
8977
|
-
{
|
|
8978
|
-
"name": "checked",
|
|
8979
|
-
"type": {
|
|
8980
|
-
"text": "boolean"
|
|
8981
|
-
},
|
|
8982
|
-
"default": "false",
|
|
8983
|
-
"description": "The checked attribute for the input element",
|
|
8984
|
-
"fieldName": "checked"
|
|
8985
|
-
},
|
|
8986
|
-
{
|
|
8987
|
-
"name": "onKeyDown",
|
|
8988
|
-
"type": {
|
|
8989
|
-
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8990
|
-
},
|
|
8991
|
-
"description": "A user-defined function to handle keydown events",
|
|
8992
|
-
"fieldName": "onKeyDown"
|
|
8993
|
-
}
|
|
8994
|
-
],
|
|
8995
|
-
"superclass": {
|
|
8996
|
-
"name": "LitElement",
|
|
8997
|
-
"package": "lit"
|
|
8998
|
-
},
|
|
8999
|
-
"tagName": "bm-radio-button",
|
|
9000
|
-
"customElement": true
|
|
9001
|
-
}
|
|
9002
|
-
],
|
|
9003
|
-
"exports": [
|
|
9004
|
-
{
|
|
9005
|
-
"kind": "js",
|
|
9006
|
-
"name": "BmRadioButton",
|
|
9007
|
-
"declaration": {
|
|
9008
|
-
"name": "BmRadioButton",
|
|
9009
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
9010
|
-
}
|
|
9011
|
-
},
|
|
9012
|
-
{
|
|
9013
|
-
"kind": "custom-element-definition",
|
|
9014
|
-
"name": "bm-radio-button",
|
|
9015
|
-
"declaration": {
|
|
9016
|
-
"name": "BmRadioButton",
|
|
9017
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
9018
|
-
}
|
|
9019
|
-
}
|
|
9020
|
-
]
|
|
9021
|
-
},
|
|
9022
|
-
{
|
|
9023
|
-
"kind": "javascript-module",
|
|
9024
|
-
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
9025
|
-
"declarations": [],
|
|
9026
|
-
"exports": [
|
|
9027
|
-
{
|
|
9028
|
-
"kind": "js",
|
|
9029
|
-
"name": "*",
|
|
9030
|
-
"declaration": {
|
|
9031
|
-
"name": "*",
|
|
9032
|
-
"package": "./RadioButton"
|
|
9033
|
-
}
|
|
9034
|
-
},
|
|
9035
|
-
{
|
|
9036
|
-
"kind": "js",
|
|
9037
|
-
"name": "*",
|
|
9038
|
-
"declaration": {
|
|
9039
|
-
"name": "*",
|
|
9040
|
-
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
9041
|
-
}
|
|
9042
|
-
}
|
|
9043
|
-
]
|
|
9044
|
-
},
|
|
9045
9045
|
{
|
|
9046
9046
|
"kind": "javascript-module",
|
|
9047
9047
|
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|