@viasat/beam-web-components 2.10.2 → 2.12.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 +1616 -1616
- package/package.json +6 -6
- package/vscode.html-custom-data.json +228 -228
package/custom-elements.json
CHANGED
|
@@ -294,376 +294,405 @@
|
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"kind": "javascript-module",
|
|
297
|
-
"path": "libs/web-components/src/lib/
|
|
297
|
+
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
298
298
|
"declarations": [
|
|
299
299
|
{
|
|
300
300
|
"kind": "class",
|
|
301
|
-
"description": "`bm-
|
|
302
|
-
"name": "
|
|
301
|
+
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
|
|
302
|
+
"name": "BmAlert",
|
|
303
303
|
"slots": [
|
|
304
304
|
{
|
|
305
|
-
"description": "
|
|
305
|
+
"description": "Specify a different icon for the Alert",
|
|
306
306
|
"name": "icon"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
310
|
+
"name": "heading"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
314
|
+
"name": "body"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"description": "Specify if actions display on the Alert",
|
|
318
|
+
"name": "actions"
|
|
307
319
|
}
|
|
308
320
|
],
|
|
309
321
|
"members": [
|
|
310
322
|
{
|
|
311
323
|
"kind": "field",
|
|
312
|
-
"name": "
|
|
324
|
+
"name": "heading",
|
|
313
325
|
"type": {
|
|
314
|
-
"text": "
|
|
326
|
+
"text": "string | undefined"
|
|
315
327
|
},
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"attribute": "appearance"
|
|
328
|
+
"description": "Specify the heading text for Alert",
|
|
329
|
+
"attribute": "heading"
|
|
319
330
|
},
|
|
320
331
|
{
|
|
321
332
|
"kind": "field",
|
|
322
|
-
"name": "
|
|
333
|
+
"name": "body",
|
|
323
334
|
"type": {
|
|
324
335
|
"text": "string | undefined"
|
|
325
336
|
},
|
|
326
|
-
"description": "Specify
|
|
327
|
-
"attribute": "
|
|
337
|
+
"description": "Specify the body text for Alert",
|
|
338
|
+
"attribute": "body"
|
|
328
339
|
},
|
|
329
340
|
{
|
|
330
341
|
"kind": "field",
|
|
331
|
-
"name": "
|
|
342
|
+
"name": "size",
|
|
332
343
|
"type": {
|
|
333
|
-
"text": "
|
|
344
|
+
"text": "'sm' | 'md'"
|
|
334
345
|
},
|
|
335
|
-
"
|
|
336
|
-
"
|
|
346
|
+
"default": "'sm'",
|
|
347
|
+
"description": "Specify the size of the Alert",
|
|
348
|
+
"attribute": "size"
|
|
337
349
|
},
|
|
338
350
|
{
|
|
339
351
|
"kind": "field",
|
|
340
|
-
"name": "
|
|
352
|
+
"name": "fullWidth",
|
|
341
353
|
"type": {
|
|
342
|
-
"text": "
|
|
354
|
+
"text": "boolean"
|
|
343
355
|
},
|
|
344
|
-
"
|
|
345
|
-
"
|
|
356
|
+
"default": "false",
|
|
357
|
+
"description": "Specify if the Alert has no border radius",
|
|
358
|
+
"attribute": "fullWidth"
|
|
346
359
|
},
|
|
347
360
|
{
|
|
348
361
|
"kind": "field",
|
|
349
|
-
"name": "
|
|
362
|
+
"name": "theme",
|
|
350
363
|
"type": {
|
|
351
|
-
"text": "'
|
|
364
|
+
"text": "'light' | 'dark' | undefined"
|
|
352
365
|
},
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
-
"attribute": "size"
|
|
366
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
367
|
+
"attribute": "theme"
|
|
356
368
|
},
|
|
357
369
|
{
|
|
358
370
|
"kind": "field",
|
|
359
|
-
"name": "
|
|
371
|
+
"name": "appearance",
|
|
360
372
|
"type": {
|
|
361
|
-
"text": "
|
|
373
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
374
|
+
},
|
|
375
|
+
"default": "'infoPrimary'",
|
|
376
|
+
"description": "Specify the appearance of the Alert",
|
|
377
|
+
"attribute": "appearance"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"kind": "field",
|
|
381
|
+
"name": "hidden",
|
|
382
|
+
"type": {
|
|
383
|
+
"text": "boolean"
|
|
362
384
|
},
|
|
363
385
|
"default": "false",
|
|
364
|
-
"description": "Specify if the
|
|
365
|
-
"attribute": "
|
|
386
|
+
"description": "Specify if the Alert is hidden",
|
|
387
|
+
"attribute": "hidden"
|
|
366
388
|
},
|
|
367
389
|
{
|
|
368
390
|
"kind": "field",
|
|
369
|
-
"name": "
|
|
391
|
+
"name": "hideIcon",
|
|
370
392
|
"type": {
|
|
371
|
-
"text": "
|
|
393
|
+
"text": "boolean"
|
|
372
394
|
},
|
|
373
|
-
"default": "
|
|
374
|
-
"description": "Specify the
|
|
375
|
-
"attribute": "
|
|
395
|
+
"default": "false",
|
|
396
|
+
"description": "Specify if the icon displays on the Alert",
|
|
397
|
+
"attribute": "hideIcon"
|
|
376
398
|
},
|
|
377
399
|
{
|
|
378
400
|
"kind": "field",
|
|
379
|
-
"name": "
|
|
401
|
+
"name": "dismissible",
|
|
380
402
|
"type": {
|
|
381
403
|
"text": "boolean"
|
|
382
404
|
},
|
|
383
405
|
"default": "false",
|
|
384
|
-
"description": "
|
|
385
|
-
"attribute": "
|
|
406
|
+
"description": "Specify if the Alert can be dismissed",
|
|
407
|
+
"attribute": "dismissible"
|
|
386
408
|
},
|
|
387
409
|
{
|
|
388
410
|
"kind": "field",
|
|
389
|
-
"name": "
|
|
411
|
+
"name": "disableAutoFocus",
|
|
390
412
|
"type": {
|
|
391
413
|
"text": "boolean"
|
|
392
414
|
},
|
|
393
415
|
"default": "false",
|
|
394
|
-
"description": "
|
|
395
|
-
"attribute": "
|
|
416
|
+
"description": "Prevent autofocus on show",
|
|
417
|
+
"attribute": "disableAutoFocus"
|
|
396
418
|
},
|
|
397
419
|
{
|
|
398
420
|
"kind": "field",
|
|
399
|
-
"name": "
|
|
421
|
+
"name": "disableCloseOnEscape",
|
|
400
422
|
"type": {
|
|
401
423
|
"text": "boolean"
|
|
402
424
|
},
|
|
403
425
|
"default": "false",
|
|
404
|
-
"
|
|
426
|
+
"description": "Prevent Escape from closing",
|
|
427
|
+
"attribute": "disableCloseOnEscape"
|
|
428
|
+
}
|
|
429
|
+
],
|
|
430
|
+
"events": [
|
|
431
|
+
{
|
|
432
|
+
"description": "Dispatched when the Alert has been dismissed",
|
|
433
|
+
"name": "bm-dismiss"
|
|
405
434
|
}
|
|
406
435
|
],
|
|
407
436
|
"attributes": [
|
|
408
437
|
{
|
|
409
|
-
"name": "
|
|
438
|
+
"name": "heading",
|
|
410
439
|
"type": {
|
|
411
|
-
"text": "
|
|
440
|
+
"text": "string | undefined"
|
|
412
441
|
},
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
"fieldName": "appearance"
|
|
442
|
+
"description": "Specify the heading text for Alert",
|
|
443
|
+
"fieldName": "heading"
|
|
416
444
|
},
|
|
417
445
|
{
|
|
418
|
-
"name": "
|
|
446
|
+
"name": "body",
|
|
419
447
|
"type": {
|
|
420
448
|
"text": "string | undefined"
|
|
421
449
|
},
|
|
422
|
-
"description": "Specify
|
|
423
|
-
"fieldName": "
|
|
450
|
+
"description": "Specify the body text for Alert",
|
|
451
|
+
"fieldName": "body"
|
|
424
452
|
},
|
|
425
453
|
{
|
|
426
|
-
"name": "
|
|
454
|
+
"name": "size",
|
|
427
455
|
"type": {
|
|
428
|
-
"text": "
|
|
456
|
+
"text": "'sm' | 'md'"
|
|
429
457
|
},
|
|
430
|
-
"
|
|
431
|
-
"
|
|
458
|
+
"default": "'sm'",
|
|
459
|
+
"description": "Specify the size of the Alert",
|
|
460
|
+
"fieldName": "size"
|
|
432
461
|
},
|
|
433
462
|
{
|
|
434
|
-
"name": "
|
|
463
|
+
"name": "fullWidth",
|
|
435
464
|
"type": {
|
|
436
|
-
"text": "
|
|
465
|
+
"text": "boolean"
|
|
437
466
|
},
|
|
438
|
-
"
|
|
439
|
-
"
|
|
467
|
+
"default": "false",
|
|
468
|
+
"description": "Specify if the Alert has no border radius",
|
|
469
|
+
"fieldName": "fullWidth"
|
|
440
470
|
},
|
|
441
471
|
{
|
|
442
|
-
"name": "
|
|
472
|
+
"name": "theme",
|
|
443
473
|
"type": {
|
|
444
|
-
"text": "'
|
|
474
|
+
"text": "'light' | 'dark' | undefined"
|
|
445
475
|
},
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
"fieldName": "size"
|
|
476
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
477
|
+
"fieldName": "theme"
|
|
449
478
|
},
|
|
450
479
|
{
|
|
451
|
-
"name": "
|
|
480
|
+
"name": "appearance",
|
|
452
481
|
"type": {
|
|
453
|
-
"text": "
|
|
482
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
483
|
+
},
|
|
484
|
+
"default": "'infoPrimary'",
|
|
485
|
+
"description": "Specify the appearance of the Alert",
|
|
486
|
+
"fieldName": "appearance"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "hidden",
|
|
490
|
+
"type": {
|
|
491
|
+
"text": "boolean"
|
|
454
492
|
},
|
|
455
493
|
"default": "false",
|
|
456
|
-
"description": "Specify if the
|
|
457
|
-
"fieldName": "
|
|
494
|
+
"description": "Specify if the Alert is hidden",
|
|
495
|
+
"fieldName": "hidden"
|
|
458
496
|
},
|
|
459
497
|
{
|
|
460
|
-
"name": "
|
|
498
|
+
"name": "hideIcon",
|
|
461
499
|
"type": {
|
|
462
|
-
"text": "
|
|
500
|
+
"text": "boolean"
|
|
463
501
|
},
|
|
464
|
-
"default": "
|
|
465
|
-
"description": "Specify the
|
|
466
|
-
"fieldName": "
|
|
502
|
+
"default": "false",
|
|
503
|
+
"description": "Specify if the icon displays on the Alert",
|
|
504
|
+
"fieldName": "hideIcon"
|
|
467
505
|
},
|
|
468
506
|
{
|
|
469
|
-
"name": "
|
|
507
|
+
"name": "dismissible",
|
|
470
508
|
"type": {
|
|
471
509
|
"text": "boolean"
|
|
472
510
|
},
|
|
473
511
|
"default": "false",
|
|
474
|
-
"description": "
|
|
475
|
-
"fieldName": "
|
|
512
|
+
"description": "Specify if the Alert can be dismissed",
|
|
513
|
+
"fieldName": "dismissible"
|
|
476
514
|
},
|
|
477
515
|
{
|
|
478
|
-
"name": "
|
|
516
|
+
"name": "disableAutoFocus",
|
|
479
517
|
"type": {
|
|
480
518
|
"text": "boolean"
|
|
481
519
|
},
|
|
482
520
|
"default": "false",
|
|
483
|
-
"description": "
|
|
484
|
-
"fieldName": "
|
|
521
|
+
"description": "Prevent autofocus on show",
|
|
522
|
+
"fieldName": "disableAutoFocus"
|
|
485
523
|
},
|
|
486
524
|
{
|
|
487
|
-
"name": "
|
|
525
|
+
"name": "disableCloseOnEscape",
|
|
488
526
|
"type": {
|
|
489
527
|
"text": "boolean"
|
|
490
528
|
},
|
|
491
529
|
"default": "false",
|
|
492
|
-
"
|
|
530
|
+
"description": "Prevent Escape from closing",
|
|
531
|
+
"fieldName": "disableCloseOnEscape"
|
|
493
532
|
}
|
|
494
533
|
],
|
|
495
534
|
"superclass": {
|
|
496
535
|
"name": "LitElement",
|
|
497
536
|
"package": "lit"
|
|
498
537
|
},
|
|
499
|
-
"tagName": "bm-
|
|
538
|
+
"tagName": "bm-alert",
|
|
500
539
|
"customElement": true
|
|
501
540
|
}
|
|
502
541
|
],
|
|
503
542
|
"exports": [
|
|
504
543
|
{
|
|
505
544
|
"kind": "js",
|
|
506
|
-
"name": "
|
|
545
|
+
"name": "BmAlert",
|
|
507
546
|
"declaration": {
|
|
508
|
-
"name": "
|
|
509
|
-
"module": "libs/web-components/src/lib/
|
|
547
|
+
"name": "BmAlert",
|
|
548
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
510
549
|
}
|
|
511
550
|
},
|
|
512
551
|
{
|
|
513
552
|
"kind": "custom-element-definition",
|
|
514
|
-
"name": "bm-
|
|
553
|
+
"name": "bm-alert",
|
|
515
554
|
"declaration": {
|
|
516
|
-
"name": "
|
|
517
|
-
"module": "libs/web-components/src/lib/
|
|
555
|
+
"name": "BmAlert",
|
|
556
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
518
557
|
}
|
|
519
558
|
}
|
|
520
559
|
]
|
|
521
560
|
},
|
|
522
561
|
{
|
|
523
562
|
"kind": "javascript-module",
|
|
524
|
-
"path": "libs/web-components/src/lib/
|
|
525
|
-
"declarations": [
|
|
526
|
-
{
|
|
527
|
-
"kind": "variable",
|
|
528
|
-
"name": "AvatarGroupCtx"
|
|
529
|
-
}
|
|
530
|
-
],
|
|
563
|
+
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
564
|
+
"declarations": [],
|
|
531
565
|
"exports": [
|
|
532
566
|
{
|
|
533
567
|
"kind": "js",
|
|
534
|
-
"name": "
|
|
568
|
+
"name": "*",
|
|
535
569
|
"declaration": {
|
|
536
|
-
"name": "
|
|
537
|
-
"
|
|
570
|
+
"name": "*",
|
|
571
|
+
"package": "./Alert"
|
|
538
572
|
}
|
|
539
573
|
}
|
|
540
574
|
]
|
|
541
575
|
},
|
|
542
576
|
{
|
|
543
577
|
"kind": "javascript-module",
|
|
544
|
-
"path": "libs/web-components/src/lib/
|
|
578
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
545
579
|
"declarations": [
|
|
546
580
|
{
|
|
547
581
|
"kind": "class",
|
|
548
|
-
"description": "`bm-
|
|
549
|
-
"name": "
|
|
582
|
+
"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",
|
|
583
|
+
"name": "BmBadgeDot",
|
|
550
584
|
"slots": [
|
|
551
585
|
{
|
|
552
|
-
"description": "
|
|
586
|
+
"description": "Provide text for the BadgeDot",
|
|
553
587
|
"name": "default"
|
|
554
588
|
}
|
|
555
589
|
],
|
|
556
590
|
"members": [
|
|
557
591
|
{
|
|
558
592
|
"kind": "field",
|
|
559
|
-
"name": "
|
|
593
|
+
"name": "theme",
|
|
560
594
|
"type": {
|
|
561
|
-
"text": "
|
|
595
|
+
"text": "'light' | 'dark' | undefined"
|
|
562
596
|
},
|
|
563
|
-
"
|
|
564
|
-
"
|
|
565
|
-
"attribute": "wrapping"
|
|
597
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
598
|
+
"attribute": "theme"
|
|
566
599
|
},
|
|
567
600
|
{
|
|
568
601
|
"kind": "field",
|
|
569
|
-
"name": "
|
|
602
|
+
"name": "appearance",
|
|
570
603
|
"type": {
|
|
571
|
-
"text": "
|
|
604
|
+
"text": "'primary' | 'secondary' | 'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative' | 'inverse' | 'secondaryInverse'"
|
|
572
605
|
},
|
|
573
|
-
"default": "
|
|
574
|
-
"description": "Specify the
|
|
575
|
-
"attribute": "
|
|
576
|
-
"reflects": true
|
|
606
|
+
"default": "'infoPrimary'",
|
|
607
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
608
|
+
"attribute": "appearance"
|
|
577
609
|
},
|
|
578
610
|
{
|
|
579
611
|
"kind": "field",
|
|
580
|
-
"name": "
|
|
612
|
+
"name": "emphasis",
|
|
581
613
|
"type": {
|
|
582
|
-
"text": "
|
|
614
|
+
"text": "Emphasis"
|
|
583
615
|
},
|
|
584
|
-
"default": "'
|
|
585
|
-
"description": "Specify the
|
|
586
|
-
"attribute": "
|
|
616
|
+
"default": "'strong'",
|
|
617
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
618
|
+
"attribute": "emphasis"
|
|
587
619
|
},
|
|
588
620
|
{
|
|
589
621
|
"kind": "field",
|
|
590
|
-
"name": "
|
|
622
|
+
"name": "overrideDotColor",
|
|
591
623
|
"type": {
|
|
592
|
-
"text": "
|
|
624
|
+
"text": "string | undefined"
|
|
593
625
|
},
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
"attribute": "layout"
|
|
626
|
+
"description": "Overrides default dot color",
|
|
627
|
+
"attribute": "overrideDotColor"
|
|
597
628
|
}
|
|
598
629
|
],
|
|
599
630
|
"attributes": [
|
|
600
631
|
{
|
|
601
|
-
"name": "
|
|
632
|
+
"name": "theme",
|
|
602
633
|
"type": {
|
|
603
|
-
"text": "
|
|
634
|
+
"text": "'light' | 'dark' | undefined"
|
|
604
635
|
},
|
|
605
|
-
"
|
|
606
|
-
"
|
|
607
|
-
"fieldName": "wrapping"
|
|
636
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
637
|
+
"fieldName": "theme"
|
|
608
638
|
},
|
|
609
639
|
{
|
|
610
|
-
"name": "
|
|
640
|
+
"name": "appearance",
|
|
611
641
|
"type": {
|
|
612
|
-
"text": "
|
|
642
|
+
"text": "'primary' | 'secondary' | 'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative' | 'inverse' | 'secondaryInverse'"
|
|
613
643
|
},
|
|
614
|
-
"default": "
|
|
615
|
-
"description": "Specify the
|
|
616
|
-
"fieldName": "
|
|
644
|
+
"default": "'infoPrimary'",
|
|
645
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
646
|
+
"fieldName": "appearance"
|
|
617
647
|
},
|
|
618
648
|
{
|
|
619
|
-
"name": "
|
|
649
|
+
"name": "emphasis",
|
|
620
650
|
"type": {
|
|
621
|
-
"text": "
|
|
651
|
+
"text": "Emphasis"
|
|
622
652
|
},
|
|
623
|
-
"default": "'
|
|
624
|
-
"description": "Specify the
|
|
625
|
-
"fieldName": "
|
|
653
|
+
"default": "'strong'",
|
|
654
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
655
|
+
"fieldName": "emphasis"
|
|
626
656
|
},
|
|
627
657
|
{
|
|
628
|
-
"name": "
|
|
658
|
+
"name": "overrideDotColor",
|
|
629
659
|
"type": {
|
|
630
|
-
"text": "
|
|
660
|
+
"text": "string | undefined"
|
|
631
661
|
},
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
"fieldName": "layout"
|
|
662
|
+
"description": "Overrides default dot color",
|
|
663
|
+
"fieldName": "overrideDotColor"
|
|
635
664
|
}
|
|
636
665
|
],
|
|
637
666
|
"superclass": {
|
|
638
667
|
"name": "LitElement",
|
|
639
668
|
"package": "lit"
|
|
640
669
|
},
|
|
641
|
-
"tagName": "bm-
|
|
670
|
+
"tagName": "bm-badge-dot",
|
|
642
671
|
"customElement": true
|
|
643
672
|
}
|
|
644
673
|
],
|
|
645
674
|
"exports": [
|
|
646
675
|
{
|
|
647
676
|
"kind": "js",
|
|
648
|
-
"name": "
|
|
677
|
+
"name": "BmBadgeDot",
|
|
649
678
|
"declaration": {
|
|
650
|
-
"name": "
|
|
651
|
-
"module": "libs/web-components/src/lib/
|
|
679
|
+
"name": "BmBadgeDot",
|
|
680
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
652
681
|
}
|
|
653
682
|
},
|
|
654
683
|
{
|
|
655
684
|
"kind": "custom-element-definition",
|
|
656
|
-
"name": "bm-
|
|
685
|
+
"name": "bm-badge-dot",
|
|
657
686
|
"declaration": {
|
|
658
|
-
"name": "
|
|
659
|
-
"module": "libs/web-components/src/lib/
|
|
687
|
+
"name": "BmBadgeDot",
|
|
688
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
660
689
|
}
|
|
661
690
|
}
|
|
662
691
|
]
|
|
663
692
|
},
|
|
664
693
|
{
|
|
665
694
|
"kind": "javascript-module",
|
|
666
|
-
"path": "libs/web-components/src/lib/
|
|
695
|
+
"path": "libs/web-components/src/lib/BadgeDot/index.ts",
|
|
667
696
|
"declarations": [],
|
|
668
697
|
"exports": [
|
|
669
698
|
{
|
|
@@ -671,845 +700,695 @@
|
|
|
671
700
|
"name": "*",
|
|
672
701
|
"declaration": {
|
|
673
702
|
"name": "*",
|
|
674
|
-
"package": "./
|
|
675
|
-
}
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
"kind": "js",
|
|
679
|
-
"name": "*",
|
|
680
|
-
"declaration": {
|
|
681
|
-
"name": "*",
|
|
682
|
-
"package": "./AvatarGroup"
|
|
703
|
+
"package": "./BadgeDot"
|
|
683
704
|
}
|
|
684
705
|
}
|
|
685
706
|
]
|
|
686
707
|
},
|
|
687
708
|
{
|
|
688
709
|
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/
|
|
710
|
+
"path": "libs/web-components/src/lib/Box/Box.ts",
|
|
690
711
|
"declarations": [
|
|
691
712
|
{
|
|
692
713
|
"kind": "class",
|
|
693
|
-
"description": "`bm-
|
|
694
|
-
"name": "
|
|
714
|
+
"description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
|
|
715
|
+
"name": "BmBox",
|
|
695
716
|
"slots": [
|
|
696
717
|
{
|
|
697
|
-
"description": "Provide
|
|
718
|
+
"description": "Provide content for the Box",
|
|
698
719
|
"name": "default"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"description": "Specify a different icon for the Badge",
|
|
702
|
-
"name": "icon"
|
|
703
720
|
}
|
|
704
721
|
],
|
|
705
722
|
"members": [
|
|
706
723
|
{
|
|
707
724
|
"kind": "field",
|
|
708
|
-
"name": "
|
|
725
|
+
"name": "backgroundColor",
|
|
709
726
|
"type": {
|
|
710
|
-
"text": "'
|
|
727
|
+
"text": "'positive' | 'warning' | 'negative' | 'inverse' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive' | 'expressive-stronger' | 'expressive-inverse'"
|
|
711
728
|
},
|
|
712
|
-
"default": "'
|
|
713
|
-
"description": "Specify the
|
|
714
|
-
"attribute": "
|
|
729
|
+
"default": "'transparent'",
|
|
730
|
+
"description": "Specify the background color of a Box",
|
|
731
|
+
"attribute": "backgroundColor"
|
|
715
732
|
},
|
|
716
733
|
{
|
|
717
734
|
"kind": "field",
|
|
718
|
-
"name": "
|
|
735
|
+
"name": "borderColor",
|
|
719
736
|
"type": {
|
|
720
|
-
"text": "'
|
|
737
|
+
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected' | 'transparent' | 'expressive' | 'expressive-stronger' | 'focus' | undefined"
|
|
721
738
|
},
|
|
722
|
-
"description": "
|
|
723
|
-
"attribute": "
|
|
739
|
+
"description": "Specify the border color of a Box",
|
|
740
|
+
"attribute": "borderColor"
|
|
724
741
|
},
|
|
725
742
|
{
|
|
726
743
|
"kind": "field",
|
|
727
|
-
"name": "
|
|
744
|
+
"name": "borderWidth",
|
|
728
745
|
"type": {
|
|
729
|
-
"text": "'
|
|
746
|
+
"text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
|
|
730
747
|
},
|
|
731
|
-
"
|
|
732
|
-
"
|
|
733
|
-
"attribute": "size"
|
|
748
|
+
"description": "Specify the border width of a Box",
|
|
749
|
+
"attribute": "borderWidth"
|
|
734
750
|
},
|
|
735
751
|
{
|
|
736
752
|
"kind": "field",
|
|
737
|
-
"name": "
|
|
753
|
+
"name": "borderRadius",
|
|
738
754
|
"type": {
|
|
739
|
-
"text": "'
|
|
755
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
|
|
740
756
|
},
|
|
741
|
-
"
|
|
742
|
-
"
|
|
743
|
-
"attribute": "emphasis"
|
|
757
|
+
"description": "Specify the border radius of a Box",
|
|
758
|
+
"attribute": "borderRadius"
|
|
744
759
|
},
|
|
745
760
|
{
|
|
746
761
|
"kind": "field",
|
|
747
|
-
"name": "
|
|
762
|
+
"name": "px",
|
|
748
763
|
"type": {
|
|
749
|
-
"text": "
|
|
764
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
750
765
|
},
|
|
751
|
-
"description": "
|
|
752
|
-
"attribute": "
|
|
753
|
-
}
|
|
754
|
-
],
|
|
755
|
-
"attributes": [
|
|
766
|
+
"description": "Specify before and after padding of a Box",
|
|
767
|
+
"attribute": "px"
|
|
768
|
+
},
|
|
756
769
|
{
|
|
757
|
-
"
|
|
770
|
+
"kind": "field",
|
|
771
|
+
"name": "py",
|
|
758
772
|
"type": {
|
|
759
|
-
"text": "'
|
|
773
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
760
774
|
},
|
|
761
|
-
"
|
|
762
|
-
"
|
|
763
|
-
"fieldName": "appearance"
|
|
775
|
+
"description": "Specify top and bottom padding of a Box",
|
|
776
|
+
"attribute": "py"
|
|
764
777
|
},
|
|
765
778
|
{
|
|
766
|
-
"
|
|
779
|
+
"kind": "field",
|
|
780
|
+
"name": "pTop",
|
|
767
781
|
"type": {
|
|
768
|
-
"text": "'
|
|
782
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
769
783
|
},
|
|
770
|
-
"description": "
|
|
771
|
-
"
|
|
784
|
+
"description": "Specify top padding of a Box",
|
|
785
|
+
"attribute": "pTop"
|
|
772
786
|
},
|
|
773
787
|
{
|
|
774
|
-
"
|
|
788
|
+
"kind": "field",
|
|
789
|
+
"name": "pBottom",
|
|
775
790
|
"type": {
|
|
776
|
-
"text": "'
|
|
791
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
777
792
|
},
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"fieldName": "size"
|
|
793
|
+
"description": "Specify bottom padding of a Box",
|
|
794
|
+
"attribute": "pBottom"
|
|
781
795
|
},
|
|
782
796
|
{
|
|
783
|
-
"
|
|
797
|
+
"kind": "field",
|
|
798
|
+
"name": "pBefore",
|
|
784
799
|
"type": {
|
|
785
|
-
"text": "'
|
|
800
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
786
801
|
},
|
|
787
|
-
"
|
|
788
|
-
"
|
|
789
|
-
"fieldName": "emphasis"
|
|
802
|
+
"description": "Specify before padding of a Box",
|
|
803
|
+
"attribute": "pBefore"
|
|
790
804
|
},
|
|
791
805
|
{
|
|
792
|
-
"
|
|
806
|
+
"kind": "field",
|
|
807
|
+
"name": "pAfter",
|
|
793
808
|
"type": {
|
|
794
|
-
"text": "
|
|
809
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
795
810
|
},
|
|
796
|
-
"description": "
|
|
797
|
-
"
|
|
798
|
-
}
|
|
799
|
-
],
|
|
800
|
-
"superclass": {
|
|
801
|
-
"name": "LitElement",
|
|
802
|
-
"package": "lit"
|
|
803
|
-
},
|
|
804
|
-
"tagName": "bm-badge",
|
|
805
|
-
"customElement": true
|
|
806
|
-
}
|
|
807
|
-
],
|
|
808
|
-
"exports": [
|
|
809
|
-
{
|
|
810
|
-
"kind": "js",
|
|
811
|
-
"name": "BmBadge",
|
|
812
|
-
"declaration": {
|
|
813
|
-
"name": "BmBadge",
|
|
814
|
-
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
815
|
-
}
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
"kind": "custom-element-definition",
|
|
819
|
-
"name": "bm-badge",
|
|
820
|
-
"declaration": {
|
|
821
|
-
"name": "BmBadge",
|
|
822
|
-
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
823
|
-
}
|
|
824
|
-
}
|
|
825
|
-
]
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
"kind": "javascript-module",
|
|
829
|
-
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
830
|
-
"declarations": [],
|
|
831
|
-
"exports": [
|
|
832
|
-
{
|
|
833
|
-
"kind": "js",
|
|
834
|
-
"name": "*",
|
|
835
|
-
"declaration": {
|
|
836
|
-
"name": "*",
|
|
837
|
-
"package": "./Badge"
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
]
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
"kind": "javascript-module",
|
|
844
|
-
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
845
|
-
"declarations": [
|
|
846
|
-
{
|
|
847
|
-
"kind": "class",
|
|
848
|
-
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
|
|
849
|
-
"name": "BmAlert",
|
|
850
|
-
"slots": [
|
|
851
|
-
{
|
|
852
|
-
"description": "Specify a different icon for the Alert",
|
|
853
|
-
"name": "icon"
|
|
811
|
+
"description": "Specify after padding of a Box",
|
|
812
|
+
"attribute": "pAfter"
|
|
854
813
|
},
|
|
855
814
|
{
|
|
856
|
-
"
|
|
857
|
-
"name": "
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
"
|
|
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"
|
|
815
|
+
"kind": "field",
|
|
816
|
+
"name": "mx",
|
|
817
|
+
"type": {
|
|
818
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
819
|
+
},
|
|
820
|
+
"description": "Specify before and after margin of a Box",
|
|
821
|
+
"attribute": "mx"
|
|
886
822
|
},
|
|
887
823
|
{
|
|
888
824
|
"kind": "field",
|
|
889
|
-
"name": "
|
|
825
|
+
"name": "my",
|
|
890
826
|
"type": {
|
|
891
|
-
"text": "'
|
|
827
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
892
828
|
},
|
|
893
|
-
"
|
|
894
|
-
"
|
|
895
|
-
"attribute": "size"
|
|
829
|
+
"description": "Specify top and bottom margin of a Box",
|
|
830
|
+
"attribute": "my"
|
|
896
831
|
},
|
|
897
832
|
{
|
|
898
833
|
"kind": "field",
|
|
899
|
-
"name": "
|
|
834
|
+
"name": "mTop",
|
|
900
835
|
"type": {
|
|
901
|
-
"text": "
|
|
836
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
902
837
|
},
|
|
903
|
-
"
|
|
904
|
-
"
|
|
905
|
-
"attribute": "fullWidth"
|
|
838
|
+
"description": "Specify top margin of a Box",
|
|
839
|
+
"attribute": "mTop"
|
|
906
840
|
},
|
|
907
841
|
{
|
|
908
842
|
"kind": "field",
|
|
909
|
-
"name": "
|
|
843
|
+
"name": "mBottom",
|
|
910
844
|
"type": {
|
|
911
|
-
"text": "'
|
|
845
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
912
846
|
},
|
|
913
|
-
"description": "Specify
|
|
914
|
-
"attribute": "
|
|
847
|
+
"description": "Specify bottom margin of a Box",
|
|
848
|
+
"attribute": "mBottom"
|
|
915
849
|
},
|
|
916
850
|
{
|
|
917
851
|
"kind": "field",
|
|
918
|
-
"name": "
|
|
852
|
+
"name": "mBefore",
|
|
919
853
|
"type": {
|
|
920
|
-
"text": "'
|
|
854
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
921
855
|
},
|
|
922
|
-
"
|
|
923
|
-
"
|
|
924
|
-
"attribute": "appearance"
|
|
856
|
+
"description": "Specify before margin of a Box",
|
|
857
|
+
"attribute": "mBefore"
|
|
925
858
|
},
|
|
926
859
|
{
|
|
927
860
|
"kind": "field",
|
|
928
|
-
"name": "
|
|
861
|
+
"name": "mAfter",
|
|
929
862
|
"type": {
|
|
930
|
-
"text": "
|
|
863
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
931
864
|
},
|
|
932
|
-
"
|
|
933
|
-
"
|
|
934
|
-
"attribute": "hidden"
|
|
865
|
+
"description": "Specify after margin of a Box",
|
|
866
|
+
"attribute": "mAfter"
|
|
935
867
|
},
|
|
936
868
|
{
|
|
937
869
|
"kind": "field",
|
|
938
|
-
"name": "
|
|
870
|
+
"name": "m",
|
|
939
871
|
"type": {
|
|
940
|
-
"text": "
|
|
872
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
941
873
|
},
|
|
942
|
-
"
|
|
943
|
-
"
|
|
944
|
-
"attribute": "hideIcon"
|
|
874
|
+
"description": "Specify all margin",
|
|
875
|
+
"attribute": "m"
|
|
945
876
|
},
|
|
946
877
|
{
|
|
947
878
|
"kind": "field",
|
|
948
|
-
"name": "
|
|
879
|
+
"name": "p",
|
|
949
880
|
"type": {
|
|
950
|
-
"text": "
|
|
881
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
951
882
|
},
|
|
952
|
-
"
|
|
953
|
-
"
|
|
954
|
-
"attribute": "dismissible"
|
|
883
|
+
"description": "Specify all padding",
|
|
884
|
+
"attribute": "p"
|
|
955
885
|
},
|
|
956
886
|
{
|
|
957
887
|
"kind": "field",
|
|
958
|
-
"name": "
|
|
888
|
+
"name": "gap",
|
|
959
889
|
"type": {
|
|
960
|
-
"text": "
|
|
890
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
961
891
|
},
|
|
962
|
-
"
|
|
963
|
-
"
|
|
964
|
-
"attribute": "disableAutoFocus"
|
|
892
|
+
"description": "Specify gap between child elements",
|
|
893
|
+
"attribute": "gap"
|
|
965
894
|
},
|
|
966
895
|
{
|
|
967
896
|
"kind": "field",
|
|
968
|
-
"name": "
|
|
897
|
+
"name": "shadow",
|
|
969
898
|
"type": {
|
|
970
|
-
"text": "
|
|
899
|
+
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
971
900
|
},
|
|
972
|
-
"
|
|
973
|
-
"
|
|
974
|
-
"attribute": "disableCloseOnEscape"
|
|
975
|
-
}
|
|
976
|
-
],
|
|
977
|
-
"events": [
|
|
978
|
-
{
|
|
979
|
-
"description": "Dispatched when the Alert has been dismissed",
|
|
980
|
-
"name": "bm-dismiss"
|
|
901
|
+
"description": "Specify if a Box has a shadow",
|
|
902
|
+
"attribute": "shadow"
|
|
981
903
|
}
|
|
982
904
|
],
|
|
983
905
|
"attributes": [
|
|
984
906
|
{
|
|
985
|
-
"name": "heading",
|
|
986
|
-
"type": {
|
|
987
|
-
"text": "string | undefined"
|
|
988
|
-
},
|
|
989
|
-
"description": "Specify the heading text for Alert",
|
|
990
|
-
"fieldName": "heading"
|
|
991
|
-
},
|
|
992
|
-
{
|
|
993
|
-
"name": "body",
|
|
994
|
-
"type": {
|
|
995
|
-
"text": "string | undefined"
|
|
996
|
-
},
|
|
997
|
-
"description": "Specify the body text for Alert",
|
|
998
|
-
"fieldName": "body"
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
"name": "size",
|
|
1002
|
-
"type": {
|
|
1003
|
-
"text": "'sm' | 'md'"
|
|
1004
|
-
},
|
|
1005
|
-
"default": "'sm'",
|
|
1006
|
-
"description": "Specify the size of the Alert",
|
|
1007
|
-
"fieldName": "size"
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
"name": "fullWidth",
|
|
1011
|
-
"type": {
|
|
1012
|
-
"text": "boolean"
|
|
1013
|
-
},
|
|
1014
|
-
"default": "false",
|
|
1015
|
-
"description": "Specify if the Alert has no border radius",
|
|
1016
|
-
"fieldName": "fullWidth"
|
|
1017
|
-
},
|
|
1018
|
-
{
|
|
1019
|
-
"name": "theme",
|
|
1020
|
-
"type": {
|
|
1021
|
-
"text": "'light' | 'dark' | undefined"
|
|
1022
|
-
},
|
|
1023
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
1024
|
-
"fieldName": "theme"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"name": "appearance",
|
|
1028
|
-
"type": {
|
|
1029
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1030
|
-
},
|
|
1031
|
-
"default": "'infoPrimary'",
|
|
1032
|
-
"description": "Specify the appearance of the Alert",
|
|
1033
|
-
"fieldName": "appearance"
|
|
1034
|
-
},
|
|
1035
|
-
{
|
|
1036
|
-
"name": "hidden",
|
|
1037
|
-
"type": {
|
|
1038
|
-
"text": "boolean"
|
|
1039
|
-
},
|
|
1040
|
-
"default": "false",
|
|
1041
|
-
"description": "Specify if the Alert is hidden",
|
|
1042
|
-
"fieldName": "hidden"
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
"name": "hideIcon",
|
|
1046
|
-
"type": {
|
|
1047
|
-
"text": "boolean"
|
|
1048
|
-
},
|
|
1049
|
-
"default": "false",
|
|
1050
|
-
"description": "Specify if the icon displays on the Alert",
|
|
1051
|
-
"fieldName": "hideIcon"
|
|
1052
|
-
},
|
|
1053
|
-
{
|
|
1054
|
-
"name": "dismissible",
|
|
1055
|
-
"type": {
|
|
1056
|
-
"text": "boolean"
|
|
1057
|
-
},
|
|
1058
|
-
"default": "false",
|
|
1059
|
-
"description": "Specify if the Alert can be dismissed",
|
|
1060
|
-
"fieldName": "dismissible"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"name": "disableAutoFocus",
|
|
1064
|
-
"type": {
|
|
1065
|
-
"text": "boolean"
|
|
1066
|
-
},
|
|
1067
|
-
"default": "false",
|
|
1068
|
-
"description": "Prevent autofocus on show",
|
|
1069
|
-
"fieldName": "disableAutoFocus"
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
"name": "disableCloseOnEscape",
|
|
1073
|
-
"type": {
|
|
1074
|
-
"text": "boolean"
|
|
1075
|
-
},
|
|
1076
|
-
"default": "false",
|
|
1077
|
-
"description": "Prevent Escape from closing",
|
|
1078
|
-
"fieldName": "disableCloseOnEscape"
|
|
1079
|
-
}
|
|
1080
|
-
],
|
|
1081
|
-
"superclass": {
|
|
1082
|
-
"name": "LitElement",
|
|
1083
|
-
"package": "lit"
|
|
1084
|
-
},
|
|
1085
|
-
"tagName": "bm-alert",
|
|
1086
|
-
"customElement": true
|
|
1087
|
-
}
|
|
1088
|
-
],
|
|
1089
|
-
"exports": [
|
|
1090
|
-
{
|
|
1091
|
-
"kind": "js",
|
|
1092
|
-
"name": "BmAlert",
|
|
1093
|
-
"declaration": {
|
|
1094
|
-
"name": "BmAlert",
|
|
1095
|
-
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
1096
|
-
}
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
"kind": "custom-element-definition",
|
|
1100
|
-
"name": "bm-alert",
|
|
1101
|
-
"declaration": {
|
|
1102
|
-
"name": "BmAlert",
|
|
1103
|
-
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
1104
|
-
}
|
|
1105
|
-
}
|
|
1106
|
-
]
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
"kind": "javascript-module",
|
|
1110
|
-
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
1111
|
-
"declarations": [],
|
|
1112
|
-
"exports": [
|
|
1113
|
-
{
|
|
1114
|
-
"kind": "js",
|
|
1115
|
-
"name": "*",
|
|
1116
|
-
"declaration": {
|
|
1117
|
-
"name": "*",
|
|
1118
|
-
"package": "./Alert"
|
|
1119
|
-
}
|
|
1120
|
-
}
|
|
1121
|
-
]
|
|
1122
|
-
},
|
|
1123
|
-
{
|
|
1124
|
-
"kind": "javascript-module",
|
|
1125
|
-
"path": "libs/web-components/src/lib/Box/Box.ts",
|
|
1126
|
-
"declarations": [
|
|
1127
|
-
{
|
|
1128
|
-
"kind": "class",
|
|
1129
|
-
"description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
|
|
1130
|
-
"name": "BmBox",
|
|
1131
|
-
"slots": [
|
|
1132
|
-
{
|
|
1133
|
-
"description": "Provide content for the Box",
|
|
1134
|
-
"name": "default"
|
|
1135
|
-
}
|
|
1136
|
-
],
|
|
1137
|
-
"members": [
|
|
1138
|
-
{
|
|
1139
|
-
"kind": "field",
|
|
1140
907
|
"name": "backgroundColor",
|
|
1141
908
|
"type": {
|
|
1142
909
|
"text": "'positive' | 'warning' | 'negative' | 'inverse' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive' | 'expressive-stronger' | 'expressive-inverse'"
|
|
1143
910
|
},
|
|
1144
911
|
"default": "'transparent'",
|
|
1145
912
|
"description": "Specify the background color of a Box",
|
|
1146
|
-
"
|
|
913
|
+
"fieldName": "backgroundColor"
|
|
1147
914
|
},
|
|
1148
915
|
{
|
|
1149
|
-
"kind": "field",
|
|
1150
916
|
"name": "borderColor",
|
|
1151
917
|
"type": {
|
|
1152
918
|
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected' | 'transparent' | 'expressive' | 'expressive-stronger' | 'focus' | undefined"
|
|
1153
919
|
},
|
|
1154
920
|
"description": "Specify the border color of a Box",
|
|
1155
|
-
"
|
|
921
|
+
"fieldName": "borderColor"
|
|
1156
922
|
},
|
|
1157
923
|
{
|
|
1158
|
-
"kind": "field",
|
|
1159
924
|
"name": "borderWidth",
|
|
1160
925
|
"type": {
|
|
1161
926
|
"text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
|
|
1162
927
|
},
|
|
1163
928
|
"description": "Specify the border width of a Box",
|
|
1164
|
-
"
|
|
929
|
+
"fieldName": "borderWidth"
|
|
1165
930
|
},
|
|
1166
931
|
{
|
|
1167
|
-
"kind": "field",
|
|
1168
932
|
"name": "borderRadius",
|
|
1169
933
|
"type": {
|
|
1170
934
|
"text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
|
|
1171
935
|
},
|
|
1172
936
|
"description": "Specify the border radius of a Box",
|
|
1173
|
-
"
|
|
937
|
+
"fieldName": "borderRadius"
|
|
1174
938
|
},
|
|
1175
939
|
{
|
|
1176
|
-
"kind": "field",
|
|
1177
940
|
"name": "px",
|
|
1178
941
|
"type": {
|
|
1179
942
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1180
943
|
},
|
|
1181
944
|
"description": "Specify before and after padding of a Box",
|
|
1182
|
-
"
|
|
945
|
+
"fieldName": "px"
|
|
1183
946
|
},
|
|
1184
947
|
{
|
|
1185
|
-
"kind": "field",
|
|
1186
948
|
"name": "py",
|
|
1187
949
|
"type": {
|
|
1188
950
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1189
951
|
},
|
|
1190
952
|
"description": "Specify top and bottom padding of a Box",
|
|
1191
|
-
"
|
|
953
|
+
"fieldName": "py"
|
|
1192
954
|
},
|
|
1193
955
|
{
|
|
1194
|
-
"kind": "field",
|
|
1195
956
|
"name": "pTop",
|
|
1196
957
|
"type": {
|
|
1197
958
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1198
959
|
},
|
|
1199
960
|
"description": "Specify top padding of a Box",
|
|
1200
|
-
"
|
|
961
|
+
"fieldName": "pTop"
|
|
1201
962
|
},
|
|
1202
963
|
{
|
|
1203
|
-
"kind": "field",
|
|
1204
964
|
"name": "pBottom",
|
|
1205
965
|
"type": {
|
|
1206
966
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1207
967
|
},
|
|
1208
968
|
"description": "Specify bottom padding of a Box",
|
|
1209
|
-
"
|
|
969
|
+
"fieldName": "pBottom"
|
|
1210
970
|
},
|
|
1211
971
|
{
|
|
1212
|
-
"kind": "field",
|
|
1213
972
|
"name": "pBefore",
|
|
1214
973
|
"type": {
|
|
1215
974
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1216
975
|
},
|
|
1217
976
|
"description": "Specify before padding of a Box",
|
|
1218
|
-
"
|
|
977
|
+
"fieldName": "pBefore"
|
|
1219
978
|
},
|
|
1220
979
|
{
|
|
1221
|
-
"kind": "field",
|
|
1222
980
|
"name": "pAfter",
|
|
1223
981
|
"type": {
|
|
1224
982
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1225
983
|
},
|
|
1226
984
|
"description": "Specify after padding of a Box",
|
|
1227
|
-
"
|
|
985
|
+
"fieldName": "pAfter"
|
|
1228
986
|
},
|
|
1229
987
|
{
|
|
1230
|
-
"kind": "field",
|
|
1231
988
|
"name": "mx",
|
|
1232
989
|
"type": {
|
|
1233
990
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1234
991
|
},
|
|
1235
992
|
"description": "Specify before and after margin of a Box",
|
|
1236
|
-
"
|
|
993
|
+
"fieldName": "mx"
|
|
1237
994
|
},
|
|
1238
995
|
{
|
|
1239
|
-
"kind": "field",
|
|
1240
996
|
"name": "my",
|
|
1241
997
|
"type": {
|
|
1242
998
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1243
999
|
},
|
|
1244
1000
|
"description": "Specify top and bottom margin of a Box",
|
|
1245
|
-
"
|
|
1001
|
+
"fieldName": "my"
|
|
1246
1002
|
},
|
|
1247
1003
|
{
|
|
1248
|
-
"kind": "field",
|
|
1249
1004
|
"name": "mTop",
|
|
1250
1005
|
"type": {
|
|
1251
1006
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1252
1007
|
},
|
|
1253
1008
|
"description": "Specify top margin of a Box",
|
|
1254
|
-
"
|
|
1009
|
+
"fieldName": "mTop"
|
|
1255
1010
|
},
|
|
1256
1011
|
{
|
|
1257
|
-
"kind": "field",
|
|
1258
1012
|
"name": "mBottom",
|
|
1259
1013
|
"type": {
|
|
1260
1014
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1261
1015
|
},
|
|
1262
1016
|
"description": "Specify bottom margin of a Box",
|
|
1263
|
-
"
|
|
1017
|
+
"fieldName": "mBottom"
|
|
1264
1018
|
},
|
|
1265
1019
|
{
|
|
1266
|
-
"kind": "field",
|
|
1267
1020
|
"name": "mBefore",
|
|
1268
1021
|
"type": {
|
|
1269
1022
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1270
1023
|
},
|
|
1271
1024
|
"description": "Specify before margin of a Box",
|
|
1272
|
-
"
|
|
1025
|
+
"fieldName": "mBefore"
|
|
1273
1026
|
},
|
|
1274
1027
|
{
|
|
1275
|
-
"kind": "field",
|
|
1276
1028
|
"name": "mAfter",
|
|
1277
1029
|
"type": {
|
|
1278
1030
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1279
1031
|
},
|
|
1280
1032
|
"description": "Specify after margin of a Box",
|
|
1281
|
-
"
|
|
1033
|
+
"fieldName": "mAfter"
|
|
1282
1034
|
},
|
|
1283
1035
|
{
|
|
1284
|
-
"kind": "field",
|
|
1285
1036
|
"name": "m",
|
|
1286
1037
|
"type": {
|
|
1287
1038
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1288
1039
|
},
|
|
1289
1040
|
"description": "Specify all margin",
|
|
1290
|
-
"
|
|
1041
|
+
"fieldName": "m"
|
|
1291
1042
|
},
|
|
1292
1043
|
{
|
|
1293
|
-
"kind": "field",
|
|
1294
1044
|
"name": "p",
|
|
1295
1045
|
"type": {
|
|
1296
1046
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1297
1047
|
},
|
|
1298
1048
|
"description": "Specify all padding",
|
|
1299
|
-
"
|
|
1049
|
+
"fieldName": "p"
|
|
1300
1050
|
},
|
|
1301
1051
|
{
|
|
1302
|
-
"kind": "field",
|
|
1303
1052
|
"name": "gap",
|
|
1304
1053
|
"type": {
|
|
1305
1054
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1306
1055
|
},
|
|
1307
1056
|
"description": "Specify gap between child elements",
|
|
1308
|
-
"
|
|
1057
|
+
"fieldName": "gap"
|
|
1309
1058
|
},
|
|
1310
1059
|
{
|
|
1311
|
-
"kind": "field",
|
|
1312
1060
|
"name": "shadow",
|
|
1313
1061
|
"type": {
|
|
1314
1062
|
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1315
1063
|
},
|
|
1316
1064
|
"description": "Specify if a Box has a shadow",
|
|
1317
|
-
"
|
|
1065
|
+
"fieldName": "shadow"
|
|
1318
1066
|
}
|
|
1319
1067
|
],
|
|
1320
|
-
"
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1068
|
+
"superclass": {
|
|
1069
|
+
"name": "LitElement",
|
|
1070
|
+
"package": "lit"
|
|
1071
|
+
},
|
|
1072
|
+
"tagName": "bm-box",
|
|
1073
|
+
"customElement": true
|
|
1074
|
+
}
|
|
1075
|
+
],
|
|
1076
|
+
"exports": [
|
|
1077
|
+
{
|
|
1078
|
+
"kind": "js",
|
|
1079
|
+
"name": "BmBox",
|
|
1080
|
+
"declaration": {
|
|
1081
|
+
"name": "BmBox",
|
|
1082
|
+
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"kind": "custom-element-definition",
|
|
1087
|
+
"name": "bm-box",
|
|
1088
|
+
"declaration": {
|
|
1089
|
+
"name": "BmBox",
|
|
1090
|
+
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"kind": "javascript-module",
|
|
1097
|
+
"path": "libs/web-components/src/lib/Box/index.ts",
|
|
1098
|
+
"declarations": [],
|
|
1099
|
+
"exports": [
|
|
1100
|
+
{
|
|
1101
|
+
"kind": "js",
|
|
1102
|
+
"name": "*",
|
|
1103
|
+
"declaration": {
|
|
1104
|
+
"name": "*",
|
|
1105
|
+
"package": "./Box"
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
]
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"kind": "javascript-module",
|
|
1112
|
+
"path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
|
|
1113
|
+
"declarations": [
|
|
1114
|
+
{
|
|
1115
|
+
"kind": "variable",
|
|
1116
|
+
"name": "BreadcrumbGroupCtx"
|
|
1117
|
+
}
|
|
1118
|
+
],
|
|
1119
|
+
"exports": [
|
|
1120
|
+
{
|
|
1121
|
+
"kind": "js",
|
|
1122
|
+
"name": "BreadcrumbGroupCtx",
|
|
1123
|
+
"declaration": {
|
|
1124
|
+
"name": "BreadcrumbGroupCtx",
|
|
1125
|
+
"module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
]
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"kind": "javascript-module",
|
|
1132
|
+
"path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts",
|
|
1133
|
+
"declarations": [
|
|
1134
|
+
{
|
|
1135
|
+
"kind": "class",
|
|
1136
|
+
"description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
1137
|
+
"name": "BmBreadcrumbs",
|
|
1138
|
+
"slots": [
|
|
1330
1139
|
{
|
|
1331
|
-
"
|
|
1332
|
-
"
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
"fieldName": "borderColor"
|
|
1337
|
-
},
|
|
1140
|
+
"description": "Pass items to the Breadcrumb",
|
|
1141
|
+
"name": "default"
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"members": [
|
|
1338
1145
|
{
|
|
1339
|
-
"
|
|
1146
|
+
"kind": "field",
|
|
1147
|
+
"name": "wrap",
|
|
1340
1148
|
"type": {
|
|
1341
|
-
"text": "
|
|
1149
|
+
"text": "boolean"
|
|
1342
1150
|
},
|
|
1343
|
-
"
|
|
1344
|
-
"
|
|
1151
|
+
"default": "true",
|
|
1152
|
+
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
1153
|
+
"attribute": "wrap"
|
|
1345
1154
|
},
|
|
1346
1155
|
{
|
|
1347
|
-
"
|
|
1156
|
+
"kind": "field",
|
|
1157
|
+
"name": "itemsBeforeCollapse",
|
|
1348
1158
|
"type": {
|
|
1349
|
-
"text": "
|
|
1159
|
+
"text": "number"
|
|
1350
1160
|
},
|
|
1351
|
-
"
|
|
1352
|
-
"
|
|
1161
|
+
"default": "1",
|
|
1162
|
+
"description": "Specify how many items show before ellipsis",
|
|
1163
|
+
"attribute": "itemsBeforeCollapse"
|
|
1353
1164
|
},
|
|
1354
1165
|
{
|
|
1355
|
-
"
|
|
1166
|
+
"kind": "field",
|
|
1167
|
+
"name": "itemsAfterCollapse",
|
|
1356
1168
|
"type": {
|
|
1357
|
-
"text": "
|
|
1169
|
+
"text": "number"
|
|
1358
1170
|
},
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1171
|
+
"default": "1",
|
|
1172
|
+
"description": "Specify how many items show after ellipsis",
|
|
1173
|
+
"attribute": "itemsAfterCollapse"
|
|
1361
1174
|
},
|
|
1362
1175
|
{
|
|
1363
|
-
"
|
|
1176
|
+
"kind": "field",
|
|
1177
|
+
"name": "theme",
|
|
1364
1178
|
"type": {
|
|
1365
|
-
"text": "'
|
|
1179
|
+
"text": "'light' | 'dark' | undefined"
|
|
1366
1180
|
},
|
|
1367
|
-
"description": "Specify
|
|
1368
|
-
"
|
|
1369
|
-
}
|
|
1181
|
+
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
1182
|
+
"attribute": "theme"
|
|
1183
|
+
}
|
|
1184
|
+
],
|
|
1185
|
+
"attributes": [
|
|
1370
1186
|
{
|
|
1371
|
-
"name": "
|
|
1187
|
+
"name": "wrap",
|
|
1372
1188
|
"type": {
|
|
1373
|
-
"text": "
|
|
1189
|
+
"text": "boolean"
|
|
1374
1190
|
},
|
|
1375
|
-
"
|
|
1376
|
-
"
|
|
1191
|
+
"default": "true",
|
|
1192
|
+
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
1193
|
+
"fieldName": "wrap"
|
|
1377
1194
|
},
|
|
1378
1195
|
{
|
|
1379
|
-
"name": "
|
|
1196
|
+
"name": "itemsBeforeCollapse",
|
|
1380
1197
|
"type": {
|
|
1381
|
-
"text": "
|
|
1198
|
+
"text": "number"
|
|
1382
1199
|
},
|
|
1383
|
-
"
|
|
1384
|
-
"
|
|
1200
|
+
"default": "1",
|
|
1201
|
+
"description": "Specify how many items show before ellipsis",
|
|
1202
|
+
"fieldName": "itemsBeforeCollapse"
|
|
1385
1203
|
},
|
|
1386
1204
|
{
|
|
1387
|
-
"name": "
|
|
1205
|
+
"name": "itemsAfterCollapse",
|
|
1388
1206
|
"type": {
|
|
1389
|
-
"text": "
|
|
1207
|
+
"text": "number"
|
|
1390
1208
|
},
|
|
1391
|
-
"
|
|
1392
|
-
"
|
|
1209
|
+
"default": "1",
|
|
1210
|
+
"description": "Specify how many items show after ellipsis",
|
|
1211
|
+
"fieldName": "itemsAfterCollapse"
|
|
1393
1212
|
},
|
|
1394
1213
|
{
|
|
1395
|
-
"name": "
|
|
1214
|
+
"name": "theme",
|
|
1396
1215
|
"type": {
|
|
1397
|
-
"text": "'
|
|
1216
|
+
"text": "'light' | 'dark' | undefined"
|
|
1398
1217
|
},
|
|
1399
|
-
"description": "Specify
|
|
1400
|
-
"fieldName": "
|
|
1218
|
+
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
1219
|
+
"fieldName": "theme"
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"superclass": {
|
|
1223
|
+
"name": "LitElement",
|
|
1224
|
+
"package": "lit"
|
|
1225
|
+
},
|
|
1226
|
+
"tagName": "bm-breadcrumb",
|
|
1227
|
+
"customElement": true
|
|
1228
|
+
}
|
|
1229
|
+
],
|
|
1230
|
+
"exports": [
|
|
1231
|
+
{
|
|
1232
|
+
"kind": "js",
|
|
1233
|
+
"name": "BmBreadcrumbs",
|
|
1234
|
+
"declaration": {
|
|
1235
|
+
"name": "BmBreadcrumbs",
|
|
1236
|
+
"module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"kind": "custom-element-definition",
|
|
1241
|
+
"name": "bm-breadcrumb",
|
|
1242
|
+
"declaration": {
|
|
1243
|
+
"name": "BmBreadcrumbs",
|
|
1244
|
+
"module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.ts"
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
]
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"kind": "javascript-module",
|
|
1251
|
+
"path": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts",
|
|
1252
|
+
"declarations": [
|
|
1253
|
+
{
|
|
1254
|
+
"kind": "class",
|
|
1255
|
+
"description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** ",
|
|
1256
|
+
"name": "BmBreadcrumbsItem",
|
|
1257
|
+
"slots": [
|
|
1258
|
+
{
|
|
1259
|
+
"description": "Pass text to an item",
|
|
1260
|
+
"name": "default"
|
|
1401
1261
|
},
|
|
1402
1262
|
{
|
|
1403
|
-
"
|
|
1263
|
+
"description": "Pass icon to an item",
|
|
1264
|
+
"name": "icon"
|
|
1265
|
+
}
|
|
1266
|
+
],
|
|
1267
|
+
"members": [
|
|
1268
|
+
{
|
|
1269
|
+
"kind": "field",
|
|
1270
|
+
"name": "href",
|
|
1404
1271
|
"type": {
|
|
1405
|
-
"text": "
|
|
1272
|
+
"text": "string | undefined"
|
|
1406
1273
|
},
|
|
1407
|
-
"description": "
|
|
1408
|
-
"
|
|
1274
|
+
"description": "Pass href to an item",
|
|
1275
|
+
"attribute": "href"
|
|
1409
1276
|
},
|
|
1410
1277
|
{
|
|
1411
|
-
"
|
|
1278
|
+
"kind": "field",
|
|
1279
|
+
"name": "clickable",
|
|
1412
1280
|
"type": {
|
|
1413
|
-
"text": "
|
|
1281
|
+
"text": "boolean"
|
|
1414
1282
|
},
|
|
1415
|
-
"
|
|
1416
|
-
"
|
|
1283
|
+
"default": "false",
|
|
1284
|
+
"description": "Specify if the item is interactive without an href",
|
|
1285
|
+
"attribute": "clickable"
|
|
1417
1286
|
},
|
|
1418
1287
|
{
|
|
1419
|
-
"
|
|
1288
|
+
"kind": "field",
|
|
1289
|
+
"name": "truncationWidth",
|
|
1420
1290
|
"type": {
|
|
1421
|
-
"text": "
|
|
1291
|
+
"text": "string | undefined"
|
|
1422
1292
|
},
|
|
1423
|
-
"description": "Specify
|
|
1424
|
-
"
|
|
1293
|
+
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
1294
|
+
"attribute": "truncationWidth"
|
|
1425
1295
|
},
|
|
1426
1296
|
{
|
|
1427
|
-
"
|
|
1297
|
+
"kind": "field",
|
|
1298
|
+
"name": "isCurrent",
|
|
1428
1299
|
"type": {
|
|
1429
|
-
"text": "
|
|
1300
|
+
"text": "boolean"
|
|
1430
1301
|
},
|
|
1431
|
-
"
|
|
1432
|
-
"
|
|
1302
|
+
"default": "false",
|
|
1303
|
+
"description": "Specify explicitly if the item is the last one",
|
|
1304
|
+
"attribute": "isCurrent",
|
|
1305
|
+
"reflects": true
|
|
1433
1306
|
},
|
|
1434
1307
|
{
|
|
1435
|
-
"
|
|
1308
|
+
"kind": "field",
|
|
1309
|
+
"name": "isCollapsed",
|
|
1436
1310
|
"type": {
|
|
1437
|
-
"text": "
|
|
1311
|
+
"text": "boolean"
|
|
1438
1312
|
},
|
|
1439
|
-
"
|
|
1440
|
-
"
|
|
1441
|
-
|
|
1313
|
+
"default": "false",
|
|
1314
|
+
"attribute": "isCollapsed",
|
|
1315
|
+
"reflects": true
|
|
1316
|
+
}
|
|
1317
|
+
],
|
|
1318
|
+
"attributes": [
|
|
1442
1319
|
{
|
|
1443
|
-
"name": "
|
|
1320
|
+
"name": "href",
|
|
1444
1321
|
"type": {
|
|
1445
|
-
"text": "
|
|
1322
|
+
"text": "string | undefined"
|
|
1446
1323
|
},
|
|
1447
|
-
"description": "
|
|
1448
|
-
"fieldName": "
|
|
1324
|
+
"description": "Pass href to an item",
|
|
1325
|
+
"fieldName": "href"
|
|
1449
1326
|
},
|
|
1450
1327
|
{
|
|
1451
|
-
"name": "
|
|
1328
|
+
"name": "clickable",
|
|
1452
1329
|
"type": {
|
|
1453
|
-
"text": "
|
|
1330
|
+
"text": "boolean"
|
|
1454
1331
|
},
|
|
1455
|
-
"
|
|
1456
|
-
"
|
|
1332
|
+
"default": "false",
|
|
1333
|
+
"description": "Specify if the item is interactive without an href",
|
|
1334
|
+
"fieldName": "clickable"
|
|
1457
1335
|
},
|
|
1458
1336
|
{
|
|
1459
|
-
"name": "
|
|
1337
|
+
"name": "truncationWidth",
|
|
1460
1338
|
"type": {
|
|
1461
|
-
"text": "
|
|
1339
|
+
"text": "string | undefined"
|
|
1462
1340
|
},
|
|
1463
|
-
"description": "Specify all
|
|
1464
|
-
"fieldName": "
|
|
1341
|
+
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
1342
|
+
"fieldName": "truncationWidth"
|
|
1465
1343
|
},
|
|
1466
1344
|
{
|
|
1467
|
-
"name": "
|
|
1345
|
+
"name": "isCurrent",
|
|
1468
1346
|
"type": {
|
|
1469
|
-
"text": "
|
|
1347
|
+
"text": "boolean"
|
|
1470
1348
|
},
|
|
1471
|
-
"
|
|
1472
|
-
"
|
|
1349
|
+
"default": "false",
|
|
1350
|
+
"description": "Specify explicitly if the item is the last one",
|
|
1351
|
+
"fieldName": "isCurrent"
|
|
1473
1352
|
},
|
|
1474
1353
|
{
|
|
1475
|
-
"name": "
|
|
1354
|
+
"name": "isCollapsed",
|
|
1476
1355
|
"type": {
|
|
1477
|
-
"text": "
|
|
1356
|
+
"text": "boolean"
|
|
1478
1357
|
},
|
|
1479
|
-
"
|
|
1480
|
-
"fieldName": "
|
|
1358
|
+
"default": "false",
|
|
1359
|
+
"fieldName": "isCollapsed"
|
|
1481
1360
|
}
|
|
1482
1361
|
],
|
|
1483
1362
|
"superclass": {
|
|
1484
1363
|
"name": "LitElement",
|
|
1485
1364
|
"package": "lit"
|
|
1486
1365
|
},
|
|
1487
|
-
"tagName": "bm-
|
|
1366
|
+
"tagName": "bm-breadcrumb-item",
|
|
1488
1367
|
"customElement": true
|
|
1489
1368
|
}
|
|
1490
1369
|
],
|
|
1491
1370
|
"exports": [
|
|
1492
1371
|
{
|
|
1493
1372
|
"kind": "js",
|
|
1494
|
-
"name": "
|
|
1373
|
+
"name": "BmBreadcrumbsItem",
|
|
1495
1374
|
"declaration": {
|
|
1496
|
-
"name": "
|
|
1497
|
-
"module": "libs/web-components/src/lib/
|
|
1375
|
+
"name": "BmBreadcrumbsItem",
|
|
1376
|
+
"module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
|
|
1498
1377
|
}
|
|
1499
1378
|
},
|
|
1500
1379
|
{
|
|
1501
1380
|
"kind": "custom-element-definition",
|
|
1502
|
-
"name": "bm-
|
|
1381
|
+
"name": "bm-breadcrumb-item",
|
|
1503
1382
|
"declaration": {
|
|
1504
|
-
"name": "
|
|
1505
|
-
"module": "libs/web-components/src/lib/
|
|
1383
|
+
"name": "BmBreadcrumbsItem",
|
|
1384
|
+
"module": "libs/web-components/src/lib/Breadcrumbs/BreadcrumbsItem.ts"
|
|
1506
1385
|
}
|
|
1507
1386
|
}
|
|
1508
1387
|
]
|
|
1509
1388
|
},
|
|
1510
1389
|
{
|
|
1511
1390
|
"kind": "javascript-module",
|
|
1512
|
-
"path": "libs/web-components/src/lib/
|
|
1391
|
+
"path": "libs/web-components/src/lib/Breadcrumbs/index.ts",
|
|
1513
1392
|
"declarations": [],
|
|
1514
1393
|
"exports": [
|
|
1515
1394
|
{
|
|
@@ -1517,131 +1396,162 @@
|
|
|
1517
1396
|
"name": "*",
|
|
1518
1397
|
"declaration": {
|
|
1519
1398
|
"name": "*",
|
|
1520
|
-
"package": "./
|
|
1399
|
+
"package": "./Breadcrumbs"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"kind": "js",
|
|
1404
|
+
"name": "*",
|
|
1405
|
+
"declaration": {
|
|
1406
|
+
"name": "*",
|
|
1407
|
+
"package": "./BreadcrumbsItem"
|
|
1521
1408
|
}
|
|
1522
1409
|
}
|
|
1523
1410
|
]
|
|
1524
1411
|
},
|
|
1525
1412
|
{
|
|
1526
1413
|
"kind": "javascript-module",
|
|
1527
|
-
"path": "libs/web-components/src/lib/
|
|
1414
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
1528
1415
|
"declarations": [
|
|
1529
1416
|
{
|
|
1530
1417
|
"kind": "class",
|
|
1531
|
-
"description": "`bm-badge
|
|
1532
|
-
"name": "
|
|
1418
|
+
"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",
|
|
1419
|
+
"name": "BmBadge",
|
|
1533
1420
|
"slots": [
|
|
1534
1421
|
{
|
|
1535
|
-
"description": "Provide text for the
|
|
1422
|
+
"description": "Provide text for the Badge",
|
|
1536
1423
|
"name": "default"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"description": "Specify a different icon for the Badge",
|
|
1427
|
+
"name": "icon"
|
|
1537
1428
|
}
|
|
1538
1429
|
],
|
|
1539
1430
|
"members": [
|
|
1431
|
+
{
|
|
1432
|
+
"kind": "field",
|
|
1433
|
+
"name": "appearance",
|
|
1434
|
+
"type": {
|
|
1435
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1436
|
+
},
|
|
1437
|
+
"default": "'infoPrimary'",
|
|
1438
|
+
"description": "Specify the appearance of the Badge",
|
|
1439
|
+
"attribute": "appearance"
|
|
1440
|
+
},
|
|
1540
1441
|
{
|
|
1541
1442
|
"kind": "field",
|
|
1542
1443
|
"name": "theme",
|
|
1543
1444
|
"type": {
|
|
1544
1445
|
"text": "'light' | 'dark' | undefined"
|
|
1545
1446
|
},
|
|
1546
|
-
"description": "
|
|
1447
|
+
"description": "Theme of the Badge",
|
|
1547
1448
|
"attribute": "theme"
|
|
1548
1449
|
},
|
|
1549
1450
|
{
|
|
1550
1451
|
"kind": "field",
|
|
1551
|
-
"name": "
|
|
1452
|
+
"name": "size",
|
|
1552
1453
|
"type": {
|
|
1553
|
-
"text": "'
|
|
1454
|
+
"text": "'sm' | 'md' | undefined"
|
|
1554
1455
|
},
|
|
1555
|
-
"default": "'
|
|
1556
|
-
"description": "Specify the
|
|
1557
|
-
"attribute": "
|
|
1456
|
+
"default": "'sm'",
|
|
1457
|
+
"description": "Specify the size of the Badge",
|
|
1458
|
+
"attribute": "size"
|
|
1558
1459
|
},
|
|
1559
1460
|
{
|
|
1560
1461
|
"kind": "field",
|
|
1561
1462
|
"name": "emphasis",
|
|
1562
1463
|
"type": {
|
|
1563
|
-
"text": "
|
|
1464
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1564
1465
|
},
|
|
1565
1466
|
"default": "'strong'",
|
|
1566
|
-
"description": "Specify the emphasis of the
|
|
1467
|
+
"description": "Specify the emphasis of the Badge",
|
|
1567
1468
|
"attribute": "emphasis"
|
|
1568
1469
|
},
|
|
1569
1470
|
{
|
|
1570
1471
|
"kind": "field",
|
|
1571
|
-
"name": "
|
|
1472
|
+
"name": "hideIcon",
|
|
1572
1473
|
"type": {
|
|
1573
|
-
"text": "
|
|
1474
|
+
"text": "boolean | undefined"
|
|
1574
1475
|
},
|
|
1575
|
-
"description": "
|
|
1576
|
-
"attribute": "
|
|
1476
|
+
"description": "Hides Badge icon",
|
|
1477
|
+
"attribute": "hideIcon"
|
|
1577
1478
|
}
|
|
1578
1479
|
],
|
|
1579
1480
|
"attributes": [
|
|
1481
|
+
{
|
|
1482
|
+
"name": "appearance",
|
|
1483
|
+
"type": {
|
|
1484
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1485
|
+
},
|
|
1486
|
+
"default": "'infoPrimary'",
|
|
1487
|
+
"description": "Specify the appearance of the Badge",
|
|
1488
|
+
"fieldName": "appearance"
|
|
1489
|
+
},
|
|
1580
1490
|
{
|
|
1581
1491
|
"name": "theme",
|
|
1582
1492
|
"type": {
|
|
1583
1493
|
"text": "'light' | 'dark' | undefined"
|
|
1584
1494
|
},
|
|
1585
|
-
"description": "
|
|
1495
|
+
"description": "Theme of the Badge",
|
|
1586
1496
|
"fieldName": "theme"
|
|
1587
1497
|
},
|
|
1588
1498
|
{
|
|
1589
|
-
"name": "
|
|
1499
|
+
"name": "size",
|
|
1590
1500
|
"type": {
|
|
1591
|
-
"text": "'
|
|
1501
|
+
"text": "'sm' | 'md' | undefined"
|
|
1592
1502
|
},
|
|
1593
|
-
"default": "'
|
|
1594
|
-
"description": "Specify the
|
|
1595
|
-
"fieldName": "
|
|
1503
|
+
"default": "'sm'",
|
|
1504
|
+
"description": "Specify the size of the Badge",
|
|
1505
|
+
"fieldName": "size"
|
|
1596
1506
|
},
|
|
1597
1507
|
{
|
|
1598
1508
|
"name": "emphasis",
|
|
1599
1509
|
"type": {
|
|
1600
|
-
"text": "
|
|
1510
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1601
1511
|
},
|
|
1602
1512
|
"default": "'strong'",
|
|
1603
|
-
"description": "Specify the emphasis of the
|
|
1513
|
+
"description": "Specify the emphasis of the Badge",
|
|
1604
1514
|
"fieldName": "emphasis"
|
|
1605
1515
|
},
|
|
1606
1516
|
{
|
|
1607
|
-
"name": "
|
|
1517
|
+
"name": "hideIcon",
|
|
1608
1518
|
"type": {
|
|
1609
|
-
"text": "
|
|
1519
|
+
"text": "boolean | undefined"
|
|
1610
1520
|
},
|
|
1611
|
-
"description": "
|
|
1612
|
-
"fieldName": "
|
|
1521
|
+
"description": "Hides Badge icon",
|
|
1522
|
+
"fieldName": "hideIcon"
|
|
1613
1523
|
}
|
|
1614
1524
|
],
|
|
1615
1525
|
"superclass": {
|
|
1616
1526
|
"name": "LitElement",
|
|
1617
1527
|
"package": "lit"
|
|
1618
1528
|
},
|
|
1619
|
-
"tagName": "bm-badge
|
|
1529
|
+
"tagName": "bm-badge",
|
|
1620
1530
|
"customElement": true
|
|
1621
1531
|
}
|
|
1622
1532
|
],
|
|
1623
1533
|
"exports": [
|
|
1624
1534
|
{
|
|
1625
1535
|
"kind": "js",
|
|
1626
|
-
"name": "
|
|
1536
|
+
"name": "BmBadge",
|
|
1627
1537
|
"declaration": {
|
|
1628
|
-
"name": "
|
|
1629
|
-
"module": "libs/web-components/src/lib/
|
|
1538
|
+
"name": "BmBadge",
|
|
1539
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1630
1540
|
}
|
|
1631
1541
|
},
|
|
1632
1542
|
{
|
|
1633
1543
|
"kind": "custom-element-definition",
|
|
1634
|
-
"name": "bm-badge
|
|
1544
|
+
"name": "bm-badge",
|
|
1635
1545
|
"declaration": {
|
|
1636
|
-
"name": "
|
|
1637
|
-
"module": "libs/web-components/src/lib/
|
|
1546
|
+
"name": "BmBadge",
|
|
1547
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1638
1548
|
}
|
|
1639
1549
|
}
|
|
1640
1550
|
]
|
|
1641
1551
|
},
|
|
1642
1552
|
{
|
|
1643
1553
|
"kind": "javascript-module",
|
|
1644
|
-
"path": "libs/web-components/src/lib/
|
|
1554
|
+
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
1645
1555
|
"declarations": [],
|
|
1646
1556
|
"exports": [
|
|
1647
1557
|
{
|
|
@@ -1649,565 +1559,647 @@
|
|
|
1649
1559
|
"name": "*",
|
|
1650
1560
|
"declaration": {
|
|
1651
1561
|
"name": "*",
|
|
1652
|
-
"package": "./
|
|
1653
|
-
}
|
|
1654
|
-
}
|
|
1655
|
-
]
|
|
1656
|
-
},
|
|
1657
|
-
{
|
|
1658
|
-
"kind": "javascript-module",
|
|
1659
|
-
"path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
|
|
1660
|
-
"declarations": [
|
|
1661
|
-
{
|
|
1662
|
-
"kind": "variable",
|
|
1663
|
-
"name": "BreadcrumbGroupCtx"
|
|
1664
|
-
}
|
|
1665
|
-
],
|
|
1666
|
-
"exports": [
|
|
1667
|
-
{
|
|
1668
|
-
"kind": "js",
|
|
1669
|
-
"name": "BreadcrumbGroupCtx",
|
|
1670
|
-
"declaration": {
|
|
1671
|
-
"name": "BreadcrumbGroupCtx",
|
|
1672
|
-
"module": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts"
|
|
1562
|
+
"package": "./Badge"
|
|
1673
1563
|
}
|
|
1674
1564
|
}
|
|
1675
1565
|
]
|
|
1676
1566
|
},
|
|
1677
1567
|
{
|
|
1678
1568
|
"kind": "javascript-module",
|
|
1679
|
-
"path": "libs/web-components/src/lib/
|
|
1569
|
+
"path": "libs/web-components/src/lib/Button/Button.ts",
|
|
1680
1570
|
"declarations": [
|
|
1681
1571
|
{
|
|
1682
1572
|
"kind": "class",
|
|
1683
|
-
"description": "`bm-
|
|
1684
|
-
"name": "
|
|
1573
|
+
"description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** ",
|
|
1574
|
+
"name": "BmButton",
|
|
1685
1575
|
"slots": [
|
|
1686
1576
|
{
|
|
1687
|
-
"description": "
|
|
1577
|
+
"description": "Provide content for the Button",
|
|
1688
1578
|
"name": "default"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"description": "Specify if the Button displays icon before the text",
|
|
1582
|
+
"name": "iconBefore"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"description": "Specify if the Button displays icon after the text",
|
|
1586
|
+
"name": "iconAfter"
|
|
1689
1587
|
}
|
|
1690
1588
|
],
|
|
1691
1589
|
"members": [
|
|
1692
1590
|
{
|
|
1693
1591
|
"kind": "field",
|
|
1694
|
-
"name": "
|
|
1592
|
+
"name": "formAssociated",
|
|
1695
1593
|
"type": {
|
|
1696
1594
|
"text": "boolean"
|
|
1697
1595
|
},
|
|
1698
|
-
"
|
|
1699
|
-
"
|
|
1700
|
-
"attribute": "wrap"
|
|
1596
|
+
"static": true,
|
|
1597
|
+
"default": "true"
|
|
1701
1598
|
},
|
|
1702
1599
|
{
|
|
1703
1600
|
"kind": "field",
|
|
1704
|
-
"name": "
|
|
1601
|
+
"name": "appearance",
|
|
1705
1602
|
"type": {
|
|
1706
|
-
"text": "
|
|
1603
|
+
"text": "'accent' | 'neutral' | 'destructive' | 'neutral-subtle'"
|
|
1707
1604
|
},
|
|
1708
|
-
"default": "
|
|
1709
|
-
"description": "Specify
|
|
1710
|
-
"attribute": "
|
|
1605
|
+
"default": "'accent'",
|
|
1606
|
+
"description": "Specify the appearance of a Button",
|
|
1607
|
+
"attribute": "appearance"
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"kind": "field",
|
|
1611
|
+
"name": "kind",
|
|
1612
|
+
"type": {
|
|
1613
|
+
"text": "'filled' | 'outline' | 'ghost' | 'bare'"
|
|
1614
|
+
},
|
|
1615
|
+
"default": "'filled'",
|
|
1616
|
+
"description": "Specify the kind of Button",
|
|
1617
|
+
"attribute": "kind"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"kind": "field",
|
|
1621
|
+
"name": "size",
|
|
1622
|
+
"type": {
|
|
1623
|
+
"text": "'sm' | 'md' | 'lg'"
|
|
1624
|
+
},
|
|
1625
|
+
"default": "'md'",
|
|
1626
|
+
"description": "Specify the size of a Button",
|
|
1627
|
+
"attribute": "size"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"kind": "field",
|
|
1631
|
+
"name": "disabled",
|
|
1632
|
+
"type": {
|
|
1633
|
+
"text": "boolean"
|
|
1634
|
+
},
|
|
1635
|
+
"default": "false",
|
|
1636
|
+
"description": "Specify if the Button is disabled",
|
|
1637
|
+
"attribute": "disabled"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"kind": "field",
|
|
1641
|
+
"name": "fluid",
|
|
1642
|
+
"type": {
|
|
1643
|
+
"text": "boolean"
|
|
1644
|
+
},
|
|
1645
|
+
"default": "false",
|
|
1646
|
+
"description": "Specify if Button is fluid",
|
|
1647
|
+
"attribute": "fluid"
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
"kind": "field",
|
|
1651
|
+
"name": "width",
|
|
1652
|
+
"type": {
|
|
1653
|
+
"text": "string | undefined"
|
|
1654
|
+
},
|
|
1655
|
+
"description": "Specify the width of a Button",
|
|
1656
|
+
"attribute": "width"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"kind": "field",
|
|
1660
|
+
"name": "height",
|
|
1661
|
+
"type": {
|
|
1662
|
+
"text": "string | undefined"
|
|
1663
|
+
},
|
|
1664
|
+
"description": "Specify the height of a Button",
|
|
1665
|
+
"attribute": "height"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"kind": "field",
|
|
1669
|
+
"name": "theme",
|
|
1670
|
+
"type": {
|
|
1671
|
+
"text": "'light' | 'dark' | undefined"
|
|
1672
|
+
},
|
|
1673
|
+
"description": "Specify the theme of the Button",
|
|
1674
|
+
"attribute": "theme"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"kind": "field",
|
|
1678
|
+
"name": "iconOnly",
|
|
1679
|
+
"type": {
|
|
1680
|
+
"text": "boolean | undefined"
|
|
1681
|
+
},
|
|
1682
|
+
"description": "Specify if the icon displays without text",
|
|
1683
|
+
"attribute": "iconOnly"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"kind": "field",
|
|
1687
|
+
"name": "type",
|
|
1688
|
+
"type": {
|
|
1689
|
+
"text": "string"
|
|
1690
|
+
},
|
|
1691
|
+
"default": "'button'",
|
|
1692
|
+
"attribute": "type"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"kind": "field",
|
|
1696
|
+
"name": "formContext",
|
|
1697
|
+
"type": {
|
|
1698
|
+
"text": "BmFormContext"
|
|
1699
|
+
}
|
|
1700
|
+
}
|
|
1701
|
+
],
|
|
1702
|
+
"attributes": [
|
|
1703
|
+
{
|
|
1704
|
+
"name": "appearance",
|
|
1705
|
+
"type": {
|
|
1706
|
+
"text": "'accent' | 'neutral' | 'destructive' | 'neutral-subtle'"
|
|
1707
|
+
},
|
|
1708
|
+
"default": "'accent'",
|
|
1709
|
+
"description": "Specify the appearance of a Button",
|
|
1710
|
+
"fieldName": "appearance"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"name": "kind",
|
|
1714
|
+
"type": {
|
|
1715
|
+
"text": "'filled' | 'outline' | 'ghost' | 'bare'"
|
|
1716
|
+
},
|
|
1717
|
+
"default": "'filled'",
|
|
1718
|
+
"description": "Specify the kind of Button",
|
|
1719
|
+
"fieldName": "kind"
|
|
1711
1720
|
},
|
|
1712
1721
|
{
|
|
1713
|
-
"
|
|
1714
|
-
"name": "itemsAfterCollapse",
|
|
1722
|
+
"name": "size",
|
|
1715
1723
|
"type": {
|
|
1716
|
-
"text": "
|
|
1724
|
+
"text": "'sm' | 'md' | 'lg'"
|
|
1717
1725
|
},
|
|
1718
|
-
"default": "
|
|
1719
|
-
"description": "Specify
|
|
1720
|
-
"
|
|
1726
|
+
"default": "'md'",
|
|
1727
|
+
"description": "Specify the size of a Button",
|
|
1728
|
+
"fieldName": "size"
|
|
1721
1729
|
},
|
|
1722
1730
|
{
|
|
1723
|
-
"
|
|
1724
|
-
"name": "theme",
|
|
1731
|
+
"name": "disabled",
|
|
1725
1732
|
"type": {
|
|
1726
|
-
"text": "
|
|
1733
|
+
"text": "boolean"
|
|
1727
1734
|
},
|
|
1728
|
-
"
|
|
1729
|
-
"
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
"attributes": [
|
|
1735
|
+
"default": "false",
|
|
1736
|
+
"description": "Specify if the Button is disabled",
|
|
1737
|
+
"fieldName": "disabled"
|
|
1738
|
+
},
|
|
1733
1739
|
{
|
|
1734
|
-
"name": "
|
|
1740
|
+
"name": "fluid",
|
|
1735
1741
|
"type": {
|
|
1736
1742
|
"text": "boolean"
|
|
1737
1743
|
},
|
|
1738
|
-
"default": "
|
|
1739
|
-
"description": "Specify if
|
|
1740
|
-
"fieldName": "
|
|
1744
|
+
"default": "false",
|
|
1745
|
+
"description": "Specify if Button is fluid",
|
|
1746
|
+
"fieldName": "fluid"
|
|
1741
1747
|
},
|
|
1742
1748
|
{
|
|
1743
|
-
"name": "
|
|
1749
|
+
"name": "width",
|
|
1744
1750
|
"type": {
|
|
1745
|
-
"text": "
|
|
1751
|
+
"text": "string | undefined"
|
|
1746
1752
|
},
|
|
1747
|
-
"
|
|
1748
|
-
"
|
|
1749
|
-
"fieldName": "itemsBeforeCollapse"
|
|
1753
|
+
"description": "Specify the width of a Button",
|
|
1754
|
+
"fieldName": "width"
|
|
1750
1755
|
},
|
|
1751
1756
|
{
|
|
1752
|
-
"name": "
|
|
1757
|
+
"name": "height",
|
|
1753
1758
|
"type": {
|
|
1754
|
-
"text": "
|
|
1759
|
+
"text": "string | undefined"
|
|
1755
1760
|
},
|
|
1756
|
-
"
|
|
1757
|
-
"
|
|
1758
|
-
"fieldName": "itemsAfterCollapse"
|
|
1761
|
+
"description": "Specify the height of a Button",
|
|
1762
|
+
"fieldName": "height"
|
|
1759
1763
|
},
|
|
1760
1764
|
{
|
|
1761
1765
|
"name": "theme",
|
|
1762
1766
|
"type": {
|
|
1763
1767
|
"text": "'light' | 'dark' | undefined"
|
|
1764
1768
|
},
|
|
1765
|
-
"description": "Specify the theme of the
|
|
1769
|
+
"description": "Specify the theme of the Button",
|
|
1766
1770
|
"fieldName": "theme"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"name": "iconOnly",
|
|
1774
|
+
"type": {
|
|
1775
|
+
"text": "boolean | undefined"
|
|
1776
|
+
},
|
|
1777
|
+
"description": "Specify if the icon displays without text",
|
|
1778
|
+
"fieldName": "iconOnly"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"name": "type",
|
|
1782
|
+
"type": {
|
|
1783
|
+
"text": "string"
|
|
1784
|
+
},
|
|
1785
|
+
"default": "'button'",
|
|
1786
|
+
"fieldName": "type"
|
|
1767
1787
|
}
|
|
1768
1788
|
],
|
|
1769
1789
|
"superclass": {
|
|
1770
1790
|
"name": "LitElement",
|
|
1771
1791
|
"package": "lit"
|
|
1772
1792
|
},
|
|
1773
|
-
"tagName": "bm-
|
|
1793
|
+
"tagName": "bm-button",
|
|
1774
1794
|
"customElement": true
|
|
1775
1795
|
}
|
|
1776
1796
|
],
|
|
1777
1797
|
"exports": [
|
|
1778
1798
|
{
|
|
1779
1799
|
"kind": "js",
|
|
1780
|
-
"name": "
|
|
1800
|
+
"name": "BmButton",
|
|
1781
1801
|
"declaration": {
|
|
1782
|
-
"name": "
|
|
1783
|
-
"module": "libs/web-components/src/lib/
|
|
1802
|
+
"name": "BmButton",
|
|
1803
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
1784
1804
|
}
|
|
1785
1805
|
},
|
|
1786
1806
|
{
|
|
1787
1807
|
"kind": "custom-element-definition",
|
|
1788
|
-
"name": "bm-
|
|
1808
|
+
"name": "bm-button",
|
|
1789
1809
|
"declaration": {
|
|
1790
|
-
"name": "
|
|
1791
|
-
"module": "libs/web-components/src/lib/
|
|
1810
|
+
"name": "BmButton",
|
|
1811
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
1792
1812
|
}
|
|
1793
1813
|
}
|
|
1794
1814
|
]
|
|
1795
1815
|
},
|
|
1796
1816
|
{
|
|
1797
1817
|
"kind": "javascript-module",
|
|
1798
|
-
"path": "libs/web-components/src/lib/
|
|
1818
|
+
"path": "libs/web-components/src/lib/Button/index.ts",
|
|
1819
|
+
"declarations": [],
|
|
1820
|
+
"exports": [
|
|
1821
|
+
{
|
|
1822
|
+
"kind": "js",
|
|
1823
|
+
"name": "*",
|
|
1824
|
+
"declaration": {
|
|
1825
|
+
"name": "*",
|
|
1826
|
+
"package": "./Button"
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
]
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"kind": "javascript-module",
|
|
1833
|
+
"path": "libs/web-components/src/lib/Avatar/Avatar.ts",
|
|
1799
1834
|
"declarations": [
|
|
1800
1835
|
{
|
|
1801
1836
|
"kind": "class",
|
|
1802
|
-
"description": "`bm-
|
|
1803
|
-
"name": "
|
|
1837
|
+
"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** ",
|
|
1838
|
+
"name": "BmAvatar",
|
|
1804
1839
|
"slots": [
|
|
1805
1840
|
{
|
|
1806
|
-
"description": "
|
|
1807
|
-
"name": "default"
|
|
1808
|
-
},
|
|
1809
|
-
{
|
|
1810
|
-
"description": "Pass icon to an item",
|
|
1841
|
+
"description": "Customize the default icon",
|
|
1811
1842
|
"name": "icon"
|
|
1812
1843
|
}
|
|
1813
1844
|
],
|
|
1814
1845
|
"members": [
|
|
1815
1846
|
{
|
|
1816
1847
|
"kind": "field",
|
|
1817
|
-
"name": "
|
|
1848
|
+
"name": "appearance",
|
|
1849
|
+
"type": {
|
|
1850
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
1851
|
+
},
|
|
1852
|
+
"default": "'neutral'",
|
|
1853
|
+
"description": "Specify the appearance of the Avatar",
|
|
1854
|
+
"attribute": "appearance"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"kind": "field",
|
|
1858
|
+
"name": "name",
|
|
1818
1859
|
"type": {
|
|
1819
1860
|
"text": "string | undefined"
|
|
1820
1861
|
},
|
|
1821
|
-
"description": "
|
|
1822
|
-
"attribute": "
|
|
1862
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
1863
|
+
"attribute": "name"
|
|
1823
1864
|
},
|
|
1824
1865
|
{
|
|
1825
1866
|
"kind": "field",
|
|
1826
|
-
"name": "
|
|
1867
|
+
"name": "src",
|
|
1827
1868
|
"type": {
|
|
1828
|
-
"text": "
|
|
1869
|
+
"text": "string | undefined"
|
|
1829
1870
|
},
|
|
1830
|
-
"
|
|
1831
|
-
"
|
|
1832
|
-
"attribute": "clickable"
|
|
1871
|
+
"description": "Pass an image to the Avatar",
|
|
1872
|
+
"attribute": "src"
|
|
1833
1873
|
},
|
|
1834
1874
|
{
|
|
1835
1875
|
"kind": "field",
|
|
1836
|
-
"name": "
|
|
1876
|
+
"name": "alt",
|
|
1837
1877
|
"type": {
|
|
1838
1878
|
"text": "string | undefined"
|
|
1839
1879
|
},
|
|
1840
|
-
"description": "Specify
|
|
1841
|
-
"attribute": "
|
|
1880
|
+
"description": "Specify alt for image",
|
|
1881
|
+
"attribute": "alt"
|
|
1842
1882
|
},
|
|
1843
1883
|
{
|
|
1844
1884
|
"kind": "field",
|
|
1845
|
-
"name": "
|
|
1885
|
+
"name": "size",
|
|
1886
|
+
"type": {
|
|
1887
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
1888
|
+
},
|
|
1889
|
+
"default": "'md'",
|
|
1890
|
+
"description": "Specify the size of the Avatar",
|
|
1891
|
+
"attribute": "size"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"kind": "field",
|
|
1895
|
+
"name": "disabled",
|
|
1896
|
+
"type": {
|
|
1897
|
+
"text": "boolean | undefined"
|
|
1898
|
+
},
|
|
1899
|
+
"default": "false",
|
|
1900
|
+
"description": "Specify if the Avatar is disabled",
|
|
1901
|
+
"attribute": "disabled"
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"kind": "field",
|
|
1905
|
+
"name": "shape",
|
|
1906
|
+
"type": {
|
|
1907
|
+
"text": "'circle' | 'square' | undefined"
|
|
1908
|
+
},
|
|
1909
|
+
"default": "'circle'",
|
|
1910
|
+
"description": "Specify the shape of the Avatar",
|
|
1911
|
+
"attribute": "shape"
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"kind": "field",
|
|
1915
|
+
"name": "isInteractive",
|
|
1846
1916
|
"type": {
|
|
1847
1917
|
"text": "boolean"
|
|
1848
1918
|
},
|
|
1849
1919
|
"default": "false",
|
|
1850
|
-
"description": "
|
|
1851
|
-
"attribute": "
|
|
1852
|
-
"reflects": true
|
|
1920
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
1921
|
+
"attribute": "isInteractive"
|
|
1853
1922
|
},
|
|
1854
1923
|
{
|
|
1855
1924
|
"kind": "field",
|
|
1856
|
-
"name": "
|
|
1925
|
+
"name": "isFocusable",
|
|
1857
1926
|
"type": {
|
|
1858
1927
|
"text": "boolean"
|
|
1859
1928
|
},
|
|
1860
1929
|
"default": "false",
|
|
1861
|
-
"
|
|
1862
|
-
"
|
|
1930
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
1931
|
+
"attribute": "isFocusable"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"kind": "field",
|
|
1935
|
+
"name": "withBorder",
|
|
1936
|
+
"type": {
|
|
1937
|
+
"text": "boolean"
|
|
1938
|
+
},
|
|
1939
|
+
"default": "false",
|
|
1940
|
+
"attribute": "withBorder"
|
|
1863
1941
|
}
|
|
1864
1942
|
],
|
|
1865
1943
|
"attributes": [
|
|
1866
1944
|
{
|
|
1867
|
-
"name": "
|
|
1945
|
+
"name": "appearance",
|
|
1946
|
+
"type": {
|
|
1947
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
1948
|
+
},
|
|
1949
|
+
"default": "'neutral'",
|
|
1950
|
+
"description": "Specify the appearance of the Avatar",
|
|
1951
|
+
"fieldName": "appearance"
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
"name": "name",
|
|
1868
1955
|
"type": {
|
|
1869
1956
|
"text": "string | undefined"
|
|
1870
1957
|
},
|
|
1871
|
-
"description": "
|
|
1872
|
-
"fieldName": "
|
|
1958
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
1959
|
+
"fieldName": "name"
|
|
1873
1960
|
},
|
|
1874
1961
|
{
|
|
1875
|
-
"name": "
|
|
1962
|
+
"name": "src",
|
|
1876
1963
|
"type": {
|
|
1877
|
-
"text": "
|
|
1964
|
+
"text": "string | undefined"
|
|
1878
1965
|
},
|
|
1879
|
-
"
|
|
1880
|
-
"
|
|
1881
|
-
"fieldName": "clickable"
|
|
1966
|
+
"description": "Pass an image to the Avatar",
|
|
1967
|
+
"fieldName": "src"
|
|
1882
1968
|
},
|
|
1883
1969
|
{
|
|
1884
|
-
"name": "
|
|
1970
|
+
"name": "alt",
|
|
1885
1971
|
"type": {
|
|
1886
1972
|
"text": "string | undefined"
|
|
1887
1973
|
},
|
|
1888
|
-
"description": "Specify
|
|
1889
|
-
"fieldName": "
|
|
1974
|
+
"description": "Specify alt for image",
|
|
1975
|
+
"fieldName": "alt"
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"name": "size",
|
|
1979
|
+
"type": {
|
|
1980
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
1981
|
+
},
|
|
1982
|
+
"default": "'md'",
|
|
1983
|
+
"description": "Specify the size of the Avatar",
|
|
1984
|
+
"fieldName": "size"
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
"name": "disabled",
|
|
1988
|
+
"type": {
|
|
1989
|
+
"text": "boolean | undefined"
|
|
1990
|
+
},
|
|
1991
|
+
"default": "false",
|
|
1992
|
+
"description": "Specify if the Avatar is disabled",
|
|
1993
|
+
"fieldName": "disabled"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "shape",
|
|
1997
|
+
"type": {
|
|
1998
|
+
"text": "'circle' | 'square' | undefined"
|
|
1999
|
+
},
|
|
2000
|
+
"default": "'circle'",
|
|
2001
|
+
"description": "Specify the shape of the Avatar",
|
|
2002
|
+
"fieldName": "shape"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"name": "isInteractive",
|
|
2006
|
+
"type": {
|
|
2007
|
+
"text": "boolean"
|
|
2008
|
+
},
|
|
2009
|
+
"default": "false",
|
|
2010
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
2011
|
+
"fieldName": "isInteractive"
|
|
1890
2012
|
},
|
|
1891
2013
|
{
|
|
1892
|
-
"name": "
|
|
2014
|
+
"name": "isFocusable",
|
|
1893
2015
|
"type": {
|
|
1894
2016
|
"text": "boolean"
|
|
1895
2017
|
},
|
|
1896
2018
|
"default": "false",
|
|
1897
|
-
"description": "
|
|
1898
|
-
"fieldName": "
|
|
2019
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
2020
|
+
"fieldName": "isFocusable"
|
|
1899
2021
|
},
|
|
1900
2022
|
{
|
|
1901
|
-
"name": "
|
|
2023
|
+
"name": "withBorder",
|
|
1902
2024
|
"type": {
|
|
1903
2025
|
"text": "boolean"
|
|
1904
2026
|
},
|
|
1905
2027
|
"default": "false",
|
|
1906
|
-
"fieldName": "
|
|
2028
|
+
"fieldName": "withBorder"
|
|
1907
2029
|
}
|
|
1908
2030
|
],
|
|
1909
2031
|
"superclass": {
|
|
1910
2032
|
"name": "LitElement",
|
|
1911
2033
|
"package": "lit"
|
|
1912
2034
|
},
|
|
1913
|
-
"tagName": "bm-
|
|
2035
|
+
"tagName": "bm-avatar",
|
|
1914
2036
|
"customElement": true
|
|
1915
2037
|
}
|
|
1916
2038
|
],
|
|
1917
2039
|
"exports": [
|
|
1918
2040
|
{
|
|
1919
2041
|
"kind": "js",
|
|
1920
|
-
"name": "
|
|
2042
|
+
"name": "BmAvatar",
|
|
1921
2043
|
"declaration": {
|
|
1922
|
-
"name": "
|
|
1923
|
-
"module": "libs/web-components/src/lib/
|
|
2044
|
+
"name": "BmAvatar",
|
|
2045
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
1924
2046
|
}
|
|
1925
2047
|
},
|
|
1926
2048
|
{
|
|
1927
2049
|
"kind": "custom-element-definition",
|
|
1928
|
-
"name": "bm-
|
|
2050
|
+
"name": "bm-avatar",
|
|
1929
2051
|
"declaration": {
|
|
1930
|
-
"name": "
|
|
1931
|
-
"module": "libs/web-components/src/lib/
|
|
2052
|
+
"name": "BmAvatar",
|
|
2053
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
1932
2054
|
}
|
|
1933
2055
|
}
|
|
1934
2056
|
]
|
|
1935
2057
|
},
|
|
1936
2058
|
{
|
|
1937
2059
|
"kind": "javascript-module",
|
|
1938
|
-
"path": "libs/web-components/src/lib/
|
|
1939
|
-
"declarations": [
|
|
1940
|
-
"exports": [
|
|
2060
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
|
|
2061
|
+
"declarations": [
|
|
1941
2062
|
{
|
|
1942
|
-
"kind": "
|
|
1943
|
-
"name": "
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
}
|
|
1948
|
-
},
|
|
2063
|
+
"kind": "variable",
|
|
2064
|
+
"name": "AvatarGroupCtx"
|
|
2065
|
+
}
|
|
2066
|
+
],
|
|
2067
|
+
"exports": [
|
|
1949
2068
|
{
|
|
1950
2069
|
"kind": "js",
|
|
1951
|
-
"name": "
|
|
2070
|
+
"name": "AvatarGroupCtx",
|
|
1952
2071
|
"declaration": {
|
|
1953
|
-
"name": "
|
|
1954
|
-
"
|
|
2072
|
+
"name": "AvatarGroupCtx",
|
|
2073
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
|
|
1955
2074
|
}
|
|
1956
2075
|
}
|
|
1957
2076
|
]
|
|
1958
2077
|
},
|
|
1959
2078
|
{
|
|
1960
2079
|
"kind": "javascript-module",
|
|
1961
|
-
"path": "libs/web-components/src/lib/
|
|
2080
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
|
|
1962
2081
|
"declarations": [
|
|
1963
2082
|
{
|
|
1964
2083
|
"kind": "class",
|
|
1965
|
-
"description": "`bm-
|
|
1966
|
-
"name": "
|
|
2084
|
+
"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.",
|
|
2085
|
+
"name": "BmAvatarGroup",
|
|
1967
2086
|
"slots": [
|
|
1968
2087
|
{
|
|
1969
|
-
"description": "
|
|
2088
|
+
"description": "Add Avatars to create a group",
|
|
1970
2089
|
"name": "default"
|
|
1971
|
-
},
|
|
1972
|
-
{
|
|
1973
|
-
"description": "Specify if the Button displays icon before the text",
|
|
1974
|
-
"name": "iconBefore"
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
"description": "Specify if the Button displays icon after the text",
|
|
1978
|
-
"name": "iconAfter"
|
|
1979
2090
|
}
|
|
1980
2091
|
],
|
|
1981
2092
|
"members": [
|
|
1982
2093
|
{
|
|
1983
2094
|
"kind": "field",
|
|
1984
|
-
"name": "
|
|
2095
|
+
"name": "wrapping",
|
|
1985
2096
|
"type": {
|
|
1986
2097
|
"text": "boolean"
|
|
1987
2098
|
},
|
|
1988
|
-
"
|
|
1989
|
-
"
|
|
1990
|
-
|
|
1991
|
-
{
|
|
1992
|
-
"kind": "field",
|
|
1993
|
-
"name": "appearance",
|
|
1994
|
-
"type": {
|
|
1995
|
-
"text": "'accent' | 'neutral' | 'destructive' | 'neutral-subtle'"
|
|
1996
|
-
},
|
|
1997
|
-
"default": "'accent'",
|
|
1998
|
-
"description": "Specify the appearance of a Button",
|
|
1999
|
-
"attribute": "appearance"
|
|
2099
|
+
"default": "false",
|
|
2100
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
2101
|
+
"attribute": "wrapping"
|
|
2000
2102
|
},
|
|
2001
2103
|
{
|
|
2002
2104
|
"kind": "field",
|
|
2003
|
-
"name": "
|
|
2105
|
+
"name": "maxCount",
|
|
2004
2106
|
"type": {
|
|
2005
|
-
"text": "
|
|
2107
|
+
"text": "number"
|
|
2006
2108
|
},
|
|
2007
|
-
"default": "
|
|
2008
|
-
"description": "Specify the
|
|
2009
|
-
"attribute": "
|
|
2109
|
+
"default": "5",
|
|
2110
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
2111
|
+
"attribute": "maxCount",
|
|
2112
|
+
"reflects": true
|
|
2010
2113
|
},
|
|
2011
2114
|
{
|
|
2012
2115
|
"kind": "field",
|
|
2013
2116
|
"name": "size",
|
|
2014
2117
|
"type": {
|
|
2015
|
-
"text": "'sm' | 'md' | 'lg'"
|
|
2118
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
2016
2119
|
},
|
|
2017
2120
|
"default": "'md'",
|
|
2018
|
-
"description": "Specify the size of
|
|
2121
|
+
"description": "Specify the size of all Avatars",
|
|
2019
2122
|
"attribute": "size"
|
|
2020
2123
|
},
|
|
2021
2124
|
{
|
|
2022
2125
|
"kind": "field",
|
|
2023
|
-
"name": "
|
|
2024
|
-
"type": {
|
|
2025
|
-
"text": "boolean"
|
|
2026
|
-
},
|
|
2027
|
-
"default": "false",
|
|
2028
|
-
"description": "Specify if the Button is disabled",
|
|
2029
|
-
"attribute": "disabled"
|
|
2030
|
-
},
|
|
2031
|
-
{
|
|
2032
|
-
"kind": "field",
|
|
2033
|
-
"name": "fluid",
|
|
2034
|
-
"type": {
|
|
2035
|
-
"text": "boolean"
|
|
2036
|
-
},
|
|
2037
|
-
"default": "false",
|
|
2038
|
-
"description": "Specify if Button is fluid",
|
|
2039
|
-
"attribute": "fluid"
|
|
2040
|
-
},
|
|
2041
|
-
{
|
|
2042
|
-
"kind": "field",
|
|
2043
|
-
"name": "width",
|
|
2044
|
-
"type": {
|
|
2045
|
-
"text": "string | undefined"
|
|
2046
|
-
},
|
|
2047
|
-
"description": "Specify the width of a Button",
|
|
2048
|
-
"attribute": "width"
|
|
2049
|
-
},
|
|
2050
|
-
{
|
|
2051
|
-
"kind": "field",
|
|
2052
|
-
"name": "height",
|
|
2053
|
-
"type": {
|
|
2054
|
-
"text": "string | undefined"
|
|
2055
|
-
},
|
|
2056
|
-
"description": "Specify the height of a Button",
|
|
2057
|
-
"attribute": "height"
|
|
2058
|
-
},
|
|
2059
|
-
{
|
|
2060
|
-
"kind": "field",
|
|
2061
|
-
"name": "theme",
|
|
2062
|
-
"type": {
|
|
2063
|
-
"text": "'light' | 'dark' | undefined"
|
|
2064
|
-
},
|
|
2065
|
-
"description": "Specify the theme of the Button",
|
|
2066
|
-
"attribute": "theme"
|
|
2067
|
-
},
|
|
2068
|
-
{
|
|
2069
|
-
"kind": "field",
|
|
2070
|
-
"name": "iconOnly",
|
|
2071
|
-
"type": {
|
|
2072
|
-
"text": "boolean | undefined"
|
|
2073
|
-
},
|
|
2074
|
-
"description": "Specify if the icon displays without text",
|
|
2075
|
-
"attribute": "iconOnly"
|
|
2076
|
-
},
|
|
2077
|
-
{
|
|
2078
|
-
"kind": "field",
|
|
2079
|
-
"name": "type",
|
|
2126
|
+
"name": "layout",
|
|
2080
2127
|
"type": {
|
|
2081
|
-
"text": "
|
|
2128
|
+
"text": "'stacked' | 'spaced' | undefined"
|
|
2082
2129
|
},
|
|
2083
|
-
"default": "'
|
|
2084
|
-
"
|
|
2085
|
-
|
|
2086
|
-
{
|
|
2087
|
-
"kind": "field",
|
|
2088
|
-
"name": "formContext",
|
|
2089
|
-
"type": {
|
|
2090
|
-
"text": "BmFormContext"
|
|
2091
|
-
}
|
|
2130
|
+
"default": "'stacked'",
|
|
2131
|
+
"description": "Specify the kind of the group.",
|
|
2132
|
+
"attribute": "layout"
|
|
2092
2133
|
}
|
|
2093
2134
|
],
|
|
2094
2135
|
"attributes": [
|
|
2095
2136
|
{
|
|
2096
|
-
"name": "
|
|
2137
|
+
"name": "wrapping",
|
|
2097
2138
|
"type": {
|
|
2098
|
-
"text": "
|
|
2139
|
+
"text": "boolean"
|
|
2099
2140
|
},
|
|
2100
|
-
"default": "
|
|
2101
|
-
"description": "Specify the
|
|
2102
|
-
"fieldName": "
|
|
2141
|
+
"default": "false",
|
|
2142
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
2143
|
+
"fieldName": "wrapping"
|
|
2103
2144
|
},
|
|
2104
2145
|
{
|
|
2105
|
-
"name": "
|
|
2146
|
+
"name": "maxCount",
|
|
2106
2147
|
"type": {
|
|
2107
|
-
"text": "
|
|
2148
|
+
"text": "number"
|
|
2108
2149
|
},
|
|
2109
|
-
"default": "
|
|
2110
|
-
"description": "Specify the
|
|
2111
|
-
"fieldName": "
|
|
2150
|
+
"default": "5",
|
|
2151
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
2152
|
+
"fieldName": "maxCount"
|
|
2112
2153
|
},
|
|
2113
2154
|
{
|
|
2114
2155
|
"name": "size",
|
|
2115
2156
|
"type": {
|
|
2116
|
-
"text": "'sm' | 'md' | 'lg'"
|
|
2157
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl'"
|
|
2117
2158
|
},
|
|
2118
2159
|
"default": "'md'",
|
|
2119
|
-
"description": "Specify the size of
|
|
2160
|
+
"description": "Specify the size of all Avatars",
|
|
2120
2161
|
"fieldName": "size"
|
|
2121
2162
|
},
|
|
2122
2163
|
{
|
|
2123
|
-
"name": "
|
|
2124
|
-
"type": {
|
|
2125
|
-
"text": "boolean"
|
|
2126
|
-
},
|
|
2127
|
-
"default": "false",
|
|
2128
|
-
"description": "Specify if the Button is disabled",
|
|
2129
|
-
"fieldName": "disabled"
|
|
2130
|
-
},
|
|
2131
|
-
{
|
|
2132
|
-
"name": "fluid",
|
|
2133
|
-
"type": {
|
|
2134
|
-
"text": "boolean"
|
|
2135
|
-
},
|
|
2136
|
-
"default": "false",
|
|
2137
|
-
"description": "Specify if Button is fluid",
|
|
2138
|
-
"fieldName": "fluid"
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
"name": "width",
|
|
2142
|
-
"type": {
|
|
2143
|
-
"text": "string | undefined"
|
|
2144
|
-
},
|
|
2145
|
-
"description": "Specify the width of a Button",
|
|
2146
|
-
"fieldName": "width"
|
|
2147
|
-
},
|
|
2148
|
-
{
|
|
2149
|
-
"name": "height",
|
|
2150
|
-
"type": {
|
|
2151
|
-
"text": "string | undefined"
|
|
2152
|
-
},
|
|
2153
|
-
"description": "Specify the height of a Button",
|
|
2154
|
-
"fieldName": "height"
|
|
2155
|
-
},
|
|
2156
|
-
{
|
|
2157
|
-
"name": "theme",
|
|
2158
|
-
"type": {
|
|
2159
|
-
"text": "'light' | 'dark' | undefined"
|
|
2160
|
-
},
|
|
2161
|
-
"description": "Specify the theme of the Button",
|
|
2162
|
-
"fieldName": "theme"
|
|
2163
|
-
},
|
|
2164
|
-
{
|
|
2165
|
-
"name": "iconOnly",
|
|
2166
|
-
"type": {
|
|
2167
|
-
"text": "boolean | undefined"
|
|
2168
|
-
},
|
|
2169
|
-
"description": "Specify if the icon displays without text",
|
|
2170
|
-
"fieldName": "iconOnly"
|
|
2171
|
-
},
|
|
2172
|
-
{
|
|
2173
|
-
"name": "type",
|
|
2164
|
+
"name": "layout",
|
|
2174
2165
|
"type": {
|
|
2175
|
-
"text": "
|
|
2166
|
+
"text": "'stacked' | 'spaced' | undefined"
|
|
2176
2167
|
},
|
|
2177
|
-
"default": "'
|
|
2178
|
-
"
|
|
2168
|
+
"default": "'stacked'",
|
|
2169
|
+
"description": "Specify the kind of the group.",
|
|
2170
|
+
"fieldName": "layout"
|
|
2179
2171
|
}
|
|
2180
2172
|
],
|
|
2181
2173
|
"superclass": {
|
|
2182
2174
|
"name": "LitElement",
|
|
2183
2175
|
"package": "lit"
|
|
2184
2176
|
},
|
|
2185
|
-
"tagName": "bm-
|
|
2177
|
+
"tagName": "bm-avatar-group",
|
|
2186
2178
|
"customElement": true
|
|
2187
2179
|
}
|
|
2188
2180
|
],
|
|
2189
2181
|
"exports": [
|
|
2190
2182
|
{
|
|
2191
2183
|
"kind": "js",
|
|
2192
|
-
"name": "
|
|
2184
|
+
"name": "BmAvatarGroup",
|
|
2193
2185
|
"declaration": {
|
|
2194
|
-
"name": "
|
|
2195
|
-
"module": "libs/web-components/src/lib/
|
|
2186
|
+
"name": "BmAvatarGroup",
|
|
2187
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
2196
2188
|
}
|
|
2197
2189
|
},
|
|
2198
2190
|
{
|
|
2199
2191
|
"kind": "custom-element-definition",
|
|
2200
|
-
"name": "bm-
|
|
2192
|
+
"name": "bm-avatar-group",
|
|
2201
2193
|
"declaration": {
|
|
2202
|
-
"name": "
|
|
2203
|
-
"module": "libs/web-components/src/lib/
|
|
2194
|
+
"name": "BmAvatarGroup",
|
|
2195
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.ts"
|
|
2204
2196
|
}
|
|
2205
2197
|
}
|
|
2206
2198
|
]
|
|
2207
2199
|
},
|
|
2208
2200
|
{
|
|
2209
2201
|
"kind": "javascript-module",
|
|
2210
|
-
"path": "libs/web-components/src/lib/
|
|
2202
|
+
"path": "libs/web-components/src/lib/Avatar/index.ts",
|
|
2211
2203
|
"declarations": [],
|
|
2212
2204
|
"exports": [
|
|
2213
2205
|
{
|
|
@@ -2215,7 +2207,15 @@
|
|
|
2215
2207
|
"name": "*",
|
|
2216
2208
|
"declaration": {
|
|
2217
2209
|
"name": "*",
|
|
2218
|
-
"package": "./
|
|
2210
|
+
"package": "./Avatar"
|
|
2211
|
+
}
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"kind": "js",
|
|
2215
|
+
"name": "*",
|
|
2216
|
+
"declaration": {
|
|
2217
|
+
"name": "*",
|
|
2218
|
+
"package": "./AvatarGroup"
|
|
2219
2219
|
}
|
|
2220
2220
|
}
|
|
2221
2221
|
]
|
|
@@ -8291,150 +8291,157 @@
|
|
|
8291
8291
|
},
|
|
8292
8292
|
{
|
|
8293
8293
|
"kind": "javascript-module",
|
|
8294
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8294
|
+
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
8295
8295
|
"declarations": [
|
|
8296
8296
|
{
|
|
8297
8297
|
"kind": "class",
|
|
8298
|
-
"description": "`bm-
|
|
8299
|
-
"name": "
|
|
8298
|
+
"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",
|
|
8299
|
+
"name": "BmSwitch",
|
|
8300
|
+
"slots": [
|
|
8301
|
+
{
|
|
8302
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8303
|
+
"name": "onText"
|
|
8304
|
+
},
|
|
8305
|
+
{
|
|
8306
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8307
|
+
"name": "offText"
|
|
8308
|
+
}
|
|
8309
|
+
],
|
|
8300
8310
|
"members": [
|
|
8301
8311
|
{
|
|
8302
8312
|
"kind": "field",
|
|
8303
|
-
"name": "
|
|
8313
|
+
"name": "inputChoiceGroupContext",
|
|
8304
8314
|
"type": {
|
|
8305
|
-
"text": "
|
|
8306
|
-
}
|
|
8307
|
-
"description": "Specify the text for the label",
|
|
8308
|
-
"attribute": "label"
|
|
8315
|
+
"text": "InputChoiceGroupContextProps"
|
|
8316
|
+
}
|
|
8309
8317
|
},
|
|
8310
8318
|
{
|
|
8311
8319
|
"kind": "field",
|
|
8312
|
-
"name": "
|
|
8320
|
+
"name": "onText",
|
|
8313
8321
|
"type": {
|
|
8314
|
-
"text": "
|
|
8322
|
+
"text": "string | undefined"
|
|
8315
8323
|
},
|
|
8316
|
-
"
|
|
8317
|
-
"
|
|
8324
|
+
"default": "undefined",
|
|
8325
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8326
|
+
"attribute": "onText"
|
|
8318
8327
|
},
|
|
8319
8328
|
{
|
|
8320
8329
|
"kind": "field",
|
|
8321
|
-
"name": "
|
|
8330
|
+
"name": "offText",
|
|
8322
8331
|
"type": {
|
|
8323
|
-
"text": "
|
|
8332
|
+
"text": "string | undefined"
|
|
8324
8333
|
},
|
|
8325
|
-
"
|
|
8326
|
-
"
|
|
8334
|
+
"default": "undefined",
|
|
8335
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8336
|
+
"attribute": "offText"
|
|
8327
8337
|
},
|
|
8328
8338
|
{
|
|
8329
8339
|
"kind": "field",
|
|
8330
|
-
"name": "
|
|
8340
|
+
"name": "theme",
|
|
8331
8341
|
"type": {
|
|
8332
|
-
"text": "
|
|
8342
|
+
"text": "ThemeTypes | undefined"
|
|
8333
8343
|
},
|
|
8334
|
-
"
|
|
8335
|
-
"
|
|
8344
|
+
"default": "undefined",
|
|
8345
|
+
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
8336
8346
|
},
|
|
8337
8347
|
{
|
|
8338
8348
|
"kind": "field",
|
|
8339
|
-
"name": "
|
|
8349
|
+
"name": "textPosition",
|
|
8340
8350
|
"type": {
|
|
8341
|
-
"text": "'
|
|
8351
|
+
"text": "'before' | 'after'"
|
|
8342
8352
|
},
|
|
8343
|
-
"
|
|
8344
|
-
"
|
|
8353
|
+
"default": "'after'",
|
|
8354
|
+
"description": "Specify the position of the side label",
|
|
8355
|
+
"attribute": "textPosition"
|
|
8345
8356
|
},
|
|
8346
8357
|
{
|
|
8347
8358
|
"kind": "field",
|
|
8348
|
-
"name": "
|
|
8359
|
+
"name": "readOnly",
|
|
8349
8360
|
"type": {
|
|
8350
|
-
"text": "
|
|
8361
|
+
"text": "boolean"
|
|
8351
8362
|
},
|
|
8352
|
-
"
|
|
8353
|
-
"
|
|
8363
|
+
"default": "false",
|
|
8364
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
8365
|
+
"attribute": "readOnly"
|
|
8354
8366
|
},
|
|
8355
8367
|
{
|
|
8356
8368
|
"kind": "field",
|
|
8357
|
-
"name": "
|
|
8369
|
+
"name": "disabled",
|
|
8358
8370
|
"type": {
|
|
8359
8371
|
"text": "boolean"
|
|
8360
8372
|
},
|
|
8361
8373
|
"default": "false",
|
|
8362
|
-
"description": "
|
|
8363
|
-
"attribute": "
|
|
8374
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
8375
|
+
"attribute": "disabled"
|
|
8364
8376
|
},
|
|
8365
8377
|
{
|
|
8366
8378
|
"kind": "field",
|
|
8367
|
-
"name": "
|
|
8379
|
+
"name": "checked",
|
|
8368
8380
|
"type": {
|
|
8369
|
-
"text": "
|
|
8381
|
+
"text": "boolean"
|
|
8370
8382
|
},
|
|
8371
|
-
"
|
|
8372
|
-
"attribute": "
|
|
8383
|
+
"default": "false",
|
|
8384
|
+
"attribute": "checked"
|
|
8373
8385
|
},
|
|
8374
8386
|
{
|
|
8375
8387
|
"kind": "field",
|
|
8376
|
-
"name": "
|
|
8388
|
+
"name": "value",
|
|
8377
8389
|
"type": {
|
|
8378
|
-
"text": "
|
|
8379
|
-
}
|
|
8390
|
+
"text": "string | undefined"
|
|
8391
|
+
},
|
|
8392
|
+
"description": "The value attribute for the input element",
|
|
8393
|
+
"attribute": "value"
|
|
8380
8394
|
},
|
|
8381
8395
|
{
|
|
8382
8396
|
"kind": "field",
|
|
8383
|
-
"name": "
|
|
8384
|
-
},
|
|
8385
|
-
{
|
|
8386
|
-
"kind": "method",
|
|
8387
|
-
"name": "focus"
|
|
8397
|
+
"name": "switchRef"
|
|
8388
8398
|
}
|
|
8389
8399
|
],
|
|
8390
8400
|
"attributes": [
|
|
8391
8401
|
{
|
|
8392
|
-
"name": "
|
|
8402
|
+
"name": "onText",
|
|
8393
8403
|
"type": {
|
|
8394
8404
|
"text": "string | undefined"
|
|
8395
8405
|
},
|
|
8396
|
-
"
|
|
8397
|
-
"
|
|
8398
|
-
|
|
8399
|
-
{
|
|
8400
|
-
"name": "error",
|
|
8401
|
-
"type": {
|
|
8402
|
-
"text": "boolean | undefined"
|
|
8403
|
-
},
|
|
8404
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
8405
|
-
"fieldName": "error"
|
|
8406
|
+
"default": "undefined",
|
|
8407
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8408
|
+
"fieldName": "onText"
|
|
8406
8409
|
},
|
|
8407
8410
|
{
|
|
8408
|
-
"name": "
|
|
8411
|
+
"name": "offText",
|
|
8409
8412
|
"type": {
|
|
8410
|
-
"text": "
|
|
8413
|
+
"text": "string | undefined"
|
|
8411
8414
|
},
|
|
8412
|
-
"
|
|
8413
|
-
"
|
|
8415
|
+
"default": "undefined",
|
|
8416
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8417
|
+
"fieldName": "offText"
|
|
8414
8418
|
},
|
|
8415
8419
|
{
|
|
8416
|
-
"name": "
|
|
8420
|
+
"name": "textPosition",
|
|
8417
8421
|
"type": {
|
|
8418
|
-
"text": "
|
|
8422
|
+
"text": "'before' | 'after'"
|
|
8419
8423
|
},
|
|
8420
|
-
"
|
|
8421
|
-
"
|
|
8424
|
+
"default": "'after'",
|
|
8425
|
+
"description": "Specify the position of the side label",
|
|
8426
|
+
"fieldName": "textPosition"
|
|
8422
8427
|
},
|
|
8423
8428
|
{
|
|
8424
|
-
"name": "
|
|
8429
|
+
"name": "readOnly",
|
|
8425
8430
|
"type": {
|
|
8426
|
-
"text": "
|
|
8431
|
+
"text": "boolean"
|
|
8427
8432
|
},
|
|
8428
|
-
"
|
|
8429
|
-
"
|
|
8433
|
+
"default": "false",
|
|
8434
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
8435
|
+
"fieldName": "readOnly"
|
|
8430
8436
|
},
|
|
8431
8437
|
{
|
|
8432
|
-
"name": "
|
|
8438
|
+
"name": "disabled",
|
|
8433
8439
|
"type": {
|
|
8434
|
-
"text": "
|
|
8440
|
+
"text": "boolean"
|
|
8435
8441
|
},
|
|
8436
|
-
"
|
|
8437
|
-
"
|
|
8442
|
+
"default": "false",
|
|
8443
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
8444
|
+
"fieldName": "disabled"
|
|
8438
8445
|
},
|
|
8439
8446
|
{
|
|
8440
8447
|
"name": "checked",
|
|
@@ -8442,48 +8449,47 @@
|
|
|
8442
8449
|
"text": "boolean"
|
|
8443
8450
|
},
|
|
8444
8451
|
"default": "false",
|
|
8445
|
-
"description": "The checked attribute for the input element",
|
|
8446
8452
|
"fieldName": "checked"
|
|
8447
8453
|
},
|
|
8448
8454
|
{
|
|
8449
|
-
"name": "
|
|
8455
|
+
"name": "value",
|
|
8450
8456
|
"type": {
|
|
8451
|
-
"text": "
|
|
8457
|
+
"text": "string | undefined"
|
|
8452
8458
|
},
|
|
8453
|
-
"description": "
|
|
8454
|
-
"fieldName": "
|
|
8459
|
+
"description": "The value attribute for the input element",
|
|
8460
|
+
"fieldName": "value"
|
|
8455
8461
|
}
|
|
8456
8462
|
],
|
|
8457
8463
|
"superclass": {
|
|
8458
8464
|
"name": "LitElement",
|
|
8459
8465
|
"package": "lit"
|
|
8460
8466
|
},
|
|
8461
|
-
"tagName": "bm-
|
|
8467
|
+
"tagName": "bm-switch",
|
|
8462
8468
|
"customElement": true
|
|
8463
8469
|
}
|
|
8464
8470
|
],
|
|
8465
8471
|
"exports": [
|
|
8466
8472
|
{
|
|
8467
8473
|
"kind": "js",
|
|
8468
|
-
"name": "
|
|
8474
|
+
"name": "BmSwitch",
|
|
8469
8475
|
"declaration": {
|
|
8470
|
-
"name": "
|
|
8471
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8476
|
+
"name": "BmSwitch",
|
|
8477
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
8472
8478
|
}
|
|
8473
8479
|
},
|
|
8474
8480
|
{
|
|
8475
8481
|
"kind": "custom-element-definition",
|
|
8476
|
-
"name": "bm-
|
|
8482
|
+
"name": "bm-switch",
|
|
8477
8483
|
"declaration": {
|
|
8478
|
-
"name": "
|
|
8479
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8484
|
+
"name": "BmSwitch",
|
|
8485
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
8480
8486
|
}
|
|
8481
8487
|
}
|
|
8482
8488
|
]
|
|
8483
8489
|
},
|
|
8484
8490
|
{
|
|
8485
8491
|
"kind": "javascript-module",
|
|
8486
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8492
|
+
"path": "libs/web-components/src/lib/wip/Switch/index.ts",
|
|
8487
8493
|
"declarations": [],
|
|
8488
8494
|
"exports": [
|
|
8489
8495
|
{
|
|
@@ -8491,7 +8497,7 @@
|
|
|
8491
8497
|
"name": "*",
|
|
8492
8498
|
"declaration": {
|
|
8493
8499
|
"name": "*",
|
|
8494
|
-
"package": "./
|
|
8500
|
+
"package": "./Switch"
|
|
8495
8501
|
}
|
|
8496
8502
|
},
|
|
8497
8503
|
{
|
|
@@ -8499,104 +8505,64 @@
|
|
|
8499
8505
|
"name": "*",
|
|
8500
8506
|
"declaration": {
|
|
8501
8507
|
"name": "*",
|
|
8502
|
-
"package": "./
|
|
8508
|
+
"package": "./SwitchGroup/SwitchGroup"
|
|
8503
8509
|
}
|
|
8504
8510
|
}
|
|
8505
8511
|
]
|
|
8506
8512
|
},
|
|
8507
8513
|
{
|
|
8508
8514
|
"kind": "javascript-module",
|
|
8509
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8515
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
|
|
8510
8516
|
"declarations": [
|
|
8511
8517
|
{
|
|
8512
8518
|
"kind": "class",
|
|
8513
|
-
"description": "`bm-
|
|
8514
|
-
"name": "
|
|
8515
|
-
"slots": [
|
|
8516
|
-
{
|
|
8517
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8518
|
-
"name": "onText"
|
|
8519
|
-
},
|
|
8520
|
-
{
|
|
8521
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8522
|
-
"name": "offText"
|
|
8523
|
-
}
|
|
8524
|
-
],
|
|
8519
|
+
"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",
|
|
8520
|
+
"name": "BmRadioButton",
|
|
8525
8521
|
"members": [
|
|
8526
8522
|
{
|
|
8527
8523
|
"kind": "field",
|
|
8528
|
-
"name": "
|
|
8529
|
-
"type": {
|
|
8530
|
-
"text": "InputChoiceGroupContextProps"
|
|
8531
|
-
}
|
|
8532
|
-
},
|
|
8533
|
-
{
|
|
8534
|
-
"kind": "field",
|
|
8535
|
-
"name": "onText",
|
|
8536
|
-
"type": {
|
|
8537
|
-
"text": "string | undefined"
|
|
8538
|
-
},
|
|
8539
|
-
"default": "undefined",
|
|
8540
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8541
|
-
"attribute": "onText"
|
|
8542
|
-
},
|
|
8543
|
-
{
|
|
8544
|
-
"kind": "field",
|
|
8545
|
-
"name": "offText",
|
|
8524
|
+
"name": "label",
|
|
8546
8525
|
"type": {
|
|
8547
8526
|
"text": "string | undefined"
|
|
8548
8527
|
},
|
|
8549
|
-
"
|
|
8550
|
-
"
|
|
8551
|
-
"attribute": "offText"
|
|
8552
|
-
},
|
|
8553
|
-
{
|
|
8554
|
-
"kind": "field",
|
|
8555
|
-
"name": "theme",
|
|
8556
|
-
"type": {
|
|
8557
|
-
"text": "ThemeTypes | undefined"
|
|
8558
|
-
},
|
|
8559
|
-
"default": "undefined",
|
|
8560
|
-
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
8528
|
+
"description": "Specify the text for the label",
|
|
8529
|
+
"attribute": "label"
|
|
8561
8530
|
},
|
|
8562
8531
|
{
|
|
8563
8532
|
"kind": "field",
|
|
8564
|
-
"name": "
|
|
8533
|
+
"name": "error",
|
|
8565
8534
|
"type": {
|
|
8566
|
-
"text": "
|
|
8535
|
+
"text": "boolean | undefined"
|
|
8567
8536
|
},
|
|
8568
|
-
"
|
|
8569
|
-
"
|
|
8570
|
-
"attribute": "textPosition"
|
|
8537
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8538
|
+
"attribute": "error"
|
|
8571
8539
|
},
|
|
8572
8540
|
{
|
|
8573
8541
|
"kind": "field",
|
|
8574
8542
|
"name": "readOnly",
|
|
8575
8543
|
"type": {
|
|
8576
|
-
"text": "boolean"
|
|
8544
|
+
"text": "boolean | undefined"
|
|
8577
8545
|
},
|
|
8578
|
-
"
|
|
8579
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
8546
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8580
8547
|
"attribute": "readOnly"
|
|
8581
8548
|
},
|
|
8582
8549
|
{
|
|
8583
8550
|
"kind": "field",
|
|
8584
8551
|
"name": "disabled",
|
|
8585
8552
|
"type": {
|
|
8586
|
-
"text": "boolean"
|
|
8553
|
+
"text": "boolean | undefined"
|
|
8587
8554
|
},
|
|
8588
|
-
"
|
|
8589
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
8555
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8590
8556
|
"attribute": "disabled"
|
|
8591
8557
|
},
|
|
8592
8558
|
{
|
|
8593
8559
|
"kind": "field",
|
|
8594
|
-
"name": "
|
|
8560
|
+
"name": "theme",
|
|
8595
8561
|
"type": {
|
|
8596
|
-
"text": "
|
|
8562
|
+
"text": "'light' | 'dark' | undefined"
|
|
8597
8563
|
},
|
|
8598
|
-
"
|
|
8599
|
-
"attribute": "
|
|
8564
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8565
|
+
"attribute": "theme"
|
|
8600
8566
|
},
|
|
8601
8567
|
{
|
|
8602
8568
|
"kind": "field",
|
|
@@ -8609,62 +8575,79 @@
|
|
|
8609
8575
|
},
|
|
8610
8576
|
{
|
|
8611
8577
|
"kind": "field",
|
|
8612
|
-
"name": "
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8578
|
+
"name": "checked",
|
|
8579
|
+
"type": {
|
|
8580
|
+
"text": "boolean"
|
|
8581
|
+
},
|
|
8582
|
+
"default": "false",
|
|
8583
|
+
"description": "The checked attribute for the input element",
|
|
8584
|
+
"attribute": "checked"
|
|
8585
|
+
},
|
|
8616
8586
|
{
|
|
8617
|
-
"
|
|
8587
|
+
"kind": "field",
|
|
8588
|
+
"name": "onKeyDown",
|
|
8618
8589
|
"type": {
|
|
8619
|
-
"text": "
|
|
8590
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8620
8591
|
},
|
|
8621
|
-
"
|
|
8622
|
-
"
|
|
8623
|
-
"fieldName": "onText"
|
|
8592
|
+
"description": "A user-defined function to handle keydown events",
|
|
8593
|
+
"attribute": "onKeyDown"
|
|
8624
8594
|
},
|
|
8625
8595
|
{
|
|
8626
|
-
"
|
|
8596
|
+
"kind": "field",
|
|
8597
|
+
"name": "inputChoiceGroupContext",
|
|
8598
|
+
"type": {
|
|
8599
|
+
"text": "InputChoiceGroupContextProps"
|
|
8600
|
+
}
|
|
8601
|
+
},
|
|
8602
|
+
{
|
|
8603
|
+
"kind": "field",
|
|
8604
|
+
"name": "radioButtonRef"
|
|
8605
|
+
},
|
|
8606
|
+
{
|
|
8607
|
+
"kind": "method",
|
|
8608
|
+
"name": "focus"
|
|
8609
|
+
}
|
|
8610
|
+
],
|
|
8611
|
+
"attributes": [
|
|
8612
|
+
{
|
|
8613
|
+
"name": "label",
|
|
8627
8614
|
"type": {
|
|
8628
8615
|
"text": "string | undefined"
|
|
8629
8616
|
},
|
|
8630
|
-
"
|
|
8631
|
-
"
|
|
8632
|
-
"fieldName": "offText"
|
|
8617
|
+
"description": "Specify the text for the label",
|
|
8618
|
+
"fieldName": "label"
|
|
8633
8619
|
},
|
|
8634
8620
|
{
|
|
8635
|
-
"name": "
|
|
8621
|
+
"name": "error",
|
|
8636
8622
|
"type": {
|
|
8637
|
-
"text": "
|
|
8623
|
+
"text": "boolean | undefined"
|
|
8638
8624
|
},
|
|
8639
|
-
"
|
|
8640
|
-
"
|
|
8641
|
-
"fieldName": "textPosition"
|
|
8625
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8626
|
+
"fieldName": "error"
|
|
8642
8627
|
},
|
|
8643
8628
|
{
|
|
8644
8629
|
"name": "readOnly",
|
|
8645
8630
|
"type": {
|
|
8646
|
-
"text": "boolean"
|
|
8631
|
+
"text": "boolean | undefined"
|
|
8647
8632
|
},
|
|
8648
|
-
"
|
|
8649
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
8633
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8650
8634
|
"fieldName": "readOnly"
|
|
8651
8635
|
},
|
|
8652
8636
|
{
|
|
8653
8637
|
"name": "disabled",
|
|
8654
8638
|
"type": {
|
|
8655
|
-
"text": "boolean"
|
|
8639
|
+
"text": "boolean | undefined"
|
|
8656
8640
|
},
|
|
8657
|
-
"
|
|
8658
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
8641
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8659
8642
|
"fieldName": "disabled"
|
|
8660
8643
|
},
|
|
8661
8644
|
{
|
|
8662
|
-
"name": "
|
|
8645
|
+
"name": "theme",
|
|
8663
8646
|
"type": {
|
|
8664
|
-
"text": "
|
|
8647
|
+
"text": "'light' | 'dark' | undefined"
|
|
8665
8648
|
},
|
|
8666
|
-
"
|
|
8667
|
-
"fieldName": "
|
|
8649
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8650
|
+
"fieldName": "theme"
|
|
8668
8651
|
},
|
|
8669
8652
|
{
|
|
8670
8653
|
"name": "value",
|
|
@@ -8673,38 +8656,55 @@
|
|
|
8673
8656
|
},
|
|
8674
8657
|
"description": "The value attribute for the input element",
|
|
8675
8658
|
"fieldName": "value"
|
|
8659
|
+
},
|
|
8660
|
+
{
|
|
8661
|
+
"name": "checked",
|
|
8662
|
+
"type": {
|
|
8663
|
+
"text": "boolean"
|
|
8664
|
+
},
|
|
8665
|
+
"default": "false",
|
|
8666
|
+
"description": "The checked attribute for the input element",
|
|
8667
|
+
"fieldName": "checked"
|
|
8668
|
+
},
|
|
8669
|
+
{
|
|
8670
|
+
"name": "onKeyDown",
|
|
8671
|
+
"type": {
|
|
8672
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8673
|
+
},
|
|
8674
|
+
"description": "A user-defined function to handle keydown events",
|
|
8675
|
+
"fieldName": "onKeyDown"
|
|
8676
8676
|
}
|
|
8677
8677
|
],
|
|
8678
8678
|
"superclass": {
|
|
8679
8679
|
"name": "LitElement",
|
|
8680
8680
|
"package": "lit"
|
|
8681
8681
|
},
|
|
8682
|
-
"tagName": "bm-
|
|
8682
|
+
"tagName": "bm-radio-button",
|
|
8683
8683
|
"customElement": true
|
|
8684
8684
|
}
|
|
8685
8685
|
],
|
|
8686
8686
|
"exports": [
|
|
8687
8687
|
{
|
|
8688
8688
|
"kind": "js",
|
|
8689
|
-
"name": "
|
|
8689
|
+
"name": "BmRadioButton",
|
|
8690
8690
|
"declaration": {
|
|
8691
|
-
"name": "
|
|
8692
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8691
|
+
"name": "BmRadioButton",
|
|
8692
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8693
8693
|
}
|
|
8694
8694
|
},
|
|
8695
8695
|
{
|
|
8696
8696
|
"kind": "custom-element-definition",
|
|
8697
|
-
"name": "bm-
|
|
8697
|
+
"name": "bm-radio-button",
|
|
8698
8698
|
"declaration": {
|
|
8699
|
-
"name": "
|
|
8700
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8699
|
+
"name": "BmRadioButton",
|
|
8700
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8701
8701
|
}
|
|
8702
8702
|
}
|
|
8703
8703
|
]
|
|
8704
8704
|
},
|
|
8705
8705
|
{
|
|
8706
8706
|
"kind": "javascript-module",
|
|
8707
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8707
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
8708
8708
|
"declarations": [],
|
|
8709
8709
|
"exports": [
|
|
8710
8710
|
{
|
|
@@ -8712,7 +8712,7 @@
|
|
|
8712
8712
|
"name": "*",
|
|
8713
8713
|
"declaration": {
|
|
8714
8714
|
"name": "*",
|
|
8715
|
-
"package": "./
|
|
8715
|
+
"package": "./RadioButton"
|
|
8716
8716
|
}
|
|
8717
8717
|
},
|
|
8718
8718
|
{
|
|
@@ -8720,7 +8720,7 @@
|
|
|
8720
8720
|
"name": "*",
|
|
8721
8721
|
"declaration": {
|
|
8722
8722
|
"name": "*",
|
|
8723
|
-
"package": "./
|
|
8723
|
+
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
8724
8724
|
}
|
|
8725
8725
|
}
|
|
8726
8726
|
]
|
|
@@ -9747,207 +9747,28 @@
|
|
|
9747
9747
|
}
|
|
9748
9748
|
},
|
|
9749
9749
|
{
|
|
9750
|
-
"description": "Add helper text to the InputChoiceGroup",
|
|
9751
|
-
"name": "helperText",
|
|
9752
|
-
"inheritedFrom": {
|
|
9753
|
-
"name": "InputChoiceGroup",
|
|
9754
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9755
|
-
}
|
|
9756
|
-
}
|
|
9757
|
-
],
|
|
9758
|
-
"attributes": [
|
|
9759
|
-
{
|
|
9760
|
-
"name": "theme",
|
|
9761
|
-
"type": {
|
|
9762
|
-
"text": "'light' | 'dark' | undefined"
|
|
9763
|
-
},
|
|
9764
|
-
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
9765
|
-
"fieldName": "theme",
|
|
9766
|
-
"inheritedFrom": {
|
|
9767
|
-
"name": "InputChoiceGroup",
|
|
9768
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9769
|
-
}
|
|
9770
|
-
},
|
|
9771
|
-
{
|
|
9772
|
-
"name": "layout",
|
|
9773
|
-
"type": {
|
|
9774
|
-
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
9775
|
-
},
|
|
9776
|
-
"default": "'vertical'",
|
|
9777
|
-
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
9778
|
-
"deprecated": "use `orientation` and `fluid` instead",
|
|
9779
|
-
"fieldName": "layout",
|
|
9780
|
-
"inheritedFrom": {
|
|
9781
|
-
"name": "InputChoiceGroup",
|
|
9782
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9783
|
-
}
|
|
9784
|
-
},
|
|
9785
|
-
{
|
|
9786
|
-
"name": "orientation",
|
|
9787
|
-
"type": {
|
|
9788
|
-
"text": "'horizontal' | 'vertical'"
|
|
9789
|
-
},
|
|
9790
|
-
"default": "'vertical'",
|
|
9791
|
-
"description": "Specify InputChoiceGroup orientation",
|
|
9792
|
-
"fieldName": "orientation",
|
|
9793
|
-
"inheritedFrom": {
|
|
9794
|
-
"name": "InputChoiceGroup",
|
|
9795
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9796
|
-
}
|
|
9797
|
-
},
|
|
9798
|
-
{
|
|
9799
|
-
"name": "fluid",
|
|
9800
|
-
"type": {
|
|
9801
|
-
"text": "boolean"
|
|
9802
|
-
},
|
|
9803
|
-
"default": "false",
|
|
9804
|
-
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
9805
|
-
"fieldName": "fluid",
|
|
9806
|
-
"inheritedFrom": {
|
|
9807
|
-
"name": "InputChoiceGroup",
|
|
9808
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9809
|
-
}
|
|
9810
|
-
},
|
|
9811
|
-
{
|
|
9812
|
-
"name": "required",
|
|
9813
|
-
"type": {
|
|
9814
|
-
"text": "boolean"
|
|
9815
|
-
},
|
|
9816
|
-
"default": "false",
|
|
9817
|
-
"description": "Specify if InputChoiceGroup is a required input",
|
|
9818
|
-
"fieldName": "required",
|
|
9819
|
-
"inheritedFrom": {
|
|
9820
|
-
"name": "InputChoiceGroup",
|
|
9821
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9822
|
-
}
|
|
9823
|
-
},
|
|
9824
|
-
{
|
|
9825
|
-
"name": "hideRequiredMarker",
|
|
9826
|
-
"type": {
|
|
9827
|
-
"text": "boolean"
|
|
9828
|
-
},
|
|
9829
|
-
"default": "false",
|
|
9830
|
-
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
9831
|
-
"fieldName": "hideRequiredMarker",
|
|
9832
|
-
"inheritedFrom": {
|
|
9833
|
-
"name": "InputChoiceGroup",
|
|
9834
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9835
|
-
}
|
|
9836
|
-
},
|
|
9837
|
-
{
|
|
9838
|
-
"name": "error",
|
|
9839
|
-
"type": {
|
|
9840
|
-
"text": "string | undefined"
|
|
9841
|
-
},
|
|
9842
|
-
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
9843
|
-
"fieldName": "error",
|
|
9844
|
-
"inheritedFrom": {
|
|
9845
|
-
"name": "InputChoiceGroup",
|
|
9846
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9847
|
-
}
|
|
9848
|
-
},
|
|
9849
|
-
{
|
|
9850
|
-
"name": "readOnly",
|
|
9851
|
-
"type": {
|
|
9852
|
-
"text": "boolean"
|
|
9853
|
-
},
|
|
9854
|
-
"default": "false",
|
|
9855
|
-
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
9856
|
-
"fieldName": "readOnly",
|
|
9857
|
-
"inheritedFrom": {
|
|
9858
|
-
"name": "InputChoiceGroup",
|
|
9859
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9860
|
-
}
|
|
9861
|
-
},
|
|
9862
|
-
{
|
|
9863
|
-
"name": "disabled",
|
|
9864
|
-
"type": {
|
|
9865
|
-
"text": "boolean"
|
|
9866
|
-
},
|
|
9867
|
-
"default": "false",
|
|
9868
|
-
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
9869
|
-
"fieldName": "disabled",
|
|
9870
|
-
"inheritedFrom": {
|
|
9871
|
-
"name": "InputChoiceGroup",
|
|
9872
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9873
|
-
}
|
|
9874
|
-
},
|
|
9875
|
-
{
|
|
9876
|
-
"name": "id",
|
|
9877
|
-
"type": {
|
|
9878
|
-
"text": "string"
|
|
9879
|
-
},
|
|
9880
|
-
"default": "''",
|
|
9881
|
-
"fieldName": "id",
|
|
9882
|
-
"inheritedFrom": {
|
|
9883
|
-
"name": "FormField",
|
|
9884
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9885
|
-
}
|
|
9886
|
-
},
|
|
9887
|
-
{
|
|
9888
|
-
"name": "name",
|
|
9889
|
-
"type": {
|
|
9890
|
-
"text": "string"
|
|
9891
|
-
},
|
|
9892
|
-
"default": "''",
|
|
9893
|
-
"fieldName": "name",
|
|
9894
|
-
"inheritedFrom": {
|
|
9895
|
-
"name": "FormField",
|
|
9896
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9897
|
-
}
|
|
9898
|
-
},
|
|
9899
|
-
{
|
|
9900
|
-
"name": "value",
|
|
9901
|
-
"type": {
|
|
9902
|
-
"text": "string"
|
|
9903
|
-
},
|
|
9904
|
-
"default": "''",
|
|
9905
|
-
"fieldName": "value",
|
|
9906
|
-
"inheritedFrom": {
|
|
9907
|
-
"name": "FormField",
|
|
9908
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9909
|
-
}
|
|
9910
|
-
},
|
|
9911
|
-
{
|
|
9912
|
-
"name": "validationRules",
|
|
9913
|
-
"type": {
|
|
9914
|
-
"text": "Array<FormValidator>"
|
|
9915
|
-
},
|
|
9916
|
-
"default": "[]",
|
|
9917
|
-
"fieldName": "validationRules",
|
|
9918
|
-
"inheritedFrom": {
|
|
9919
|
-
"name": "FormField",
|
|
9920
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9921
|
-
}
|
|
9922
|
-
},
|
|
9923
|
-
{
|
|
9924
|
-
"name": "input-aria-label",
|
|
9925
|
-
"type": {
|
|
9926
|
-
"text": "Optional<string>"
|
|
9927
|
-
},
|
|
9928
|
-
"fieldName": "inputAriaLabel",
|
|
9750
|
+
"description": "Add helper text to the InputChoiceGroup",
|
|
9751
|
+
"name": "helperText",
|
|
9929
9752
|
"inheritedFrom": {
|
|
9930
|
-
"name": "
|
|
9931
|
-
"module": "libs/web-components/src/lib/
|
|
9753
|
+
"name": "InputChoiceGroup",
|
|
9754
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9932
9755
|
}
|
|
9933
9756
|
}
|
|
9934
9757
|
],
|
|
9935
|
-
"
|
|
9758
|
+
"attributes": [
|
|
9936
9759
|
{
|
|
9937
|
-
"kind": "field",
|
|
9938
9760
|
"name": "theme",
|
|
9939
9761
|
"type": {
|
|
9940
9762
|
"text": "'light' | 'dark' | undefined"
|
|
9941
9763
|
},
|
|
9942
9764
|
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
9943
|
-
"
|
|
9765
|
+
"fieldName": "theme",
|
|
9944
9766
|
"inheritedFrom": {
|
|
9945
9767
|
"name": "InputChoiceGroup",
|
|
9946
9768
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9947
9769
|
}
|
|
9948
9770
|
},
|
|
9949
9771
|
{
|
|
9950
|
-
"kind": "field",
|
|
9951
9772
|
"name": "layout",
|
|
9952
9773
|
"type": {
|
|
9953
9774
|
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
@@ -9955,320 +9776,162 @@
|
|
|
9955
9776
|
"default": "'vertical'",
|
|
9956
9777
|
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
9957
9778
|
"deprecated": "use `orientation` and `fluid` instead",
|
|
9958
|
-
"
|
|
9779
|
+
"fieldName": "layout",
|
|
9959
9780
|
"inheritedFrom": {
|
|
9960
9781
|
"name": "InputChoiceGroup",
|
|
9961
9782
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9962
9783
|
}
|
|
9963
9784
|
},
|
|
9964
9785
|
{
|
|
9965
|
-
"kind": "field",
|
|
9966
9786
|
"name": "orientation",
|
|
9967
9787
|
"type": {
|
|
9968
9788
|
"text": "'horizontal' | 'vertical'"
|
|
9969
9789
|
},
|
|
9970
9790
|
"default": "'vertical'",
|
|
9971
9791
|
"description": "Specify InputChoiceGroup orientation",
|
|
9972
|
-
"
|
|
9792
|
+
"fieldName": "orientation",
|
|
9973
9793
|
"inheritedFrom": {
|
|
9974
9794
|
"name": "InputChoiceGroup",
|
|
9975
9795
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9976
9796
|
}
|
|
9977
9797
|
},
|
|
9978
9798
|
{
|
|
9979
|
-
"kind": "field",
|
|
9980
9799
|
"name": "fluid",
|
|
9981
9800
|
"type": {
|
|
9982
9801
|
"text": "boolean"
|
|
9983
9802
|
},
|
|
9984
9803
|
"default": "false",
|
|
9985
9804
|
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
9986
|
-
"
|
|
9805
|
+
"fieldName": "fluid",
|
|
9987
9806
|
"inheritedFrom": {
|
|
9988
9807
|
"name": "InputChoiceGroup",
|
|
9989
9808
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9990
9809
|
}
|
|
9991
9810
|
},
|
|
9992
9811
|
{
|
|
9993
|
-
"kind": "field",
|
|
9994
9812
|
"name": "required",
|
|
9995
9813
|
"type": {
|
|
9996
9814
|
"text": "boolean"
|
|
9997
9815
|
},
|
|
9998
9816
|
"default": "false",
|
|
9999
9817
|
"description": "Specify if InputChoiceGroup is a required input",
|
|
10000
|
-
"
|
|
9818
|
+
"fieldName": "required",
|
|
10001
9819
|
"inheritedFrom": {
|
|
10002
9820
|
"name": "InputChoiceGroup",
|
|
10003
9821
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10004
9822
|
}
|
|
10005
9823
|
},
|
|
10006
9824
|
{
|
|
10007
|
-
"kind": "field",
|
|
10008
9825
|
"name": "hideRequiredMarker",
|
|
10009
9826
|
"type": {
|
|
10010
9827
|
"text": "boolean"
|
|
10011
9828
|
},
|
|
10012
9829
|
"default": "false",
|
|
10013
9830
|
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
10014
|
-
"
|
|
9831
|
+
"fieldName": "hideRequiredMarker",
|
|
10015
9832
|
"inheritedFrom": {
|
|
10016
9833
|
"name": "InputChoiceGroup",
|
|
10017
9834
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10018
9835
|
}
|
|
10019
9836
|
},
|
|
10020
9837
|
{
|
|
10021
|
-
"kind": "field",
|
|
10022
9838
|
"name": "error",
|
|
10023
9839
|
"type": {
|
|
10024
9840
|
"text": "string | undefined"
|
|
10025
9841
|
},
|
|
10026
9842
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
10027
|
-
"
|
|
9843
|
+
"fieldName": "error",
|
|
10028
9844
|
"inheritedFrom": {
|
|
10029
9845
|
"name": "InputChoiceGroup",
|
|
10030
9846
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10031
9847
|
}
|
|
10032
9848
|
},
|
|
10033
9849
|
{
|
|
10034
|
-
"kind": "field",
|
|
10035
9850
|
"name": "readOnly",
|
|
10036
9851
|
"type": {
|
|
10037
9852
|
"text": "boolean"
|
|
10038
9853
|
},
|
|
10039
9854
|
"default": "false",
|
|
10040
9855
|
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
10041
|
-
"
|
|
9856
|
+
"fieldName": "readOnly",
|
|
10042
9857
|
"inheritedFrom": {
|
|
10043
9858
|
"name": "InputChoiceGroup",
|
|
10044
9859
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10045
9860
|
}
|
|
10046
9861
|
},
|
|
10047
9862
|
{
|
|
10048
|
-
"kind": "field",
|
|
10049
9863
|
"name": "disabled",
|
|
10050
9864
|
"type": {
|
|
10051
9865
|
"text": "boolean"
|
|
10052
9866
|
},
|
|
10053
9867
|
"default": "false",
|
|
10054
9868
|
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
10055
|
-
"
|
|
10056
|
-
"inheritedFrom": {
|
|
10057
|
-
"name": "InputChoiceGroup",
|
|
10058
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10059
|
-
}
|
|
10060
|
-
},
|
|
10061
|
-
{
|
|
10062
|
-
"kind": "field",
|
|
10063
|
-
"name": "radioButtons",
|
|
10064
|
-
"type": {
|
|
10065
|
-
"text": "NodeListOf<Element>"
|
|
10066
|
-
},
|
|
10067
|
-
"inheritedFrom": {
|
|
10068
|
-
"name": "InputChoiceGroup",
|
|
10069
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10070
|
-
}
|
|
10071
|
-
},
|
|
10072
|
-
{
|
|
10073
|
-
"kind": "field",
|
|
10074
|
-
"name": "checkboxes",
|
|
10075
|
-
"type": {
|
|
10076
|
-
"text": "NodeListOf<Element>"
|
|
10077
|
-
},
|
|
10078
|
-
"inheritedFrom": {
|
|
10079
|
-
"name": "InputChoiceGroup",
|
|
10080
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10081
|
-
}
|
|
10082
|
-
},
|
|
10083
|
-
{
|
|
10084
|
-
"kind": "field",
|
|
10085
|
-
"name": "switches",
|
|
10086
|
-
"type": {
|
|
10087
|
-
"text": "NodeListOf<Element>"
|
|
10088
|
-
},
|
|
10089
|
-
"inheritedFrom": {
|
|
10090
|
-
"name": "InputChoiceGroup",
|
|
10091
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10092
|
-
}
|
|
10093
|
-
},
|
|
10094
|
-
{
|
|
10095
|
-
"kind": "field",
|
|
10096
|
-
"name": "inputGroupContextValue",
|
|
10097
|
-
"type": {
|
|
10098
|
-
"text": "InputChoiceGroupContextProps"
|
|
10099
|
-
},
|
|
10100
|
-
"privacy": "public",
|
|
10101
|
-
"default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
|
|
9869
|
+
"fieldName": "disabled",
|
|
10102
9870
|
"inheritedFrom": {
|
|
10103
9871
|
"name": "InputChoiceGroup",
|
|
10104
9872
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10105
9873
|
}
|
|
10106
9874
|
},
|
|
10107
9875
|
{
|
|
10108
|
-
"kind": "field",
|
|
10109
|
-
"name": "formAssociated",
|
|
10110
|
-
"type": {
|
|
10111
|
-
"text": "boolean"
|
|
10112
|
-
},
|
|
10113
|
-
"static": true,
|
|
10114
|
-
"default": "true",
|
|
10115
|
-
"inheritedFrom": {
|
|
10116
|
-
"name": "FormField",
|
|
10117
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10118
|
-
}
|
|
10119
|
-
},
|
|
10120
|
-
{
|
|
10121
|
-
"kind": "field",
|
|
10122
9876
|
"name": "id",
|
|
10123
9877
|
"type": {
|
|
10124
9878
|
"text": "string"
|
|
10125
9879
|
},
|
|
10126
9880
|
"default": "''",
|
|
10127
|
-
"
|
|
9881
|
+
"fieldName": "id",
|
|
10128
9882
|
"inheritedFrom": {
|
|
10129
9883
|
"name": "FormField",
|
|
10130
9884
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10131
9885
|
}
|
|
10132
9886
|
},
|
|
10133
9887
|
{
|
|
10134
|
-
"kind": "field",
|
|
10135
9888
|
"name": "name",
|
|
10136
9889
|
"type": {
|
|
10137
9890
|
"text": "string"
|
|
10138
9891
|
},
|
|
10139
9892
|
"default": "''",
|
|
10140
|
-
"
|
|
9893
|
+
"fieldName": "name",
|
|
10141
9894
|
"inheritedFrom": {
|
|
10142
9895
|
"name": "FormField",
|
|
10143
9896
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10144
9897
|
}
|
|
10145
9898
|
},
|
|
10146
9899
|
{
|
|
10147
|
-
"kind": "field",
|
|
10148
9900
|
"name": "value",
|
|
10149
9901
|
"type": {
|
|
10150
9902
|
"text": "string"
|
|
10151
9903
|
},
|
|
10152
9904
|
"default": "''",
|
|
10153
|
-
"
|
|
9905
|
+
"fieldName": "value",
|
|
10154
9906
|
"inheritedFrom": {
|
|
10155
9907
|
"name": "FormField",
|
|
10156
9908
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10157
9909
|
}
|
|
10158
9910
|
},
|
|
10159
9911
|
{
|
|
10160
|
-
"kind": "field",
|
|
10161
9912
|
"name": "validationRules",
|
|
10162
9913
|
"type": {
|
|
10163
9914
|
"text": "Array<FormValidator>"
|
|
10164
9915
|
},
|
|
10165
9916
|
"default": "[]",
|
|
10166
|
-
"
|
|
9917
|
+
"fieldName": "validationRules",
|
|
10167
9918
|
"inheritedFrom": {
|
|
10168
9919
|
"name": "FormField",
|
|
10169
9920
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10170
9921
|
}
|
|
10171
9922
|
},
|
|
10172
9923
|
{
|
|
10173
|
-
"
|
|
10174
|
-
"name": "inputAriaLabel",
|
|
9924
|
+
"name": "input-aria-label",
|
|
10175
9925
|
"type": {
|
|
10176
9926
|
"text": "Optional<string>"
|
|
10177
9927
|
},
|
|
10178
|
-
"
|
|
10179
|
-
"inheritedFrom": {
|
|
10180
|
-
"name": "FormField",
|
|
10181
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10182
|
-
}
|
|
10183
|
-
},
|
|
10184
|
-
{
|
|
10185
|
-
"kind": "field",
|
|
10186
|
-
"name": "formContext",
|
|
10187
|
-
"type": {
|
|
10188
|
-
"text": "BmFormContext"
|
|
10189
|
-
},
|
|
10190
|
-
"inheritedFrom": {
|
|
10191
|
-
"name": "FormField",
|
|
10192
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10193
|
-
}
|
|
10194
|
-
},
|
|
10195
|
-
{
|
|
10196
|
-
"kind": "method",
|
|
10197
|
-
"name": "formAssociatedCallback",
|
|
10198
|
-
"return": {
|
|
10199
|
-
"type": {
|
|
10200
|
-
"text": "void"
|
|
10201
|
-
}
|
|
10202
|
-
},
|
|
10203
|
-
"inheritedFrom": {
|
|
10204
|
-
"name": "FormField",
|
|
10205
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10206
|
-
}
|
|
10207
|
-
},
|
|
10208
|
-
{
|
|
10209
|
-
"kind": "method",
|
|
10210
|
-
"name": "formResetCallback",
|
|
10211
|
-
"return": {
|
|
10212
|
-
"type": {
|
|
10213
|
-
"text": "void"
|
|
10214
|
-
}
|
|
10215
|
-
},
|
|
10216
|
-
"inheritedFrom": {
|
|
10217
|
-
"name": "FormField",
|
|
10218
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10219
|
-
}
|
|
10220
|
-
},
|
|
10221
|
-
{
|
|
10222
|
-
"kind": "method",
|
|
10223
|
-
"name": "finalizeAssociatedCallback",
|
|
10224
|
-
"return": {
|
|
10225
|
-
"type": {
|
|
10226
|
-
"text": "FinalizeAssociatedResult"
|
|
10227
|
-
}
|
|
10228
|
-
},
|
|
10229
|
-
"parameters": [
|
|
10230
|
-
{
|
|
10231
|
-
"name": "ctxValue",
|
|
10232
|
-
"type": {
|
|
10233
|
-
"text": "string"
|
|
10234
|
-
}
|
|
10235
|
-
}
|
|
10236
|
-
],
|
|
9928
|
+
"fieldName": "inputAriaLabel",
|
|
10237
9929
|
"inheritedFrom": {
|
|
10238
|
-
"name": "FormField",
|
|
10239
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10240
|
-
}
|
|
10241
|
-
}
|
|
10242
|
-
]
|
|
10243
|
-
}
|
|
10244
|
-
],
|
|
10245
|
-
"exports": [
|
|
10246
|
-
{
|
|
10247
|
-
"kind": "js",
|
|
10248
|
-
"name": "BmCheckboxGroup",
|
|
10249
|
-
"declaration": {
|
|
10250
|
-
"name": "BmCheckboxGroup",
|
|
10251
|
-
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10252
|
-
}
|
|
10253
|
-
},
|
|
10254
|
-
{
|
|
10255
|
-
"kind": "custom-element-definition",
|
|
10256
|
-
"name": "bm-checkbox-group",
|
|
10257
|
-
"declaration": {
|
|
10258
|
-
"name": "BmCheckboxGroup",
|
|
10259
|
-
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10260
|
-
}
|
|
10261
|
-
}
|
|
10262
|
-
]
|
|
10263
|
-
},
|
|
10264
|
-
{
|
|
10265
|
-
"kind": "javascript-module",
|
|
10266
|
-
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
|
|
10267
|
-
"declarations": [
|
|
10268
|
-
{
|
|
10269
|
-
"kind": "class",
|
|
10270
|
-
"description": "",
|
|
10271
|
-
"name": "BmRadioButtonGroup",
|
|
9930
|
+
"name": "FormField",
|
|
9931
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9932
|
+
}
|
|
9933
|
+
}
|
|
9934
|
+
],
|
|
10272
9935
|
"members": [
|
|
10273
9936
|
{
|
|
10274
9937
|
"kind": "field",
|
|
@@ -10576,16 +10239,39 @@
|
|
|
10576
10239
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10577
10240
|
}
|
|
10578
10241
|
}
|
|
10579
|
-
]
|
|
10580
|
-
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
|
|
10584
|
-
"
|
|
10585
|
-
"
|
|
10242
|
+
]
|
|
10243
|
+
}
|
|
10244
|
+
],
|
|
10245
|
+
"exports": [
|
|
10246
|
+
{
|
|
10247
|
+
"kind": "js",
|
|
10248
|
+
"name": "BmCheckboxGroup",
|
|
10249
|
+
"declaration": {
|
|
10250
|
+
"name": "BmCheckboxGroup",
|
|
10251
|
+
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10252
|
+
}
|
|
10253
|
+
},
|
|
10254
|
+
{
|
|
10255
|
+
"kind": "custom-element-definition",
|
|
10256
|
+
"name": "bm-checkbox-group",
|
|
10257
|
+
"declaration": {
|
|
10258
|
+
"name": "BmCheckboxGroup",
|
|
10259
|
+
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10260
|
+
}
|
|
10261
|
+
}
|
|
10262
|
+
]
|
|
10263
|
+
},
|
|
10264
|
+
{
|
|
10265
|
+
"kind": "javascript-module",
|
|
10266
|
+
"path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
|
|
10267
|
+
"declarations": [
|
|
10268
|
+
{
|
|
10269
|
+
"kind": "class",
|
|
10270
|
+
"description": "`bm-switch-group`",
|
|
10271
|
+
"name": "BmSwitchGroup",
|
|
10586
10272
|
"slots": [
|
|
10587
10273
|
{
|
|
10588
|
-
"description": "
|
|
10274
|
+
"description": "Slot for the label of the SwitchGroup",
|
|
10589
10275
|
"name": "label",
|
|
10590
10276
|
"inheritedFrom": {
|
|
10591
10277
|
"name": "InputChoiceGroup",
|
|
@@ -10593,7 +10279,7 @@
|
|
|
10593
10279
|
}
|
|
10594
10280
|
},
|
|
10595
10281
|
{
|
|
10596
|
-
"description": "
|
|
10282
|
+
"description": "Slot for the helper text of the SwitchGroup",
|
|
10597
10283
|
"name": "helperText",
|
|
10598
10284
|
"inheritedFrom": {
|
|
10599
10285
|
"name": "InputChoiceGroup",
|
|
@@ -10601,6 +10287,12 @@
|
|
|
10601
10287
|
}
|
|
10602
10288
|
}
|
|
10603
10289
|
],
|
|
10290
|
+
"superclass": {
|
|
10291
|
+
"name": "InputChoiceGroup",
|
|
10292
|
+
"module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
|
|
10293
|
+
},
|
|
10294
|
+
"tagName": "bm-switch-group",
|
|
10295
|
+
"customElement": true,
|
|
10604
10296
|
"attributes": [
|
|
10605
10297
|
{
|
|
10606
10298
|
"name": "theme",
|
|
@@ -10777,74 +10469,23 @@
|
|
|
10777
10469
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10778
10470
|
}
|
|
10779
10471
|
}
|
|
10780
|
-
]
|
|
10781
|
-
}
|
|
10782
|
-
],
|
|
10783
|
-
"exports": [
|
|
10784
|
-
{
|
|
10785
|
-
"kind": "js",
|
|
10786
|
-
"name": "BmRadioButtonGroup",
|
|
10787
|
-
"declaration": {
|
|
10788
|
-
"name": "BmRadioButtonGroup",
|
|
10789
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
10790
|
-
}
|
|
10791
|
-
},
|
|
10792
|
-
{
|
|
10793
|
-
"kind": "custom-element-definition",
|
|
10794
|
-
"name": "bm-radio-button-group",
|
|
10795
|
-
"declaration": {
|
|
10796
|
-
"name": "BmRadioButtonGroup",
|
|
10797
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
10798
|
-
}
|
|
10799
|
-
}
|
|
10800
|
-
]
|
|
10801
|
-
},
|
|
10802
|
-
{
|
|
10803
|
-
"kind": "javascript-module",
|
|
10804
|
-
"path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
|
|
10805
|
-
"declarations": [
|
|
10806
|
-
{
|
|
10807
|
-
"kind": "class",
|
|
10808
|
-
"description": "`bm-switch-group`",
|
|
10809
|
-
"name": "BmSwitchGroup",
|
|
10810
|
-
"slots": [
|
|
10811
|
-
{
|
|
10812
|
-
"description": "Slot for the label of the SwitchGroup",
|
|
10813
|
-
"name": "label",
|
|
10814
|
-
"inheritedFrom": {
|
|
10815
|
-
"name": "InputChoiceGroup",
|
|
10816
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10817
|
-
}
|
|
10818
|
-
},
|
|
10819
|
-
{
|
|
10820
|
-
"description": "Slot for the helper text of the SwitchGroup",
|
|
10821
|
-
"name": "helperText",
|
|
10822
|
-
"inheritedFrom": {
|
|
10823
|
-
"name": "InputChoiceGroup",
|
|
10824
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10825
|
-
}
|
|
10826
|
-
}
|
|
10827
10472
|
],
|
|
10828
|
-
"
|
|
10829
|
-
"name": "InputChoiceGroup",
|
|
10830
|
-
"module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
|
|
10831
|
-
},
|
|
10832
|
-
"tagName": "bm-switch-group",
|
|
10833
|
-
"customElement": true,
|
|
10834
|
-
"attributes": [
|
|
10473
|
+
"members": [
|
|
10835
10474
|
{
|
|
10475
|
+
"kind": "field",
|
|
10836
10476
|
"name": "theme",
|
|
10837
10477
|
"type": {
|
|
10838
10478
|
"text": "'light' | 'dark' | undefined"
|
|
10839
10479
|
},
|
|
10840
10480
|
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
10841
|
-
"
|
|
10481
|
+
"attribute": "theme",
|
|
10842
10482
|
"inheritedFrom": {
|
|
10843
10483
|
"name": "InputChoiceGroup",
|
|
10844
10484
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10845
10485
|
}
|
|
10846
10486
|
},
|
|
10847
10487
|
{
|
|
10488
|
+
"kind": "field",
|
|
10848
10489
|
"name": "layout",
|
|
10849
10490
|
"type": {
|
|
10850
10491
|
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
@@ -10852,162 +10493,320 @@
|
|
|
10852
10493
|
"default": "'vertical'",
|
|
10853
10494
|
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
10854
10495
|
"deprecated": "use `orientation` and `fluid` instead",
|
|
10855
|
-
"
|
|
10496
|
+
"attribute": "layout",
|
|
10856
10497
|
"inheritedFrom": {
|
|
10857
10498
|
"name": "InputChoiceGroup",
|
|
10858
10499
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10859
10500
|
}
|
|
10860
10501
|
},
|
|
10861
10502
|
{
|
|
10503
|
+
"kind": "field",
|
|
10862
10504
|
"name": "orientation",
|
|
10863
10505
|
"type": {
|
|
10864
10506
|
"text": "'horizontal' | 'vertical'"
|
|
10865
10507
|
},
|
|
10866
10508
|
"default": "'vertical'",
|
|
10867
10509
|
"description": "Specify InputChoiceGroup orientation",
|
|
10868
|
-
"
|
|
10510
|
+
"attribute": "orientation",
|
|
10869
10511
|
"inheritedFrom": {
|
|
10870
10512
|
"name": "InputChoiceGroup",
|
|
10871
10513
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10872
10514
|
}
|
|
10873
10515
|
},
|
|
10874
10516
|
{
|
|
10517
|
+
"kind": "field",
|
|
10875
10518
|
"name": "fluid",
|
|
10876
10519
|
"type": {
|
|
10877
10520
|
"text": "boolean"
|
|
10878
10521
|
},
|
|
10879
10522
|
"default": "false",
|
|
10880
10523
|
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
10881
|
-
"
|
|
10524
|
+
"attribute": "fluid",
|
|
10882
10525
|
"inheritedFrom": {
|
|
10883
10526
|
"name": "InputChoiceGroup",
|
|
10884
10527
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10885
10528
|
}
|
|
10886
10529
|
},
|
|
10887
10530
|
{
|
|
10531
|
+
"kind": "field",
|
|
10888
10532
|
"name": "required",
|
|
10889
10533
|
"type": {
|
|
10890
10534
|
"text": "boolean"
|
|
10891
10535
|
},
|
|
10892
10536
|
"default": "false",
|
|
10893
10537
|
"description": "Specify if InputChoiceGroup is a required input",
|
|
10894
|
-
"
|
|
10538
|
+
"attribute": "required",
|
|
10895
10539
|
"inheritedFrom": {
|
|
10896
10540
|
"name": "InputChoiceGroup",
|
|
10897
10541
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10898
10542
|
}
|
|
10899
10543
|
},
|
|
10900
10544
|
{
|
|
10545
|
+
"kind": "field",
|
|
10901
10546
|
"name": "hideRequiredMarker",
|
|
10902
10547
|
"type": {
|
|
10903
10548
|
"text": "boolean"
|
|
10904
10549
|
},
|
|
10905
10550
|
"default": "false",
|
|
10906
10551
|
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
10907
|
-
"
|
|
10552
|
+
"attribute": "hideRequiredMarker",
|
|
10908
10553
|
"inheritedFrom": {
|
|
10909
10554
|
"name": "InputChoiceGroup",
|
|
10910
10555
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10911
10556
|
}
|
|
10912
10557
|
},
|
|
10913
10558
|
{
|
|
10559
|
+
"kind": "field",
|
|
10914
10560
|
"name": "error",
|
|
10915
10561
|
"type": {
|
|
10916
10562
|
"text": "string | undefined"
|
|
10917
10563
|
},
|
|
10918
10564
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
10919
|
-
"
|
|
10565
|
+
"attribute": "error",
|
|
10920
10566
|
"inheritedFrom": {
|
|
10921
10567
|
"name": "InputChoiceGroup",
|
|
10922
10568
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10923
10569
|
}
|
|
10924
10570
|
},
|
|
10925
10571
|
{
|
|
10572
|
+
"kind": "field",
|
|
10926
10573
|
"name": "readOnly",
|
|
10927
10574
|
"type": {
|
|
10928
10575
|
"text": "boolean"
|
|
10929
10576
|
},
|
|
10930
10577
|
"default": "false",
|
|
10931
10578
|
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
10932
|
-
"
|
|
10579
|
+
"attribute": "readOnly",
|
|
10933
10580
|
"inheritedFrom": {
|
|
10934
10581
|
"name": "InputChoiceGroup",
|
|
10935
10582
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10936
10583
|
}
|
|
10937
10584
|
},
|
|
10938
10585
|
{
|
|
10586
|
+
"kind": "field",
|
|
10939
10587
|
"name": "disabled",
|
|
10940
10588
|
"type": {
|
|
10941
10589
|
"text": "boolean"
|
|
10942
10590
|
},
|
|
10943
10591
|
"default": "false",
|
|
10944
10592
|
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
10945
|
-
"
|
|
10593
|
+
"attribute": "disabled",
|
|
10594
|
+
"inheritedFrom": {
|
|
10595
|
+
"name": "InputChoiceGroup",
|
|
10596
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10597
|
+
}
|
|
10598
|
+
},
|
|
10599
|
+
{
|
|
10600
|
+
"kind": "field",
|
|
10601
|
+
"name": "radioButtons",
|
|
10602
|
+
"type": {
|
|
10603
|
+
"text": "NodeListOf<Element>"
|
|
10604
|
+
},
|
|
10605
|
+
"inheritedFrom": {
|
|
10606
|
+
"name": "InputChoiceGroup",
|
|
10607
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10608
|
+
}
|
|
10609
|
+
},
|
|
10610
|
+
{
|
|
10611
|
+
"kind": "field",
|
|
10612
|
+
"name": "checkboxes",
|
|
10613
|
+
"type": {
|
|
10614
|
+
"text": "NodeListOf<Element>"
|
|
10615
|
+
},
|
|
10616
|
+
"inheritedFrom": {
|
|
10617
|
+
"name": "InputChoiceGroup",
|
|
10618
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10619
|
+
}
|
|
10620
|
+
},
|
|
10621
|
+
{
|
|
10622
|
+
"kind": "field",
|
|
10623
|
+
"name": "switches",
|
|
10624
|
+
"type": {
|
|
10625
|
+
"text": "NodeListOf<Element>"
|
|
10626
|
+
},
|
|
10627
|
+
"inheritedFrom": {
|
|
10628
|
+
"name": "InputChoiceGroup",
|
|
10629
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10630
|
+
}
|
|
10631
|
+
},
|
|
10632
|
+
{
|
|
10633
|
+
"kind": "field",
|
|
10634
|
+
"name": "inputGroupContextValue",
|
|
10635
|
+
"type": {
|
|
10636
|
+
"text": "InputChoiceGroupContextProps"
|
|
10637
|
+
},
|
|
10638
|
+
"privacy": "public",
|
|
10639
|
+
"default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
|
|
10946
10640
|
"inheritedFrom": {
|
|
10947
10641
|
"name": "InputChoiceGroup",
|
|
10948
10642
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10949
10643
|
}
|
|
10950
10644
|
},
|
|
10951
10645
|
{
|
|
10646
|
+
"kind": "field",
|
|
10647
|
+
"name": "formAssociated",
|
|
10648
|
+
"type": {
|
|
10649
|
+
"text": "boolean"
|
|
10650
|
+
},
|
|
10651
|
+
"static": true,
|
|
10652
|
+
"default": "true",
|
|
10653
|
+
"inheritedFrom": {
|
|
10654
|
+
"name": "FormField",
|
|
10655
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10656
|
+
}
|
|
10657
|
+
},
|
|
10658
|
+
{
|
|
10659
|
+
"kind": "field",
|
|
10952
10660
|
"name": "id",
|
|
10953
10661
|
"type": {
|
|
10954
10662
|
"text": "string"
|
|
10955
10663
|
},
|
|
10956
10664
|
"default": "''",
|
|
10957
|
-
"
|
|
10665
|
+
"attribute": "id",
|
|
10958
10666
|
"inheritedFrom": {
|
|
10959
10667
|
"name": "FormField",
|
|
10960
10668
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10961
10669
|
}
|
|
10962
10670
|
},
|
|
10963
10671
|
{
|
|
10672
|
+
"kind": "field",
|
|
10964
10673
|
"name": "name",
|
|
10965
10674
|
"type": {
|
|
10966
10675
|
"text": "string"
|
|
10967
10676
|
},
|
|
10968
10677
|
"default": "''",
|
|
10969
|
-
"
|
|
10678
|
+
"attribute": "name",
|
|
10970
10679
|
"inheritedFrom": {
|
|
10971
10680
|
"name": "FormField",
|
|
10972
10681
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10973
10682
|
}
|
|
10974
10683
|
},
|
|
10975
10684
|
{
|
|
10685
|
+
"kind": "field",
|
|
10976
10686
|
"name": "value",
|
|
10977
10687
|
"type": {
|
|
10978
10688
|
"text": "string"
|
|
10979
10689
|
},
|
|
10980
10690
|
"default": "''",
|
|
10981
|
-
"
|
|
10691
|
+
"attribute": "value",
|
|
10982
10692
|
"inheritedFrom": {
|
|
10983
10693
|
"name": "FormField",
|
|
10984
10694
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10985
10695
|
}
|
|
10986
10696
|
},
|
|
10987
10697
|
{
|
|
10698
|
+
"kind": "field",
|
|
10988
10699
|
"name": "validationRules",
|
|
10989
10700
|
"type": {
|
|
10990
10701
|
"text": "Array<FormValidator>"
|
|
10991
10702
|
},
|
|
10992
10703
|
"default": "[]",
|
|
10993
|
-
"
|
|
10704
|
+
"attribute": "validationRules",
|
|
10994
10705
|
"inheritedFrom": {
|
|
10995
10706
|
"name": "FormField",
|
|
10996
10707
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10997
10708
|
}
|
|
10998
10709
|
},
|
|
10999
10710
|
{
|
|
11000
|
-
"
|
|
10711
|
+
"kind": "field",
|
|
10712
|
+
"name": "inputAriaLabel",
|
|
11001
10713
|
"type": {
|
|
11002
10714
|
"text": "Optional<string>"
|
|
11003
10715
|
},
|
|
11004
|
-
"
|
|
10716
|
+
"attribute": "input-aria-label",
|
|
10717
|
+
"inheritedFrom": {
|
|
10718
|
+
"name": "FormField",
|
|
10719
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10720
|
+
}
|
|
10721
|
+
},
|
|
10722
|
+
{
|
|
10723
|
+
"kind": "field",
|
|
10724
|
+
"name": "formContext",
|
|
10725
|
+
"type": {
|
|
10726
|
+
"text": "BmFormContext"
|
|
10727
|
+
},
|
|
10728
|
+
"inheritedFrom": {
|
|
10729
|
+
"name": "FormField",
|
|
10730
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10731
|
+
}
|
|
10732
|
+
},
|
|
10733
|
+
{
|
|
10734
|
+
"kind": "method",
|
|
10735
|
+
"name": "formAssociatedCallback",
|
|
10736
|
+
"return": {
|
|
10737
|
+
"type": {
|
|
10738
|
+
"text": "void"
|
|
10739
|
+
}
|
|
10740
|
+
},
|
|
10741
|
+
"inheritedFrom": {
|
|
10742
|
+
"name": "FormField",
|
|
10743
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10744
|
+
}
|
|
10745
|
+
},
|
|
10746
|
+
{
|
|
10747
|
+
"kind": "method",
|
|
10748
|
+
"name": "formResetCallback",
|
|
10749
|
+
"return": {
|
|
10750
|
+
"type": {
|
|
10751
|
+
"text": "void"
|
|
10752
|
+
}
|
|
10753
|
+
},
|
|
10754
|
+
"inheritedFrom": {
|
|
10755
|
+
"name": "FormField",
|
|
10756
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10757
|
+
}
|
|
10758
|
+
},
|
|
10759
|
+
{
|
|
10760
|
+
"kind": "method",
|
|
10761
|
+
"name": "finalizeAssociatedCallback",
|
|
10762
|
+
"return": {
|
|
10763
|
+
"type": {
|
|
10764
|
+
"text": "FinalizeAssociatedResult"
|
|
10765
|
+
}
|
|
10766
|
+
},
|
|
10767
|
+
"parameters": [
|
|
10768
|
+
{
|
|
10769
|
+
"name": "ctxValue",
|
|
10770
|
+
"type": {
|
|
10771
|
+
"text": "string"
|
|
10772
|
+
}
|
|
10773
|
+
}
|
|
10774
|
+
],
|
|
11005
10775
|
"inheritedFrom": {
|
|
11006
10776
|
"name": "FormField",
|
|
11007
10777
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11008
10778
|
}
|
|
11009
10779
|
}
|
|
11010
|
-
]
|
|
10780
|
+
]
|
|
10781
|
+
}
|
|
10782
|
+
],
|
|
10783
|
+
"exports": [
|
|
10784
|
+
{
|
|
10785
|
+
"kind": "js",
|
|
10786
|
+
"name": "BmSwitchGroup",
|
|
10787
|
+
"declaration": {
|
|
10788
|
+
"name": "BmSwitchGroup",
|
|
10789
|
+
"module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
|
|
10790
|
+
}
|
|
10791
|
+
},
|
|
10792
|
+
{
|
|
10793
|
+
"kind": "custom-element-definition",
|
|
10794
|
+
"name": "bm-switch-group",
|
|
10795
|
+
"declaration": {
|
|
10796
|
+
"name": "BmSwitchGroup",
|
|
10797
|
+
"module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
|
|
10798
|
+
}
|
|
10799
|
+
}
|
|
10800
|
+
]
|
|
10801
|
+
},
|
|
10802
|
+
{
|
|
10803
|
+
"kind": "javascript-module",
|
|
10804
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
|
|
10805
|
+
"declarations": [
|
|
10806
|
+
{
|
|
10807
|
+
"kind": "class",
|
|
10808
|
+
"description": "",
|
|
10809
|
+
"name": "BmRadioButtonGroup",
|
|
11011
10810
|
"members": [
|
|
11012
10811
|
{
|
|
11013
10812
|
"kind": "field",
|
|
@@ -11315,24 +11114,225 @@
|
|
|
11315
11114
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11316
11115
|
}
|
|
11317
11116
|
}
|
|
11117
|
+
],
|
|
11118
|
+
"superclass": {
|
|
11119
|
+
"name": "InputChoiceGroup",
|
|
11120
|
+
"module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
|
|
11121
|
+
},
|
|
11122
|
+
"tagName": "bm-radio-button-group",
|
|
11123
|
+
"customElement": true,
|
|
11124
|
+
"slots": [
|
|
11125
|
+
{
|
|
11126
|
+
"description": "Add label text to the InputChoiceGroup",
|
|
11127
|
+
"name": "label",
|
|
11128
|
+
"inheritedFrom": {
|
|
11129
|
+
"name": "InputChoiceGroup",
|
|
11130
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11131
|
+
}
|
|
11132
|
+
},
|
|
11133
|
+
{
|
|
11134
|
+
"description": "Add helper text to the InputChoiceGroup",
|
|
11135
|
+
"name": "helperText",
|
|
11136
|
+
"inheritedFrom": {
|
|
11137
|
+
"name": "InputChoiceGroup",
|
|
11138
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11139
|
+
}
|
|
11140
|
+
}
|
|
11141
|
+
],
|
|
11142
|
+
"attributes": [
|
|
11143
|
+
{
|
|
11144
|
+
"name": "theme",
|
|
11145
|
+
"type": {
|
|
11146
|
+
"text": "'light' | 'dark' | undefined"
|
|
11147
|
+
},
|
|
11148
|
+
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
11149
|
+
"fieldName": "theme",
|
|
11150
|
+
"inheritedFrom": {
|
|
11151
|
+
"name": "InputChoiceGroup",
|
|
11152
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11153
|
+
}
|
|
11154
|
+
},
|
|
11155
|
+
{
|
|
11156
|
+
"name": "layout",
|
|
11157
|
+
"type": {
|
|
11158
|
+
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
11159
|
+
},
|
|
11160
|
+
"default": "'vertical'",
|
|
11161
|
+
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
11162
|
+
"deprecated": "use `orientation` and `fluid` instead",
|
|
11163
|
+
"fieldName": "layout",
|
|
11164
|
+
"inheritedFrom": {
|
|
11165
|
+
"name": "InputChoiceGroup",
|
|
11166
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11167
|
+
}
|
|
11168
|
+
},
|
|
11169
|
+
{
|
|
11170
|
+
"name": "orientation",
|
|
11171
|
+
"type": {
|
|
11172
|
+
"text": "'horizontal' | 'vertical'"
|
|
11173
|
+
},
|
|
11174
|
+
"default": "'vertical'",
|
|
11175
|
+
"description": "Specify InputChoiceGroup orientation",
|
|
11176
|
+
"fieldName": "orientation",
|
|
11177
|
+
"inheritedFrom": {
|
|
11178
|
+
"name": "InputChoiceGroup",
|
|
11179
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11180
|
+
}
|
|
11181
|
+
},
|
|
11182
|
+
{
|
|
11183
|
+
"name": "fluid",
|
|
11184
|
+
"type": {
|
|
11185
|
+
"text": "boolean"
|
|
11186
|
+
},
|
|
11187
|
+
"default": "false",
|
|
11188
|
+
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
11189
|
+
"fieldName": "fluid",
|
|
11190
|
+
"inheritedFrom": {
|
|
11191
|
+
"name": "InputChoiceGroup",
|
|
11192
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11193
|
+
}
|
|
11194
|
+
},
|
|
11195
|
+
{
|
|
11196
|
+
"name": "required",
|
|
11197
|
+
"type": {
|
|
11198
|
+
"text": "boolean"
|
|
11199
|
+
},
|
|
11200
|
+
"default": "false",
|
|
11201
|
+
"description": "Specify if InputChoiceGroup is a required input",
|
|
11202
|
+
"fieldName": "required",
|
|
11203
|
+
"inheritedFrom": {
|
|
11204
|
+
"name": "InputChoiceGroup",
|
|
11205
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11206
|
+
}
|
|
11207
|
+
},
|
|
11208
|
+
{
|
|
11209
|
+
"name": "hideRequiredMarker",
|
|
11210
|
+
"type": {
|
|
11211
|
+
"text": "boolean"
|
|
11212
|
+
},
|
|
11213
|
+
"default": "false",
|
|
11214
|
+
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
11215
|
+
"fieldName": "hideRequiredMarker",
|
|
11216
|
+
"inheritedFrom": {
|
|
11217
|
+
"name": "InputChoiceGroup",
|
|
11218
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11219
|
+
}
|
|
11220
|
+
},
|
|
11221
|
+
{
|
|
11222
|
+
"name": "error",
|
|
11223
|
+
"type": {
|
|
11224
|
+
"text": "string | undefined"
|
|
11225
|
+
},
|
|
11226
|
+
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
11227
|
+
"fieldName": "error",
|
|
11228
|
+
"inheritedFrom": {
|
|
11229
|
+
"name": "InputChoiceGroup",
|
|
11230
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11231
|
+
}
|
|
11232
|
+
},
|
|
11233
|
+
{
|
|
11234
|
+
"name": "readOnly",
|
|
11235
|
+
"type": {
|
|
11236
|
+
"text": "boolean"
|
|
11237
|
+
},
|
|
11238
|
+
"default": "false",
|
|
11239
|
+
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
11240
|
+
"fieldName": "readOnly",
|
|
11241
|
+
"inheritedFrom": {
|
|
11242
|
+
"name": "InputChoiceGroup",
|
|
11243
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11244
|
+
}
|
|
11245
|
+
},
|
|
11246
|
+
{
|
|
11247
|
+
"name": "disabled",
|
|
11248
|
+
"type": {
|
|
11249
|
+
"text": "boolean"
|
|
11250
|
+
},
|
|
11251
|
+
"default": "false",
|
|
11252
|
+
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
11253
|
+
"fieldName": "disabled",
|
|
11254
|
+
"inheritedFrom": {
|
|
11255
|
+
"name": "InputChoiceGroup",
|
|
11256
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11257
|
+
}
|
|
11258
|
+
},
|
|
11259
|
+
{
|
|
11260
|
+
"name": "id",
|
|
11261
|
+
"type": {
|
|
11262
|
+
"text": "string"
|
|
11263
|
+
},
|
|
11264
|
+
"default": "''",
|
|
11265
|
+
"fieldName": "id",
|
|
11266
|
+
"inheritedFrom": {
|
|
11267
|
+
"name": "FormField",
|
|
11268
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11269
|
+
}
|
|
11270
|
+
},
|
|
11271
|
+
{
|
|
11272
|
+
"name": "name",
|
|
11273
|
+
"type": {
|
|
11274
|
+
"text": "string"
|
|
11275
|
+
},
|
|
11276
|
+
"default": "''",
|
|
11277
|
+
"fieldName": "name",
|
|
11278
|
+
"inheritedFrom": {
|
|
11279
|
+
"name": "FormField",
|
|
11280
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11281
|
+
}
|
|
11282
|
+
},
|
|
11283
|
+
{
|
|
11284
|
+
"name": "value",
|
|
11285
|
+
"type": {
|
|
11286
|
+
"text": "string"
|
|
11287
|
+
},
|
|
11288
|
+
"default": "''",
|
|
11289
|
+
"fieldName": "value",
|
|
11290
|
+
"inheritedFrom": {
|
|
11291
|
+
"name": "FormField",
|
|
11292
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11293
|
+
}
|
|
11294
|
+
},
|
|
11295
|
+
{
|
|
11296
|
+
"name": "validationRules",
|
|
11297
|
+
"type": {
|
|
11298
|
+
"text": "Array<FormValidator>"
|
|
11299
|
+
},
|
|
11300
|
+
"default": "[]",
|
|
11301
|
+
"fieldName": "validationRules",
|
|
11302
|
+
"inheritedFrom": {
|
|
11303
|
+
"name": "FormField",
|
|
11304
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11305
|
+
}
|
|
11306
|
+
},
|
|
11307
|
+
{
|
|
11308
|
+
"name": "input-aria-label",
|
|
11309
|
+
"type": {
|
|
11310
|
+
"text": "Optional<string>"
|
|
11311
|
+
},
|
|
11312
|
+
"fieldName": "inputAriaLabel",
|
|
11313
|
+
"inheritedFrom": {
|
|
11314
|
+
"name": "FormField",
|
|
11315
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11316
|
+
}
|
|
11317
|
+
}
|
|
11318
11318
|
]
|
|
11319
11319
|
}
|
|
11320
11320
|
],
|
|
11321
11321
|
"exports": [
|
|
11322
11322
|
{
|
|
11323
11323
|
"kind": "js",
|
|
11324
|
-
"name": "
|
|
11324
|
+
"name": "BmRadioButtonGroup",
|
|
11325
11325
|
"declaration": {
|
|
11326
|
-
"name": "
|
|
11327
|
-
"module": "libs/web-components/src/lib/wip/
|
|
11326
|
+
"name": "BmRadioButtonGroup",
|
|
11327
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
11328
11328
|
}
|
|
11329
11329
|
},
|
|
11330
11330
|
{
|
|
11331
11331
|
"kind": "custom-element-definition",
|
|
11332
|
-
"name": "bm-
|
|
11332
|
+
"name": "bm-radio-button-group",
|
|
11333
11333
|
"declaration": {
|
|
11334
|
-
"name": "
|
|
11335
|
-
"module": "libs/web-components/src/lib/wip/
|
|
11334
|
+
"name": "BmRadioButtonGroup",
|
|
11335
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
11336
11336
|
}
|
|
11337
11337
|
}
|
|
11338
11338
|
]
|