@viasat/beam-web-components 2.61.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 +830 -830
- package/package.json +6 -6
- package/vscode.html-custom-data.json +150 -150
package/custom-elements.json
CHANGED
|
@@ -294,665 +294,657 @@
|
|
|
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/Avatar/
|
|
578
|
+
"path": "libs/web-components/src/lib/Avatar/Avatar.ts",
|
|
545
579
|
"declarations": [
|
|
546
580
|
{
|
|
547
581
|
"kind": "class",
|
|
548
|
-
"description": "`bm-avatar
|
|
549
|
-
"name": "
|
|
582
|
+
"description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** ",
|
|
583
|
+
"name": "BmAvatar",
|
|
550
584
|
"slots": [
|
|
551
585
|
{
|
|
552
|
-
"description": "
|
|
553
|
-
"name": "
|
|
586
|
+
"description": "Customize the default icon",
|
|
587
|
+
"name": "icon"
|
|
554
588
|
}
|
|
555
589
|
],
|
|
556
590
|
"members": [
|
|
557
591
|
{
|
|
558
592
|
"kind": "field",
|
|
559
|
-
"name": "
|
|
593
|
+
"name": "appearance",
|
|
560
594
|
"type": {
|
|
561
|
-
"text": "
|
|
595
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
562
596
|
},
|
|
563
|
-
"default": "
|
|
564
|
-
"description": "Specify
|
|
565
|
-
"attribute": "
|
|
597
|
+
"default": "'neutral'",
|
|
598
|
+
"description": "Specify the appearance of the Avatar",
|
|
599
|
+
"attribute": "appearance"
|
|
566
600
|
},
|
|
567
601
|
{
|
|
568
602
|
"kind": "field",
|
|
569
|
-
"name": "
|
|
603
|
+
"name": "name",
|
|
570
604
|
"type": {
|
|
571
|
-
"text": "
|
|
605
|
+
"text": "string | undefined"
|
|
572
606
|
},
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
"attribute": "maxCount",
|
|
576
|
-
"reflects": true
|
|
607
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
608
|
+
"attribute": "name"
|
|
577
609
|
},
|
|
578
610
|
{
|
|
579
611
|
"kind": "field",
|
|
580
|
-
"name": "
|
|
612
|
+
"name": "src",
|
|
581
613
|
"type": {
|
|
582
|
-
"text": "
|
|
614
|
+
"text": "string | undefined"
|
|
583
615
|
},
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
"attribute": "size"
|
|
616
|
+
"description": "Pass an image to the Avatar",
|
|
617
|
+
"attribute": "src"
|
|
587
618
|
},
|
|
588
619
|
{
|
|
589
620
|
"kind": "field",
|
|
590
|
-
"name": "
|
|
621
|
+
"name": "alt",
|
|
591
622
|
"type": {
|
|
592
|
-
"text": "
|
|
623
|
+
"text": "string | undefined"
|
|
593
624
|
},
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
|
|
597
|
-
}
|
|
598
|
-
],
|
|
599
|
-
"attributes": [
|
|
625
|
+
"description": "Specify alt for image",
|
|
626
|
+
"attribute": "alt"
|
|
627
|
+
},
|
|
600
628
|
{
|
|
601
|
-
"
|
|
629
|
+
"kind": "field",
|
|
630
|
+
"name": "size",
|
|
602
631
|
"type": {
|
|
603
|
-
"text": "
|
|
632
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
604
633
|
},
|
|
605
|
-
"default": "
|
|
606
|
-
"description": "Specify
|
|
607
|
-
"
|
|
634
|
+
"default": "'md'",
|
|
635
|
+
"description": "Specify the size of the Avatar",
|
|
636
|
+
"attribute": "size"
|
|
608
637
|
},
|
|
609
638
|
{
|
|
610
|
-
"
|
|
639
|
+
"kind": "field",
|
|
640
|
+
"name": "disabled",
|
|
611
641
|
"type": {
|
|
612
|
-
"text": "
|
|
642
|
+
"text": "boolean | undefined"
|
|
613
643
|
},
|
|
614
|
-
"default": "
|
|
615
|
-
"description": "Specify the
|
|
616
|
-
"
|
|
644
|
+
"default": "false",
|
|
645
|
+
"description": "Specify if the Avatar is disabled",
|
|
646
|
+
"attribute": "disabled"
|
|
617
647
|
},
|
|
618
648
|
{
|
|
619
|
-
"
|
|
649
|
+
"kind": "field",
|
|
650
|
+
"name": "shape",
|
|
620
651
|
"type": {
|
|
621
|
-
"text": "'
|
|
652
|
+
"text": "'circle' | 'square' | undefined"
|
|
622
653
|
},
|
|
623
|
-
"default": "'
|
|
624
|
-
"description": "Specify the
|
|
625
|
-
"
|
|
654
|
+
"default": "'circle'",
|
|
655
|
+
"description": "Specify the shape of the Avatar",
|
|
656
|
+
"attribute": "shape"
|
|
626
657
|
},
|
|
627
658
|
{
|
|
628
|
-
"
|
|
659
|
+
"kind": "field",
|
|
660
|
+
"name": "isInteractive",
|
|
629
661
|
"type": {
|
|
630
|
-
"text": "
|
|
662
|
+
"text": "boolean"
|
|
631
663
|
},
|
|
632
|
-
"default": "
|
|
633
|
-
"description": "
|
|
634
|
-
"
|
|
635
|
-
}
|
|
636
|
-
],
|
|
637
|
-
"superclass": {
|
|
638
|
-
"name": "LitElement",
|
|
639
|
-
"package": "lit"
|
|
640
|
-
},
|
|
641
|
-
"tagName": "bm-avatar-group",
|
|
642
|
-
"customElement": true
|
|
643
|
-
}
|
|
644
|
-
],
|
|
645
|
-
"exports": [
|
|
646
|
-
{
|
|
647
|
-
"kind": "js",
|
|
648
|
-
"name": "BmAvatarGroup",
|
|
649
|
-
"declaration": {
|
|
650
|
-
"name": "BmAvatarGroup",
|
|
651
|
-
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
652
|
-
}
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
"kind": "custom-element-definition",
|
|
656
|
-
"name": "bm-avatar-group",
|
|
657
|
-
"declaration": {
|
|
658
|
-
"name": "BmAvatarGroup",
|
|
659
|
-
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
]
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
"kind": "javascript-module",
|
|
666
|
-
"path": "libs/web-components/src/lib/Avatar/index.ts",
|
|
667
|
-
"declarations": [],
|
|
668
|
-
"exports": [
|
|
669
|
-
{
|
|
670
|
-
"kind": "js",
|
|
671
|
-
"name": "*",
|
|
672
|
-
"declaration": {
|
|
673
|
-
"name": "*",
|
|
674
|
-
"package": "./Avatar"
|
|
675
|
-
}
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"kind": "js",
|
|
679
|
-
"name": "*",
|
|
680
|
-
"declaration": {
|
|
681
|
-
"name": "*",
|
|
682
|
-
"package": "./AvatarGroup"
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
]
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
690
|
-
"declarations": [
|
|
691
|
-
{
|
|
692
|
-
"kind": "class",
|
|
693
|
-
"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",
|
|
694
|
-
"name": "BmAlert",
|
|
695
|
-
"slots": [
|
|
696
|
-
{
|
|
697
|
-
"description": "Specify a different icon for the Alert",
|
|
698
|
-
"name": "icon"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
702
|
-
"name": "heading"
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
706
|
-
"name": "body"
|
|
664
|
+
"default": "false",
|
|
665
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
666
|
+
"attribute": "isInteractive"
|
|
707
667
|
},
|
|
708
|
-
{
|
|
709
|
-
"description": "Specify if actions display on the Alert",
|
|
710
|
-
"name": "actions"
|
|
711
|
-
}
|
|
712
|
-
],
|
|
713
|
-
"members": [
|
|
714
668
|
{
|
|
715
669
|
"kind": "field",
|
|
716
|
-
"name": "
|
|
670
|
+
"name": "isFocusable",
|
|
717
671
|
"type": {
|
|
718
|
-
"text": "
|
|
672
|
+
"text": "boolean"
|
|
719
673
|
},
|
|
720
|
-
"
|
|
721
|
-
"
|
|
674
|
+
"default": "false",
|
|
675
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
676
|
+
"attribute": "isFocusable"
|
|
722
677
|
},
|
|
723
678
|
{
|
|
724
679
|
"kind": "field",
|
|
725
|
-
"name": "
|
|
680
|
+
"name": "withBorder",
|
|
726
681
|
"type": {
|
|
727
|
-
"text": "
|
|
682
|
+
"text": "boolean"
|
|
728
683
|
},
|
|
729
|
-
"
|
|
730
|
-
"attribute": "
|
|
684
|
+
"default": "false",
|
|
685
|
+
"attribute": "withBorder"
|
|
686
|
+
}
|
|
687
|
+
],
|
|
688
|
+
"attributes": [
|
|
689
|
+
{
|
|
690
|
+
"name": "appearance",
|
|
691
|
+
"type": {
|
|
692
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
693
|
+
},
|
|
694
|
+
"default": "'neutral'",
|
|
695
|
+
"description": "Specify the appearance of the Avatar",
|
|
696
|
+
"fieldName": "appearance"
|
|
731
697
|
},
|
|
732
698
|
{
|
|
733
|
-
"
|
|
734
|
-
"name": "size",
|
|
699
|
+
"name": "name",
|
|
735
700
|
"type": {
|
|
736
|
-
"text": "
|
|
701
|
+
"text": "string | undefined"
|
|
737
702
|
},
|
|
738
|
-
"
|
|
739
|
-
"
|
|
740
|
-
"attribute": "size"
|
|
703
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
704
|
+
"fieldName": "name"
|
|
741
705
|
},
|
|
742
706
|
{
|
|
743
|
-
"
|
|
744
|
-
"name": "fullWidth",
|
|
707
|
+
"name": "src",
|
|
745
708
|
"type": {
|
|
746
|
-
"text": "
|
|
709
|
+
"text": "string | undefined"
|
|
747
710
|
},
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
"attribute": "fullWidth"
|
|
711
|
+
"description": "Pass an image to the Avatar",
|
|
712
|
+
"fieldName": "src"
|
|
751
713
|
},
|
|
752
714
|
{
|
|
753
|
-
"
|
|
754
|
-
"name": "theme",
|
|
715
|
+
"name": "alt",
|
|
755
716
|
"type": {
|
|
756
|
-
"text": "
|
|
717
|
+
"text": "string | undefined"
|
|
757
718
|
},
|
|
758
|
-
"description": "Specify
|
|
759
|
-
"
|
|
719
|
+
"description": "Specify alt for image",
|
|
720
|
+
"fieldName": "alt"
|
|
760
721
|
},
|
|
761
722
|
{
|
|
762
|
-
"
|
|
763
|
-
"name": "appearance",
|
|
723
|
+
"name": "size",
|
|
764
724
|
"type": {
|
|
765
|
-
"text": "'
|
|
725
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
766
726
|
},
|
|
767
|
-
"default": "'
|
|
768
|
-
"description": "Specify the
|
|
769
|
-
"
|
|
727
|
+
"default": "'md'",
|
|
728
|
+
"description": "Specify the size of the Avatar",
|
|
729
|
+
"fieldName": "size"
|
|
770
730
|
},
|
|
771
731
|
{
|
|
772
|
-
"
|
|
773
|
-
"name": "hidden",
|
|
732
|
+
"name": "disabled",
|
|
774
733
|
"type": {
|
|
775
|
-
"text": "boolean"
|
|
734
|
+
"text": "boolean | undefined"
|
|
776
735
|
},
|
|
777
736
|
"default": "false",
|
|
778
|
-
"description": "Specify if the
|
|
779
|
-
"
|
|
737
|
+
"description": "Specify if the Avatar is disabled",
|
|
738
|
+
"fieldName": "disabled"
|
|
780
739
|
},
|
|
781
740
|
{
|
|
782
|
-
"
|
|
783
|
-
"name": "hideIcon",
|
|
741
|
+
"name": "shape",
|
|
784
742
|
"type": {
|
|
785
|
-
"text": "
|
|
743
|
+
"text": "'circle' | 'square' | undefined"
|
|
786
744
|
},
|
|
787
|
-
"default": "
|
|
788
|
-
"description": "Specify
|
|
789
|
-
"
|
|
745
|
+
"default": "'circle'",
|
|
746
|
+
"description": "Specify the shape of the Avatar",
|
|
747
|
+
"fieldName": "shape"
|
|
790
748
|
},
|
|
791
749
|
{
|
|
792
|
-
"
|
|
793
|
-
"name": "dismissible",
|
|
750
|
+
"name": "isInteractive",
|
|
794
751
|
"type": {
|
|
795
752
|
"text": "boolean"
|
|
796
753
|
},
|
|
797
754
|
"default": "false",
|
|
798
|
-
"description": "
|
|
799
|
-
"
|
|
755
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
756
|
+
"fieldName": "isInteractive"
|
|
800
757
|
},
|
|
801
758
|
{
|
|
802
|
-
"
|
|
803
|
-
"name": "disableAutoFocus",
|
|
759
|
+
"name": "isFocusable",
|
|
804
760
|
"type": {
|
|
805
761
|
"text": "boolean"
|
|
806
762
|
},
|
|
807
763
|
"default": "false",
|
|
808
|
-
"description": "
|
|
809
|
-
"
|
|
764
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
765
|
+
"fieldName": "isFocusable"
|
|
810
766
|
},
|
|
811
767
|
{
|
|
812
|
-
"
|
|
813
|
-
"name": "disableCloseOnEscape",
|
|
768
|
+
"name": "withBorder",
|
|
814
769
|
"type": {
|
|
815
770
|
"text": "boolean"
|
|
816
771
|
},
|
|
817
772
|
"default": "false",
|
|
818
|
-
"
|
|
819
|
-
"attribute": "disableCloseOnEscape"
|
|
773
|
+
"fieldName": "withBorder"
|
|
820
774
|
}
|
|
821
775
|
],
|
|
822
|
-
"
|
|
776
|
+
"superclass": {
|
|
777
|
+
"name": "LitElement",
|
|
778
|
+
"package": "lit"
|
|
779
|
+
},
|
|
780
|
+
"tagName": "bm-avatar",
|
|
781
|
+
"customElement": true
|
|
782
|
+
}
|
|
783
|
+
],
|
|
784
|
+
"exports": [
|
|
785
|
+
{
|
|
786
|
+
"kind": "js",
|
|
787
|
+
"name": "BmAvatar",
|
|
788
|
+
"declaration": {
|
|
789
|
+
"name": "BmAvatar",
|
|
790
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"kind": "custom-element-definition",
|
|
795
|
+
"name": "bm-avatar",
|
|
796
|
+
"declaration": {
|
|
797
|
+
"name": "BmAvatar",
|
|
798
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
]
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"kind": "javascript-module",
|
|
805
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
|
|
806
|
+
"declarations": [
|
|
807
|
+
{
|
|
808
|
+
"kind": "variable",
|
|
809
|
+
"name": "AvatarGroupCtx"
|
|
810
|
+
}
|
|
811
|
+
],
|
|
812
|
+
"exports": [
|
|
813
|
+
{
|
|
814
|
+
"kind": "js",
|
|
815
|
+
"name": "AvatarGroupCtx",
|
|
816
|
+
"declaration": {
|
|
817
|
+
"name": "AvatarGroupCtx",
|
|
818
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"kind": "javascript-module",
|
|
825
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
|
|
826
|
+
"declarations": [
|
|
827
|
+
{
|
|
828
|
+
"kind": "class",
|
|
829
|
+
"description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.",
|
|
830
|
+
"name": "BmAvatarGroup",
|
|
831
|
+
"slots": [
|
|
823
832
|
{
|
|
824
|
-
"description": "
|
|
825
|
-
"name": "
|
|
833
|
+
"description": "Add Avatars to create a group",
|
|
834
|
+
"name": "default"
|
|
826
835
|
}
|
|
827
836
|
],
|
|
828
|
-
"
|
|
829
|
-
{
|
|
830
|
-
"name": "heading",
|
|
831
|
-
"type": {
|
|
832
|
-
"text": "string | undefined"
|
|
833
|
-
},
|
|
834
|
-
"description": "Specify the heading text for Alert",
|
|
835
|
-
"fieldName": "heading"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"name": "body",
|
|
839
|
-
"type": {
|
|
840
|
-
"text": "string | undefined"
|
|
841
|
-
},
|
|
842
|
-
"description": "Specify the body text for Alert",
|
|
843
|
-
"fieldName": "body"
|
|
844
|
-
},
|
|
845
|
-
{
|
|
846
|
-
"name": "size",
|
|
847
|
-
"type": {
|
|
848
|
-
"text": "'sm' | 'md'"
|
|
849
|
-
},
|
|
850
|
-
"default": "'sm'",
|
|
851
|
-
"description": "Specify the size of the Alert",
|
|
852
|
-
"fieldName": "size"
|
|
853
|
-
},
|
|
837
|
+
"members": [
|
|
854
838
|
{
|
|
855
|
-
"
|
|
839
|
+
"kind": "field",
|
|
840
|
+
"name": "wrapping",
|
|
856
841
|
"type": {
|
|
857
842
|
"text": "boolean"
|
|
858
843
|
},
|
|
859
844
|
"default": "false",
|
|
860
|
-
"description": "Specify if the
|
|
861
|
-
"
|
|
845
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
846
|
+
"attribute": "wrapping"
|
|
862
847
|
},
|
|
863
848
|
{
|
|
864
|
-
"
|
|
849
|
+
"kind": "field",
|
|
850
|
+
"name": "maxCount",
|
|
865
851
|
"type": {
|
|
866
|
-
"text": "
|
|
852
|
+
"text": "number"
|
|
867
853
|
},
|
|
868
|
-
"
|
|
869
|
-
"
|
|
854
|
+
"default": "5",
|
|
855
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
856
|
+
"attribute": "maxCount",
|
|
857
|
+
"reflects": true
|
|
870
858
|
},
|
|
871
859
|
{
|
|
872
|
-
"
|
|
860
|
+
"kind": "field",
|
|
861
|
+
"name": "size",
|
|
873
862
|
"type": {
|
|
874
|
-
"text": "'
|
|
863
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
875
864
|
},
|
|
876
|
-
"default": "'
|
|
877
|
-
"description": "Specify the
|
|
878
|
-
"
|
|
865
|
+
"default": "'md'",
|
|
866
|
+
"description": "Specify the size of all Avatars",
|
|
867
|
+
"attribute": "size"
|
|
879
868
|
},
|
|
880
869
|
{
|
|
881
|
-
"
|
|
870
|
+
"kind": "field",
|
|
871
|
+
"name": "layout",
|
|
882
872
|
"type": {
|
|
883
|
-
"text": "
|
|
884
|
-
},
|
|
885
|
-
"default": "
|
|
886
|
-
"description": "Specify
|
|
887
|
-
"
|
|
888
|
-
}
|
|
873
|
+
"text": "'stacked' | 'spaced' | undefined"
|
|
874
|
+
},
|
|
875
|
+
"default": "'stacked'",
|
|
876
|
+
"description": "Specify the kind of the group.",
|
|
877
|
+
"attribute": "layout"
|
|
878
|
+
}
|
|
879
|
+
],
|
|
880
|
+
"attributes": [
|
|
889
881
|
{
|
|
890
|
-
"name": "
|
|
882
|
+
"name": "wrapping",
|
|
891
883
|
"type": {
|
|
892
884
|
"text": "boolean"
|
|
893
885
|
},
|
|
894
886
|
"default": "false",
|
|
895
|
-
"description": "Specify if the
|
|
896
|
-
"fieldName": "
|
|
887
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
888
|
+
"fieldName": "wrapping"
|
|
897
889
|
},
|
|
898
890
|
{
|
|
899
|
-
"name": "
|
|
891
|
+
"name": "maxCount",
|
|
900
892
|
"type": {
|
|
901
|
-
"text": "
|
|
893
|
+
"text": "number"
|
|
902
894
|
},
|
|
903
|
-
"default": "
|
|
904
|
-
"description": "Specify
|
|
905
|
-
"fieldName": "
|
|
895
|
+
"default": "5",
|
|
896
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
897
|
+
"fieldName": "maxCount"
|
|
906
898
|
},
|
|
907
899
|
{
|
|
908
|
-
"name": "
|
|
900
|
+
"name": "size",
|
|
909
901
|
"type": {
|
|
910
|
-
"text": "
|
|
902
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
911
903
|
},
|
|
912
|
-
"default": "
|
|
913
|
-
"description": "
|
|
914
|
-
"fieldName": "
|
|
904
|
+
"default": "'md'",
|
|
905
|
+
"description": "Specify the size of all Avatars",
|
|
906
|
+
"fieldName": "size"
|
|
915
907
|
},
|
|
916
908
|
{
|
|
917
|
-
"name": "
|
|
909
|
+
"name": "layout",
|
|
918
910
|
"type": {
|
|
919
|
-
"text": "
|
|
911
|
+
"text": "'stacked' | 'spaced' | undefined"
|
|
920
912
|
},
|
|
921
|
-
"default": "
|
|
922
|
-
"description": "
|
|
923
|
-
"fieldName": "
|
|
913
|
+
"default": "'stacked'",
|
|
914
|
+
"description": "Specify the kind of the group.",
|
|
915
|
+
"fieldName": "layout"
|
|
924
916
|
}
|
|
925
917
|
],
|
|
926
918
|
"superclass": {
|
|
927
919
|
"name": "LitElement",
|
|
928
920
|
"package": "lit"
|
|
929
921
|
},
|
|
930
|
-
"tagName": "bm-
|
|
922
|
+
"tagName": "bm-avatar-group",
|
|
931
923
|
"customElement": true
|
|
932
924
|
}
|
|
933
925
|
],
|
|
934
926
|
"exports": [
|
|
935
927
|
{
|
|
936
928
|
"kind": "js",
|
|
937
|
-
"name": "
|
|
929
|
+
"name": "BmAvatarGroup",
|
|
938
930
|
"declaration": {
|
|
939
|
-
"name": "
|
|
940
|
-
"module": "libs/web-components/src/lib/
|
|
931
|
+
"name": "BmAvatarGroup",
|
|
932
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
941
933
|
}
|
|
942
934
|
},
|
|
943
935
|
{
|
|
944
936
|
"kind": "custom-element-definition",
|
|
945
|
-
"name": "bm-
|
|
937
|
+
"name": "bm-avatar-group",
|
|
946
938
|
"declaration": {
|
|
947
|
-
"name": "
|
|
948
|
-
"module": "libs/web-components/src/lib/
|
|
939
|
+
"name": "BmAvatarGroup",
|
|
940
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
949
941
|
}
|
|
950
942
|
}
|
|
951
943
|
]
|
|
952
944
|
},
|
|
953
945
|
{
|
|
954
946
|
"kind": "javascript-module",
|
|
955
|
-
"path": "libs/web-components/src/lib/
|
|
947
|
+
"path": "libs/web-components/src/lib/Avatar/index.ts",
|
|
956
948
|
"declarations": [],
|
|
957
949
|
"exports": [
|
|
958
950
|
{
|
|
@@ -960,154 +952,139 @@
|
|
|
960
952
|
"name": "*",
|
|
961
953
|
"declaration": {
|
|
962
954
|
"name": "*",
|
|
963
|
-
"package": "./
|
|
955
|
+
"package": "./Avatar"
|
|
956
|
+
}
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"kind": "js",
|
|
960
|
+
"name": "*",
|
|
961
|
+
"declaration": {
|
|
962
|
+
"name": "*",
|
|
963
|
+
"package": "./AvatarGroup"
|
|
964
964
|
}
|
|
965
965
|
}
|
|
966
966
|
]
|
|
967
967
|
},
|
|
968
968
|
{
|
|
969
969
|
"kind": "javascript-module",
|
|
970
|
-
"path": "libs/web-components/src/lib/
|
|
970
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
971
971
|
"declarations": [
|
|
972
972
|
{
|
|
973
973
|
"kind": "class",
|
|
974
|
-
"description": "`bm-badge`\n\n### Attributes:\n- **
|
|
975
|
-
"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",
|
|
976
976
|
"slots": [
|
|
977
977
|
{
|
|
978
|
-
"description": "Provide text for the
|
|
978
|
+
"description": "Provide text for the BadgeDot",
|
|
979
979
|
"name": "default"
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"description": "Specify a different icon for the Badge",
|
|
983
|
-
"name": "icon"
|
|
984
980
|
}
|
|
985
981
|
],
|
|
986
982
|
"members": [
|
|
987
|
-
{
|
|
988
|
-
"kind": "field",
|
|
989
|
-
"name": "appearance",
|
|
990
|
-
"type": {
|
|
991
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
992
|
-
},
|
|
993
|
-
"default": "'infoPrimary'",
|
|
994
|
-
"description": "Specify the appearance of the Badge",
|
|
995
|
-
"attribute": "appearance"
|
|
996
|
-
},
|
|
997
983
|
{
|
|
998
984
|
"kind": "field",
|
|
999
985
|
"name": "theme",
|
|
1000
986
|
"type": {
|
|
1001
987
|
"text": "'light' | 'dark' | undefined"
|
|
1002
988
|
},
|
|
1003
|
-
"description": "
|
|
989
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1004
990
|
"attribute": "theme"
|
|
1005
991
|
},
|
|
1006
992
|
{
|
|
1007
993
|
"kind": "field",
|
|
1008
|
-
"name": "
|
|
994
|
+
"name": "appearance",
|
|
1009
995
|
"type": {
|
|
1010
|
-
"text": "'
|
|
996
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1011
997
|
},
|
|
1012
|
-
"default": "'
|
|
1013
|
-
"description": "Specify the
|
|
1014
|
-
"attribute": "
|
|
998
|
+
"default": "'infoPrimary'",
|
|
999
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1000
|
+
"attribute": "appearance"
|
|
1015
1001
|
},
|
|
1016
1002
|
{
|
|
1017
1003
|
"kind": "field",
|
|
1018
1004
|
"name": "emphasis",
|
|
1019
1005
|
"type": {
|
|
1020
|
-
"text": "'strong' | '
|
|
1006
|
+
"text": "'strong' | 'subtle'"
|
|
1021
1007
|
},
|
|
1022
1008
|
"default": "'strong'",
|
|
1023
|
-
"description": "Specify the emphasis of the
|
|
1009
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1024
1010
|
"attribute": "emphasis"
|
|
1025
1011
|
},
|
|
1026
1012
|
{
|
|
1027
1013
|
"kind": "field",
|
|
1028
|
-
"name": "
|
|
1014
|
+
"name": "overrideDotColor",
|
|
1029
1015
|
"type": {
|
|
1030
|
-
"text": "
|
|
1016
|
+
"text": "string | undefined"
|
|
1031
1017
|
},
|
|
1032
|
-
"description": "
|
|
1033
|
-
"attribute": "
|
|
1018
|
+
"description": "Overrides default dot color",
|
|
1019
|
+
"attribute": "overrideDotColor"
|
|
1034
1020
|
}
|
|
1035
1021
|
],
|
|
1036
1022
|
"attributes": [
|
|
1037
|
-
{
|
|
1038
|
-
"name": "appearance",
|
|
1039
|
-
"type": {
|
|
1040
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1041
|
-
},
|
|
1042
|
-
"default": "'infoPrimary'",
|
|
1043
|
-
"description": "Specify the appearance of the Badge",
|
|
1044
|
-
"fieldName": "appearance"
|
|
1045
|
-
},
|
|
1046
1023
|
{
|
|
1047
1024
|
"name": "theme",
|
|
1048
1025
|
"type": {
|
|
1049
1026
|
"text": "'light' | 'dark' | undefined"
|
|
1050
1027
|
},
|
|
1051
|
-
"description": "
|
|
1028
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1052
1029
|
"fieldName": "theme"
|
|
1053
1030
|
},
|
|
1054
1031
|
{
|
|
1055
|
-
"name": "
|
|
1032
|
+
"name": "appearance",
|
|
1056
1033
|
"type": {
|
|
1057
|
-
"text": "'
|
|
1034
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1058
1035
|
},
|
|
1059
|
-
"default": "'
|
|
1060
|
-
"description": "Specify the
|
|
1061
|
-
"fieldName": "
|
|
1036
|
+
"default": "'infoPrimary'",
|
|
1037
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1038
|
+
"fieldName": "appearance"
|
|
1062
1039
|
},
|
|
1063
1040
|
{
|
|
1064
1041
|
"name": "emphasis",
|
|
1065
1042
|
"type": {
|
|
1066
|
-
"text": "'strong' | '
|
|
1043
|
+
"text": "'strong' | 'subtle'"
|
|
1067
1044
|
},
|
|
1068
1045
|
"default": "'strong'",
|
|
1069
|
-
"description": "Specify the emphasis of the
|
|
1046
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1070
1047
|
"fieldName": "emphasis"
|
|
1071
1048
|
},
|
|
1072
1049
|
{
|
|
1073
|
-
"name": "
|
|
1050
|
+
"name": "overrideDotColor",
|
|
1074
1051
|
"type": {
|
|
1075
|
-
"text": "
|
|
1052
|
+
"text": "string | undefined"
|
|
1076
1053
|
},
|
|
1077
|
-
"description": "
|
|
1078
|
-
"fieldName": "
|
|
1054
|
+
"description": "Overrides default dot color",
|
|
1055
|
+
"fieldName": "overrideDotColor"
|
|
1079
1056
|
}
|
|
1080
1057
|
],
|
|
1081
1058
|
"superclass": {
|
|
1082
1059
|
"name": "LitElement",
|
|
1083
1060
|
"package": "lit"
|
|
1084
1061
|
},
|
|
1085
|
-
"tagName": "bm-badge",
|
|
1062
|
+
"tagName": "bm-badge-dot",
|
|
1086
1063
|
"customElement": true
|
|
1087
1064
|
}
|
|
1088
1065
|
],
|
|
1089
1066
|
"exports": [
|
|
1090
1067
|
{
|
|
1091
1068
|
"kind": "js",
|
|
1092
|
-
"name": "
|
|
1069
|
+
"name": "BmBadgeDot",
|
|
1093
1070
|
"declaration": {
|
|
1094
|
-
"name": "
|
|
1095
|
-
"module": "libs/web-components/src/lib/
|
|
1071
|
+
"name": "BmBadgeDot",
|
|
1072
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1096
1073
|
}
|
|
1097
1074
|
},
|
|
1098
1075
|
{
|
|
1099
1076
|
"kind": "custom-element-definition",
|
|
1100
|
-
"name": "bm-badge",
|
|
1077
|
+
"name": "bm-badge-dot",
|
|
1101
1078
|
"declaration": {
|
|
1102
|
-
"name": "
|
|
1103
|
-
"module": "libs/web-components/src/lib/
|
|
1079
|
+
"name": "BmBadgeDot",
|
|
1080
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1104
1081
|
}
|
|
1105
1082
|
}
|
|
1106
1083
|
]
|
|
1107
1084
|
},
|
|
1108
1085
|
{
|
|
1109
1086
|
"kind": "javascript-module",
|
|
1110
|
-
"path": "libs/web-components/src/lib/
|
|
1087
|
+
"path": "libs/web-components/src/lib/BadgeDot/index.ts",
|
|
1111
1088
|
"declarations": [],
|
|
1112
1089
|
"exports": [
|
|
1113
1090
|
{
|
|
@@ -1115,131 +1092,154 @@
|
|
|
1115
1092
|
"name": "*",
|
|
1116
1093
|
"declaration": {
|
|
1117
1094
|
"name": "*",
|
|
1118
|
-
"package": "./
|
|
1095
|
+
"package": "./BadgeDot"
|
|
1119
1096
|
}
|
|
1120
1097
|
}
|
|
1121
1098
|
]
|
|
1122
1099
|
},
|
|
1123
1100
|
{
|
|
1124
1101
|
"kind": "javascript-module",
|
|
1125
|
-
"path": "libs/web-components/src/lib/
|
|
1102
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
1126
1103
|
"declarations": [
|
|
1127
1104
|
{
|
|
1128
1105
|
"kind": "class",
|
|
1129
|
-
"description": "`bm-badge
|
|
1130
|
-
"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",
|
|
1131
1108
|
"slots": [
|
|
1132
1109
|
{
|
|
1133
|
-
"description": "Provide text for the
|
|
1110
|
+
"description": "Provide text for the Badge",
|
|
1134
1111
|
"name": "default"
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"description": "Specify a different icon for the Badge",
|
|
1115
|
+
"name": "icon"
|
|
1135
1116
|
}
|
|
1136
1117
|
],
|
|
1137
1118
|
"members": [
|
|
1119
|
+
{
|
|
1120
|
+
"kind": "field",
|
|
1121
|
+
"name": "appearance",
|
|
1122
|
+
"type": {
|
|
1123
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1124
|
+
},
|
|
1125
|
+
"default": "'infoPrimary'",
|
|
1126
|
+
"description": "Specify the appearance of the Badge",
|
|
1127
|
+
"attribute": "appearance"
|
|
1128
|
+
},
|
|
1138
1129
|
{
|
|
1139
1130
|
"kind": "field",
|
|
1140
1131
|
"name": "theme",
|
|
1141
1132
|
"type": {
|
|
1142
1133
|
"text": "'light' | 'dark' | undefined"
|
|
1143
1134
|
},
|
|
1144
|
-
"description": "
|
|
1135
|
+
"description": "Theme of the Badge",
|
|
1145
1136
|
"attribute": "theme"
|
|
1146
1137
|
},
|
|
1147
1138
|
{
|
|
1148
1139
|
"kind": "field",
|
|
1149
|
-
"name": "
|
|
1140
|
+
"name": "size",
|
|
1150
1141
|
"type": {
|
|
1151
|
-
"text": "'
|
|
1142
|
+
"text": "'sm' | 'md' | undefined"
|
|
1152
1143
|
},
|
|
1153
|
-
"default": "'
|
|
1154
|
-
"description": "Specify the
|
|
1155
|
-
"attribute": "
|
|
1144
|
+
"default": "'sm'",
|
|
1145
|
+
"description": "Specify the size of the Badge",
|
|
1146
|
+
"attribute": "size"
|
|
1156
1147
|
},
|
|
1157
1148
|
{
|
|
1158
1149
|
"kind": "field",
|
|
1159
1150
|
"name": "emphasis",
|
|
1160
1151
|
"type": {
|
|
1161
|
-
"text": "'strong' | 'subtle'"
|
|
1152
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1162
1153
|
},
|
|
1163
1154
|
"default": "'strong'",
|
|
1164
|
-
"description": "Specify the emphasis of the
|
|
1155
|
+
"description": "Specify the emphasis of the Badge",
|
|
1165
1156
|
"attribute": "emphasis"
|
|
1166
1157
|
},
|
|
1167
1158
|
{
|
|
1168
1159
|
"kind": "field",
|
|
1169
|
-
"name": "
|
|
1160
|
+
"name": "hideIcon",
|
|
1170
1161
|
"type": {
|
|
1171
|
-
"text": "
|
|
1162
|
+
"text": "boolean | undefined"
|
|
1172
1163
|
},
|
|
1173
|
-
"description": "
|
|
1174
|
-
"attribute": "
|
|
1164
|
+
"description": "Hides Badge icon",
|
|
1165
|
+
"attribute": "hideIcon"
|
|
1175
1166
|
}
|
|
1176
1167
|
],
|
|
1177
1168
|
"attributes": [
|
|
1169
|
+
{
|
|
1170
|
+
"name": "appearance",
|
|
1171
|
+
"type": {
|
|
1172
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1173
|
+
},
|
|
1174
|
+
"default": "'infoPrimary'",
|
|
1175
|
+
"description": "Specify the appearance of the Badge",
|
|
1176
|
+
"fieldName": "appearance"
|
|
1177
|
+
},
|
|
1178
1178
|
{
|
|
1179
1179
|
"name": "theme",
|
|
1180
1180
|
"type": {
|
|
1181
1181
|
"text": "'light' | 'dark' | undefined"
|
|
1182
1182
|
},
|
|
1183
|
-
"description": "
|
|
1183
|
+
"description": "Theme of the Badge",
|
|
1184
1184
|
"fieldName": "theme"
|
|
1185
1185
|
},
|
|
1186
1186
|
{
|
|
1187
|
-
"name": "
|
|
1187
|
+
"name": "size",
|
|
1188
1188
|
"type": {
|
|
1189
|
-
"text": "'
|
|
1189
|
+
"text": "'sm' | 'md' | undefined"
|
|
1190
1190
|
},
|
|
1191
|
-
"default": "'
|
|
1192
|
-
"description": "Specify the
|
|
1193
|
-
"fieldName": "
|
|
1191
|
+
"default": "'sm'",
|
|
1192
|
+
"description": "Specify the size of the Badge",
|
|
1193
|
+
"fieldName": "size"
|
|
1194
1194
|
},
|
|
1195
1195
|
{
|
|
1196
1196
|
"name": "emphasis",
|
|
1197
1197
|
"type": {
|
|
1198
|
-
"text": "'strong' | 'subtle'"
|
|
1198
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1199
1199
|
},
|
|
1200
1200
|
"default": "'strong'",
|
|
1201
|
-
"description": "Specify the emphasis of the
|
|
1201
|
+
"description": "Specify the emphasis of the Badge",
|
|
1202
1202
|
"fieldName": "emphasis"
|
|
1203
1203
|
},
|
|
1204
1204
|
{
|
|
1205
|
-
"name": "
|
|
1205
|
+
"name": "hideIcon",
|
|
1206
1206
|
"type": {
|
|
1207
|
-
"text": "
|
|
1207
|
+
"text": "boolean | undefined"
|
|
1208
1208
|
},
|
|
1209
|
-
"description": "
|
|
1210
|
-
"fieldName": "
|
|
1209
|
+
"description": "Hides Badge icon",
|
|
1210
|
+
"fieldName": "hideIcon"
|
|
1211
1211
|
}
|
|
1212
1212
|
],
|
|
1213
1213
|
"superclass": {
|
|
1214
1214
|
"name": "LitElement",
|
|
1215
1215
|
"package": "lit"
|
|
1216
1216
|
},
|
|
1217
|
-
"tagName": "bm-badge
|
|
1217
|
+
"tagName": "bm-badge",
|
|
1218
1218
|
"customElement": true
|
|
1219
1219
|
}
|
|
1220
1220
|
],
|
|
1221
1221
|
"exports": [
|
|
1222
1222
|
{
|
|
1223
1223
|
"kind": "js",
|
|
1224
|
-
"name": "
|
|
1224
|
+
"name": "BmBadge",
|
|
1225
1225
|
"declaration": {
|
|
1226
|
-
"name": "
|
|
1227
|
-
"module": "libs/web-components/src/lib/
|
|
1226
|
+
"name": "BmBadge",
|
|
1227
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1228
1228
|
}
|
|
1229
1229
|
},
|
|
1230
1230
|
{
|
|
1231
1231
|
"kind": "custom-element-definition",
|
|
1232
|
-
"name": "bm-badge
|
|
1232
|
+
"name": "bm-badge",
|
|
1233
1233
|
"declaration": {
|
|
1234
|
-
"name": "
|
|
1235
|
-
"module": "libs/web-components/src/lib/
|
|
1234
|
+
"name": "BmBadge",
|
|
1235
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1236
1236
|
}
|
|
1237
1237
|
}
|
|
1238
1238
|
]
|
|
1239
1239
|
},
|
|
1240
1240
|
{
|
|
1241
1241
|
"kind": "javascript-module",
|
|
1242
|
-
"path": "libs/web-components/src/lib/
|
|
1242
|
+
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
1243
1243
|
"declarations": [],
|
|
1244
1244
|
"exports": [
|
|
1245
1245
|
{
|
|
@@ -1247,7 +1247,7 @@
|
|
|
1247
1247
|
"name": "*",
|
|
1248
1248
|
"declaration": {
|
|
1249
1249
|
"name": "*",
|
|
1250
|
-
"package": "./
|
|
1250
|
+
"package": "./Badge"
|
|
1251
1251
|
}
|
|
1252
1252
|
}
|
|
1253
1253
|
]
|
|
@@ -8234,132 +8234,347 @@
|
|
|
8234
8234
|
{
|
|
8235
8235
|
"name": "initialValues",
|
|
8236
8236
|
"type": {
|
|
8237
|
-
"text": "Record<string, FormValue>"
|
|
8237
|
+
"text": "Record<string, FormValue>"
|
|
8238
|
+
},
|
|
8239
|
+
"default": "{}",
|
|
8240
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
8241
|
+
"fieldName": "initialValues"
|
|
8242
|
+
},
|
|
8243
|
+
{
|
|
8244
|
+
"name": "required",
|
|
8245
|
+
"type": {
|
|
8246
|
+
"text": "boolean"
|
|
8247
|
+
},
|
|
8248
|
+
"default": "false",
|
|
8249
|
+
"description": "Specify if input is a required",
|
|
8250
|
+
"fieldName": "required"
|
|
8251
|
+
},
|
|
8252
|
+
{
|
|
8253
|
+
"name": "disabled",
|
|
8254
|
+
"type": {
|
|
8255
|
+
"text": "boolean"
|
|
8256
|
+
},
|
|
8257
|
+
"default": "false",
|
|
8258
|
+
"description": "Specify if input is a disabled",
|
|
8259
|
+
"fieldName": "disabled"
|
|
8260
|
+
},
|
|
8261
|
+
{
|
|
8262
|
+
"name": "readOnly",
|
|
8263
|
+
"type": {
|
|
8264
|
+
"text": "boolean"
|
|
8265
|
+
},
|
|
8266
|
+
"default": "false",
|
|
8267
|
+
"description": "Specify if input is a read only",
|
|
8268
|
+
"fieldName": "readOnly"
|
|
8269
|
+
},
|
|
8270
|
+
{
|
|
8271
|
+
"name": "action",
|
|
8272
|
+
"type": {
|
|
8273
|
+
"text": "string | undefined"
|
|
8274
|
+
},
|
|
8275
|
+
"fieldName": "action"
|
|
8276
|
+
},
|
|
8277
|
+
{
|
|
8278
|
+
"name": "method",
|
|
8279
|
+
"type": {
|
|
8280
|
+
"text": "string | undefined"
|
|
8281
|
+
},
|
|
8282
|
+
"fieldName": "method"
|
|
8283
|
+
},
|
|
8284
|
+
{
|
|
8285
|
+
"name": "target",
|
|
8286
|
+
"type": {
|
|
8287
|
+
"text": "string | undefined"
|
|
8288
|
+
},
|
|
8289
|
+
"fieldName": "target"
|
|
8290
|
+
},
|
|
8291
|
+
{
|
|
8292
|
+
"name": "enctype",
|
|
8293
|
+
"type": {
|
|
8294
|
+
"text": "string | undefined"
|
|
8295
|
+
},
|
|
8296
|
+
"fieldName": "enctype"
|
|
8297
|
+
}
|
|
8298
|
+
],
|
|
8299
|
+
"superclass": {
|
|
8300
|
+
"name": "LitElement",
|
|
8301
|
+
"package": "lit"
|
|
8302
|
+
},
|
|
8303
|
+
"summary": "`bm-form`",
|
|
8304
|
+
"tagName": "bm-form",
|
|
8305
|
+
"customElement": true
|
|
8306
|
+
}
|
|
8307
|
+
],
|
|
8308
|
+
"exports": [
|
|
8309
|
+
{
|
|
8310
|
+
"kind": "js",
|
|
8311
|
+
"name": "validators",
|
|
8312
|
+
"declaration": {
|
|
8313
|
+
"name": "validators",
|
|
8314
|
+
"package": "@viasat/beam-shared/components/form"
|
|
8315
|
+
}
|
|
8316
|
+
},
|
|
8317
|
+
{
|
|
8318
|
+
"kind": "js",
|
|
8319
|
+
"name": "BmForm",
|
|
8320
|
+
"declaration": {
|
|
8321
|
+
"name": "BmForm",
|
|
8322
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.ts"
|
|
8323
|
+
}
|
|
8324
|
+
},
|
|
8325
|
+
{
|
|
8326
|
+
"kind": "custom-element-definition",
|
|
8327
|
+
"name": "bm-form",
|
|
8328
|
+
"declaration": {
|
|
8329
|
+
"name": "BmForm",
|
|
8330
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.ts"
|
|
8331
|
+
}
|
|
8332
|
+
}
|
|
8333
|
+
]
|
|
8334
|
+
},
|
|
8335
|
+
{
|
|
8336
|
+
"kind": "javascript-module",
|
|
8337
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.utils.ts",
|
|
8338
|
+
"declarations": [
|
|
8339
|
+
{
|
|
8340
|
+
"kind": "function",
|
|
8341
|
+
"name": "createId",
|
|
8342
|
+
"return": {
|
|
8343
|
+
"type": {
|
|
8344
|
+
"text": "string"
|
|
8345
|
+
}
|
|
8346
|
+
}
|
|
8347
|
+
}
|
|
8348
|
+
],
|
|
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"
|
|
8238
8486
|
},
|
|
8239
|
-
"
|
|
8240
|
-
"
|
|
8241
|
-
"fieldName": "initialValues"
|
|
8487
|
+
"description": "Specify the text for the label",
|
|
8488
|
+
"fieldName": "label"
|
|
8242
8489
|
},
|
|
8243
8490
|
{
|
|
8244
|
-
"name": "
|
|
8491
|
+
"name": "error",
|
|
8245
8492
|
"type": {
|
|
8246
|
-
"text": "boolean"
|
|
8493
|
+
"text": "boolean | undefined"
|
|
8247
8494
|
},
|
|
8248
|
-
"
|
|
8249
|
-
"
|
|
8250
|
-
"fieldName": "required"
|
|
8495
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8496
|
+
"fieldName": "error"
|
|
8251
8497
|
},
|
|
8252
8498
|
{
|
|
8253
|
-
"name": "
|
|
8499
|
+
"name": "readOnly",
|
|
8254
8500
|
"type": {
|
|
8255
|
-
"text": "boolean"
|
|
8501
|
+
"text": "boolean | undefined"
|
|
8256
8502
|
},
|
|
8257
|
-
"
|
|
8258
|
-
"
|
|
8259
|
-
"fieldName": "disabled"
|
|
8503
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8504
|
+
"fieldName": "readOnly"
|
|
8260
8505
|
},
|
|
8261
8506
|
{
|
|
8262
|
-
"name": "
|
|
8507
|
+
"name": "disabled",
|
|
8263
8508
|
"type": {
|
|
8264
|
-
"text": "boolean"
|
|
8509
|
+
"text": "boolean | undefined"
|
|
8265
8510
|
},
|
|
8266
|
-
"
|
|
8267
|
-
"
|
|
8268
|
-
"fieldName": "readOnly"
|
|
8511
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8512
|
+
"fieldName": "disabled"
|
|
8269
8513
|
},
|
|
8270
8514
|
{
|
|
8271
|
-
"name": "
|
|
8515
|
+
"name": "theme",
|
|
8272
8516
|
"type": {
|
|
8273
|
-
"text": "
|
|
8517
|
+
"text": "'light' | 'dark' | undefined"
|
|
8274
8518
|
},
|
|
8275
|
-
"
|
|
8519
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8520
|
+
"fieldName": "theme"
|
|
8276
8521
|
},
|
|
8277
8522
|
{
|
|
8278
|
-
"name": "
|
|
8523
|
+
"name": "value",
|
|
8279
8524
|
"type": {
|
|
8280
8525
|
"text": "string | undefined"
|
|
8281
8526
|
},
|
|
8282
|
-
"
|
|
8527
|
+
"description": "The value attribute for the input element",
|
|
8528
|
+
"fieldName": "value"
|
|
8283
8529
|
},
|
|
8284
8530
|
{
|
|
8285
|
-
"name": "
|
|
8531
|
+
"name": "checked",
|
|
8286
8532
|
"type": {
|
|
8287
|
-
"text": "
|
|
8533
|
+
"text": "boolean"
|
|
8288
8534
|
},
|
|
8289
|
-
"
|
|
8535
|
+
"default": "false",
|
|
8536
|
+
"description": "The checked attribute for the input element",
|
|
8537
|
+
"fieldName": "checked"
|
|
8290
8538
|
},
|
|
8291
8539
|
{
|
|
8292
|
-
"name": "
|
|
8540
|
+
"name": "onKeyDown",
|
|
8293
8541
|
"type": {
|
|
8294
|
-
"text": "
|
|
8542
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8295
8543
|
},
|
|
8296
|
-
"
|
|
8544
|
+
"description": "A user-defined function to handle keydown events",
|
|
8545
|
+
"fieldName": "onKeyDown"
|
|
8297
8546
|
}
|
|
8298
8547
|
],
|
|
8299
8548
|
"superclass": {
|
|
8300
8549
|
"name": "LitElement",
|
|
8301
8550
|
"package": "lit"
|
|
8302
8551
|
},
|
|
8303
|
-
"
|
|
8304
|
-
"tagName": "bm-form",
|
|
8552
|
+
"tagName": "bm-radio-button",
|
|
8305
8553
|
"customElement": true
|
|
8306
8554
|
}
|
|
8307
8555
|
],
|
|
8308
8556
|
"exports": [
|
|
8309
8557
|
{
|
|
8310
8558
|
"kind": "js",
|
|
8311
|
-
"name": "
|
|
8312
|
-
"declaration": {
|
|
8313
|
-
"name": "validators",
|
|
8314
|
-
"package": "@viasat/beam-shared/components/form"
|
|
8315
|
-
}
|
|
8316
|
-
},
|
|
8317
|
-
{
|
|
8318
|
-
"kind": "js",
|
|
8319
|
-
"name": "BmForm",
|
|
8559
|
+
"name": "BmRadioButton",
|
|
8320
8560
|
"declaration": {
|
|
8321
|
-
"name": "
|
|
8322
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8561
|
+
"name": "BmRadioButton",
|
|
8562
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8323
8563
|
}
|
|
8324
8564
|
},
|
|
8325
8565
|
{
|
|
8326
8566
|
"kind": "custom-element-definition",
|
|
8327
|
-
"name": "bm-
|
|
8328
|
-
"declaration": {
|
|
8329
|
-
"name": "BmForm",
|
|
8330
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.ts"
|
|
8331
|
-
}
|
|
8332
|
-
}
|
|
8333
|
-
]
|
|
8334
|
-
},
|
|
8335
|
-
{
|
|
8336
|
-
"kind": "javascript-module",
|
|
8337
|
-
"path": "libs/web-components/src/lib/wip/Form/Form.utils.ts",
|
|
8338
|
-
"declarations": [
|
|
8339
|
-
{
|
|
8340
|
-
"kind": "function",
|
|
8341
|
-
"name": "createId",
|
|
8342
|
-
"return": {
|
|
8343
|
-
"type": {
|
|
8344
|
-
"text": "string"
|
|
8345
|
-
}
|
|
8346
|
-
}
|
|
8347
|
-
}
|
|
8348
|
-
],
|
|
8349
|
-
"exports": [
|
|
8350
|
-
{
|
|
8351
|
-
"kind": "js",
|
|
8352
|
-
"name": "createId",
|
|
8567
|
+
"name": "bm-radio-button",
|
|
8353
8568
|
"declaration": {
|
|
8354
|
-
"name": "
|
|
8355
|
-
"module": "libs/web-components/src/lib/wip/
|
|
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
|
]
|
|
@@ -8829,150 +9044,157 @@
|
|
|
8829
9044
|
},
|
|
8830
9045
|
{
|
|
8831
9046
|
"kind": "javascript-module",
|
|
8832
|
-
"path": "libs/web-components/src/lib/wip/
|
|
9047
|
+
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
8833
9048
|
"declarations": [
|
|
8834
9049
|
{
|
|
8835
9050
|
"kind": "class",
|
|
8836
|
-
"description": "`bm-
|
|
8837
|
-
"name": "
|
|
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
|
+
],
|
|
8838
9063
|
"members": [
|
|
8839
9064
|
{
|
|
8840
9065
|
"kind": "field",
|
|
8841
|
-
"name": "
|
|
9066
|
+
"name": "inputChoiceGroupContext",
|
|
8842
9067
|
"type": {
|
|
8843
|
-
"text": "
|
|
8844
|
-
}
|
|
8845
|
-
"description": "Specify the text for the label",
|
|
8846
|
-
"attribute": "label"
|
|
9068
|
+
"text": "InputChoiceGroupContextProps"
|
|
9069
|
+
}
|
|
8847
9070
|
},
|
|
8848
9071
|
{
|
|
8849
9072
|
"kind": "field",
|
|
8850
|
-
"name": "
|
|
9073
|
+
"name": "onText",
|
|
8851
9074
|
"type": {
|
|
8852
|
-
"text": "
|
|
9075
|
+
"text": "string | undefined"
|
|
8853
9076
|
},
|
|
8854
|
-
"
|
|
8855
|
-
"
|
|
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"
|
|
8856
9080
|
},
|
|
8857
9081
|
{
|
|
8858
9082
|
"kind": "field",
|
|
8859
|
-
"name": "
|
|
9083
|
+
"name": "offText",
|
|
8860
9084
|
"type": {
|
|
8861
|
-
"text": "
|
|
9085
|
+
"text": "string | undefined"
|
|
8862
9086
|
},
|
|
8863
|
-
"
|
|
8864
|
-
"
|
|
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"
|
|
8865
9090
|
},
|
|
8866
9091
|
{
|
|
8867
9092
|
"kind": "field",
|
|
8868
|
-
"name": "
|
|
9093
|
+
"name": "theme",
|
|
8869
9094
|
"type": {
|
|
8870
|
-
"text": "
|
|
9095
|
+
"text": "ThemeTypes | undefined"
|
|
8871
9096
|
},
|
|
8872
|
-
"
|
|
8873
|
-
"
|
|
9097
|
+
"default": "undefined",
|
|
9098
|
+
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
8874
9099
|
},
|
|
8875
9100
|
{
|
|
8876
9101
|
"kind": "field",
|
|
8877
|
-
"name": "
|
|
9102
|
+
"name": "textPosition",
|
|
8878
9103
|
"type": {
|
|
8879
|
-
"text": "'
|
|
9104
|
+
"text": "'before' | 'after'"
|
|
8880
9105
|
},
|
|
8881
|
-
"
|
|
8882
|
-
"
|
|
9106
|
+
"default": "'after'",
|
|
9107
|
+
"description": "Specify the position of the side label",
|
|
9108
|
+
"attribute": "textPosition"
|
|
8883
9109
|
},
|
|
8884
9110
|
{
|
|
8885
9111
|
"kind": "field",
|
|
8886
|
-
"name": "
|
|
9112
|
+
"name": "readOnly",
|
|
8887
9113
|
"type": {
|
|
8888
|
-
"text": "
|
|
9114
|
+
"text": "boolean"
|
|
8889
9115
|
},
|
|
8890
|
-
"
|
|
8891
|
-
"
|
|
9116
|
+
"default": "false",
|
|
9117
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
9118
|
+
"attribute": "readOnly"
|
|
8892
9119
|
},
|
|
8893
9120
|
{
|
|
8894
9121
|
"kind": "field",
|
|
8895
|
-
"name": "
|
|
9122
|
+
"name": "disabled",
|
|
8896
9123
|
"type": {
|
|
8897
9124
|
"text": "boolean"
|
|
8898
9125
|
},
|
|
8899
9126
|
"default": "false",
|
|
8900
|
-
"description": "
|
|
8901
|
-
"attribute": "
|
|
9127
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
9128
|
+
"attribute": "disabled"
|
|
8902
9129
|
},
|
|
8903
9130
|
{
|
|
8904
9131
|
"kind": "field",
|
|
8905
|
-
"name": "
|
|
9132
|
+
"name": "checked",
|
|
8906
9133
|
"type": {
|
|
8907
|
-
"text": "
|
|
9134
|
+
"text": "boolean"
|
|
8908
9135
|
},
|
|
8909
|
-
"
|
|
8910
|
-
"attribute": "
|
|
9136
|
+
"default": "false",
|
|
9137
|
+
"attribute": "checked"
|
|
8911
9138
|
},
|
|
8912
9139
|
{
|
|
8913
9140
|
"kind": "field",
|
|
8914
|
-
"name": "
|
|
9141
|
+
"name": "value",
|
|
8915
9142
|
"type": {
|
|
8916
|
-
"text": "
|
|
8917
|
-
}
|
|
9143
|
+
"text": "string | undefined"
|
|
9144
|
+
},
|
|
9145
|
+
"description": "The value attribute for the input element",
|
|
9146
|
+
"attribute": "value"
|
|
8918
9147
|
},
|
|
8919
9148
|
{
|
|
8920
9149
|
"kind": "field",
|
|
8921
|
-
"name": "
|
|
8922
|
-
},
|
|
8923
|
-
{
|
|
8924
|
-
"kind": "method",
|
|
8925
|
-
"name": "focus"
|
|
9150
|
+
"name": "switchRef"
|
|
8926
9151
|
}
|
|
8927
9152
|
],
|
|
8928
9153
|
"attributes": [
|
|
8929
9154
|
{
|
|
8930
|
-
"name": "
|
|
9155
|
+
"name": "onText",
|
|
8931
9156
|
"type": {
|
|
8932
9157
|
"text": "string | undefined"
|
|
8933
9158
|
},
|
|
8934
|
-
"
|
|
8935
|
-
"
|
|
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"
|
|
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"
|
|
8944
9162
|
},
|
|
8945
9163
|
{
|
|
8946
|
-
"name": "
|
|
9164
|
+
"name": "offText",
|
|
8947
9165
|
"type": {
|
|
8948
|
-
"text": "
|
|
9166
|
+
"text": "string | undefined"
|
|
8949
9167
|
},
|
|
8950
|
-
"
|
|
8951
|
-
"
|
|
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"
|
|
8952
9171
|
},
|
|
8953
9172
|
{
|
|
8954
|
-
"name": "
|
|
9173
|
+
"name": "textPosition",
|
|
8955
9174
|
"type": {
|
|
8956
|
-
"text": "
|
|
9175
|
+
"text": "'before' | 'after'"
|
|
8957
9176
|
},
|
|
8958
|
-
"
|
|
8959
|
-
"
|
|
9177
|
+
"default": "'after'",
|
|
9178
|
+
"description": "Specify the position of the side label",
|
|
9179
|
+
"fieldName": "textPosition"
|
|
8960
9180
|
},
|
|
8961
9181
|
{
|
|
8962
|
-
"name": "
|
|
9182
|
+
"name": "readOnly",
|
|
8963
9183
|
"type": {
|
|
8964
|
-
"text": "
|
|
9184
|
+
"text": "boolean"
|
|
8965
9185
|
},
|
|
8966
|
-
"
|
|
8967
|
-
"
|
|
9186
|
+
"default": "false",
|
|
9187
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
9188
|
+
"fieldName": "readOnly"
|
|
8968
9189
|
},
|
|
8969
9190
|
{
|
|
8970
|
-
"name": "
|
|
9191
|
+
"name": "disabled",
|
|
8971
9192
|
"type": {
|
|
8972
|
-
"text": "
|
|
9193
|
+
"text": "boolean"
|
|
8973
9194
|
},
|
|
8974
|
-
"
|
|
8975
|
-
"
|
|
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",
|