@viasat/beam-web-components 2.17.0 → 2.18.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 +1379 -1379
- package/package.json +6 -6
- package/vscode.html-custom-data.json +189 -189
package/custom-elements.json
CHANGED
|
@@ -294,286 +294,567 @@
|
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"kind": "javascript-module",
|
|
297
|
-
"path": "libs/web-components/src/lib/
|
|
297
|
+
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
298
298
|
"declarations": [
|
|
299
299
|
{
|
|
300
300
|
"kind": "class",
|
|
301
|
-
"description": "`bm-
|
|
302
|
-
"name": "
|
|
301
|
+
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
|
|
302
|
+
"name": "BmAlert",
|
|
303
303
|
"slots": [
|
|
304
304
|
{
|
|
305
|
-
"description": "
|
|
305
|
+
"description": "Specify a different icon for the Alert",
|
|
306
306
|
"name": "icon"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
310
|
+
"name": "heading"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
314
|
+
"name": "body"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"description": "Specify if actions display on the Alert",
|
|
318
|
+
"name": "actions"
|
|
307
319
|
}
|
|
308
320
|
],
|
|
309
321
|
"members": [
|
|
310
322
|
{
|
|
311
323
|
"kind": "field",
|
|
312
|
-
"name": "
|
|
324
|
+
"name": "heading",
|
|
313
325
|
"type": {
|
|
314
|
-
"text": "
|
|
326
|
+
"text": "string | undefined"
|
|
315
327
|
},
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"attribute": "appearance"
|
|
328
|
+
"description": "Specify the heading text for Alert",
|
|
329
|
+
"attribute": "heading"
|
|
319
330
|
},
|
|
320
331
|
{
|
|
321
332
|
"kind": "field",
|
|
322
|
-
"name": "
|
|
333
|
+
"name": "body",
|
|
323
334
|
"type": {
|
|
324
335
|
"text": "string | undefined"
|
|
325
336
|
},
|
|
326
|
-
"description": "Specify
|
|
327
|
-
"attribute": "
|
|
337
|
+
"description": "Specify the body text for Alert",
|
|
338
|
+
"attribute": "body"
|
|
328
339
|
},
|
|
329
340
|
{
|
|
330
341
|
"kind": "field",
|
|
331
|
-
"name": "
|
|
342
|
+
"name": "size",
|
|
332
343
|
"type": {
|
|
333
|
-
"text": "
|
|
344
|
+
"text": "'sm' | 'md'"
|
|
334
345
|
},
|
|
335
|
-
"
|
|
336
|
-
"
|
|
346
|
+
"default": "'sm'",
|
|
347
|
+
"description": "Specify the size of the Alert",
|
|
348
|
+
"attribute": "size"
|
|
337
349
|
},
|
|
338
350
|
{
|
|
339
351
|
"kind": "field",
|
|
340
|
-
"name": "
|
|
352
|
+
"name": "fullWidth",
|
|
341
353
|
"type": {
|
|
342
|
-
"text": "
|
|
354
|
+
"text": "boolean"
|
|
343
355
|
},
|
|
344
|
-
"
|
|
345
|
-
"
|
|
356
|
+
"default": "false",
|
|
357
|
+
"description": "Specify if the Alert has no border radius",
|
|
358
|
+
"attribute": "fullWidth"
|
|
346
359
|
},
|
|
347
360
|
{
|
|
348
361
|
"kind": "field",
|
|
349
|
-
"name": "
|
|
362
|
+
"name": "theme",
|
|
350
363
|
"type": {
|
|
351
|
-
"text": "'
|
|
364
|
+
"text": "'light' | 'dark' | undefined"
|
|
352
365
|
},
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
-
"attribute": "size"
|
|
366
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
367
|
+
"attribute": "theme"
|
|
356
368
|
},
|
|
357
369
|
{
|
|
358
370
|
"kind": "field",
|
|
359
|
-
"name": "
|
|
371
|
+
"name": "appearance",
|
|
360
372
|
"type": {
|
|
361
|
-
"text": "
|
|
373
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
374
|
+
},
|
|
375
|
+
"default": "'infoPrimary'",
|
|
376
|
+
"description": "Specify the appearance of the Alert",
|
|
377
|
+
"attribute": "appearance"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"kind": "field",
|
|
381
|
+
"name": "hidden",
|
|
382
|
+
"type": {
|
|
383
|
+
"text": "boolean"
|
|
362
384
|
},
|
|
363
385
|
"default": "false",
|
|
364
|
-
"description": "Specify if the
|
|
365
|
-
"attribute": "
|
|
386
|
+
"description": "Specify if the Alert is hidden",
|
|
387
|
+
"attribute": "hidden"
|
|
366
388
|
},
|
|
367
389
|
{
|
|
368
390
|
"kind": "field",
|
|
369
|
-
"name": "
|
|
391
|
+
"name": "hideIcon",
|
|
370
392
|
"type": {
|
|
371
|
-
"text": "
|
|
393
|
+
"text": "boolean"
|
|
372
394
|
},
|
|
373
|
-
"default": "
|
|
374
|
-
"description": "Specify the
|
|
375
|
-
"attribute": "
|
|
395
|
+
"default": "false",
|
|
396
|
+
"description": "Specify if the icon displays on the Alert",
|
|
397
|
+
"attribute": "hideIcon"
|
|
376
398
|
},
|
|
377
399
|
{
|
|
378
400
|
"kind": "field",
|
|
379
|
-
"name": "
|
|
401
|
+
"name": "dismissible",
|
|
380
402
|
"type": {
|
|
381
403
|
"text": "boolean"
|
|
382
404
|
},
|
|
383
405
|
"default": "false",
|
|
384
|
-
"description": "
|
|
385
|
-
"attribute": "
|
|
406
|
+
"description": "Specify if the Alert can be dismissed",
|
|
407
|
+
"attribute": "dismissible"
|
|
386
408
|
},
|
|
387
409
|
{
|
|
388
410
|
"kind": "field",
|
|
389
|
-
"name": "
|
|
411
|
+
"name": "disableAutoFocus",
|
|
390
412
|
"type": {
|
|
391
413
|
"text": "boolean"
|
|
392
414
|
},
|
|
393
415
|
"default": "false",
|
|
394
|
-
"description": "
|
|
395
|
-
"attribute": "
|
|
416
|
+
"description": "Prevent autofocus on show",
|
|
417
|
+
"attribute": "disableAutoFocus"
|
|
396
418
|
},
|
|
397
419
|
{
|
|
398
420
|
"kind": "field",
|
|
399
|
-
"name": "
|
|
421
|
+
"name": "disableCloseOnEscape",
|
|
400
422
|
"type": {
|
|
401
423
|
"text": "boolean"
|
|
402
424
|
},
|
|
403
425
|
"default": "false",
|
|
404
|
-
"
|
|
426
|
+
"description": "Prevent Escape from closing",
|
|
427
|
+
"attribute": "disableCloseOnEscape"
|
|
428
|
+
}
|
|
429
|
+
],
|
|
430
|
+
"events": [
|
|
431
|
+
{
|
|
432
|
+
"description": "Dispatched when the Alert has been dismissed",
|
|
433
|
+
"name": "bm-dismiss"
|
|
405
434
|
}
|
|
406
435
|
],
|
|
407
436
|
"attributes": [
|
|
408
437
|
{
|
|
409
|
-
"name": "
|
|
438
|
+
"name": "heading",
|
|
410
439
|
"type": {
|
|
411
|
-
"text": "
|
|
440
|
+
"text": "string | undefined"
|
|
412
441
|
},
|
|
413
|
-
"
|
|
414
|
-
"
|
|
415
|
-
"fieldName": "appearance"
|
|
442
|
+
"description": "Specify the heading text for Alert",
|
|
443
|
+
"fieldName": "heading"
|
|
416
444
|
},
|
|
417
445
|
{
|
|
418
|
-
"name": "
|
|
446
|
+
"name": "body",
|
|
419
447
|
"type": {
|
|
420
448
|
"text": "string | undefined"
|
|
421
449
|
},
|
|
422
|
-
"description": "Specify
|
|
423
|
-
"fieldName": "
|
|
450
|
+
"description": "Specify the body text for Alert",
|
|
451
|
+
"fieldName": "body"
|
|
424
452
|
},
|
|
425
453
|
{
|
|
426
|
-
"name": "
|
|
454
|
+
"name": "size",
|
|
427
455
|
"type": {
|
|
428
|
-
"text": "
|
|
456
|
+
"text": "'sm' | 'md'"
|
|
429
457
|
},
|
|
430
|
-
"
|
|
431
|
-
"
|
|
458
|
+
"default": "'sm'",
|
|
459
|
+
"description": "Specify the size of the Alert",
|
|
460
|
+
"fieldName": "size"
|
|
432
461
|
},
|
|
433
462
|
{
|
|
434
|
-
"name": "
|
|
463
|
+
"name": "fullWidth",
|
|
435
464
|
"type": {
|
|
436
|
-
"text": "
|
|
465
|
+
"text": "boolean"
|
|
437
466
|
},
|
|
438
|
-
"
|
|
439
|
-
"
|
|
467
|
+
"default": "false",
|
|
468
|
+
"description": "Specify if the Alert has no border radius",
|
|
469
|
+
"fieldName": "fullWidth"
|
|
440
470
|
},
|
|
441
471
|
{
|
|
442
|
-
"name": "
|
|
472
|
+
"name": "theme",
|
|
443
473
|
"type": {
|
|
444
|
-
"text": "'
|
|
474
|
+
"text": "'light' | 'dark' | undefined"
|
|
445
475
|
},
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
"fieldName": "size"
|
|
476
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
477
|
+
"fieldName": "theme"
|
|
449
478
|
},
|
|
450
479
|
{
|
|
451
|
-
"name": "
|
|
480
|
+
"name": "appearance",
|
|
452
481
|
"type": {
|
|
453
|
-
"text": "
|
|
482
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
483
|
+
},
|
|
484
|
+
"default": "'infoPrimary'",
|
|
485
|
+
"description": "Specify the appearance of the Alert",
|
|
486
|
+
"fieldName": "appearance"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "hidden",
|
|
490
|
+
"type": {
|
|
491
|
+
"text": "boolean"
|
|
454
492
|
},
|
|
455
493
|
"default": "false",
|
|
456
|
-
"description": "Specify if the
|
|
457
|
-
"fieldName": "
|
|
494
|
+
"description": "Specify if the Alert is hidden",
|
|
495
|
+
"fieldName": "hidden"
|
|
458
496
|
},
|
|
459
497
|
{
|
|
460
|
-
"name": "
|
|
498
|
+
"name": "hideIcon",
|
|
461
499
|
"type": {
|
|
462
|
-
"text": "
|
|
500
|
+
"text": "boolean"
|
|
463
501
|
},
|
|
464
|
-
"default": "
|
|
465
|
-
"description": "Specify the
|
|
466
|
-
"fieldName": "
|
|
502
|
+
"default": "false",
|
|
503
|
+
"description": "Specify if the icon displays on the Alert",
|
|
504
|
+
"fieldName": "hideIcon"
|
|
467
505
|
},
|
|
468
506
|
{
|
|
469
|
-
"name": "
|
|
507
|
+
"name": "dismissible",
|
|
470
508
|
"type": {
|
|
471
509
|
"text": "boolean"
|
|
472
510
|
},
|
|
473
511
|
"default": "false",
|
|
474
|
-
"description": "
|
|
475
|
-
"fieldName": "
|
|
512
|
+
"description": "Specify if the Alert can be dismissed",
|
|
513
|
+
"fieldName": "dismissible"
|
|
476
514
|
},
|
|
477
515
|
{
|
|
478
|
-
"name": "
|
|
516
|
+
"name": "disableAutoFocus",
|
|
479
517
|
"type": {
|
|
480
518
|
"text": "boolean"
|
|
481
519
|
},
|
|
482
520
|
"default": "false",
|
|
483
|
-
"description": "
|
|
484
|
-
"fieldName": "
|
|
521
|
+
"description": "Prevent autofocus on show",
|
|
522
|
+
"fieldName": "disableAutoFocus"
|
|
485
523
|
},
|
|
486
524
|
{
|
|
487
|
-
"name": "
|
|
525
|
+
"name": "disableCloseOnEscape",
|
|
488
526
|
"type": {
|
|
489
527
|
"text": "boolean"
|
|
490
528
|
},
|
|
491
529
|
"default": "false",
|
|
492
|
-
"
|
|
530
|
+
"description": "Prevent Escape from closing",
|
|
531
|
+
"fieldName": "disableCloseOnEscape"
|
|
493
532
|
}
|
|
494
533
|
],
|
|
495
534
|
"superclass": {
|
|
496
535
|
"name": "LitElement",
|
|
497
536
|
"package": "lit"
|
|
498
537
|
},
|
|
499
|
-
"tagName": "bm-
|
|
538
|
+
"tagName": "bm-alert",
|
|
500
539
|
"customElement": true
|
|
501
540
|
}
|
|
502
541
|
],
|
|
503
542
|
"exports": [
|
|
504
543
|
{
|
|
505
544
|
"kind": "js",
|
|
506
|
-
"name": "
|
|
545
|
+
"name": "BmAlert",
|
|
507
546
|
"declaration": {
|
|
508
|
-
"name": "
|
|
509
|
-
"module": "libs/web-components/src/lib/
|
|
547
|
+
"name": "BmAlert",
|
|
548
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
510
549
|
}
|
|
511
550
|
},
|
|
512
551
|
{
|
|
513
552
|
"kind": "custom-element-definition",
|
|
514
|
-
"name": "bm-
|
|
553
|
+
"name": "bm-alert",
|
|
515
554
|
"declaration": {
|
|
516
|
-
"name": "
|
|
517
|
-
"module": "libs/web-components/src/lib/
|
|
555
|
+
"name": "BmAlert",
|
|
556
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
518
557
|
}
|
|
519
558
|
}
|
|
520
559
|
]
|
|
521
560
|
},
|
|
522
561
|
{
|
|
523
562
|
"kind": "javascript-module",
|
|
524
|
-
"path": "libs/web-components/src/lib/
|
|
525
|
-
"declarations": [
|
|
526
|
-
{
|
|
527
|
-
"kind": "variable",
|
|
528
|
-
"name": "AvatarGroupCtx"
|
|
529
|
-
}
|
|
530
|
-
],
|
|
563
|
+
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
564
|
+
"declarations": [],
|
|
531
565
|
"exports": [
|
|
532
566
|
{
|
|
533
567
|
"kind": "js",
|
|
534
|
-
"name": "
|
|
568
|
+
"name": "*",
|
|
535
569
|
"declaration": {
|
|
536
|
-
"name": "
|
|
537
|
-
"
|
|
570
|
+
"name": "*",
|
|
571
|
+
"package": "./Alert"
|
|
538
572
|
}
|
|
539
573
|
}
|
|
540
574
|
]
|
|
541
575
|
},
|
|
542
576
|
{
|
|
543
577
|
"kind": "javascript-module",
|
|
544
|
-
"path": "libs/web-components/src/lib/Avatar/
|
|
578
|
+
"path": "libs/web-components/src/lib/Avatar/Avatar.ts",
|
|
545
579
|
"declarations": [
|
|
546
580
|
{
|
|
547
581
|
"kind": "class",
|
|
548
|
-
"description": "`bm-avatar
|
|
549
|
-
"name": "
|
|
582
|
+
"description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** ",
|
|
583
|
+
"name": "BmAvatar",
|
|
550
584
|
"slots": [
|
|
551
585
|
{
|
|
552
|
-
"description": "
|
|
553
|
-
"name": "
|
|
586
|
+
"description": "Customize the default icon",
|
|
587
|
+
"name": "icon"
|
|
554
588
|
}
|
|
555
589
|
],
|
|
556
590
|
"members": [
|
|
557
591
|
{
|
|
558
592
|
"kind": "field",
|
|
559
|
-
"name": "
|
|
593
|
+
"name": "appearance",
|
|
560
594
|
"type": {
|
|
561
|
-
"text": "
|
|
595
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
562
596
|
},
|
|
563
|
-
"default": "
|
|
564
|
-
"description": "Specify
|
|
565
|
-
"attribute": "
|
|
597
|
+
"default": "'neutral'",
|
|
598
|
+
"description": "Specify the appearance of the Avatar",
|
|
599
|
+
"attribute": "appearance"
|
|
566
600
|
},
|
|
567
601
|
{
|
|
568
602
|
"kind": "field",
|
|
569
|
-
"name": "
|
|
603
|
+
"name": "name",
|
|
570
604
|
"type": {
|
|
571
|
-
"text": "
|
|
605
|
+
"text": "string | undefined"
|
|
572
606
|
},
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
|
|
576
|
-
|
|
607
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
608
|
+
"attribute": "name"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"kind": "field",
|
|
612
|
+
"name": "src",
|
|
613
|
+
"type": {
|
|
614
|
+
"text": "string | undefined"
|
|
615
|
+
},
|
|
616
|
+
"description": "Pass an image to the Avatar",
|
|
617
|
+
"attribute": "src"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"kind": "field",
|
|
621
|
+
"name": "alt",
|
|
622
|
+
"type": {
|
|
623
|
+
"text": "string | undefined"
|
|
624
|
+
},
|
|
625
|
+
"description": "Specify alt for image",
|
|
626
|
+
"attribute": "alt"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"kind": "field",
|
|
630
|
+
"name": "size",
|
|
631
|
+
"type": {
|
|
632
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
633
|
+
},
|
|
634
|
+
"default": "'md'",
|
|
635
|
+
"description": "Specify the size of the Avatar",
|
|
636
|
+
"attribute": "size"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"kind": "field",
|
|
640
|
+
"name": "disabled",
|
|
641
|
+
"type": {
|
|
642
|
+
"text": "boolean | undefined"
|
|
643
|
+
},
|
|
644
|
+
"default": "false",
|
|
645
|
+
"description": "Specify if the Avatar is disabled",
|
|
646
|
+
"attribute": "disabled"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"kind": "field",
|
|
650
|
+
"name": "shape",
|
|
651
|
+
"type": {
|
|
652
|
+
"text": "'circle' | 'square' | undefined"
|
|
653
|
+
},
|
|
654
|
+
"default": "'circle'",
|
|
655
|
+
"description": "Specify the shape of the Avatar",
|
|
656
|
+
"attribute": "shape"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"kind": "field",
|
|
660
|
+
"name": "isInteractive",
|
|
661
|
+
"type": {
|
|
662
|
+
"text": "boolean"
|
|
663
|
+
},
|
|
664
|
+
"default": "false",
|
|
665
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
666
|
+
"attribute": "isInteractive"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"kind": "field",
|
|
670
|
+
"name": "isFocusable",
|
|
671
|
+
"type": {
|
|
672
|
+
"text": "boolean"
|
|
673
|
+
},
|
|
674
|
+
"default": "false",
|
|
675
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
676
|
+
"attribute": "isFocusable"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"kind": "field",
|
|
680
|
+
"name": "withBorder",
|
|
681
|
+
"type": {
|
|
682
|
+
"text": "boolean"
|
|
683
|
+
},
|
|
684
|
+
"default": "false",
|
|
685
|
+
"attribute": "withBorder"
|
|
686
|
+
}
|
|
687
|
+
],
|
|
688
|
+
"attributes": [
|
|
689
|
+
{
|
|
690
|
+
"name": "appearance",
|
|
691
|
+
"type": {
|
|
692
|
+
"text": "'accent' | 'neutral' | undefined"
|
|
693
|
+
},
|
|
694
|
+
"default": "'neutral'",
|
|
695
|
+
"description": "Specify the appearance of the Avatar",
|
|
696
|
+
"fieldName": "appearance"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"name": "name",
|
|
700
|
+
"type": {
|
|
701
|
+
"text": "string | undefined"
|
|
702
|
+
},
|
|
703
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
704
|
+
"fieldName": "name"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "src",
|
|
708
|
+
"type": {
|
|
709
|
+
"text": "string | undefined"
|
|
710
|
+
},
|
|
711
|
+
"description": "Pass an image to the Avatar",
|
|
712
|
+
"fieldName": "src"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "alt",
|
|
716
|
+
"type": {
|
|
717
|
+
"text": "string | undefined"
|
|
718
|
+
},
|
|
719
|
+
"description": "Specify alt for image",
|
|
720
|
+
"fieldName": "alt"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"name": "size",
|
|
724
|
+
"type": {
|
|
725
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'xl' | undefined"
|
|
726
|
+
},
|
|
727
|
+
"default": "'md'",
|
|
728
|
+
"description": "Specify the size of the Avatar",
|
|
729
|
+
"fieldName": "size"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "disabled",
|
|
733
|
+
"type": {
|
|
734
|
+
"text": "boolean | undefined"
|
|
735
|
+
},
|
|
736
|
+
"default": "false",
|
|
737
|
+
"description": "Specify if the Avatar is disabled",
|
|
738
|
+
"fieldName": "disabled"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"name": "shape",
|
|
742
|
+
"type": {
|
|
743
|
+
"text": "'circle' | 'square' | undefined"
|
|
744
|
+
},
|
|
745
|
+
"default": "'circle'",
|
|
746
|
+
"description": "Specify the shape of the Avatar",
|
|
747
|
+
"fieldName": "shape"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"name": "isInteractive",
|
|
751
|
+
"type": {
|
|
752
|
+
"text": "boolean"
|
|
753
|
+
},
|
|
754
|
+
"default": "false",
|
|
755
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
756
|
+
"fieldName": "isInteractive"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "isFocusable",
|
|
760
|
+
"type": {
|
|
761
|
+
"text": "boolean"
|
|
762
|
+
},
|
|
763
|
+
"default": "false",
|
|
764
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
765
|
+
"fieldName": "isFocusable"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "withBorder",
|
|
769
|
+
"type": {
|
|
770
|
+
"text": "boolean"
|
|
771
|
+
},
|
|
772
|
+
"default": "false",
|
|
773
|
+
"fieldName": "withBorder"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"superclass": {
|
|
777
|
+
"name": "LitElement",
|
|
778
|
+
"package": "lit"
|
|
779
|
+
},
|
|
780
|
+
"tagName": "bm-avatar",
|
|
781
|
+
"customElement": true
|
|
782
|
+
}
|
|
783
|
+
],
|
|
784
|
+
"exports": [
|
|
785
|
+
{
|
|
786
|
+
"kind": "js",
|
|
787
|
+
"name": "BmAvatar",
|
|
788
|
+
"declaration": {
|
|
789
|
+
"name": "BmAvatar",
|
|
790
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"kind": "custom-element-definition",
|
|
795
|
+
"name": "bm-avatar",
|
|
796
|
+
"declaration": {
|
|
797
|
+
"name": "BmAvatar",
|
|
798
|
+
"module": "libs/web-components/src/lib/Avatar/Avatar.ts"
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
]
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"kind": "javascript-module",
|
|
805
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts",
|
|
806
|
+
"declarations": [
|
|
807
|
+
{
|
|
808
|
+
"kind": "variable",
|
|
809
|
+
"name": "AvatarGroupCtx"
|
|
810
|
+
}
|
|
811
|
+
],
|
|
812
|
+
"exports": [
|
|
813
|
+
{
|
|
814
|
+
"kind": "js",
|
|
815
|
+
"name": "AvatarGroupCtx",
|
|
816
|
+
"declaration": {
|
|
817
|
+
"name": "AvatarGroupCtx",
|
|
818
|
+
"module": "libs/web-components/src/lib/Avatar/AvatarGroup.context.ts"
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"kind": "javascript-module",
|
|
825
|
+
"path": "libs/web-components/src/lib/Avatar/AvatarGroup.ts",
|
|
826
|
+
"declarations": [
|
|
827
|
+
{
|
|
828
|
+
"kind": "class",
|
|
829
|
+
"description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.",
|
|
830
|
+
"name": "BmAvatarGroup",
|
|
831
|
+
"slots": [
|
|
832
|
+
{
|
|
833
|
+
"description": "Add Avatars to create a group",
|
|
834
|
+
"name": "default"
|
|
835
|
+
}
|
|
836
|
+
],
|
|
837
|
+
"members": [
|
|
838
|
+
{
|
|
839
|
+
"kind": "field",
|
|
840
|
+
"name": "wrapping",
|
|
841
|
+
"type": {
|
|
842
|
+
"text": "boolean"
|
|
843
|
+
},
|
|
844
|
+
"default": "false",
|
|
845
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
846
|
+
"attribute": "wrapping"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"kind": "field",
|
|
850
|
+
"name": "maxCount",
|
|
851
|
+
"type": {
|
|
852
|
+
"text": "number"
|
|
853
|
+
},
|
|
854
|
+
"default": "5",
|
|
855
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
856
|
+
"attribute": "maxCount",
|
|
857
|
+
"reflects": true
|
|
577
858
|
},
|
|
578
859
|
{
|
|
579
860
|
"kind": "field",
|
|
@@ -686,68 +967,32 @@
|
|
|
686
967
|
},
|
|
687
968
|
{
|
|
688
969
|
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/
|
|
970
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
690
971
|
"declarations": [
|
|
691
972
|
{
|
|
692
973
|
"kind": "class",
|
|
693
|
-
"description": "`bm-
|
|
694
|
-
"name": "
|
|
974
|
+
"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",
|
|
975
|
+
"name": "BmBadge",
|
|
695
976
|
"slots": [
|
|
696
977
|
{
|
|
697
|
-
"description": "
|
|
698
|
-
"name": "
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
702
|
-
"name": "heading"
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
706
|
-
"name": "body"
|
|
978
|
+
"description": "Provide text for the Badge",
|
|
979
|
+
"name": "default"
|
|
707
980
|
},
|
|
708
981
|
{
|
|
709
|
-
"description": "Specify
|
|
710
|
-
"name": "
|
|
982
|
+
"description": "Specify a different icon for the Badge",
|
|
983
|
+
"name": "icon"
|
|
711
984
|
}
|
|
712
985
|
],
|
|
713
986
|
"members": [
|
|
714
987
|
{
|
|
715
988
|
"kind": "field",
|
|
716
|
-
"name": "
|
|
717
|
-
"type": {
|
|
718
|
-
"text": "string | undefined"
|
|
719
|
-
},
|
|
720
|
-
"description": "Specify the heading text for Alert",
|
|
721
|
-
"attribute": "heading"
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"kind": "field",
|
|
725
|
-
"name": "body",
|
|
726
|
-
"type": {
|
|
727
|
-
"text": "string | undefined"
|
|
728
|
-
},
|
|
729
|
-
"description": "Specify the body text for Alert",
|
|
730
|
-
"attribute": "body"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"kind": "field",
|
|
734
|
-
"name": "size",
|
|
735
|
-
"type": {
|
|
736
|
-
"text": "'sm' | 'md'"
|
|
737
|
-
},
|
|
738
|
-
"default": "'sm'",
|
|
739
|
-
"description": "Specify the size of the Alert",
|
|
740
|
-
"attribute": "size"
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"kind": "field",
|
|
744
|
-
"name": "fullWidth",
|
|
989
|
+
"name": "appearance",
|
|
745
990
|
"type": {
|
|
746
|
-
"text": "
|
|
991
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
747
992
|
},
|
|
748
|
-
"default": "
|
|
749
|
-
"description": "Specify
|
|
750
|
-
"attribute": "
|
|
993
|
+
"default": "'infoPrimary'",
|
|
994
|
+
"description": "Specify the appearance of the Badge",
|
|
995
|
+
"attribute": "appearance"
|
|
751
996
|
},
|
|
752
997
|
{
|
|
753
998
|
"kind": "field",
|
|
@@ -755,204 +1000,114 @@
|
|
|
755
1000
|
"type": {
|
|
756
1001
|
"text": "'light' | 'dark' | undefined"
|
|
757
1002
|
},
|
|
758
|
-
"description": "
|
|
1003
|
+
"description": "Theme of the Badge",
|
|
759
1004
|
"attribute": "theme"
|
|
760
1005
|
},
|
|
761
1006
|
{
|
|
762
1007
|
"kind": "field",
|
|
763
|
-
"name": "
|
|
1008
|
+
"name": "size",
|
|
764
1009
|
"type": {
|
|
765
|
-
"text": "'
|
|
1010
|
+
"text": "'sm' | 'md' | undefined"
|
|
766
1011
|
},
|
|
767
|
-
"default": "'
|
|
768
|
-
"description": "Specify the
|
|
769
|
-
"attribute": "
|
|
1012
|
+
"default": "'sm'",
|
|
1013
|
+
"description": "Specify the size of the Badge",
|
|
1014
|
+
"attribute": "size"
|
|
770
1015
|
},
|
|
771
1016
|
{
|
|
772
1017
|
"kind": "field",
|
|
773
|
-
"name": "
|
|
1018
|
+
"name": "emphasis",
|
|
774
1019
|
"type": {
|
|
775
|
-
"text": "
|
|
1020
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
776
1021
|
},
|
|
777
|
-
"default": "
|
|
778
|
-
"description": "Specify
|
|
779
|
-
"attribute": "
|
|
1022
|
+
"default": "'strong'",
|
|
1023
|
+
"description": "Specify the emphasis of the Badge",
|
|
1024
|
+
"attribute": "emphasis"
|
|
780
1025
|
},
|
|
781
1026
|
{
|
|
782
1027
|
"kind": "field",
|
|
783
1028
|
"name": "hideIcon",
|
|
784
1029
|
"type": {
|
|
785
|
-
"text": "boolean"
|
|
1030
|
+
"text": "boolean | undefined"
|
|
786
1031
|
},
|
|
787
|
-
"
|
|
788
|
-
"description": "Specify if the icon displays on the Alert",
|
|
1032
|
+
"description": "Hides Badge icon",
|
|
789
1033
|
"attribute": "hideIcon"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"kind": "field",
|
|
793
|
-
"name": "dismissible",
|
|
794
|
-
"type": {
|
|
795
|
-
"text": "boolean"
|
|
796
|
-
},
|
|
797
|
-
"default": "false",
|
|
798
|
-
"description": "Specify if the Alert can be dismissed",
|
|
799
|
-
"attribute": "dismissible"
|
|
800
|
-
},
|
|
801
|
-
{
|
|
802
|
-
"kind": "field",
|
|
803
|
-
"name": "disableAutoFocus",
|
|
804
|
-
"type": {
|
|
805
|
-
"text": "boolean"
|
|
806
|
-
},
|
|
807
|
-
"default": "false",
|
|
808
|
-
"description": "Prevent autofocus on show",
|
|
809
|
-
"attribute": "disableAutoFocus"
|
|
810
|
-
},
|
|
811
|
-
{
|
|
812
|
-
"kind": "field",
|
|
813
|
-
"name": "disableCloseOnEscape",
|
|
814
|
-
"type": {
|
|
815
|
-
"text": "boolean"
|
|
816
|
-
},
|
|
817
|
-
"default": "false",
|
|
818
|
-
"description": "Prevent Escape from closing",
|
|
819
|
-
"attribute": "disableCloseOnEscape"
|
|
820
|
-
}
|
|
821
|
-
],
|
|
822
|
-
"events": [
|
|
823
|
-
{
|
|
824
|
-
"description": "Dispatched when the Alert has been dismissed",
|
|
825
|
-
"name": "bm-dismiss"
|
|
826
1034
|
}
|
|
827
1035
|
],
|
|
828
1036
|
"attributes": [
|
|
829
|
-
{
|
|
830
|
-
"name": "heading",
|
|
831
|
-
"type": {
|
|
832
|
-
"text": "string | undefined"
|
|
833
|
-
},
|
|
834
|
-
"description": "Specify the heading text for Alert",
|
|
835
|
-
"fieldName": "heading"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"name": "body",
|
|
839
|
-
"type": {
|
|
840
|
-
"text": "string | undefined"
|
|
841
|
-
},
|
|
842
|
-
"description": "Specify the body text for Alert",
|
|
843
|
-
"fieldName": "body"
|
|
844
|
-
},
|
|
845
|
-
{
|
|
846
|
-
"name": "size",
|
|
847
|
-
"type": {
|
|
848
|
-
"text": "'sm' | 'md'"
|
|
849
|
-
},
|
|
850
|
-
"default": "'sm'",
|
|
851
|
-
"description": "Specify the size of the Alert",
|
|
852
|
-
"fieldName": "size"
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
"name": "fullWidth",
|
|
856
|
-
"type": {
|
|
857
|
-
"text": "boolean"
|
|
858
|
-
},
|
|
859
|
-
"default": "false",
|
|
860
|
-
"description": "Specify if the Alert has no border radius",
|
|
861
|
-
"fieldName": "fullWidth"
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
"name": "theme",
|
|
865
|
-
"type": {
|
|
866
|
-
"text": "'light' | 'dark' | undefined"
|
|
867
|
-
},
|
|
868
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
869
|
-
"fieldName": "theme"
|
|
870
|
-
},
|
|
871
1037
|
{
|
|
872
1038
|
"name": "appearance",
|
|
873
1039
|
"type": {
|
|
874
1040
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
875
1041
|
},
|
|
876
1042
|
"default": "'infoPrimary'",
|
|
877
|
-
"description": "Specify the appearance of the
|
|
1043
|
+
"description": "Specify the appearance of the Badge",
|
|
878
1044
|
"fieldName": "appearance"
|
|
879
1045
|
},
|
|
880
1046
|
{
|
|
881
|
-
"name": "
|
|
882
|
-
"type": {
|
|
883
|
-
"text": "boolean"
|
|
884
|
-
},
|
|
885
|
-
"default": "false",
|
|
886
|
-
"description": "Specify if the Alert is hidden",
|
|
887
|
-
"fieldName": "hidden"
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
"name": "hideIcon",
|
|
1047
|
+
"name": "theme",
|
|
891
1048
|
"type": {
|
|
892
|
-
"text": "
|
|
1049
|
+
"text": "'light' | 'dark' | undefined"
|
|
893
1050
|
},
|
|
894
|
-
"
|
|
895
|
-
"
|
|
896
|
-
"fieldName": "hideIcon"
|
|
1051
|
+
"description": "Theme of the Badge",
|
|
1052
|
+
"fieldName": "theme"
|
|
897
1053
|
},
|
|
898
1054
|
{
|
|
899
|
-
"name": "
|
|
1055
|
+
"name": "size",
|
|
900
1056
|
"type": {
|
|
901
|
-
"text": "
|
|
1057
|
+
"text": "'sm' | 'md' | undefined"
|
|
902
1058
|
},
|
|
903
|
-
"default": "
|
|
904
|
-
"description": "Specify
|
|
905
|
-
"fieldName": "
|
|
1059
|
+
"default": "'sm'",
|
|
1060
|
+
"description": "Specify the size of the Badge",
|
|
1061
|
+
"fieldName": "size"
|
|
906
1062
|
},
|
|
907
1063
|
{
|
|
908
|
-
"name": "
|
|
1064
|
+
"name": "emphasis",
|
|
909
1065
|
"type": {
|
|
910
|
-
"text": "
|
|
911
|
-
},
|
|
912
|
-
"default": "
|
|
913
|
-
"description": "
|
|
914
|
-
"fieldName": "
|
|
1066
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
1067
|
+
},
|
|
1068
|
+
"default": "'strong'",
|
|
1069
|
+
"description": "Specify the emphasis of the Badge",
|
|
1070
|
+
"fieldName": "emphasis"
|
|
915
1071
|
},
|
|
916
1072
|
{
|
|
917
|
-
"name": "
|
|
1073
|
+
"name": "hideIcon",
|
|
918
1074
|
"type": {
|
|
919
|
-
"text": "boolean"
|
|
1075
|
+
"text": "boolean | undefined"
|
|
920
1076
|
},
|
|
921
|
-
"
|
|
922
|
-
"
|
|
923
|
-
"fieldName": "disableCloseOnEscape"
|
|
1077
|
+
"description": "Hides Badge icon",
|
|
1078
|
+
"fieldName": "hideIcon"
|
|
924
1079
|
}
|
|
925
1080
|
],
|
|
926
1081
|
"superclass": {
|
|
927
1082
|
"name": "LitElement",
|
|
928
1083
|
"package": "lit"
|
|
929
1084
|
},
|
|
930
|
-
"tagName": "bm-
|
|
1085
|
+
"tagName": "bm-badge",
|
|
931
1086
|
"customElement": true
|
|
932
1087
|
}
|
|
933
1088
|
],
|
|
934
1089
|
"exports": [
|
|
935
1090
|
{
|
|
936
1091
|
"kind": "js",
|
|
937
|
-
"name": "
|
|
1092
|
+
"name": "BmBadge",
|
|
938
1093
|
"declaration": {
|
|
939
|
-
"name": "
|
|
940
|
-
"module": "libs/web-components/src/lib/
|
|
1094
|
+
"name": "BmBadge",
|
|
1095
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
941
1096
|
}
|
|
942
1097
|
},
|
|
943
1098
|
{
|
|
944
1099
|
"kind": "custom-element-definition",
|
|
945
|
-
"name": "bm-
|
|
1100
|
+
"name": "bm-badge",
|
|
946
1101
|
"declaration": {
|
|
947
|
-
"name": "
|
|
948
|
-
"module": "libs/web-components/src/lib/
|
|
1102
|
+
"name": "BmBadge",
|
|
1103
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
949
1104
|
}
|
|
950
1105
|
}
|
|
951
1106
|
]
|
|
952
1107
|
},
|
|
953
1108
|
{
|
|
954
1109
|
"kind": "javascript-module",
|
|
955
|
-
"path": "libs/web-components/src/lib/
|
|
1110
|
+
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
956
1111
|
"declarations": [],
|
|
957
1112
|
"exports": [
|
|
958
1113
|
{
|
|
@@ -960,154 +1115,131 @@
|
|
|
960
1115
|
"name": "*",
|
|
961
1116
|
"declaration": {
|
|
962
1117
|
"name": "*",
|
|
963
|
-
"package": "./
|
|
1118
|
+
"package": "./Badge"
|
|
964
1119
|
}
|
|
965
1120
|
}
|
|
966
1121
|
]
|
|
967
1122
|
},
|
|
968
1123
|
{
|
|
969
1124
|
"kind": "javascript-module",
|
|
970
|
-
"path": "libs/web-components/src/lib/
|
|
1125
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
971
1126
|
"declarations": [
|
|
972
1127
|
{
|
|
973
1128
|
"kind": "class",
|
|
974
|
-
"description": "`bm-badge`\n\n### Attributes:\n- **
|
|
975
|
-
"name": "
|
|
1129
|
+
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
|
|
1130
|
+
"name": "BmBadgeDot",
|
|
976
1131
|
"slots": [
|
|
977
1132
|
{
|
|
978
|
-
"description": "Provide text for the
|
|
1133
|
+
"description": "Provide text for the BadgeDot",
|
|
979
1134
|
"name": "default"
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"description": "Specify a different icon for the Badge",
|
|
983
|
-
"name": "icon"
|
|
984
1135
|
}
|
|
985
1136
|
],
|
|
986
1137
|
"members": [
|
|
987
|
-
{
|
|
988
|
-
"kind": "field",
|
|
989
|
-
"name": "appearance",
|
|
990
|
-
"type": {
|
|
991
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
992
|
-
},
|
|
993
|
-
"default": "'infoPrimary'",
|
|
994
|
-
"description": "Specify the appearance of the Badge",
|
|
995
|
-
"attribute": "appearance"
|
|
996
|
-
},
|
|
997
1138
|
{
|
|
998
1139
|
"kind": "field",
|
|
999
1140
|
"name": "theme",
|
|
1000
1141
|
"type": {
|
|
1001
1142
|
"text": "'light' | 'dark' | undefined"
|
|
1002
1143
|
},
|
|
1003
|
-
"description": "
|
|
1144
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1004
1145
|
"attribute": "theme"
|
|
1005
1146
|
},
|
|
1006
1147
|
{
|
|
1007
1148
|
"kind": "field",
|
|
1008
|
-
"name": "
|
|
1149
|
+
"name": "appearance",
|
|
1009
1150
|
"type": {
|
|
1010
|
-
"text": "'
|
|
1151
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1011
1152
|
},
|
|
1012
|
-
"default": "'
|
|
1013
|
-
"description": "Specify the
|
|
1014
|
-
"attribute": "
|
|
1153
|
+
"default": "'infoPrimary'",
|
|
1154
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1155
|
+
"attribute": "appearance"
|
|
1015
1156
|
},
|
|
1016
1157
|
{
|
|
1017
1158
|
"kind": "field",
|
|
1018
1159
|
"name": "emphasis",
|
|
1019
1160
|
"type": {
|
|
1020
|
-
"text": "'strong' | '
|
|
1161
|
+
"text": "'strong' | 'subtle'"
|
|
1021
1162
|
},
|
|
1022
1163
|
"default": "'strong'",
|
|
1023
|
-
"description": "Specify the emphasis of the
|
|
1164
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1024
1165
|
"attribute": "emphasis"
|
|
1025
1166
|
},
|
|
1026
1167
|
{
|
|
1027
1168
|
"kind": "field",
|
|
1028
|
-
"name": "
|
|
1169
|
+
"name": "overrideDotColor",
|
|
1029
1170
|
"type": {
|
|
1030
|
-
"text": "
|
|
1171
|
+
"text": "string | undefined"
|
|
1031
1172
|
},
|
|
1032
|
-
"description": "
|
|
1033
|
-
"attribute": "
|
|
1173
|
+
"description": "Overrides default dot color",
|
|
1174
|
+
"attribute": "overrideDotColor"
|
|
1034
1175
|
}
|
|
1035
1176
|
],
|
|
1036
1177
|
"attributes": [
|
|
1037
|
-
{
|
|
1038
|
-
"name": "appearance",
|
|
1039
|
-
"type": {
|
|
1040
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1041
|
-
},
|
|
1042
|
-
"default": "'infoPrimary'",
|
|
1043
|
-
"description": "Specify the appearance of the Badge",
|
|
1044
|
-
"fieldName": "appearance"
|
|
1045
|
-
},
|
|
1046
1178
|
{
|
|
1047
1179
|
"name": "theme",
|
|
1048
1180
|
"type": {
|
|
1049
1181
|
"text": "'light' | 'dark' | undefined"
|
|
1050
1182
|
},
|
|
1051
|
-
"description": "
|
|
1183
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1052
1184
|
"fieldName": "theme"
|
|
1053
1185
|
},
|
|
1054
1186
|
{
|
|
1055
|
-
"name": "
|
|
1187
|
+
"name": "appearance",
|
|
1056
1188
|
"type": {
|
|
1057
|
-
"text": "'
|
|
1189
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1058
1190
|
},
|
|
1059
|
-
"default": "'
|
|
1060
|
-
"description": "Specify the
|
|
1061
|
-
"fieldName": "
|
|
1191
|
+
"default": "'infoPrimary'",
|
|
1192
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1193
|
+
"fieldName": "appearance"
|
|
1062
1194
|
},
|
|
1063
1195
|
{
|
|
1064
1196
|
"name": "emphasis",
|
|
1065
1197
|
"type": {
|
|
1066
|
-
"text": "'strong' | '
|
|
1198
|
+
"text": "'strong' | 'subtle'"
|
|
1067
1199
|
},
|
|
1068
1200
|
"default": "'strong'",
|
|
1069
|
-
"description": "Specify the emphasis of the
|
|
1201
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1070
1202
|
"fieldName": "emphasis"
|
|
1071
1203
|
},
|
|
1072
1204
|
{
|
|
1073
|
-
"name": "
|
|
1205
|
+
"name": "overrideDotColor",
|
|
1074
1206
|
"type": {
|
|
1075
|
-
"text": "
|
|
1207
|
+
"text": "string | undefined"
|
|
1076
1208
|
},
|
|
1077
|
-
"description": "
|
|
1078
|
-
"fieldName": "
|
|
1209
|
+
"description": "Overrides default dot color",
|
|
1210
|
+
"fieldName": "overrideDotColor"
|
|
1079
1211
|
}
|
|
1080
1212
|
],
|
|
1081
1213
|
"superclass": {
|
|
1082
1214
|
"name": "LitElement",
|
|
1083
1215
|
"package": "lit"
|
|
1084
1216
|
},
|
|
1085
|
-
"tagName": "bm-badge",
|
|
1217
|
+
"tagName": "bm-badge-dot",
|
|
1086
1218
|
"customElement": true
|
|
1087
1219
|
}
|
|
1088
1220
|
],
|
|
1089
1221
|
"exports": [
|
|
1090
1222
|
{
|
|
1091
1223
|
"kind": "js",
|
|
1092
|
-
"name": "
|
|
1224
|
+
"name": "BmBadgeDot",
|
|
1093
1225
|
"declaration": {
|
|
1094
|
-
"name": "
|
|
1095
|
-
"module": "libs/web-components/src/lib/
|
|
1226
|
+
"name": "BmBadgeDot",
|
|
1227
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1096
1228
|
}
|
|
1097
1229
|
},
|
|
1098
1230
|
{
|
|
1099
1231
|
"kind": "custom-element-definition",
|
|
1100
|
-
"name": "bm-badge",
|
|
1232
|
+
"name": "bm-badge-dot",
|
|
1101
1233
|
"declaration": {
|
|
1102
|
-
"name": "
|
|
1103
|
-
"module": "libs/web-components/src/lib/
|
|
1234
|
+
"name": "BmBadgeDot",
|
|
1235
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1104
1236
|
}
|
|
1105
1237
|
}
|
|
1106
1238
|
]
|
|
1107
1239
|
},
|
|
1108
1240
|
{
|
|
1109
1241
|
"kind": "javascript-module",
|
|
1110
|
-
"path": "libs/web-components/src/lib/
|
|
1242
|
+
"path": "libs/web-components/src/lib/BadgeDot/index.ts",
|
|
1111
1243
|
"declarations": [],
|
|
1112
1244
|
"exports": [
|
|
1113
1245
|
{
|
|
@@ -1115,7 +1247,7 @@
|
|
|
1115
1247
|
"name": "*",
|
|
1116
1248
|
"declaration": {
|
|
1117
1249
|
"name": "*",
|
|
1118
|
-
"package": "./
|
|
1250
|
+
"package": "./BadgeDot"
|
|
1119
1251
|
}
|
|
1120
1252
|
}
|
|
1121
1253
|
]
|
|
@@ -1425,221 +1557,89 @@
|
|
|
1425
1557
|
"name": "mBottom",
|
|
1426
1558
|
"type": {
|
|
1427
1559
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1428
|
-
},
|
|
1429
|
-
"description": "Specify bottom margin of a Box",
|
|
1430
|
-
"fieldName": "mBottom"
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"name": "mBefore",
|
|
1434
|
-
"type": {
|
|
1435
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1436
|
-
},
|
|
1437
|
-
"description": "Specify before margin of a Box",
|
|
1438
|
-
"fieldName": "mBefore"
|
|
1439
|
-
},
|
|
1440
|
-
{
|
|
1441
|
-
"name": "mAfter",
|
|
1442
|
-
"type": {
|
|
1443
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1444
|
-
},
|
|
1445
|
-
"description": "Specify after margin of a Box",
|
|
1446
|
-
"fieldName": "mAfter"
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
"name": "m",
|
|
1450
|
-
"type": {
|
|
1451
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1452
|
-
},
|
|
1453
|
-
"description": "Specify all margin",
|
|
1454
|
-
"fieldName": "m"
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
"name": "p",
|
|
1458
|
-
"type": {
|
|
1459
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1460
|
-
},
|
|
1461
|
-
"description": "Specify all padding",
|
|
1462
|
-
"fieldName": "p"
|
|
1463
|
-
},
|
|
1464
|
-
{
|
|
1465
|
-
"name": "gap",
|
|
1466
|
-
"type": {
|
|
1467
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1468
|
-
},
|
|
1469
|
-
"description": "Specify gap between child elements",
|
|
1470
|
-
"fieldName": "gap"
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"name": "shadow",
|
|
1474
|
-
"type": {
|
|
1475
|
-
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1476
|
-
},
|
|
1477
|
-
"description": "Specify if a Box has a shadow",
|
|
1478
|
-
"fieldName": "shadow"
|
|
1479
|
-
}
|
|
1480
|
-
],
|
|
1481
|
-
"superclass": {
|
|
1482
|
-
"name": "LitElement",
|
|
1483
|
-
"package": "lit"
|
|
1484
|
-
},
|
|
1485
|
-
"tagName": "bm-box",
|
|
1486
|
-
"customElement": true
|
|
1487
|
-
}
|
|
1488
|
-
],
|
|
1489
|
-
"exports": [
|
|
1490
|
-
{
|
|
1491
|
-
"kind": "js",
|
|
1492
|
-
"name": "BmBox",
|
|
1493
|
-
"declaration": {
|
|
1494
|
-
"name": "BmBox",
|
|
1495
|
-
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1496
|
-
}
|
|
1497
|
-
},
|
|
1498
|
-
{
|
|
1499
|
-
"kind": "custom-element-definition",
|
|
1500
|
-
"name": "bm-box",
|
|
1501
|
-
"declaration": {
|
|
1502
|
-
"name": "BmBox",
|
|
1503
|
-
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1504
|
-
}
|
|
1505
|
-
}
|
|
1506
|
-
]
|
|
1507
|
-
},
|
|
1508
|
-
{
|
|
1509
|
-
"kind": "javascript-module",
|
|
1510
|
-
"path": "libs/web-components/src/lib/Box/index.ts",
|
|
1511
|
-
"declarations": [],
|
|
1512
|
-
"exports": [
|
|
1513
|
-
{
|
|
1514
|
-
"kind": "js",
|
|
1515
|
-
"name": "*",
|
|
1516
|
-
"declaration": {
|
|
1517
|
-
"name": "*",
|
|
1518
|
-
"package": "./Box"
|
|
1519
|
-
}
|
|
1520
|
-
}
|
|
1521
|
-
]
|
|
1522
|
-
},
|
|
1523
|
-
{
|
|
1524
|
-
"kind": "javascript-module",
|
|
1525
|
-
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
1526
|
-
"declarations": [
|
|
1527
|
-
{
|
|
1528
|
-
"kind": "class",
|
|
1529
|
-
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
|
|
1530
|
-
"name": "BmBadgeDot",
|
|
1531
|
-
"slots": [
|
|
1532
|
-
{
|
|
1533
|
-
"description": "Provide text for the BadgeDot",
|
|
1534
|
-
"name": "default"
|
|
1535
|
-
}
|
|
1536
|
-
],
|
|
1537
|
-
"members": [
|
|
1538
|
-
{
|
|
1539
|
-
"kind": "field",
|
|
1540
|
-
"name": "theme",
|
|
1541
|
-
"type": {
|
|
1542
|
-
"text": "'light' | 'dark' | undefined"
|
|
1543
|
-
},
|
|
1544
|
-
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1545
|
-
"attribute": "theme"
|
|
1546
|
-
},
|
|
1547
|
-
{
|
|
1548
|
-
"kind": "field",
|
|
1549
|
-
"name": "appearance",
|
|
1550
|
-
"type": {
|
|
1551
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1552
|
-
},
|
|
1553
|
-
"default": "'infoPrimary'",
|
|
1554
|
-
"description": "Specify the appearance of the BadgeDot",
|
|
1555
|
-
"attribute": "appearance"
|
|
1560
|
+
},
|
|
1561
|
+
"description": "Specify bottom margin of a Box",
|
|
1562
|
+
"fieldName": "mBottom"
|
|
1556
1563
|
},
|
|
1557
1564
|
{
|
|
1558
|
-
"
|
|
1559
|
-
"name": "emphasis",
|
|
1565
|
+
"name": "mBefore",
|
|
1560
1566
|
"type": {
|
|
1561
|
-
"text": "'
|
|
1567
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1562
1568
|
},
|
|
1563
|
-
"
|
|
1564
|
-
"
|
|
1565
|
-
"attribute": "emphasis"
|
|
1569
|
+
"description": "Specify before margin of a Box",
|
|
1570
|
+
"fieldName": "mBefore"
|
|
1566
1571
|
},
|
|
1567
1572
|
{
|
|
1568
|
-
"
|
|
1569
|
-
"name": "overrideDotColor",
|
|
1573
|
+
"name": "mAfter",
|
|
1570
1574
|
"type": {
|
|
1571
|
-
"text": "
|
|
1575
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1572
1576
|
},
|
|
1573
|
-
"description": "
|
|
1574
|
-
"
|
|
1575
|
-
}
|
|
1576
|
-
],
|
|
1577
|
-
"attributes": [
|
|
1577
|
+
"description": "Specify after margin of a Box",
|
|
1578
|
+
"fieldName": "mAfter"
|
|
1579
|
+
},
|
|
1578
1580
|
{
|
|
1579
|
-
"name": "
|
|
1581
|
+
"name": "m",
|
|
1580
1582
|
"type": {
|
|
1581
|
-
"text": "'
|
|
1583
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1582
1584
|
},
|
|
1583
|
-
"description": "Specify
|
|
1584
|
-
"fieldName": "
|
|
1585
|
+
"description": "Specify all margin",
|
|
1586
|
+
"fieldName": "m"
|
|
1585
1587
|
},
|
|
1586
1588
|
{
|
|
1587
|
-
"name": "
|
|
1589
|
+
"name": "p",
|
|
1588
1590
|
"type": {
|
|
1589
|
-
"text": "'
|
|
1591
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1590
1592
|
},
|
|
1591
|
-
"
|
|
1592
|
-
"
|
|
1593
|
-
"fieldName": "appearance"
|
|
1593
|
+
"description": "Specify all padding",
|
|
1594
|
+
"fieldName": "p"
|
|
1594
1595
|
},
|
|
1595
1596
|
{
|
|
1596
|
-
"name": "
|
|
1597
|
+
"name": "gap",
|
|
1597
1598
|
"type": {
|
|
1598
|
-
"text": "'
|
|
1599
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1599
1600
|
},
|
|
1600
|
-
"
|
|
1601
|
-
"
|
|
1602
|
-
"fieldName": "emphasis"
|
|
1601
|
+
"description": "Specify gap between child elements",
|
|
1602
|
+
"fieldName": "gap"
|
|
1603
1603
|
},
|
|
1604
1604
|
{
|
|
1605
|
-
"name": "
|
|
1605
|
+
"name": "shadow",
|
|
1606
1606
|
"type": {
|
|
1607
|
-
"text": "
|
|
1607
|
+
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1608
1608
|
},
|
|
1609
|
-
"description": "
|
|
1610
|
-
"fieldName": "
|
|
1609
|
+
"description": "Specify if a Box has a shadow",
|
|
1610
|
+
"fieldName": "shadow"
|
|
1611
1611
|
}
|
|
1612
1612
|
],
|
|
1613
1613
|
"superclass": {
|
|
1614
1614
|
"name": "LitElement",
|
|
1615
1615
|
"package": "lit"
|
|
1616
1616
|
},
|
|
1617
|
-
"tagName": "bm-
|
|
1617
|
+
"tagName": "bm-box",
|
|
1618
1618
|
"customElement": true
|
|
1619
1619
|
}
|
|
1620
1620
|
],
|
|
1621
1621
|
"exports": [
|
|
1622
1622
|
{
|
|
1623
1623
|
"kind": "js",
|
|
1624
|
-
"name": "
|
|
1624
|
+
"name": "BmBox",
|
|
1625
1625
|
"declaration": {
|
|
1626
|
-
"name": "
|
|
1627
|
-
"module": "libs/web-components/src/lib/
|
|
1626
|
+
"name": "BmBox",
|
|
1627
|
+
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1628
1628
|
}
|
|
1629
1629
|
},
|
|
1630
1630
|
{
|
|
1631
1631
|
"kind": "custom-element-definition",
|
|
1632
|
-
"name": "bm-
|
|
1632
|
+
"name": "bm-box",
|
|
1633
1633
|
"declaration": {
|
|
1634
|
-
"name": "
|
|
1635
|
-
"module": "libs/web-components/src/lib/
|
|
1634
|
+
"name": "BmBox",
|
|
1635
|
+
"module": "libs/web-components/src/lib/Box/Box.ts"
|
|
1636
1636
|
}
|
|
1637
1637
|
}
|
|
1638
1638
|
]
|
|
1639
1639
|
},
|
|
1640
1640
|
{
|
|
1641
1641
|
"kind": "javascript-module",
|
|
1642
|
-
"path": "libs/web-components/src/lib/
|
|
1642
|
+
"path": "libs/web-components/src/lib/Box/index.ts",
|
|
1643
1643
|
"declarations": [],
|
|
1644
1644
|
"exports": [
|
|
1645
1645
|
{
|
|
@@ -1647,7 +1647,7 @@
|
|
|
1647
1647
|
"name": "*",
|
|
1648
1648
|
"declaration": {
|
|
1649
1649
|
"name": "*",
|
|
1650
|
-
"package": "./
|
|
1650
|
+
"package": "./Box"
|
|
1651
1651
|
}
|
|
1652
1652
|
}
|
|
1653
1653
|
]
|
|
@@ -7140,37 +7140,227 @@
|
|
|
7140
7140
|
"exports": [
|
|
7141
7141
|
{
|
|
7142
7142
|
"kind": "js",
|
|
7143
|
-
"name": "fileUploadContext",
|
|
7143
|
+
"name": "fileUploadContext",
|
|
7144
|
+
"declaration": {
|
|
7145
|
+
"name": "fileUploadContext",
|
|
7146
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUploadContext.ts"
|
|
7147
|
+
}
|
|
7148
|
+
}
|
|
7149
|
+
]
|
|
7150
|
+
},
|
|
7151
|
+
{
|
|
7152
|
+
"kind": "javascript-module",
|
|
7153
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts",
|
|
7154
|
+
"declarations": [
|
|
7155
|
+
{
|
|
7156
|
+
"kind": "variable",
|
|
7157
|
+
"name": "fileUploadListContext"
|
|
7158
|
+
}
|
|
7159
|
+
],
|
|
7160
|
+
"exports": [
|
|
7161
|
+
{
|
|
7162
|
+
"kind": "js",
|
|
7163
|
+
"name": "fileUploadListContext",
|
|
7164
|
+
"declaration": {
|
|
7165
|
+
"name": "fileUploadListContext",
|
|
7166
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts"
|
|
7167
|
+
}
|
|
7168
|
+
}
|
|
7169
|
+
]
|
|
7170
|
+
},
|
|
7171
|
+
{
|
|
7172
|
+
"kind": "javascript-module",
|
|
7173
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/index.ts",
|
|
7174
|
+
"declarations": [],
|
|
7175
|
+
"exports": [
|
|
7176
|
+
{
|
|
7177
|
+
"kind": "js",
|
|
7178
|
+
"name": "*",
|
|
7179
|
+
"declaration": {
|
|
7180
|
+
"name": "*",
|
|
7181
|
+
"package": "./FileUpload"
|
|
7182
|
+
}
|
|
7183
|
+
},
|
|
7184
|
+
{
|
|
7185
|
+
"kind": "js",
|
|
7186
|
+
"name": "*",
|
|
7187
|
+
"declaration": {
|
|
7188
|
+
"name": "*",
|
|
7189
|
+
"package": "./FileUpload.Button"
|
|
7190
|
+
}
|
|
7191
|
+
},
|
|
7192
|
+
{
|
|
7193
|
+
"kind": "js",
|
|
7194
|
+
"name": "*",
|
|
7195
|
+
"declaration": {
|
|
7196
|
+
"name": "*",
|
|
7197
|
+
"package": "./FileUpload.Dropzone"
|
|
7198
|
+
}
|
|
7199
|
+
},
|
|
7200
|
+
{
|
|
7201
|
+
"kind": "js",
|
|
7202
|
+
"name": "*",
|
|
7203
|
+
"declaration": {
|
|
7204
|
+
"name": "*",
|
|
7205
|
+
"package": "./FileUpload.List"
|
|
7206
|
+
}
|
|
7207
|
+
},
|
|
7208
|
+
{
|
|
7209
|
+
"kind": "js",
|
|
7210
|
+
"name": "*",
|
|
7211
|
+
"declaration": {
|
|
7212
|
+
"name": "*",
|
|
7213
|
+
"package": "./FileUpload.List.Item"
|
|
7214
|
+
}
|
|
7215
|
+
}
|
|
7216
|
+
]
|
|
7217
|
+
},
|
|
7218
|
+
{
|
|
7219
|
+
"kind": "javascript-module",
|
|
7220
|
+
"path": "libs/web-components/src/lib/wip/Label/Label.ts",
|
|
7221
|
+
"declarations": [
|
|
7222
|
+
{
|
|
7223
|
+
"kind": "class",
|
|
7224
|
+
"description": "### Attributes:\n- **disabled** - Specify if the Label displays disabled\n- **required** - Specify if the Label displays as required\n- **text** - Specify the text for Label\n- **optional** - Specify the text for Label\n- **theme** - Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7225
|
+
"name": "BmLabel",
|
|
7226
|
+
"slots": [
|
|
7227
|
+
{
|
|
7228
|
+
"description": "Specify the text for Label",
|
|
7229
|
+
"name": "text"
|
|
7230
|
+
},
|
|
7231
|
+
{
|
|
7232
|
+
"description": "Specify if the Label displays as optional",
|
|
7233
|
+
"name": "optional"
|
|
7234
|
+
},
|
|
7235
|
+
{
|
|
7236
|
+
"description": "Specify if the icon displays to add a Tooltip",
|
|
7237
|
+
"name": "tooltip"
|
|
7238
|
+
}
|
|
7239
|
+
],
|
|
7240
|
+
"members": [
|
|
7241
|
+
{
|
|
7242
|
+
"kind": "field",
|
|
7243
|
+
"name": "disabled",
|
|
7244
|
+
"type": {
|
|
7245
|
+
"text": "boolean"
|
|
7246
|
+
},
|
|
7247
|
+
"default": "false",
|
|
7248
|
+
"description": "Specify if the Label displays disabled",
|
|
7249
|
+
"attribute": "disabled"
|
|
7250
|
+
},
|
|
7251
|
+
{
|
|
7252
|
+
"kind": "field",
|
|
7253
|
+
"name": "required",
|
|
7254
|
+
"type": {
|
|
7255
|
+
"text": "boolean"
|
|
7256
|
+
},
|
|
7257
|
+
"default": "false",
|
|
7258
|
+
"description": "Specify if the Label displays as required",
|
|
7259
|
+
"attribute": "required"
|
|
7260
|
+
},
|
|
7261
|
+
{
|
|
7262
|
+
"kind": "field",
|
|
7263
|
+
"name": "text",
|
|
7264
|
+
"type": {
|
|
7265
|
+
"text": "string | undefined"
|
|
7266
|
+
},
|
|
7267
|
+
"description": "Specify the text for Label",
|
|
7268
|
+
"attribute": "text"
|
|
7269
|
+
},
|
|
7270
|
+
{
|
|
7271
|
+
"kind": "field",
|
|
7272
|
+
"name": "optional",
|
|
7273
|
+
"type": {
|
|
7274
|
+
"text": "string | undefined"
|
|
7275
|
+
},
|
|
7276
|
+
"description": "Specify the text for Label",
|
|
7277
|
+
"attribute": "optional"
|
|
7278
|
+
},
|
|
7279
|
+
{
|
|
7280
|
+
"kind": "field",
|
|
7281
|
+
"name": "theme",
|
|
7282
|
+
"type": {
|
|
7283
|
+
"text": "'light' | 'dark' | undefined"
|
|
7284
|
+
},
|
|
7285
|
+
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7286
|
+
"attribute": "theme"
|
|
7287
|
+
}
|
|
7288
|
+
],
|
|
7289
|
+
"attributes": [
|
|
7290
|
+
{
|
|
7291
|
+
"name": "disabled",
|
|
7292
|
+
"type": {
|
|
7293
|
+
"text": "boolean"
|
|
7294
|
+
},
|
|
7295
|
+
"default": "false",
|
|
7296
|
+
"description": "Specify if the Label displays disabled",
|
|
7297
|
+
"fieldName": "disabled"
|
|
7298
|
+
},
|
|
7299
|
+
{
|
|
7300
|
+
"name": "required",
|
|
7301
|
+
"type": {
|
|
7302
|
+
"text": "boolean"
|
|
7303
|
+
},
|
|
7304
|
+
"default": "false",
|
|
7305
|
+
"description": "Specify if the Label displays as required",
|
|
7306
|
+
"fieldName": "required"
|
|
7307
|
+
},
|
|
7308
|
+
{
|
|
7309
|
+
"name": "text",
|
|
7310
|
+
"type": {
|
|
7311
|
+
"text": "string | undefined"
|
|
7312
|
+
},
|
|
7313
|
+
"description": "Specify the text for Label",
|
|
7314
|
+
"fieldName": "text"
|
|
7315
|
+
},
|
|
7316
|
+
{
|
|
7317
|
+
"name": "optional",
|
|
7318
|
+
"type": {
|
|
7319
|
+
"text": "string | undefined"
|
|
7320
|
+
},
|
|
7321
|
+
"description": "Specify the text for Label",
|
|
7322
|
+
"fieldName": "optional"
|
|
7323
|
+
},
|
|
7324
|
+
{
|
|
7325
|
+
"name": "theme",
|
|
7326
|
+
"type": {
|
|
7327
|
+
"text": "'light' | 'dark' | undefined"
|
|
7328
|
+
},
|
|
7329
|
+
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7330
|
+
"fieldName": "theme"
|
|
7331
|
+
}
|
|
7332
|
+
],
|
|
7333
|
+
"superclass": {
|
|
7334
|
+
"name": "LitElement",
|
|
7335
|
+
"package": "lit"
|
|
7336
|
+
},
|
|
7337
|
+
"summary": "`bm-label`",
|
|
7338
|
+
"tagName": "bm-label",
|
|
7339
|
+
"customElement": true
|
|
7340
|
+
}
|
|
7341
|
+
],
|
|
7342
|
+
"exports": [
|
|
7343
|
+
{
|
|
7344
|
+
"kind": "js",
|
|
7345
|
+
"name": "BmLabel",
|
|
7144
7346
|
"declaration": {
|
|
7145
|
-
"name": "
|
|
7146
|
-
"module": "libs/web-components/src/lib/wip/
|
|
7347
|
+
"name": "BmLabel",
|
|
7348
|
+
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7147
7349
|
}
|
|
7148
|
-
}
|
|
7149
|
-
]
|
|
7150
|
-
},
|
|
7151
|
-
{
|
|
7152
|
-
"kind": "javascript-module",
|
|
7153
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts",
|
|
7154
|
-
"declarations": [
|
|
7155
|
-
{
|
|
7156
|
-
"kind": "variable",
|
|
7157
|
-
"name": "fileUploadListContext"
|
|
7158
|
-
}
|
|
7159
|
-
],
|
|
7160
|
-
"exports": [
|
|
7350
|
+
},
|
|
7161
7351
|
{
|
|
7162
|
-
"kind": "
|
|
7163
|
-
"name": "
|
|
7352
|
+
"kind": "custom-element-definition",
|
|
7353
|
+
"name": "bm-label",
|
|
7164
7354
|
"declaration": {
|
|
7165
|
-
"name": "
|
|
7166
|
-
"module": "libs/web-components/src/lib/wip/
|
|
7355
|
+
"name": "BmLabel",
|
|
7356
|
+
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7167
7357
|
}
|
|
7168
7358
|
}
|
|
7169
7359
|
]
|
|
7170
7360
|
},
|
|
7171
7361
|
{
|
|
7172
7362
|
"kind": "javascript-module",
|
|
7173
|
-
"path": "libs/web-components/src/lib/wip/
|
|
7363
|
+
"path": "libs/web-components/src/lib/wip/Label/index.ts",
|
|
7174
7364
|
"declarations": [],
|
|
7175
7365
|
"exports": [
|
|
7176
7366
|
{
|
|
@@ -7178,39 +7368,7 @@
|
|
|
7178
7368
|
"name": "*",
|
|
7179
7369
|
"declaration": {
|
|
7180
7370
|
"name": "*",
|
|
7181
|
-
"package": "./
|
|
7182
|
-
}
|
|
7183
|
-
},
|
|
7184
|
-
{
|
|
7185
|
-
"kind": "js",
|
|
7186
|
-
"name": "*",
|
|
7187
|
-
"declaration": {
|
|
7188
|
-
"name": "*",
|
|
7189
|
-
"package": "./FileUpload.Button"
|
|
7190
|
-
}
|
|
7191
|
-
},
|
|
7192
|
-
{
|
|
7193
|
-
"kind": "js",
|
|
7194
|
-
"name": "*",
|
|
7195
|
-
"declaration": {
|
|
7196
|
-
"name": "*",
|
|
7197
|
-
"package": "./FileUpload.Dropzone"
|
|
7198
|
-
}
|
|
7199
|
-
},
|
|
7200
|
-
{
|
|
7201
|
-
"kind": "js",
|
|
7202
|
-
"name": "*",
|
|
7203
|
-
"declaration": {
|
|
7204
|
-
"name": "*",
|
|
7205
|
-
"package": "./FileUpload.List"
|
|
7206
|
-
}
|
|
7207
|
-
},
|
|
7208
|
-
{
|
|
7209
|
-
"kind": "js",
|
|
7210
|
-
"name": "*",
|
|
7211
|
-
"declaration": {
|
|
7212
|
-
"name": "*",
|
|
7213
|
-
"package": "./FileUpload.List.Item"
|
|
7371
|
+
"package": "./Label"
|
|
7214
7372
|
}
|
|
7215
7373
|
}
|
|
7216
7374
|
]
|
|
@@ -7663,188 +7821,22 @@
|
|
|
7663
7821
|
"text": "string"
|
|
7664
7822
|
}
|
|
7665
7823
|
}
|
|
7666
|
-
}
|
|
7667
|
-
],
|
|
7668
|
-
"exports": [
|
|
7669
|
-
{
|
|
7670
|
-
"kind": "js",
|
|
7671
|
-
"name": "createId",
|
|
7672
|
-
"declaration": {
|
|
7673
|
-
"name": "createId",
|
|
7674
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
|
|
7675
|
-
}
|
|
7676
|
-
}
|
|
7677
|
-
]
|
|
7678
|
-
},
|
|
7679
|
-
{
|
|
7680
|
-
"kind": "javascript-module",
|
|
7681
|
-
"path": "libs/web-components/src/lib/wip/Form/index.ts",
|
|
7682
|
-
"declarations": [],
|
|
7683
|
-
"exports": [
|
|
7684
|
-
{
|
|
7685
|
-
"kind": "js",
|
|
7686
|
-
"name": "*",
|
|
7687
|
-
"declaration": {
|
|
7688
|
-
"name": "*",
|
|
7689
|
-
"package": "./Form"
|
|
7690
|
-
}
|
|
7691
|
-
},
|
|
7692
|
-
{
|
|
7693
|
-
"kind": "js",
|
|
7694
|
-
"name": "*",
|
|
7695
|
-
"declaration": {
|
|
7696
|
-
"name": "*",
|
|
7697
|
-
"package": "./Form.decorator"
|
|
7698
|
-
}
|
|
7699
|
-
}
|
|
7700
|
-
]
|
|
7701
|
-
},
|
|
7702
|
-
{
|
|
7703
|
-
"kind": "javascript-module",
|
|
7704
|
-
"path": "libs/web-components/src/lib/wip/Label/Label.ts",
|
|
7705
|
-
"declarations": [
|
|
7706
|
-
{
|
|
7707
|
-
"kind": "class",
|
|
7708
|
-
"description": "### Attributes:\n- **disabled** - Specify if the Label displays disabled\n- **required** - Specify if the Label displays as required\n- **text** - Specify the text for Label\n- **optional** - Specify the text for Label\n- **theme** - Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7709
|
-
"name": "BmLabel",
|
|
7710
|
-
"slots": [
|
|
7711
|
-
{
|
|
7712
|
-
"description": "Specify the text for Label",
|
|
7713
|
-
"name": "text"
|
|
7714
|
-
},
|
|
7715
|
-
{
|
|
7716
|
-
"description": "Specify if the Label displays as optional",
|
|
7717
|
-
"name": "optional"
|
|
7718
|
-
},
|
|
7719
|
-
{
|
|
7720
|
-
"description": "Specify if the icon displays to add a Tooltip",
|
|
7721
|
-
"name": "tooltip"
|
|
7722
|
-
}
|
|
7723
|
-
],
|
|
7724
|
-
"members": [
|
|
7725
|
-
{
|
|
7726
|
-
"kind": "field",
|
|
7727
|
-
"name": "disabled",
|
|
7728
|
-
"type": {
|
|
7729
|
-
"text": "boolean"
|
|
7730
|
-
},
|
|
7731
|
-
"default": "false",
|
|
7732
|
-
"description": "Specify if the Label displays disabled",
|
|
7733
|
-
"attribute": "disabled"
|
|
7734
|
-
},
|
|
7735
|
-
{
|
|
7736
|
-
"kind": "field",
|
|
7737
|
-
"name": "required",
|
|
7738
|
-
"type": {
|
|
7739
|
-
"text": "boolean"
|
|
7740
|
-
},
|
|
7741
|
-
"default": "false",
|
|
7742
|
-
"description": "Specify if the Label displays as required",
|
|
7743
|
-
"attribute": "required"
|
|
7744
|
-
},
|
|
7745
|
-
{
|
|
7746
|
-
"kind": "field",
|
|
7747
|
-
"name": "text",
|
|
7748
|
-
"type": {
|
|
7749
|
-
"text": "string | undefined"
|
|
7750
|
-
},
|
|
7751
|
-
"description": "Specify the text for Label",
|
|
7752
|
-
"attribute": "text"
|
|
7753
|
-
},
|
|
7754
|
-
{
|
|
7755
|
-
"kind": "field",
|
|
7756
|
-
"name": "optional",
|
|
7757
|
-
"type": {
|
|
7758
|
-
"text": "string | undefined"
|
|
7759
|
-
},
|
|
7760
|
-
"description": "Specify the text for Label",
|
|
7761
|
-
"attribute": "optional"
|
|
7762
|
-
},
|
|
7763
|
-
{
|
|
7764
|
-
"kind": "field",
|
|
7765
|
-
"name": "theme",
|
|
7766
|
-
"type": {
|
|
7767
|
-
"text": "'light' | 'dark' | undefined"
|
|
7768
|
-
},
|
|
7769
|
-
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7770
|
-
"attribute": "theme"
|
|
7771
|
-
}
|
|
7772
|
-
],
|
|
7773
|
-
"attributes": [
|
|
7774
|
-
{
|
|
7775
|
-
"name": "disabled",
|
|
7776
|
-
"type": {
|
|
7777
|
-
"text": "boolean"
|
|
7778
|
-
},
|
|
7779
|
-
"default": "false",
|
|
7780
|
-
"description": "Specify if the Label displays disabled",
|
|
7781
|
-
"fieldName": "disabled"
|
|
7782
|
-
},
|
|
7783
|
-
{
|
|
7784
|
-
"name": "required",
|
|
7785
|
-
"type": {
|
|
7786
|
-
"text": "boolean"
|
|
7787
|
-
},
|
|
7788
|
-
"default": "false",
|
|
7789
|
-
"description": "Specify if the Label displays as required",
|
|
7790
|
-
"fieldName": "required"
|
|
7791
|
-
},
|
|
7792
|
-
{
|
|
7793
|
-
"name": "text",
|
|
7794
|
-
"type": {
|
|
7795
|
-
"text": "string | undefined"
|
|
7796
|
-
},
|
|
7797
|
-
"description": "Specify the text for Label",
|
|
7798
|
-
"fieldName": "text"
|
|
7799
|
-
},
|
|
7800
|
-
{
|
|
7801
|
-
"name": "optional",
|
|
7802
|
-
"type": {
|
|
7803
|
-
"text": "string | undefined"
|
|
7804
|
-
},
|
|
7805
|
-
"description": "Specify the text for Label",
|
|
7806
|
-
"fieldName": "optional"
|
|
7807
|
-
},
|
|
7808
|
-
{
|
|
7809
|
-
"name": "theme",
|
|
7810
|
-
"type": {
|
|
7811
|
-
"text": "'light' | 'dark' | undefined"
|
|
7812
|
-
},
|
|
7813
|
-
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7814
|
-
"fieldName": "theme"
|
|
7815
|
-
}
|
|
7816
|
-
],
|
|
7817
|
-
"superclass": {
|
|
7818
|
-
"name": "LitElement",
|
|
7819
|
-
"package": "lit"
|
|
7820
|
-
},
|
|
7821
|
-
"summary": "`bm-label`",
|
|
7822
|
-
"tagName": "bm-label",
|
|
7823
|
-
"customElement": true
|
|
7824
|
-
}
|
|
7825
|
-
],
|
|
7826
|
-
"exports": [
|
|
7827
|
-
{
|
|
7828
|
-
"kind": "js",
|
|
7829
|
-
"name": "BmLabel",
|
|
7830
|
-
"declaration": {
|
|
7831
|
-
"name": "BmLabel",
|
|
7832
|
-
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7833
|
-
}
|
|
7834
|
-
},
|
|
7824
|
+
}
|
|
7825
|
+
],
|
|
7826
|
+
"exports": [
|
|
7835
7827
|
{
|
|
7836
|
-
"kind": "
|
|
7837
|
-
"name": "
|
|
7828
|
+
"kind": "js",
|
|
7829
|
+
"name": "createId",
|
|
7838
7830
|
"declaration": {
|
|
7839
|
-
"name": "
|
|
7840
|
-
"module": "libs/web-components/src/lib/wip/
|
|
7831
|
+
"name": "createId",
|
|
7832
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
|
|
7841
7833
|
}
|
|
7842
7834
|
}
|
|
7843
7835
|
]
|
|
7844
7836
|
},
|
|
7845
7837
|
{
|
|
7846
7838
|
"kind": "javascript-module",
|
|
7847
|
-
"path": "libs/web-components/src/lib/wip/
|
|
7839
|
+
"path": "libs/web-components/src/lib/wip/Form/index.ts",
|
|
7848
7840
|
"declarations": [],
|
|
7849
7841
|
"exports": [
|
|
7850
7842
|
{
|
|
@@ -7852,7 +7844,15 @@
|
|
|
7852
7844
|
"name": "*",
|
|
7853
7845
|
"declaration": {
|
|
7854
7846
|
"name": "*",
|
|
7855
|
-
"package": "./
|
|
7847
|
+
"package": "./Form"
|
|
7848
|
+
}
|
|
7849
|
+
},
|
|
7850
|
+
{
|
|
7851
|
+
"kind": "js",
|
|
7852
|
+
"name": "*",
|
|
7853
|
+
"declaration": {
|
|
7854
|
+
"name": "*",
|
|
7855
|
+
"package": "./Form.decorator"
|
|
7856
7856
|
}
|
|
7857
7857
|
}
|
|
7858
7858
|
]
|
|
@@ -8287,150 +8287,157 @@
|
|
|
8287
8287
|
},
|
|
8288
8288
|
{
|
|
8289
8289
|
"kind": "javascript-module",
|
|
8290
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8290
|
+
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
8291
8291
|
"declarations": [
|
|
8292
8292
|
{
|
|
8293
8293
|
"kind": "class",
|
|
8294
|
-
"description": "`bm-
|
|
8295
|
-
"name": "
|
|
8294
|
+
"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",
|
|
8295
|
+
"name": "BmSwitch",
|
|
8296
|
+
"slots": [
|
|
8297
|
+
{
|
|
8298
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8299
|
+
"name": "onText"
|
|
8300
|
+
},
|
|
8301
|
+
{
|
|
8302
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8303
|
+
"name": "offText"
|
|
8304
|
+
}
|
|
8305
|
+
],
|
|
8296
8306
|
"members": [
|
|
8297
8307
|
{
|
|
8298
8308
|
"kind": "field",
|
|
8299
|
-
"name": "
|
|
8309
|
+
"name": "inputChoiceGroupContext",
|
|
8300
8310
|
"type": {
|
|
8301
|
-
"text": "
|
|
8302
|
-
}
|
|
8303
|
-
"description": "Specify the text for the label",
|
|
8304
|
-
"attribute": "label"
|
|
8311
|
+
"text": "InputChoiceGroupContextProps"
|
|
8312
|
+
}
|
|
8305
8313
|
},
|
|
8306
8314
|
{
|
|
8307
8315
|
"kind": "field",
|
|
8308
|
-
"name": "
|
|
8316
|
+
"name": "onText",
|
|
8309
8317
|
"type": {
|
|
8310
|
-
"text": "
|
|
8318
|
+
"text": "string | undefined"
|
|
8311
8319
|
},
|
|
8312
|
-
"
|
|
8313
|
-
"
|
|
8320
|
+
"default": "undefined",
|
|
8321
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8322
|
+
"attribute": "onText"
|
|
8314
8323
|
},
|
|
8315
8324
|
{
|
|
8316
8325
|
"kind": "field",
|
|
8317
|
-
"name": "
|
|
8326
|
+
"name": "offText",
|
|
8318
8327
|
"type": {
|
|
8319
|
-
"text": "
|
|
8328
|
+
"text": "string | undefined"
|
|
8320
8329
|
},
|
|
8321
|
-
"
|
|
8322
|
-
"
|
|
8330
|
+
"default": "undefined",
|
|
8331
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8332
|
+
"attribute": "offText"
|
|
8323
8333
|
},
|
|
8324
8334
|
{
|
|
8325
8335
|
"kind": "field",
|
|
8326
|
-
"name": "
|
|
8336
|
+
"name": "theme",
|
|
8327
8337
|
"type": {
|
|
8328
|
-
"text": "
|
|
8338
|
+
"text": "ThemeTypes | undefined"
|
|
8329
8339
|
},
|
|
8330
|
-
"
|
|
8331
|
-
"
|
|
8340
|
+
"default": "undefined",
|
|
8341
|
+
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
8332
8342
|
},
|
|
8333
8343
|
{
|
|
8334
8344
|
"kind": "field",
|
|
8335
|
-
"name": "
|
|
8345
|
+
"name": "textPosition",
|
|
8336
8346
|
"type": {
|
|
8337
|
-
"text": "'
|
|
8347
|
+
"text": "'before' | 'after'"
|
|
8338
8348
|
},
|
|
8339
|
-
"
|
|
8340
|
-
"
|
|
8349
|
+
"default": "'after'",
|
|
8350
|
+
"description": "Specify the position of the side label",
|
|
8351
|
+
"attribute": "textPosition"
|
|
8341
8352
|
},
|
|
8342
8353
|
{
|
|
8343
8354
|
"kind": "field",
|
|
8344
|
-
"name": "
|
|
8355
|
+
"name": "readOnly",
|
|
8345
8356
|
"type": {
|
|
8346
|
-
"text": "
|
|
8357
|
+
"text": "boolean"
|
|
8347
8358
|
},
|
|
8348
|
-
"
|
|
8349
|
-
"
|
|
8359
|
+
"default": "false",
|
|
8360
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
8361
|
+
"attribute": "readOnly"
|
|
8350
8362
|
},
|
|
8351
8363
|
{
|
|
8352
8364
|
"kind": "field",
|
|
8353
|
-
"name": "
|
|
8365
|
+
"name": "disabled",
|
|
8354
8366
|
"type": {
|
|
8355
8367
|
"text": "boolean"
|
|
8356
8368
|
},
|
|
8357
8369
|
"default": "false",
|
|
8358
|
-
"description": "
|
|
8359
|
-
"attribute": "
|
|
8370
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
8371
|
+
"attribute": "disabled"
|
|
8360
8372
|
},
|
|
8361
8373
|
{
|
|
8362
8374
|
"kind": "field",
|
|
8363
|
-
"name": "
|
|
8375
|
+
"name": "checked",
|
|
8364
8376
|
"type": {
|
|
8365
|
-
"text": "
|
|
8377
|
+
"text": "boolean"
|
|
8366
8378
|
},
|
|
8367
|
-
"
|
|
8368
|
-
"attribute": "
|
|
8379
|
+
"default": "false",
|
|
8380
|
+
"attribute": "checked"
|
|
8369
8381
|
},
|
|
8370
8382
|
{
|
|
8371
8383
|
"kind": "field",
|
|
8372
|
-
"name": "
|
|
8384
|
+
"name": "value",
|
|
8373
8385
|
"type": {
|
|
8374
|
-
"text": "
|
|
8375
|
-
}
|
|
8386
|
+
"text": "string | undefined"
|
|
8387
|
+
},
|
|
8388
|
+
"description": "The value attribute for the input element",
|
|
8389
|
+
"attribute": "value"
|
|
8376
8390
|
},
|
|
8377
8391
|
{
|
|
8378
8392
|
"kind": "field",
|
|
8379
|
-
"name": "
|
|
8380
|
-
},
|
|
8381
|
-
{
|
|
8382
|
-
"kind": "method",
|
|
8383
|
-
"name": "focus"
|
|
8393
|
+
"name": "switchRef"
|
|
8384
8394
|
}
|
|
8385
8395
|
],
|
|
8386
8396
|
"attributes": [
|
|
8387
8397
|
{
|
|
8388
|
-
"name": "
|
|
8398
|
+
"name": "onText",
|
|
8389
8399
|
"type": {
|
|
8390
8400
|
"text": "string | undefined"
|
|
8391
8401
|
},
|
|
8392
|
-
"
|
|
8393
|
-
"
|
|
8394
|
-
|
|
8395
|
-
{
|
|
8396
|
-
"name": "error",
|
|
8397
|
-
"type": {
|
|
8398
|
-
"text": "boolean | undefined"
|
|
8399
|
-
},
|
|
8400
|
-
"description": "Specify error text and display error state of a RadioButton",
|
|
8401
|
-
"fieldName": "error"
|
|
8402
|
+
"default": "undefined",
|
|
8403
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8404
|
+
"fieldName": "onText"
|
|
8402
8405
|
},
|
|
8403
8406
|
{
|
|
8404
|
-
"name": "
|
|
8407
|
+
"name": "offText",
|
|
8405
8408
|
"type": {
|
|
8406
|
-
"text": "
|
|
8409
|
+
"text": "string | undefined"
|
|
8407
8410
|
},
|
|
8408
|
-
"
|
|
8409
|
-
"
|
|
8411
|
+
"default": "undefined",
|
|
8412
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8413
|
+
"fieldName": "offText"
|
|
8410
8414
|
},
|
|
8411
8415
|
{
|
|
8412
|
-
"name": "
|
|
8416
|
+
"name": "textPosition",
|
|
8413
8417
|
"type": {
|
|
8414
|
-
"text": "
|
|
8418
|
+
"text": "'before' | 'after'"
|
|
8415
8419
|
},
|
|
8416
|
-
"
|
|
8417
|
-
"
|
|
8420
|
+
"default": "'after'",
|
|
8421
|
+
"description": "Specify the position of the side label",
|
|
8422
|
+
"fieldName": "textPosition"
|
|
8418
8423
|
},
|
|
8419
8424
|
{
|
|
8420
|
-
"name": "
|
|
8425
|
+
"name": "readOnly",
|
|
8421
8426
|
"type": {
|
|
8422
|
-
"text": "
|
|
8427
|
+
"text": "boolean"
|
|
8423
8428
|
},
|
|
8424
|
-
"
|
|
8425
|
-
"
|
|
8429
|
+
"default": "false",
|
|
8430
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
8431
|
+
"fieldName": "readOnly"
|
|
8426
8432
|
},
|
|
8427
8433
|
{
|
|
8428
|
-
"name": "
|
|
8434
|
+
"name": "disabled",
|
|
8429
8435
|
"type": {
|
|
8430
|
-
"text": "
|
|
8436
|
+
"text": "boolean"
|
|
8431
8437
|
},
|
|
8432
|
-
"
|
|
8433
|
-
"
|
|
8438
|
+
"default": "false",
|
|
8439
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
8440
|
+
"fieldName": "disabled"
|
|
8434
8441
|
},
|
|
8435
8442
|
{
|
|
8436
8443
|
"name": "checked",
|
|
@@ -8438,48 +8445,47 @@
|
|
|
8438
8445
|
"text": "boolean"
|
|
8439
8446
|
},
|
|
8440
8447
|
"default": "false",
|
|
8441
|
-
"description": "The checked attribute for the input element",
|
|
8442
8448
|
"fieldName": "checked"
|
|
8443
8449
|
},
|
|
8444
8450
|
{
|
|
8445
|
-
"name": "
|
|
8451
|
+
"name": "value",
|
|
8446
8452
|
"type": {
|
|
8447
|
-
"text": "
|
|
8453
|
+
"text": "string | undefined"
|
|
8448
8454
|
},
|
|
8449
|
-
"description": "
|
|
8450
|
-
"fieldName": "
|
|
8455
|
+
"description": "The value attribute for the input element",
|
|
8456
|
+
"fieldName": "value"
|
|
8451
8457
|
}
|
|
8452
8458
|
],
|
|
8453
8459
|
"superclass": {
|
|
8454
8460
|
"name": "LitElement",
|
|
8455
8461
|
"package": "lit"
|
|
8456
8462
|
},
|
|
8457
|
-
"tagName": "bm-
|
|
8463
|
+
"tagName": "bm-switch",
|
|
8458
8464
|
"customElement": true
|
|
8459
8465
|
}
|
|
8460
8466
|
],
|
|
8461
8467
|
"exports": [
|
|
8462
8468
|
{
|
|
8463
8469
|
"kind": "js",
|
|
8464
|
-
"name": "
|
|
8470
|
+
"name": "BmSwitch",
|
|
8465
8471
|
"declaration": {
|
|
8466
|
-
"name": "
|
|
8467
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8472
|
+
"name": "BmSwitch",
|
|
8473
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
8468
8474
|
}
|
|
8469
8475
|
},
|
|
8470
8476
|
{
|
|
8471
8477
|
"kind": "custom-element-definition",
|
|
8472
|
-
"name": "bm-
|
|
8478
|
+
"name": "bm-switch",
|
|
8473
8479
|
"declaration": {
|
|
8474
|
-
"name": "
|
|
8475
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8480
|
+
"name": "BmSwitch",
|
|
8481
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
8476
8482
|
}
|
|
8477
8483
|
}
|
|
8478
8484
|
]
|
|
8479
8485
|
},
|
|
8480
8486
|
{
|
|
8481
8487
|
"kind": "javascript-module",
|
|
8482
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8488
|
+
"path": "libs/web-components/src/lib/wip/Switch/index.ts",
|
|
8483
8489
|
"declarations": [],
|
|
8484
8490
|
"exports": [
|
|
8485
8491
|
{
|
|
@@ -8487,7 +8493,7 @@
|
|
|
8487
8493
|
"name": "*",
|
|
8488
8494
|
"declaration": {
|
|
8489
8495
|
"name": "*",
|
|
8490
|
-
"package": "./
|
|
8496
|
+
"package": "./Switch"
|
|
8491
8497
|
}
|
|
8492
8498
|
},
|
|
8493
8499
|
{
|
|
@@ -8495,104 +8501,64 @@
|
|
|
8495
8501
|
"name": "*",
|
|
8496
8502
|
"declaration": {
|
|
8497
8503
|
"name": "*",
|
|
8498
|
-
"package": "./
|
|
8504
|
+
"package": "./SwitchGroup/SwitchGroup"
|
|
8499
8505
|
}
|
|
8500
8506
|
}
|
|
8501
8507
|
]
|
|
8502
8508
|
},
|
|
8503
8509
|
{
|
|
8504
8510
|
"kind": "javascript-module",
|
|
8505
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8511
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
|
|
8506
8512
|
"declarations": [
|
|
8507
8513
|
{
|
|
8508
8514
|
"kind": "class",
|
|
8509
|
-
"description": "`bm-
|
|
8510
|
-
"name": "
|
|
8511
|
-
"slots": [
|
|
8512
|
-
{
|
|
8513
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8514
|
-
"name": "onText"
|
|
8515
|
-
},
|
|
8516
|
-
{
|
|
8517
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8518
|
-
"name": "offText"
|
|
8519
|
-
}
|
|
8520
|
-
],
|
|
8515
|
+
"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",
|
|
8516
|
+
"name": "BmRadioButton",
|
|
8521
8517
|
"members": [
|
|
8522
8518
|
{
|
|
8523
8519
|
"kind": "field",
|
|
8524
|
-
"name": "
|
|
8525
|
-
"type": {
|
|
8526
|
-
"text": "InputChoiceGroupContextProps"
|
|
8527
|
-
}
|
|
8528
|
-
},
|
|
8529
|
-
{
|
|
8530
|
-
"kind": "field",
|
|
8531
|
-
"name": "onText",
|
|
8532
|
-
"type": {
|
|
8533
|
-
"text": "string | undefined"
|
|
8534
|
-
},
|
|
8535
|
-
"default": "undefined",
|
|
8536
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8537
|
-
"attribute": "onText"
|
|
8538
|
-
},
|
|
8539
|
-
{
|
|
8540
|
-
"kind": "field",
|
|
8541
|
-
"name": "offText",
|
|
8520
|
+
"name": "label",
|
|
8542
8521
|
"type": {
|
|
8543
8522
|
"text": "string | undefined"
|
|
8544
8523
|
},
|
|
8545
|
-
"
|
|
8546
|
-
"
|
|
8547
|
-
"attribute": "offText"
|
|
8548
|
-
},
|
|
8549
|
-
{
|
|
8550
|
-
"kind": "field",
|
|
8551
|
-
"name": "theme",
|
|
8552
|
-
"type": {
|
|
8553
|
-
"text": "ThemeTypes | undefined"
|
|
8554
|
-
},
|
|
8555
|
-
"default": "undefined",
|
|
8556
|
-
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
8524
|
+
"description": "Specify the text for the label",
|
|
8525
|
+
"attribute": "label"
|
|
8557
8526
|
},
|
|
8558
8527
|
{
|
|
8559
8528
|
"kind": "field",
|
|
8560
|
-
"name": "
|
|
8529
|
+
"name": "error",
|
|
8561
8530
|
"type": {
|
|
8562
|
-
"text": "
|
|
8531
|
+
"text": "boolean | undefined"
|
|
8563
8532
|
},
|
|
8564
|
-
"
|
|
8565
|
-
"
|
|
8566
|
-
"attribute": "textPosition"
|
|
8533
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8534
|
+
"attribute": "error"
|
|
8567
8535
|
},
|
|
8568
8536
|
{
|
|
8569
8537
|
"kind": "field",
|
|
8570
8538
|
"name": "readOnly",
|
|
8571
8539
|
"type": {
|
|
8572
|
-
"text": "boolean"
|
|
8540
|
+
"text": "boolean | undefined"
|
|
8573
8541
|
},
|
|
8574
|
-
"
|
|
8575
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
8542
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8576
8543
|
"attribute": "readOnly"
|
|
8577
8544
|
},
|
|
8578
8545
|
{
|
|
8579
8546
|
"kind": "field",
|
|
8580
8547
|
"name": "disabled",
|
|
8581
8548
|
"type": {
|
|
8582
|
-
"text": "boolean"
|
|
8549
|
+
"text": "boolean | undefined"
|
|
8583
8550
|
},
|
|
8584
|
-
"
|
|
8585
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
8551
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8586
8552
|
"attribute": "disabled"
|
|
8587
8553
|
},
|
|
8588
8554
|
{
|
|
8589
8555
|
"kind": "field",
|
|
8590
|
-
"name": "
|
|
8556
|
+
"name": "theme",
|
|
8591
8557
|
"type": {
|
|
8592
|
-
"text": "
|
|
8558
|
+
"text": "'light' | 'dark' | undefined"
|
|
8593
8559
|
},
|
|
8594
|
-
"
|
|
8595
|
-
"attribute": "
|
|
8560
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8561
|
+
"attribute": "theme"
|
|
8596
8562
|
},
|
|
8597
8563
|
{
|
|
8598
8564
|
"kind": "field",
|
|
@@ -8605,62 +8571,79 @@
|
|
|
8605
8571
|
},
|
|
8606
8572
|
{
|
|
8607
8573
|
"kind": "field",
|
|
8608
|
-
"name": "
|
|
8609
|
-
|
|
8610
|
-
|
|
8611
|
-
|
|
8574
|
+
"name": "checked",
|
|
8575
|
+
"type": {
|
|
8576
|
+
"text": "boolean"
|
|
8577
|
+
},
|
|
8578
|
+
"default": "false",
|
|
8579
|
+
"description": "The checked attribute for the input element",
|
|
8580
|
+
"attribute": "checked"
|
|
8581
|
+
},
|
|
8612
8582
|
{
|
|
8613
|
-
"
|
|
8583
|
+
"kind": "field",
|
|
8584
|
+
"name": "onKeyDown",
|
|
8614
8585
|
"type": {
|
|
8615
|
-
"text": "
|
|
8586
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8616
8587
|
},
|
|
8617
|
-
"
|
|
8618
|
-
"
|
|
8619
|
-
"fieldName": "onText"
|
|
8588
|
+
"description": "A user-defined function to handle keydown events",
|
|
8589
|
+
"attribute": "onKeyDown"
|
|
8620
8590
|
},
|
|
8621
8591
|
{
|
|
8622
|
-
"
|
|
8592
|
+
"kind": "field",
|
|
8593
|
+
"name": "inputChoiceGroupContext",
|
|
8594
|
+
"type": {
|
|
8595
|
+
"text": "InputChoiceGroupContextProps"
|
|
8596
|
+
}
|
|
8597
|
+
},
|
|
8598
|
+
{
|
|
8599
|
+
"kind": "field",
|
|
8600
|
+
"name": "radioButtonRef"
|
|
8601
|
+
},
|
|
8602
|
+
{
|
|
8603
|
+
"kind": "method",
|
|
8604
|
+
"name": "focus"
|
|
8605
|
+
}
|
|
8606
|
+
],
|
|
8607
|
+
"attributes": [
|
|
8608
|
+
{
|
|
8609
|
+
"name": "label",
|
|
8623
8610
|
"type": {
|
|
8624
8611
|
"text": "string | undefined"
|
|
8625
8612
|
},
|
|
8626
|
-
"
|
|
8627
|
-
"
|
|
8628
|
-
"fieldName": "offText"
|
|
8613
|
+
"description": "Specify the text for the label",
|
|
8614
|
+
"fieldName": "label"
|
|
8629
8615
|
},
|
|
8630
8616
|
{
|
|
8631
|
-
"name": "
|
|
8617
|
+
"name": "error",
|
|
8632
8618
|
"type": {
|
|
8633
|
-
"text": "
|
|
8619
|
+
"text": "boolean | undefined"
|
|
8634
8620
|
},
|
|
8635
|
-
"
|
|
8636
|
-
"
|
|
8637
|
-
"fieldName": "textPosition"
|
|
8621
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8622
|
+
"fieldName": "error"
|
|
8638
8623
|
},
|
|
8639
8624
|
{
|
|
8640
8625
|
"name": "readOnly",
|
|
8641
8626
|
"type": {
|
|
8642
|
-
"text": "boolean"
|
|
8627
|
+
"text": "boolean | undefined"
|
|
8643
8628
|
},
|
|
8644
|
-
"
|
|
8645
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
8629
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8646
8630
|
"fieldName": "readOnly"
|
|
8647
8631
|
},
|
|
8648
8632
|
{
|
|
8649
8633
|
"name": "disabled",
|
|
8650
8634
|
"type": {
|
|
8651
|
-
"text": "boolean"
|
|
8635
|
+
"text": "boolean | undefined"
|
|
8652
8636
|
},
|
|
8653
|
-
"
|
|
8654
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
8637
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8655
8638
|
"fieldName": "disabled"
|
|
8656
8639
|
},
|
|
8657
8640
|
{
|
|
8658
|
-
"name": "
|
|
8641
|
+
"name": "theme",
|
|
8659
8642
|
"type": {
|
|
8660
|
-
"text": "
|
|
8643
|
+
"text": "'light' | 'dark' | undefined"
|
|
8661
8644
|
},
|
|
8662
|
-
"
|
|
8663
|
-
"fieldName": "
|
|
8645
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8646
|
+
"fieldName": "theme"
|
|
8664
8647
|
},
|
|
8665
8648
|
{
|
|
8666
8649
|
"name": "value",
|
|
@@ -8669,38 +8652,55 @@
|
|
|
8669
8652
|
},
|
|
8670
8653
|
"description": "The value attribute for the input element",
|
|
8671
8654
|
"fieldName": "value"
|
|
8655
|
+
},
|
|
8656
|
+
{
|
|
8657
|
+
"name": "checked",
|
|
8658
|
+
"type": {
|
|
8659
|
+
"text": "boolean"
|
|
8660
|
+
},
|
|
8661
|
+
"default": "false",
|
|
8662
|
+
"description": "The checked attribute for the input element",
|
|
8663
|
+
"fieldName": "checked"
|
|
8664
|
+
},
|
|
8665
|
+
{
|
|
8666
|
+
"name": "onKeyDown",
|
|
8667
|
+
"type": {
|
|
8668
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8669
|
+
},
|
|
8670
|
+
"description": "A user-defined function to handle keydown events",
|
|
8671
|
+
"fieldName": "onKeyDown"
|
|
8672
8672
|
}
|
|
8673
8673
|
],
|
|
8674
8674
|
"superclass": {
|
|
8675
8675
|
"name": "LitElement",
|
|
8676
8676
|
"package": "lit"
|
|
8677
8677
|
},
|
|
8678
|
-
"tagName": "bm-
|
|
8678
|
+
"tagName": "bm-radio-button",
|
|
8679
8679
|
"customElement": true
|
|
8680
8680
|
}
|
|
8681
8681
|
],
|
|
8682
8682
|
"exports": [
|
|
8683
8683
|
{
|
|
8684
8684
|
"kind": "js",
|
|
8685
|
-
"name": "
|
|
8685
|
+
"name": "BmRadioButton",
|
|
8686
8686
|
"declaration": {
|
|
8687
|
-
"name": "
|
|
8688
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8687
|
+
"name": "BmRadioButton",
|
|
8688
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8689
8689
|
}
|
|
8690
8690
|
},
|
|
8691
8691
|
{
|
|
8692
8692
|
"kind": "custom-element-definition",
|
|
8693
|
-
"name": "bm-
|
|
8693
|
+
"name": "bm-radio-button",
|
|
8694
8694
|
"declaration": {
|
|
8695
|
-
"name": "
|
|
8696
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8695
|
+
"name": "BmRadioButton",
|
|
8696
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8697
8697
|
}
|
|
8698
8698
|
}
|
|
8699
8699
|
]
|
|
8700
8700
|
},
|
|
8701
8701
|
{
|
|
8702
8702
|
"kind": "javascript-module",
|
|
8703
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8703
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
8704
8704
|
"declarations": [],
|
|
8705
8705
|
"exports": [
|
|
8706
8706
|
{
|
|
@@ -8708,7 +8708,7 @@
|
|
|
8708
8708
|
"name": "*",
|
|
8709
8709
|
"declaration": {
|
|
8710
8710
|
"name": "*",
|
|
8711
|
-
"package": "./
|
|
8711
|
+
"package": "./RadioButton"
|
|
8712
8712
|
}
|
|
8713
8713
|
},
|
|
8714
8714
|
{
|
|
@@ -8716,7 +8716,7 @@
|
|
|
8716
8716
|
"name": "*",
|
|
8717
8717
|
"declaration": {
|
|
8718
8718
|
"name": "*",
|
|
8719
|
-
"package": "./
|
|
8719
|
+
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
8720
8720
|
}
|
|
8721
8721
|
}
|
|
8722
8722
|
]
|
|
@@ -9743,207 +9743,28 @@
|
|
|
9743
9743
|
}
|
|
9744
9744
|
},
|
|
9745
9745
|
{
|
|
9746
|
-
"description": "Add helper text to the InputChoiceGroup",
|
|
9747
|
-
"name": "helperText",
|
|
9748
|
-
"inheritedFrom": {
|
|
9749
|
-
"name": "InputChoiceGroup",
|
|
9750
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9751
|
-
}
|
|
9752
|
-
}
|
|
9753
|
-
],
|
|
9754
|
-
"attributes": [
|
|
9755
|
-
{
|
|
9756
|
-
"name": "theme",
|
|
9757
|
-
"type": {
|
|
9758
|
-
"text": "'light' | 'dark' | undefined"
|
|
9759
|
-
},
|
|
9760
|
-
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
9761
|
-
"fieldName": "theme",
|
|
9762
|
-
"inheritedFrom": {
|
|
9763
|
-
"name": "InputChoiceGroup",
|
|
9764
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9765
|
-
}
|
|
9766
|
-
},
|
|
9767
|
-
{
|
|
9768
|
-
"name": "layout",
|
|
9769
|
-
"type": {
|
|
9770
|
-
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
9771
|
-
},
|
|
9772
|
-
"default": "'vertical'",
|
|
9773
|
-
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
9774
|
-
"deprecated": "use `orientation` and `fluid` instead",
|
|
9775
|
-
"fieldName": "layout",
|
|
9776
|
-
"inheritedFrom": {
|
|
9777
|
-
"name": "InputChoiceGroup",
|
|
9778
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9779
|
-
}
|
|
9780
|
-
},
|
|
9781
|
-
{
|
|
9782
|
-
"name": "orientation",
|
|
9783
|
-
"type": {
|
|
9784
|
-
"text": "'horizontal' | 'vertical'"
|
|
9785
|
-
},
|
|
9786
|
-
"default": "'vertical'",
|
|
9787
|
-
"description": "Specify InputChoiceGroup orientation",
|
|
9788
|
-
"fieldName": "orientation",
|
|
9789
|
-
"inheritedFrom": {
|
|
9790
|
-
"name": "InputChoiceGroup",
|
|
9791
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9792
|
-
}
|
|
9793
|
-
},
|
|
9794
|
-
{
|
|
9795
|
-
"name": "fluid",
|
|
9796
|
-
"type": {
|
|
9797
|
-
"text": "boolean"
|
|
9798
|
-
},
|
|
9799
|
-
"default": "false",
|
|
9800
|
-
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
9801
|
-
"fieldName": "fluid",
|
|
9802
|
-
"inheritedFrom": {
|
|
9803
|
-
"name": "InputChoiceGroup",
|
|
9804
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9805
|
-
}
|
|
9806
|
-
},
|
|
9807
|
-
{
|
|
9808
|
-
"name": "required",
|
|
9809
|
-
"type": {
|
|
9810
|
-
"text": "boolean"
|
|
9811
|
-
},
|
|
9812
|
-
"default": "false",
|
|
9813
|
-
"description": "Specify if InputChoiceGroup is a required input",
|
|
9814
|
-
"fieldName": "required",
|
|
9815
|
-
"inheritedFrom": {
|
|
9816
|
-
"name": "InputChoiceGroup",
|
|
9817
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9818
|
-
}
|
|
9819
|
-
},
|
|
9820
|
-
{
|
|
9821
|
-
"name": "hideRequiredMarker",
|
|
9822
|
-
"type": {
|
|
9823
|
-
"text": "boolean"
|
|
9824
|
-
},
|
|
9825
|
-
"default": "false",
|
|
9826
|
-
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
9827
|
-
"fieldName": "hideRequiredMarker",
|
|
9828
|
-
"inheritedFrom": {
|
|
9829
|
-
"name": "InputChoiceGroup",
|
|
9830
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9831
|
-
}
|
|
9832
|
-
},
|
|
9833
|
-
{
|
|
9834
|
-
"name": "error",
|
|
9835
|
-
"type": {
|
|
9836
|
-
"text": "string | undefined"
|
|
9837
|
-
},
|
|
9838
|
-
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
9839
|
-
"fieldName": "error",
|
|
9840
|
-
"inheritedFrom": {
|
|
9841
|
-
"name": "InputChoiceGroup",
|
|
9842
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9843
|
-
}
|
|
9844
|
-
},
|
|
9845
|
-
{
|
|
9846
|
-
"name": "readOnly",
|
|
9847
|
-
"type": {
|
|
9848
|
-
"text": "boolean"
|
|
9849
|
-
},
|
|
9850
|
-
"default": "false",
|
|
9851
|
-
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
9852
|
-
"fieldName": "readOnly",
|
|
9853
|
-
"inheritedFrom": {
|
|
9854
|
-
"name": "InputChoiceGroup",
|
|
9855
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9856
|
-
}
|
|
9857
|
-
},
|
|
9858
|
-
{
|
|
9859
|
-
"name": "disabled",
|
|
9860
|
-
"type": {
|
|
9861
|
-
"text": "boolean"
|
|
9862
|
-
},
|
|
9863
|
-
"default": "false",
|
|
9864
|
-
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
9865
|
-
"fieldName": "disabled",
|
|
9866
|
-
"inheritedFrom": {
|
|
9867
|
-
"name": "InputChoiceGroup",
|
|
9868
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9869
|
-
}
|
|
9870
|
-
},
|
|
9871
|
-
{
|
|
9872
|
-
"name": "id",
|
|
9873
|
-
"type": {
|
|
9874
|
-
"text": "string"
|
|
9875
|
-
},
|
|
9876
|
-
"default": "''",
|
|
9877
|
-
"fieldName": "id",
|
|
9878
|
-
"inheritedFrom": {
|
|
9879
|
-
"name": "FormField",
|
|
9880
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9881
|
-
}
|
|
9882
|
-
},
|
|
9883
|
-
{
|
|
9884
|
-
"name": "name",
|
|
9885
|
-
"type": {
|
|
9886
|
-
"text": "string"
|
|
9887
|
-
},
|
|
9888
|
-
"default": "''",
|
|
9889
|
-
"fieldName": "name",
|
|
9890
|
-
"inheritedFrom": {
|
|
9891
|
-
"name": "FormField",
|
|
9892
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9893
|
-
}
|
|
9894
|
-
},
|
|
9895
|
-
{
|
|
9896
|
-
"name": "value",
|
|
9897
|
-
"type": {
|
|
9898
|
-
"text": "string"
|
|
9899
|
-
},
|
|
9900
|
-
"default": "''",
|
|
9901
|
-
"fieldName": "value",
|
|
9902
|
-
"inheritedFrom": {
|
|
9903
|
-
"name": "FormField",
|
|
9904
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9905
|
-
}
|
|
9906
|
-
},
|
|
9907
|
-
{
|
|
9908
|
-
"name": "validationRules",
|
|
9909
|
-
"type": {
|
|
9910
|
-
"text": "Array<FormValidator>"
|
|
9911
|
-
},
|
|
9912
|
-
"default": "[]",
|
|
9913
|
-
"fieldName": "validationRules",
|
|
9914
|
-
"inheritedFrom": {
|
|
9915
|
-
"name": "FormField",
|
|
9916
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9917
|
-
}
|
|
9918
|
-
},
|
|
9919
|
-
{
|
|
9920
|
-
"name": "input-aria-label",
|
|
9921
|
-
"type": {
|
|
9922
|
-
"text": "string | undefined"
|
|
9923
|
-
},
|
|
9924
|
-
"fieldName": "inputAriaLabel",
|
|
9746
|
+
"description": "Add helper text to the InputChoiceGroup",
|
|
9747
|
+
"name": "helperText",
|
|
9925
9748
|
"inheritedFrom": {
|
|
9926
|
-
"name": "
|
|
9927
|
-
"module": "libs/web-components/src/lib/
|
|
9749
|
+
"name": "InputChoiceGroup",
|
|
9750
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9928
9751
|
}
|
|
9929
9752
|
}
|
|
9930
9753
|
],
|
|
9931
|
-
"
|
|
9754
|
+
"attributes": [
|
|
9932
9755
|
{
|
|
9933
|
-
"kind": "field",
|
|
9934
9756
|
"name": "theme",
|
|
9935
9757
|
"type": {
|
|
9936
9758
|
"text": "'light' | 'dark' | undefined"
|
|
9937
9759
|
},
|
|
9938
9760
|
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
9939
|
-
"
|
|
9761
|
+
"fieldName": "theme",
|
|
9940
9762
|
"inheritedFrom": {
|
|
9941
9763
|
"name": "InputChoiceGroup",
|
|
9942
9764
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9943
9765
|
}
|
|
9944
9766
|
},
|
|
9945
9767
|
{
|
|
9946
|
-
"kind": "field",
|
|
9947
9768
|
"name": "layout",
|
|
9948
9769
|
"type": {
|
|
9949
9770
|
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
@@ -9951,320 +9772,162 @@
|
|
|
9951
9772
|
"default": "'vertical'",
|
|
9952
9773
|
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
9953
9774
|
"deprecated": "use `orientation` and `fluid` instead",
|
|
9954
|
-
"
|
|
9775
|
+
"fieldName": "layout",
|
|
9955
9776
|
"inheritedFrom": {
|
|
9956
9777
|
"name": "InputChoiceGroup",
|
|
9957
9778
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9958
9779
|
}
|
|
9959
9780
|
},
|
|
9960
9781
|
{
|
|
9961
|
-
"kind": "field",
|
|
9962
9782
|
"name": "orientation",
|
|
9963
9783
|
"type": {
|
|
9964
9784
|
"text": "'horizontal' | 'vertical'"
|
|
9965
9785
|
},
|
|
9966
9786
|
"default": "'vertical'",
|
|
9967
9787
|
"description": "Specify InputChoiceGroup orientation",
|
|
9968
|
-
"
|
|
9788
|
+
"fieldName": "orientation",
|
|
9969
9789
|
"inheritedFrom": {
|
|
9970
9790
|
"name": "InputChoiceGroup",
|
|
9971
9791
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9972
9792
|
}
|
|
9973
9793
|
},
|
|
9974
9794
|
{
|
|
9975
|
-
"kind": "field",
|
|
9976
9795
|
"name": "fluid",
|
|
9977
9796
|
"type": {
|
|
9978
9797
|
"text": "boolean"
|
|
9979
9798
|
},
|
|
9980
9799
|
"default": "false",
|
|
9981
9800
|
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
9982
|
-
"
|
|
9801
|
+
"fieldName": "fluid",
|
|
9983
9802
|
"inheritedFrom": {
|
|
9984
9803
|
"name": "InputChoiceGroup",
|
|
9985
9804
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
9986
9805
|
}
|
|
9987
9806
|
},
|
|
9988
9807
|
{
|
|
9989
|
-
"kind": "field",
|
|
9990
9808
|
"name": "required",
|
|
9991
9809
|
"type": {
|
|
9992
9810
|
"text": "boolean"
|
|
9993
9811
|
},
|
|
9994
9812
|
"default": "false",
|
|
9995
9813
|
"description": "Specify if InputChoiceGroup is a required input",
|
|
9996
|
-
"
|
|
9814
|
+
"fieldName": "required",
|
|
9997
9815
|
"inheritedFrom": {
|
|
9998
9816
|
"name": "InputChoiceGroup",
|
|
9999
9817
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10000
9818
|
}
|
|
10001
9819
|
},
|
|
10002
9820
|
{
|
|
10003
|
-
"kind": "field",
|
|
10004
9821
|
"name": "hideRequiredMarker",
|
|
10005
9822
|
"type": {
|
|
10006
9823
|
"text": "boolean"
|
|
10007
9824
|
},
|
|
10008
9825
|
"default": "false",
|
|
10009
9826
|
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
10010
|
-
"
|
|
9827
|
+
"fieldName": "hideRequiredMarker",
|
|
10011
9828
|
"inheritedFrom": {
|
|
10012
9829
|
"name": "InputChoiceGroup",
|
|
10013
9830
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10014
9831
|
}
|
|
10015
9832
|
},
|
|
10016
9833
|
{
|
|
10017
|
-
"kind": "field",
|
|
10018
9834
|
"name": "error",
|
|
10019
9835
|
"type": {
|
|
10020
9836
|
"text": "string | undefined"
|
|
10021
9837
|
},
|
|
10022
9838
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
10023
|
-
"
|
|
9839
|
+
"fieldName": "error",
|
|
10024
9840
|
"inheritedFrom": {
|
|
10025
9841
|
"name": "InputChoiceGroup",
|
|
10026
9842
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10027
9843
|
}
|
|
10028
9844
|
},
|
|
10029
9845
|
{
|
|
10030
|
-
"kind": "field",
|
|
10031
9846
|
"name": "readOnly",
|
|
10032
9847
|
"type": {
|
|
10033
9848
|
"text": "boolean"
|
|
10034
9849
|
},
|
|
10035
9850
|
"default": "false",
|
|
10036
9851
|
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
10037
|
-
"
|
|
9852
|
+
"fieldName": "readOnly",
|
|
10038
9853
|
"inheritedFrom": {
|
|
10039
9854
|
"name": "InputChoiceGroup",
|
|
10040
9855
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10041
9856
|
}
|
|
10042
9857
|
},
|
|
10043
9858
|
{
|
|
10044
|
-
"kind": "field",
|
|
10045
9859
|
"name": "disabled",
|
|
10046
9860
|
"type": {
|
|
10047
9861
|
"text": "boolean"
|
|
10048
9862
|
},
|
|
10049
9863
|
"default": "false",
|
|
10050
9864
|
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
10051
|
-
"
|
|
10052
|
-
"inheritedFrom": {
|
|
10053
|
-
"name": "InputChoiceGroup",
|
|
10054
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10055
|
-
}
|
|
10056
|
-
},
|
|
10057
|
-
{
|
|
10058
|
-
"kind": "field",
|
|
10059
|
-
"name": "radioButtons",
|
|
10060
|
-
"type": {
|
|
10061
|
-
"text": "NodeListOf<Element>"
|
|
10062
|
-
},
|
|
10063
|
-
"inheritedFrom": {
|
|
10064
|
-
"name": "InputChoiceGroup",
|
|
10065
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10066
|
-
}
|
|
10067
|
-
},
|
|
10068
|
-
{
|
|
10069
|
-
"kind": "field",
|
|
10070
|
-
"name": "checkboxes",
|
|
10071
|
-
"type": {
|
|
10072
|
-
"text": "NodeListOf<Element>"
|
|
10073
|
-
},
|
|
10074
|
-
"inheritedFrom": {
|
|
10075
|
-
"name": "InputChoiceGroup",
|
|
10076
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10077
|
-
}
|
|
10078
|
-
},
|
|
10079
|
-
{
|
|
10080
|
-
"kind": "field",
|
|
10081
|
-
"name": "switches",
|
|
10082
|
-
"type": {
|
|
10083
|
-
"text": "NodeListOf<Element>"
|
|
10084
|
-
},
|
|
10085
|
-
"inheritedFrom": {
|
|
10086
|
-
"name": "InputChoiceGroup",
|
|
10087
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10088
|
-
}
|
|
10089
|
-
},
|
|
10090
|
-
{
|
|
10091
|
-
"kind": "field",
|
|
10092
|
-
"name": "inputGroupContextValue",
|
|
10093
|
-
"type": {
|
|
10094
|
-
"text": "InputChoiceGroupContextProps"
|
|
10095
|
-
},
|
|
10096
|
-
"privacy": "public",
|
|
10097
|
-
"default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
|
|
9865
|
+
"fieldName": "disabled",
|
|
10098
9866
|
"inheritedFrom": {
|
|
10099
9867
|
"name": "InputChoiceGroup",
|
|
10100
9868
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10101
9869
|
}
|
|
10102
9870
|
},
|
|
10103
9871
|
{
|
|
10104
|
-
"kind": "field",
|
|
10105
|
-
"name": "formAssociated",
|
|
10106
|
-
"type": {
|
|
10107
|
-
"text": "boolean"
|
|
10108
|
-
},
|
|
10109
|
-
"static": true,
|
|
10110
|
-
"default": "true",
|
|
10111
|
-
"inheritedFrom": {
|
|
10112
|
-
"name": "FormField",
|
|
10113
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10114
|
-
}
|
|
10115
|
-
},
|
|
10116
|
-
{
|
|
10117
|
-
"kind": "field",
|
|
10118
9872
|
"name": "id",
|
|
10119
9873
|
"type": {
|
|
10120
9874
|
"text": "string"
|
|
10121
9875
|
},
|
|
10122
9876
|
"default": "''",
|
|
10123
|
-
"
|
|
9877
|
+
"fieldName": "id",
|
|
10124
9878
|
"inheritedFrom": {
|
|
10125
9879
|
"name": "FormField",
|
|
10126
9880
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10127
9881
|
}
|
|
10128
9882
|
},
|
|
10129
9883
|
{
|
|
10130
|
-
"kind": "field",
|
|
10131
9884
|
"name": "name",
|
|
10132
9885
|
"type": {
|
|
10133
9886
|
"text": "string"
|
|
10134
9887
|
},
|
|
10135
9888
|
"default": "''",
|
|
10136
|
-
"
|
|
9889
|
+
"fieldName": "name",
|
|
10137
9890
|
"inheritedFrom": {
|
|
10138
9891
|
"name": "FormField",
|
|
10139
9892
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10140
9893
|
}
|
|
10141
9894
|
},
|
|
10142
9895
|
{
|
|
10143
|
-
"kind": "field",
|
|
10144
9896
|
"name": "value",
|
|
10145
9897
|
"type": {
|
|
10146
9898
|
"text": "string"
|
|
10147
9899
|
},
|
|
10148
9900
|
"default": "''",
|
|
10149
|
-
"
|
|
9901
|
+
"fieldName": "value",
|
|
10150
9902
|
"inheritedFrom": {
|
|
10151
9903
|
"name": "FormField",
|
|
10152
9904
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10153
9905
|
}
|
|
10154
9906
|
},
|
|
10155
9907
|
{
|
|
10156
|
-
"kind": "field",
|
|
10157
9908
|
"name": "validationRules",
|
|
10158
9909
|
"type": {
|
|
10159
9910
|
"text": "Array<FormValidator>"
|
|
10160
9911
|
},
|
|
10161
9912
|
"default": "[]",
|
|
10162
|
-
"
|
|
9913
|
+
"fieldName": "validationRules",
|
|
10163
9914
|
"inheritedFrom": {
|
|
10164
9915
|
"name": "FormField",
|
|
10165
9916
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10166
9917
|
}
|
|
10167
9918
|
},
|
|
10168
9919
|
{
|
|
10169
|
-
"
|
|
10170
|
-
"name": "inputAriaLabel",
|
|
9920
|
+
"name": "input-aria-label",
|
|
10171
9921
|
"type": {
|
|
10172
9922
|
"text": "string | undefined"
|
|
10173
9923
|
},
|
|
10174
|
-
"
|
|
10175
|
-
"inheritedFrom": {
|
|
10176
|
-
"name": "FormField",
|
|
10177
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10178
|
-
}
|
|
10179
|
-
},
|
|
10180
|
-
{
|
|
10181
|
-
"kind": "field",
|
|
10182
|
-
"name": "formContext",
|
|
10183
|
-
"type": {
|
|
10184
|
-
"text": "BmFormContext"
|
|
10185
|
-
},
|
|
10186
|
-
"inheritedFrom": {
|
|
10187
|
-
"name": "FormField",
|
|
10188
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10189
|
-
}
|
|
10190
|
-
},
|
|
10191
|
-
{
|
|
10192
|
-
"kind": "method",
|
|
10193
|
-
"name": "formAssociatedCallback",
|
|
10194
|
-
"return": {
|
|
10195
|
-
"type": {
|
|
10196
|
-
"text": "void"
|
|
10197
|
-
}
|
|
10198
|
-
},
|
|
10199
|
-
"inheritedFrom": {
|
|
10200
|
-
"name": "FormField",
|
|
10201
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10202
|
-
}
|
|
10203
|
-
},
|
|
10204
|
-
{
|
|
10205
|
-
"kind": "method",
|
|
10206
|
-
"name": "formResetCallback",
|
|
10207
|
-
"return": {
|
|
10208
|
-
"type": {
|
|
10209
|
-
"text": "void"
|
|
10210
|
-
}
|
|
10211
|
-
},
|
|
10212
|
-
"inheritedFrom": {
|
|
10213
|
-
"name": "FormField",
|
|
10214
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10215
|
-
}
|
|
10216
|
-
},
|
|
10217
|
-
{
|
|
10218
|
-
"kind": "method",
|
|
10219
|
-
"name": "finalizeAssociatedCallback",
|
|
10220
|
-
"return": {
|
|
10221
|
-
"type": {
|
|
10222
|
-
"text": "FinalizeAssociatedResult"
|
|
10223
|
-
}
|
|
10224
|
-
},
|
|
10225
|
-
"parameters": [
|
|
10226
|
-
{
|
|
10227
|
-
"name": "ctxValue",
|
|
10228
|
-
"type": {
|
|
10229
|
-
"text": "string"
|
|
10230
|
-
}
|
|
10231
|
-
}
|
|
10232
|
-
],
|
|
9924
|
+
"fieldName": "inputAriaLabel",
|
|
10233
9925
|
"inheritedFrom": {
|
|
10234
|
-
"name": "FormField",
|
|
10235
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10236
|
-
}
|
|
10237
|
-
}
|
|
10238
|
-
]
|
|
10239
|
-
}
|
|
10240
|
-
],
|
|
10241
|
-
"exports": [
|
|
10242
|
-
{
|
|
10243
|
-
"kind": "js",
|
|
10244
|
-
"name": "BmCheckboxGroup",
|
|
10245
|
-
"declaration": {
|
|
10246
|
-
"name": "BmCheckboxGroup",
|
|
10247
|
-
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10248
|
-
}
|
|
10249
|
-
},
|
|
10250
|
-
{
|
|
10251
|
-
"kind": "custom-element-definition",
|
|
10252
|
-
"name": "bm-checkbox-group",
|
|
10253
|
-
"declaration": {
|
|
10254
|
-
"name": "BmCheckboxGroup",
|
|
10255
|
-
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10256
|
-
}
|
|
10257
|
-
}
|
|
10258
|
-
]
|
|
10259
|
-
},
|
|
10260
|
-
{
|
|
10261
|
-
"kind": "javascript-module",
|
|
10262
|
-
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
|
|
10263
|
-
"declarations": [
|
|
10264
|
-
{
|
|
10265
|
-
"kind": "class",
|
|
10266
|
-
"description": "",
|
|
10267
|
-
"name": "BmRadioButtonGroup",
|
|
9926
|
+
"name": "FormField",
|
|
9927
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9928
|
+
}
|
|
9929
|
+
}
|
|
9930
|
+
],
|
|
10268
9931
|
"members": [
|
|
10269
9932
|
{
|
|
10270
9933
|
"kind": "field",
|
|
@@ -10572,16 +10235,39 @@
|
|
|
10572
10235
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10573
10236
|
}
|
|
10574
10237
|
}
|
|
10575
|
-
]
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10579
|
-
|
|
10580
|
-
"
|
|
10581
|
-
"
|
|
10238
|
+
]
|
|
10239
|
+
}
|
|
10240
|
+
],
|
|
10241
|
+
"exports": [
|
|
10242
|
+
{
|
|
10243
|
+
"kind": "js",
|
|
10244
|
+
"name": "BmCheckboxGroup",
|
|
10245
|
+
"declaration": {
|
|
10246
|
+
"name": "BmCheckboxGroup",
|
|
10247
|
+
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10248
|
+
}
|
|
10249
|
+
},
|
|
10250
|
+
{
|
|
10251
|
+
"kind": "custom-element-definition",
|
|
10252
|
+
"name": "bm-checkbox-group",
|
|
10253
|
+
"declaration": {
|
|
10254
|
+
"name": "BmCheckboxGroup",
|
|
10255
|
+
"module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
|
|
10256
|
+
}
|
|
10257
|
+
}
|
|
10258
|
+
]
|
|
10259
|
+
},
|
|
10260
|
+
{
|
|
10261
|
+
"kind": "javascript-module",
|
|
10262
|
+
"path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
|
|
10263
|
+
"declarations": [
|
|
10264
|
+
{
|
|
10265
|
+
"kind": "class",
|
|
10266
|
+
"description": "`bm-switch-group`",
|
|
10267
|
+
"name": "BmSwitchGroup",
|
|
10582
10268
|
"slots": [
|
|
10583
10269
|
{
|
|
10584
|
-
"description": "
|
|
10270
|
+
"description": "Slot for the label of the SwitchGroup",
|
|
10585
10271
|
"name": "label",
|
|
10586
10272
|
"inheritedFrom": {
|
|
10587
10273
|
"name": "InputChoiceGroup",
|
|
@@ -10589,7 +10275,7 @@
|
|
|
10589
10275
|
}
|
|
10590
10276
|
},
|
|
10591
10277
|
{
|
|
10592
|
-
"description": "
|
|
10278
|
+
"description": "Slot for the helper text of the SwitchGroup",
|
|
10593
10279
|
"name": "helperText",
|
|
10594
10280
|
"inheritedFrom": {
|
|
10595
10281
|
"name": "InputChoiceGroup",
|
|
@@ -10597,6 +10283,12 @@
|
|
|
10597
10283
|
}
|
|
10598
10284
|
}
|
|
10599
10285
|
],
|
|
10286
|
+
"superclass": {
|
|
10287
|
+
"name": "InputChoiceGroup",
|
|
10288
|
+
"module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
|
|
10289
|
+
},
|
|
10290
|
+
"tagName": "bm-switch-group",
|
|
10291
|
+
"customElement": true,
|
|
10600
10292
|
"attributes": [
|
|
10601
10293
|
{
|
|
10602
10294
|
"name": "theme",
|
|
@@ -10773,74 +10465,23 @@
|
|
|
10773
10465
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10774
10466
|
}
|
|
10775
10467
|
}
|
|
10776
|
-
]
|
|
10777
|
-
}
|
|
10778
|
-
],
|
|
10779
|
-
"exports": [
|
|
10780
|
-
{
|
|
10781
|
-
"kind": "js",
|
|
10782
|
-
"name": "BmRadioButtonGroup",
|
|
10783
|
-
"declaration": {
|
|
10784
|
-
"name": "BmRadioButtonGroup",
|
|
10785
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
10786
|
-
}
|
|
10787
|
-
},
|
|
10788
|
-
{
|
|
10789
|
-
"kind": "custom-element-definition",
|
|
10790
|
-
"name": "bm-radio-button-group",
|
|
10791
|
-
"declaration": {
|
|
10792
|
-
"name": "BmRadioButtonGroup",
|
|
10793
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
10794
|
-
}
|
|
10795
|
-
}
|
|
10796
|
-
]
|
|
10797
|
-
},
|
|
10798
|
-
{
|
|
10799
|
-
"kind": "javascript-module",
|
|
10800
|
-
"path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
|
|
10801
|
-
"declarations": [
|
|
10802
|
-
{
|
|
10803
|
-
"kind": "class",
|
|
10804
|
-
"description": "`bm-switch-group`",
|
|
10805
|
-
"name": "BmSwitchGroup",
|
|
10806
|
-
"slots": [
|
|
10807
|
-
{
|
|
10808
|
-
"description": "Slot for the label of the SwitchGroup",
|
|
10809
|
-
"name": "label",
|
|
10810
|
-
"inheritedFrom": {
|
|
10811
|
-
"name": "InputChoiceGroup",
|
|
10812
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10813
|
-
}
|
|
10814
|
-
},
|
|
10815
|
-
{
|
|
10816
|
-
"description": "Slot for the helper text of the SwitchGroup",
|
|
10817
|
-
"name": "helperText",
|
|
10818
|
-
"inheritedFrom": {
|
|
10819
|
-
"name": "InputChoiceGroup",
|
|
10820
|
-
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10821
|
-
}
|
|
10822
|
-
}
|
|
10823
10468
|
],
|
|
10824
|
-
"
|
|
10825
|
-
"name": "InputChoiceGroup",
|
|
10826
|
-
"module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
|
|
10827
|
-
},
|
|
10828
|
-
"tagName": "bm-switch-group",
|
|
10829
|
-
"customElement": true,
|
|
10830
|
-
"attributes": [
|
|
10469
|
+
"members": [
|
|
10831
10470
|
{
|
|
10471
|
+
"kind": "field",
|
|
10832
10472
|
"name": "theme",
|
|
10833
10473
|
"type": {
|
|
10834
10474
|
"text": "'light' | 'dark' | undefined"
|
|
10835
10475
|
},
|
|
10836
10476
|
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
10837
|
-
"
|
|
10477
|
+
"attribute": "theme",
|
|
10838
10478
|
"inheritedFrom": {
|
|
10839
10479
|
"name": "InputChoiceGroup",
|
|
10840
10480
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10841
10481
|
}
|
|
10842
10482
|
},
|
|
10843
10483
|
{
|
|
10484
|
+
"kind": "field",
|
|
10844
10485
|
"name": "layout",
|
|
10845
10486
|
"type": {
|
|
10846
10487
|
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
@@ -10848,162 +10489,320 @@
|
|
|
10848
10489
|
"default": "'vertical'",
|
|
10849
10490
|
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
10850
10491
|
"deprecated": "use `orientation` and `fluid` instead",
|
|
10851
|
-
"
|
|
10492
|
+
"attribute": "layout",
|
|
10852
10493
|
"inheritedFrom": {
|
|
10853
10494
|
"name": "InputChoiceGroup",
|
|
10854
10495
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10855
10496
|
}
|
|
10856
10497
|
},
|
|
10857
10498
|
{
|
|
10499
|
+
"kind": "field",
|
|
10858
10500
|
"name": "orientation",
|
|
10859
10501
|
"type": {
|
|
10860
10502
|
"text": "'horizontal' | 'vertical'"
|
|
10861
10503
|
},
|
|
10862
10504
|
"default": "'vertical'",
|
|
10863
10505
|
"description": "Specify InputChoiceGroup orientation",
|
|
10864
|
-
"
|
|
10506
|
+
"attribute": "orientation",
|
|
10865
10507
|
"inheritedFrom": {
|
|
10866
10508
|
"name": "InputChoiceGroup",
|
|
10867
10509
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10868
10510
|
}
|
|
10869
10511
|
},
|
|
10870
10512
|
{
|
|
10513
|
+
"kind": "field",
|
|
10871
10514
|
"name": "fluid",
|
|
10872
10515
|
"type": {
|
|
10873
10516
|
"text": "boolean"
|
|
10874
10517
|
},
|
|
10875
10518
|
"default": "false",
|
|
10876
10519
|
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
10877
|
-
"
|
|
10520
|
+
"attribute": "fluid",
|
|
10878
10521
|
"inheritedFrom": {
|
|
10879
10522
|
"name": "InputChoiceGroup",
|
|
10880
10523
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10881
10524
|
}
|
|
10882
10525
|
},
|
|
10883
10526
|
{
|
|
10527
|
+
"kind": "field",
|
|
10884
10528
|
"name": "required",
|
|
10885
10529
|
"type": {
|
|
10886
10530
|
"text": "boolean"
|
|
10887
10531
|
},
|
|
10888
10532
|
"default": "false",
|
|
10889
10533
|
"description": "Specify if InputChoiceGroup is a required input",
|
|
10890
|
-
"
|
|
10534
|
+
"attribute": "required",
|
|
10891
10535
|
"inheritedFrom": {
|
|
10892
10536
|
"name": "InputChoiceGroup",
|
|
10893
10537
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10894
10538
|
}
|
|
10895
10539
|
},
|
|
10896
10540
|
{
|
|
10541
|
+
"kind": "field",
|
|
10897
10542
|
"name": "hideRequiredMarker",
|
|
10898
10543
|
"type": {
|
|
10899
10544
|
"text": "boolean"
|
|
10900
10545
|
},
|
|
10901
10546
|
"default": "false",
|
|
10902
10547
|
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
10903
|
-
"
|
|
10548
|
+
"attribute": "hideRequiredMarker",
|
|
10904
10549
|
"inheritedFrom": {
|
|
10905
10550
|
"name": "InputChoiceGroup",
|
|
10906
10551
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10907
10552
|
}
|
|
10908
10553
|
},
|
|
10909
10554
|
{
|
|
10555
|
+
"kind": "field",
|
|
10910
10556
|
"name": "error",
|
|
10911
10557
|
"type": {
|
|
10912
10558
|
"text": "string | undefined"
|
|
10913
10559
|
},
|
|
10914
10560
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
10915
|
-
"
|
|
10561
|
+
"attribute": "error",
|
|
10916
10562
|
"inheritedFrom": {
|
|
10917
10563
|
"name": "InputChoiceGroup",
|
|
10918
10564
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10919
10565
|
}
|
|
10920
10566
|
},
|
|
10921
10567
|
{
|
|
10568
|
+
"kind": "field",
|
|
10922
10569
|
"name": "readOnly",
|
|
10923
10570
|
"type": {
|
|
10924
10571
|
"text": "boolean"
|
|
10925
10572
|
},
|
|
10926
10573
|
"default": "false",
|
|
10927
10574
|
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
10928
|
-
"
|
|
10575
|
+
"attribute": "readOnly",
|
|
10929
10576
|
"inheritedFrom": {
|
|
10930
10577
|
"name": "InputChoiceGroup",
|
|
10931
10578
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10932
10579
|
}
|
|
10933
10580
|
},
|
|
10934
10581
|
{
|
|
10582
|
+
"kind": "field",
|
|
10935
10583
|
"name": "disabled",
|
|
10936
10584
|
"type": {
|
|
10937
10585
|
"text": "boolean"
|
|
10938
10586
|
},
|
|
10939
10587
|
"default": "false",
|
|
10940
10588
|
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
10941
|
-
"
|
|
10589
|
+
"attribute": "disabled",
|
|
10590
|
+
"inheritedFrom": {
|
|
10591
|
+
"name": "InputChoiceGroup",
|
|
10592
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10593
|
+
}
|
|
10594
|
+
},
|
|
10595
|
+
{
|
|
10596
|
+
"kind": "field",
|
|
10597
|
+
"name": "radioButtons",
|
|
10598
|
+
"type": {
|
|
10599
|
+
"text": "NodeListOf<Element>"
|
|
10600
|
+
},
|
|
10601
|
+
"inheritedFrom": {
|
|
10602
|
+
"name": "InputChoiceGroup",
|
|
10603
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10604
|
+
}
|
|
10605
|
+
},
|
|
10606
|
+
{
|
|
10607
|
+
"kind": "field",
|
|
10608
|
+
"name": "checkboxes",
|
|
10609
|
+
"type": {
|
|
10610
|
+
"text": "NodeListOf<Element>"
|
|
10611
|
+
},
|
|
10612
|
+
"inheritedFrom": {
|
|
10613
|
+
"name": "InputChoiceGroup",
|
|
10614
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10615
|
+
}
|
|
10616
|
+
},
|
|
10617
|
+
{
|
|
10618
|
+
"kind": "field",
|
|
10619
|
+
"name": "switches",
|
|
10620
|
+
"type": {
|
|
10621
|
+
"text": "NodeListOf<Element>"
|
|
10622
|
+
},
|
|
10623
|
+
"inheritedFrom": {
|
|
10624
|
+
"name": "InputChoiceGroup",
|
|
10625
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10626
|
+
}
|
|
10627
|
+
},
|
|
10628
|
+
{
|
|
10629
|
+
"kind": "field",
|
|
10630
|
+
"name": "inputGroupContextValue",
|
|
10631
|
+
"type": {
|
|
10632
|
+
"text": "InputChoiceGroupContextProps"
|
|
10633
|
+
},
|
|
10634
|
+
"privacy": "public",
|
|
10635
|
+
"default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
|
|
10942
10636
|
"inheritedFrom": {
|
|
10943
10637
|
"name": "InputChoiceGroup",
|
|
10944
10638
|
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
10945
10639
|
}
|
|
10946
10640
|
},
|
|
10947
10641
|
{
|
|
10642
|
+
"kind": "field",
|
|
10643
|
+
"name": "formAssociated",
|
|
10644
|
+
"type": {
|
|
10645
|
+
"text": "boolean"
|
|
10646
|
+
},
|
|
10647
|
+
"static": true,
|
|
10648
|
+
"default": "true",
|
|
10649
|
+
"inheritedFrom": {
|
|
10650
|
+
"name": "FormField",
|
|
10651
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10652
|
+
}
|
|
10653
|
+
},
|
|
10654
|
+
{
|
|
10655
|
+
"kind": "field",
|
|
10948
10656
|
"name": "id",
|
|
10949
10657
|
"type": {
|
|
10950
10658
|
"text": "string"
|
|
10951
10659
|
},
|
|
10952
10660
|
"default": "''",
|
|
10953
|
-
"
|
|
10661
|
+
"attribute": "id",
|
|
10954
10662
|
"inheritedFrom": {
|
|
10955
10663
|
"name": "FormField",
|
|
10956
10664
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10957
10665
|
}
|
|
10958
10666
|
},
|
|
10959
10667
|
{
|
|
10668
|
+
"kind": "field",
|
|
10960
10669
|
"name": "name",
|
|
10961
10670
|
"type": {
|
|
10962
10671
|
"text": "string"
|
|
10963
10672
|
},
|
|
10964
10673
|
"default": "''",
|
|
10965
|
-
"
|
|
10674
|
+
"attribute": "name",
|
|
10966
10675
|
"inheritedFrom": {
|
|
10967
10676
|
"name": "FormField",
|
|
10968
10677
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10969
10678
|
}
|
|
10970
10679
|
},
|
|
10971
10680
|
{
|
|
10681
|
+
"kind": "field",
|
|
10972
10682
|
"name": "value",
|
|
10973
10683
|
"type": {
|
|
10974
10684
|
"text": "string"
|
|
10975
10685
|
},
|
|
10976
10686
|
"default": "''",
|
|
10977
|
-
"
|
|
10687
|
+
"attribute": "value",
|
|
10978
10688
|
"inheritedFrom": {
|
|
10979
10689
|
"name": "FormField",
|
|
10980
10690
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10981
10691
|
}
|
|
10982
10692
|
},
|
|
10983
10693
|
{
|
|
10694
|
+
"kind": "field",
|
|
10984
10695
|
"name": "validationRules",
|
|
10985
10696
|
"type": {
|
|
10986
10697
|
"text": "Array<FormValidator>"
|
|
10987
10698
|
},
|
|
10988
10699
|
"default": "[]",
|
|
10989
|
-
"
|
|
10700
|
+
"attribute": "validationRules",
|
|
10990
10701
|
"inheritedFrom": {
|
|
10991
10702
|
"name": "FormField",
|
|
10992
10703
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10993
10704
|
}
|
|
10994
10705
|
},
|
|
10995
10706
|
{
|
|
10996
|
-
"
|
|
10707
|
+
"kind": "field",
|
|
10708
|
+
"name": "inputAriaLabel",
|
|
10997
10709
|
"type": {
|
|
10998
10710
|
"text": "string | undefined"
|
|
10999
10711
|
},
|
|
11000
|
-
"
|
|
10712
|
+
"attribute": "input-aria-label",
|
|
10713
|
+
"inheritedFrom": {
|
|
10714
|
+
"name": "FormField",
|
|
10715
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10716
|
+
}
|
|
10717
|
+
},
|
|
10718
|
+
{
|
|
10719
|
+
"kind": "field",
|
|
10720
|
+
"name": "formContext",
|
|
10721
|
+
"type": {
|
|
10722
|
+
"text": "BmFormContext"
|
|
10723
|
+
},
|
|
10724
|
+
"inheritedFrom": {
|
|
10725
|
+
"name": "FormField",
|
|
10726
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10727
|
+
}
|
|
10728
|
+
},
|
|
10729
|
+
{
|
|
10730
|
+
"kind": "method",
|
|
10731
|
+
"name": "formAssociatedCallback",
|
|
10732
|
+
"return": {
|
|
10733
|
+
"type": {
|
|
10734
|
+
"text": "void"
|
|
10735
|
+
}
|
|
10736
|
+
},
|
|
10737
|
+
"inheritedFrom": {
|
|
10738
|
+
"name": "FormField",
|
|
10739
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10740
|
+
}
|
|
10741
|
+
},
|
|
10742
|
+
{
|
|
10743
|
+
"kind": "method",
|
|
10744
|
+
"name": "formResetCallback",
|
|
10745
|
+
"return": {
|
|
10746
|
+
"type": {
|
|
10747
|
+
"text": "void"
|
|
10748
|
+
}
|
|
10749
|
+
},
|
|
10750
|
+
"inheritedFrom": {
|
|
10751
|
+
"name": "FormField",
|
|
10752
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
10753
|
+
}
|
|
10754
|
+
},
|
|
10755
|
+
{
|
|
10756
|
+
"kind": "method",
|
|
10757
|
+
"name": "finalizeAssociatedCallback",
|
|
10758
|
+
"return": {
|
|
10759
|
+
"type": {
|
|
10760
|
+
"text": "FinalizeAssociatedResult"
|
|
10761
|
+
}
|
|
10762
|
+
},
|
|
10763
|
+
"parameters": [
|
|
10764
|
+
{
|
|
10765
|
+
"name": "ctxValue",
|
|
10766
|
+
"type": {
|
|
10767
|
+
"text": "string"
|
|
10768
|
+
}
|
|
10769
|
+
}
|
|
10770
|
+
],
|
|
11001
10771
|
"inheritedFrom": {
|
|
11002
10772
|
"name": "FormField",
|
|
11003
10773
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11004
10774
|
}
|
|
11005
10775
|
}
|
|
11006
|
-
]
|
|
10776
|
+
]
|
|
10777
|
+
}
|
|
10778
|
+
],
|
|
10779
|
+
"exports": [
|
|
10780
|
+
{
|
|
10781
|
+
"kind": "js",
|
|
10782
|
+
"name": "BmSwitchGroup",
|
|
10783
|
+
"declaration": {
|
|
10784
|
+
"name": "BmSwitchGroup",
|
|
10785
|
+
"module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
|
|
10786
|
+
}
|
|
10787
|
+
},
|
|
10788
|
+
{
|
|
10789
|
+
"kind": "custom-element-definition",
|
|
10790
|
+
"name": "bm-switch-group",
|
|
10791
|
+
"declaration": {
|
|
10792
|
+
"name": "BmSwitchGroup",
|
|
10793
|
+
"module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
|
|
10794
|
+
}
|
|
10795
|
+
}
|
|
10796
|
+
]
|
|
10797
|
+
},
|
|
10798
|
+
{
|
|
10799
|
+
"kind": "javascript-module",
|
|
10800
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
|
|
10801
|
+
"declarations": [
|
|
10802
|
+
{
|
|
10803
|
+
"kind": "class",
|
|
10804
|
+
"description": "",
|
|
10805
|
+
"name": "BmRadioButtonGroup",
|
|
11007
10806
|
"members": [
|
|
11008
10807
|
{
|
|
11009
10808
|
"kind": "field",
|
|
@@ -11311,24 +11110,225 @@
|
|
|
11311
11110
|
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11312
11111
|
}
|
|
11313
11112
|
}
|
|
11113
|
+
],
|
|
11114
|
+
"superclass": {
|
|
11115
|
+
"name": "InputChoiceGroup",
|
|
11116
|
+
"module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
|
|
11117
|
+
},
|
|
11118
|
+
"tagName": "bm-radio-button-group",
|
|
11119
|
+
"customElement": true,
|
|
11120
|
+
"slots": [
|
|
11121
|
+
{
|
|
11122
|
+
"description": "Add label text to the InputChoiceGroup",
|
|
11123
|
+
"name": "label",
|
|
11124
|
+
"inheritedFrom": {
|
|
11125
|
+
"name": "InputChoiceGroup",
|
|
11126
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11127
|
+
}
|
|
11128
|
+
},
|
|
11129
|
+
{
|
|
11130
|
+
"description": "Add helper text to the InputChoiceGroup",
|
|
11131
|
+
"name": "helperText",
|
|
11132
|
+
"inheritedFrom": {
|
|
11133
|
+
"name": "InputChoiceGroup",
|
|
11134
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11135
|
+
}
|
|
11136
|
+
}
|
|
11137
|
+
],
|
|
11138
|
+
"attributes": [
|
|
11139
|
+
{
|
|
11140
|
+
"name": "theme",
|
|
11141
|
+
"type": {
|
|
11142
|
+
"text": "'light' | 'dark' | undefined"
|
|
11143
|
+
},
|
|
11144
|
+
"description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
|
|
11145
|
+
"fieldName": "theme",
|
|
11146
|
+
"inheritedFrom": {
|
|
11147
|
+
"name": "InputChoiceGroup",
|
|
11148
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11149
|
+
}
|
|
11150
|
+
},
|
|
11151
|
+
{
|
|
11152
|
+
"name": "layout",
|
|
11153
|
+
"type": {
|
|
11154
|
+
"text": "'horizontal' | 'vertical' | 'horizontalFluid'"
|
|
11155
|
+
},
|
|
11156
|
+
"default": "'vertical'",
|
|
11157
|
+
"description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
|
|
11158
|
+
"deprecated": "use `orientation` and `fluid` instead",
|
|
11159
|
+
"fieldName": "layout",
|
|
11160
|
+
"inheritedFrom": {
|
|
11161
|
+
"name": "InputChoiceGroup",
|
|
11162
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11163
|
+
}
|
|
11164
|
+
},
|
|
11165
|
+
{
|
|
11166
|
+
"name": "orientation",
|
|
11167
|
+
"type": {
|
|
11168
|
+
"text": "'horizontal' | 'vertical'"
|
|
11169
|
+
},
|
|
11170
|
+
"default": "'vertical'",
|
|
11171
|
+
"description": "Specify InputChoiceGroup orientation",
|
|
11172
|
+
"fieldName": "orientation",
|
|
11173
|
+
"inheritedFrom": {
|
|
11174
|
+
"name": "InputChoiceGroup",
|
|
11175
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11176
|
+
}
|
|
11177
|
+
},
|
|
11178
|
+
{
|
|
11179
|
+
"name": "fluid",
|
|
11180
|
+
"type": {
|
|
11181
|
+
"text": "boolean"
|
|
11182
|
+
},
|
|
11183
|
+
"default": "false",
|
|
11184
|
+
"description": "Specify if InputChoiceGroup should take the full width of its container",
|
|
11185
|
+
"fieldName": "fluid",
|
|
11186
|
+
"inheritedFrom": {
|
|
11187
|
+
"name": "InputChoiceGroup",
|
|
11188
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11189
|
+
}
|
|
11190
|
+
},
|
|
11191
|
+
{
|
|
11192
|
+
"name": "required",
|
|
11193
|
+
"type": {
|
|
11194
|
+
"text": "boolean"
|
|
11195
|
+
},
|
|
11196
|
+
"default": "false",
|
|
11197
|
+
"description": "Specify if InputChoiceGroup is a required input",
|
|
11198
|
+
"fieldName": "required",
|
|
11199
|
+
"inheritedFrom": {
|
|
11200
|
+
"name": "InputChoiceGroup",
|
|
11201
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11202
|
+
}
|
|
11203
|
+
},
|
|
11204
|
+
{
|
|
11205
|
+
"name": "hideRequiredMarker",
|
|
11206
|
+
"type": {
|
|
11207
|
+
"text": "boolean"
|
|
11208
|
+
},
|
|
11209
|
+
"default": "false",
|
|
11210
|
+
"description": "Specify if the InputChoiceGroup displays with an asterisk",
|
|
11211
|
+
"fieldName": "hideRequiredMarker",
|
|
11212
|
+
"inheritedFrom": {
|
|
11213
|
+
"name": "InputChoiceGroup",
|
|
11214
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11215
|
+
}
|
|
11216
|
+
},
|
|
11217
|
+
{
|
|
11218
|
+
"name": "error",
|
|
11219
|
+
"type": {
|
|
11220
|
+
"text": "string | undefined"
|
|
11221
|
+
},
|
|
11222
|
+
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
11223
|
+
"fieldName": "error",
|
|
11224
|
+
"inheritedFrom": {
|
|
11225
|
+
"name": "InputChoiceGroup",
|
|
11226
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11227
|
+
}
|
|
11228
|
+
},
|
|
11229
|
+
{
|
|
11230
|
+
"name": "readOnly",
|
|
11231
|
+
"type": {
|
|
11232
|
+
"text": "boolean"
|
|
11233
|
+
},
|
|
11234
|
+
"default": "false",
|
|
11235
|
+
"description": "Specify if InputChoiceGroup displays in a read-only state",
|
|
11236
|
+
"fieldName": "readOnly",
|
|
11237
|
+
"inheritedFrom": {
|
|
11238
|
+
"name": "InputChoiceGroup",
|
|
11239
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11240
|
+
}
|
|
11241
|
+
},
|
|
11242
|
+
{
|
|
11243
|
+
"name": "disabled",
|
|
11244
|
+
"type": {
|
|
11245
|
+
"text": "boolean"
|
|
11246
|
+
},
|
|
11247
|
+
"default": "false",
|
|
11248
|
+
"description": "Specify if InputChoiceGroup displays in a disabled state",
|
|
11249
|
+
"fieldName": "disabled",
|
|
11250
|
+
"inheritedFrom": {
|
|
11251
|
+
"name": "InputChoiceGroup",
|
|
11252
|
+
"module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
|
|
11253
|
+
}
|
|
11254
|
+
},
|
|
11255
|
+
{
|
|
11256
|
+
"name": "id",
|
|
11257
|
+
"type": {
|
|
11258
|
+
"text": "string"
|
|
11259
|
+
},
|
|
11260
|
+
"default": "''",
|
|
11261
|
+
"fieldName": "id",
|
|
11262
|
+
"inheritedFrom": {
|
|
11263
|
+
"name": "FormField",
|
|
11264
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11265
|
+
}
|
|
11266
|
+
},
|
|
11267
|
+
{
|
|
11268
|
+
"name": "name",
|
|
11269
|
+
"type": {
|
|
11270
|
+
"text": "string"
|
|
11271
|
+
},
|
|
11272
|
+
"default": "''",
|
|
11273
|
+
"fieldName": "name",
|
|
11274
|
+
"inheritedFrom": {
|
|
11275
|
+
"name": "FormField",
|
|
11276
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11277
|
+
}
|
|
11278
|
+
},
|
|
11279
|
+
{
|
|
11280
|
+
"name": "value",
|
|
11281
|
+
"type": {
|
|
11282
|
+
"text": "string"
|
|
11283
|
+
},
|
|
11284
|
+
"default": "''",
|
|
11285
|
+
"fieldName": "value",
|
|
11286
|
+
"inheritedFrom": {
|
|
11287
|
+
"name": "FormField",
|
|
11288
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11289
|
+
}
|
|
11290
|
+
},
|
|
11291
|
+
{
|
|
11292
|
+
"name": "validationRules",
|
|
11293
|
+
"type": {
|
|
11294
|
+
"text": "Array<FormValidator>"
|
|
11295
|
+
},
|
|
11296
|
+
"default": "[]",
|
|
11297
|
+
"fieldName": "validationRules",
|
|
11298
|
+
"inheritedFrom": {
|
|
11299
|
+
"name": "FormField",
|
|
11300
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11301
|
+
}
|
|
11302
|
+
},
|
|
11303
|
+
{
|
|
11304
|
+
"name": "input-aria-label",
|
|
11305
|
+
"type": {
|
|
11306
|
+
"text": "string | undefined"
|
|
11307
|
+
},
|
|
11308
|
+
"fieldName": "inputAriaLabel",
|
|
11309
|
+
"inheritedFrom": {
|
|
11310
|
+
"name": "FormField",
|
|
11311
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
11312
|
+
}
|
|
11313
|
+
}
|
|
11314
11314
|
]
|
|
11315
11315
|
}
|
|
11316
11316
|
],
|
|
11317
11317
|
"exports": [
|
|
11318
11318
|
{
|
|
11319
11319
|
"kind": "js",
|
|
11320
|
-
"name": "
|
|
11320
|
+
"name": "BmRadioButtonGroup",
|
|
11321
11321
|
"declaration": {
|
|
11322
|
-
"name": "
|
|
11323
|
-
"module": "libs/web-components/src/lib/wip/
|
|
11322
|
+
"name": "BmRadioButtonGroup",
|
|
11323
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
11324
11324
|
}
|
|
11325
11325
|
},
|
|
11326
11326
|
{
|
|
11327
11327
|
"kind": "custom-element-definition",
|
|
11328
|
-
"name": "bm-
|
|
11328
|
+
"name": "bm-radio-button-group",
|
|
11329
11329
|
"declaration": {
|
|
11330
|
-
"name": "
|
|
11331
|
-
"module": "libs/web-components/src/lib/wip/
|
|
11330
|
+
"name": "BmRadioButtonGroup",
|
|
11331
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
|
|
11332
11332
|
}
|
|
11333
11333
|
}
|
|
11334
11334
|
]
|