@viasat/beam-web-components 2.64.0 → 2.65.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 +1631 -1631
- package/package.json +6 -6
- package/vscode.html-custom-data.json +118 -118
package/custom-elements.json
CHANGED
|
@@ -294,147 +294,273 @@
|
|
|
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": "
|
|
306
|
-
"name": "
|
|
305
|
+
"description": "Specify a different icon for the Alert",
|
|
306
|
+
"name": "icon"
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
|
-
"description": "Specify
|
|
310
|
-
"name": "
|
|
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"
|
|
311
319
|
}
|
|
312
320
|
],
|
|
313
321
|
"members": [
|
|
314
322
|
{
|
|
315
323
|
"kind": "field",
|
|
316
|
-
"name": "
|
|
324
|
+
"name": "heading",
|
|
317
325
|
"type": {
|
|
318
|
-
"text": "
|
|
326
|
+
"text": "string | undefined"
|
|
319
327
|
},
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
-
"attribute": "appearance"
|
|
328
|
+
"description": "Specify the heading text for Alert",
|
|
329
|
+
"attribute": "heading"
|
|
323
330
|
},
|
|
324
331
|
{
|
|
325
332
|
"kind": "field",
|
|
326
|
-
"name": "
|
|
333
|
+
"name": "body",
|
|
327
334
|
"type": {
|
|
328
|
-
"text": "
|
|
335
|
+
"text": "string | undefined"
|
|
329
336
|
},
|
|
330
|
-
"description": "
|
|
331
|
-
"attribute": "
|
|
337
|
+
"description": "Specify the body text for Alert",
|
|
338
|
+
"attribute": "body"
|
|
332
339
|
},
|
|
333
340
|
{
|
|
334
341
|
"kind": "field",
|
|
335
342
|
"name": "size",
|
|
336
343
|
"type": {
|
|
337
|
-
"text": "'sm' | 'md'
|
|
344
|
+
"text": "'sm' | 'md'"
|
|
338
345
|
},
|
|
339
346
|
"default": "'sm'",
|
|
340
|
-
"description": "Specify the size of the
|
|
347
|
+
"description": "Specify the size of the Alert",
|
|
341
348
|
"attribute": "size"
|
|
342
349
|
},
|
|
343
350
|
{
|
|
344
351
|
"kind": "field",
|
|
345
|
-
"name": "
|
|
352
|
+
"name": "fullWidth",
|
|
346
353
|
"type": {
|
|
347
|
-
"text": "
|
|
354
|
+
"text": "boolean"
|
|
348
355
|
},
|
|
349
|
-
"default": "
|
|
350
|
-
"description": "Specify the
|
|
351
|
-
"attribute": "
|
|
356
|
+
"default": "false",
|
|
357
|
+
"description": "Specify if the Alert has no border radius",
|
|
358
|
+
"attribute": "fullWidth"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"kind": "field",
|
|
362
|
+
"name": "theme",
|
|
363
|
+
"type": {
|
|
364
|
+
"text": "'light' | 'dark' | undefined"
|
|
365
|
+
},
|
|
366
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
367
|
+
"attribute": "theme"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"kind": "field",
|
|
371
|
+
"name": "appearance",
|
|
372
|
+
"type": {
|
|
373
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
374
|
+
},
|
|
375
|
+
"default": "'infoPrimary'",
|
|
376
|
+
"description": "Specify the appearance of the Alert",
|
|
377
|
+
"attribute": "appearance"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"kind": "field",
|
|
381
|
+
"name": "hidden",
|
|
382
|
+
"type": {
|
|
383
|
+
"text": "boolean"
|
|
384
|
+
},
|
|
385
|
+
"default": "false",
|
|
386
|
+
"description": "Specify if the Alert is hidden",
|
|
387
|
+
"attribute": "hidden"
|
|
352
388
|
},
|
|
353
389
|
{
|
|
354
390
|
"kind": "field",
|
|
355
391
|
"name": "hideIcon",
|
|
356
392
|
"type": {
|
|
357
|
-
"text": "boolean
|
|
393
|
+
"text": "boolean"
|
|
358
394
|
},
|
|
359
|
-
"
|
|
395
|
+
"default": "false",
|
|
396
|
+
"description": "Specify if the icon displays on the Alert",
|
|
360
397
|
"attribute": "hideIcon"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"kind": "field",
|
|
401
|
+
"name": "dismissible",
|
|
402
|
+
"type": {
|
|
403
|
+
"text": "boolean"
|
|
404
|
+
},
|
|
405
|
+
"default": "false",
|
|
406
|
+
"description": "Specify if the Alert can be dismissed",
|
|
407
|
+
"attribute": "dismissible"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"kind": "field",
|
|
411
|
+
"name": "disableAutoFocus",
|
|
412
|
+
"type": {
|
|
413
|
+
"text": "boolean"
|
|
414
|
+
},
|
|
415
|
+
"default": "false",
|
|
416
|
+
"description": "Prevent autofocus on show",
|
|
417
|
+
"attribute": "disableAutoFocus"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"kind": "field",
|
|
421
|
+
"name": "disableCloseOnEscape",
|
|
422
|
+
"type": {
|
|
423
|
+
"text": "boolean"
|
|
424
|
+
},
|
|
425
|
+
"default": "false",
|
|
426
|
+
"description": "Prevent Escape from closing",
|
|
427
|
+
"attribute": "disableCloseOnEscape"
|
|
428
|
+
}
|
|
429
|
+
],
|
|
430
|
+
"events": [
|
|
431
|
+
{
|
|
432
|
+
"description": "Dispatched when the Alert has been dismissed",
|
|
433
|
+
"name": "bm-dismiss"
|
|
361
434
|
}
|
|
362
435
|
],
|
|
363
436
|
"attributes": [
|
|
364
437
|
{
|
|
365
|
-
"name": "
|
|
438
|
+
"name": "heading",
|
|
366
439
|
"type": {
|
|
367
|
-
"text": "
|
|
440
|
+
"text": "string | undefined"
|
|
368
441
|
},
|
|
369
|
-
"
|
|
370
|
-
"
|
|
371
|
-
"fieldName": "appearance"
|
|
442
|
+
"description": "Specify the heading text for Alert",
|
|
443
|
+
"fieldName": "heading"
|
|
372
444
|
},
|
|
373
445
|
{
|
|
374
|
-
"name": "
|
|
446
|
+
"name": "body",
|
|
375
447
|
"type": {
|
|
376
|
-
"text": "
|
|
448
|
+
"text": "string | undefined"
|
|
377
449
|
},
|
|
378
|
-
"description": "
|
|
379
|
-
"fieldName": "
|
|
450
|
+
"description": "Specify the body text for Alert",
|
|
451
|
+
"fieldName": "body"
|
|
380
452
|
},
|
|
381
453
|
{
|
|
382
454
|
"name": "size",
|
|
383
455
|
"type": {
|
|
384
|
-
"text": "'sm' | 'md'
|
|
456
|
+
"text": "'sm' | 'md'"
|
|
385
457
|
},
|
|
386
458
|
"default": "'sm'",
|
|
387
|
-
"description": "Specify the size of the
|
|
459
|
+
"description": "Specify the size of the Alert",
|
|
388
460
|
"fieldName": "size"
|
|
389
461
|
},
|
|
390
462
|
{
|
|
391
|
-
"name": "
|
|
463
|
+
"name": "fullWidth",
|
|
392
464
|
"type": {
|
|
393
|
-
"text": "
|
|
465
|
+
"text": "boolean"
|
|
394
466
|
},
|
|
395
|
-
"default": "
|
|
396
|
-
"description": "Specify the
|
|
397
|
-
"fieldName": "
|
|
467
|
+
"default": "false",
|
|
468
|
+
"description": "Specify if the Alert has no border radius",
|
|
469
|
+
"fieldName": "fullWidth"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"name": "theme",
|
|
473
|
+
"type": {
|
|
474
|
+
"text": "'light' | 'dark' | undefined"
|
|
475
|
+
},
|
|
476
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
477
|
+
"fieldName": "theme"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"name": "appearance",
|
|
481
|
+
"type": {
|
|
482
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
483
|
+
},
|
|
484
|
+
"default": "'infoPrimary'",
|
|
485
|
+
"description": "Specify the appearance of the Alert",
|
|
486
|
+
"fieldName": "appearance"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "hidden",
|
|
490
|
+
"type": {
|
|
491
|
+
"text": "boolean"
|
|
492
|
+
},
|
|
493
|
+
"default": "false",
|
|
494
|
+
"description": "Specify if the Alert is hidden",
|
|
495
|
+
"fieldName": "hidden"
|
|
398
496
|
},
|
|
399
497
|
{
|
|
400
498
|
"name": "hideIcon",
|
|
401
499
|
"type": {
|
|
402
|
-
"text": "boolean
|
|
500
|
+
"text": "boolean"
|
|
403
501
|
},
|
|
404
|
-
"
|
|
502
|
+
"default": "false",
|
|
503
|
+
"description": "Specify if the icon displays on the Alert",
|
|
405
504
|
"fieldName": "hideIcon"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "dismissible",
|
|
508
|
+
"type": {
|
|
509
|
+
"text": "boolean"
|
|
510
|
+
},
|
|
511
|
+
"default": "false",
|
|
512
|
+
"description": "Specify if the Alert can be dismissed",
|
|
513
|
+
"fieldName": "dismissible"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "disableAutoFocus",
|
|
517
|
+
"type": {
|
|
518
|
+
"text": "boolean"
|
|
519
|
+
},
|
|
520
|
+
"default": "false",
|
|
521
|
+
"description": "Prevent autofocus on show",
|
|
522
|
+
"fieldName": "disableAutoFocus"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "disableCloseOnEscape",
|
|
526
|
+
"type": {
|
|
527
|
+
"text": "boolean"
|
|
528
|
+
},
|
|
529
|
+
"default": "false",
|
|
530
|
+
"description": "Prevent Escape from closing",
|
|
531
|
+
"fieldName": "disableCloseOnEscape"
|
|
406
532
|
}
|
|
407
533
|
],
|
|
408
534
|
"superclass": {
|
|
409
535
|
"name": "LitElement",
|
|
410
536
|
"package": "lit"
|
|
411
537
|
},
|
|
412
|
-
"tagName": "bm-
|
|
538
|
+
"tagName": "bm-alert",
|
|
413
539
|
"customElement": true
|
|
414
540
|
}
|
|
415
541
|
],
|
|
416
542
|
"exports": [
|
|
417
543
|
{
|
|
418
544
|
"kind": "js",
|
|
419
|
-
"name": "
|
|
545
|
+
"name": "BmAlert",
|
|
420
546
|
"declaration": {
|
|
421
|
-
"name": "
|
|
422
|
-
"module": "libs/web-components/src/lib/
|
|
547
|
+
"name": "BmAlert",
|
|
548
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
423
549
|
}
|
|
424
550
|
},
|
|
425
551
|
{
|
|
426
552
|
"kind": "custom-element-definition",
|
|
427
|
-
"name": "bm-
|
|
553
|
+
"name": "bm-alert",
|
|
428
554
|
"declaration": {
|
|
429
|
-
"name": "
|
|
430
|
-
"module": "libs/web-components/src/lib/
|
|
555
|
+
"name": "BmAlert",
|
|
556
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
431
557
|
}
|
|
432
558
|
}
|
|
433
559
|
]
|
|
434
560
|
},
|
|
435
561
|
{
|
|
436
562
|
"kind": "javascript-module",
|
|
437
|
-
"path": "libs/web-components/src/lib/
|
|
563
|
+
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
438
564
|
"declarations": [],
|
|
439
565
|
"exports": [
|
|
440
566
|
{
|
|
@@ -442,35 +568,30 @@
|
|
|
442
568
|
"name": "*",
|
|
443
569
|
"declaration": {
|
|
444
570
|
"name": "*",
|
|
445
|
-
"package": "./
|
|
571
|
+
"package": "./Alert"
|
|
446
572
|
}
|
|
447
573
|
}
|
|
448
574
|
]
|
|
449
575
|
},
|
|
450
576
|
{
|
|
451
577
|
"kind": "javascript-module",
|
|
452
|
-
"path": "libs/web-components/src/lib/
|
|
578
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
453
579
|
"declarations": [
|
|
454
580
|
{
|
|
455
581
|
"kind": "class",
|
|
456
|
-
"description": "`bm-badge
|
|
457
|
-
"name": "
|
|
582
|
+
"description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
|
|
583
|
+
"name": "BmBadge",
|
|
458
584
|
"slots": [
|
|
459
585
|
{
|
|
460
|
-
"description": "Provide text for the
|
|
586
|
+
"description": "Provide text for the Badge",
|
|
461
587
|
"name": "default"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"description": "Specify a different icon for the Badge",
|
|
591
|
+
"name": "icon"
|
|
462
592
|
}
|
|
463
593
|
],
|
|
464
594
|
"members": [
|
|
465
|
-
{
|
|
466
|
-
"kind": "field",
|
|
467
|
-
"name": "theme",
|
|
468
|
-
"type": {
|
|
469
|
-
"text": "'light' | 'dark' | undefined"
|
|
470
|
-
},
|
|
471
|
-
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
472
|
-
"attribute": "theme"
|
|
473
|
-
},
|
|
474
595
|
{
|
|
475
596
|
"kind": "field",
|
|
476
597
|
"name": "appearance",
|
|
@@ -478,14 +599,174 @@
|
|
|
478
599
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
479
600
|
},
|
|
480
601
|
"default": "'infoPrimary'",
|
|
481
|
-
"description": "Specify the appearance of the
|
|
602
|
+
"description": "Specify the appearance of the Badge",
|
|
482
603
|
"attribute": "appearance"
|
|
483
604
|
},
|
|
484
605
|
{
|
|
485
606
|
"kind": "field",
|
|
486
|
-
"name": "
|
|
607
|
+
"name": "theme",
|
|
487
608
|
"type": {
|
|
488
|
-
"text": "'
|
|
609
|
+
"text": "'light' | 'dark' | undefined"
|
|
610
|
+
},
|
|
611
|
+
"description": "Theme of the Badge",
|
|
612
|
+
"attribute": "theme"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"kind": "field",
|
|
616
|
+
"name": "size",
|
|
617
|
+
"type": {
|
|
618
|
+
"text": "'sm' | 'md' | undefined"
|
|
619
|
+
},
|
|
620
|
+
"default": "'sm'",
|
|
621
|
+
"description": "Specify the size of the Badge",
|
|
622
|
+
"attribute": "size"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"kind": "field",
|
|
626
|
+
"name": "emphasis",
|
|
627
|
+
"type": {
|
|
628
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
629
|
+
},
|
|
630
|
+
"default": "'strong'",
|
|
631
|
+
"description": "Specify the emphasis of the Badge",
|
|
632
|
+
"attribute": "emphasis"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"kind": "field",
|
|
636
|
+
"name": "hideIcon",
|
|
637
|
+
"type": {
|
|
638
|
+
"text": "boolean | undefined"
|
|
639
|
+
},
|
|
640
|
+
"description": "Hides Badge icon",
|
|
641
|
+
"attribute": "hideIcon"
|
|
642
|
+
}
|
|
643
|
+
],
|
|
644
|
+
"attributes": [
|
|
645
|
+
{
|
|
646
|
+
"name": "appearance",
|
|
647
|
+
"type": {
|
|
648
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
649
|
+
},
|
|
650
|
+
"default": "'infoPrimary'",
|
|
651
|
+
"description": "Specify the appearance of the Badge",
|
|
652
|
+
"fieldName": "appearance"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "theme",
|
|
656
|
+
"type": {
|
|
657
|
+
"text": "'light' | 'dark' | undefined"
|
|
658
|
+
},
|
|
659
|
+
"description": "Theme of the Badge",
|
|
660
|
+
"fieldName": "theme"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "size",
|
|
664
|
+
"type": {
|
|
665
|
+
"text": "'sm' | 'md' | undefined"
|
|
666
|
+
},
|
|
667
|
+
"default": "'sm'",
|
|
668
|
+
"description": "Specify the size of the Badge",
|
|
669
|
+
"fieldName": "size"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"name": "emphasis",
|
|
673
|
+
"type": {
|
|
674
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
675
|
+
},
|
|
676
|
+
"default": "'strong'",
|
|
677
|
+
"description": "Specify the emphasis of the Badge",
|
|
678
|
+
"fieldName": "emphasis"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "hideIcon",
|
|
682
|
+
"type": {
|
|
683
|
+
"text": "boolean | undefined"
|
|
684
|
+
},
|
|
685
|
+
"description": "Hides Badge icon",
|
|
686
|
+
"fieldName": "hideIcon"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"superclass": {
|
|
690
|
+
"name": "LitElement",
|
|
691
|
+
"package": "lit"
|
|
692
|
+
},
|
|
693
|
+
"tagName": "bm-badge",
|
|
694
|
+
"customElement": true
|
|
695
|
+
}
|
|
696
|
+
],
|
|
697
|
+
"exports": [
|
|
698
|
+
{
|
|
699
|
+
"kind": "js",
|
|
700
|
+
"name": "BmBadge",
|
|
701
|
+
"declaration": {
|
|
702
|
+
"name": "BmBadge",
|
|
703
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"kind": "custom-element-definition",
|
|
708
|
+
"name": "bm-badge",
|
|
709
|
+
"declaration": {
|
|
710
|
+
"name": "BmBadge",
|
|
711
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"kind": "javascript-module",
|
|
718
|
+
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
719
|
+
"declarations": [],
|
|
720
|
+
"exports": [
|
|
721
|
+
{
|
|
722
|
+
"kind": "js",
|
|
723
|
+
"name": "*",
|
|
724
|
+
"declaration": {
|
|
725
|
+
"name": "*",
|
|
726
|
+
"package": "./Badge"
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
]
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"kind": "javascript-module",
|
|
733
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
734
|
+
"declarations": [
|
|
735
|
+
{
|
|
736
|
+
"kind": "class",
|
|
737
|
+
"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",
|
|
738
|
+
"name": "BmBadgeDot",
|
|
739
|
+
"slots": [
|
|
740
|
+
{
|
|
741
|
+
"description": "Provide text for the BadgeDot",
|
|
742
|
+
"name": "default"
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
"members": [
|
|
746
|
+
{
|
|
747
|
+
"kind": "field",
|
|
748
|
+
"name": "theme",
|
|
749
|
+
"type": {
|
|
750
|
+
"text": "'light' | 'dark' | undefined"
|
|
751
|
+
},
|
|
752
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
753
|
+
"attribute": "theme"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"kind": "field",
|
|
757
|
+
"name": "appearance",
|
|
758
|
+
"type": {
|
|
759
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
760
|
+
},
|
|
761
|
+
"default": "'infoPrimary'",
|
|
762
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
763
|
+
"attribute": "appearance"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"kind": "field",
|
|
767
|
+
"name": "emphasis",
|
|
768
|
+
"type": {
|
|
769
|
+
"text": "'strong' | 'subtle'"
|
|
489
770
|
},
|
|
490
771
|
"default": "'strong'",
|
|
491
772
|
"description": "Specify the emphasis of the BadgeDot",
|
|
@@ -973,641 +1254,360 @@
|
|
|
973
1254
|
},
|
|
974
1255
|
{
|
|
975
1256
|
"kind": "javascript-module",
|
|
976
|
-
"path": "libs/web-components/src/lib/
|
|
1257
|
+
"path": "libs/web-components/src/lib/Box/Box.ts",
|
|
977
1258
|
"declarations": [
|
|
978
1259
|
{
|
|
979
1260
|
"kind": "class",
|
|
980
|
-
"description": "`bm-
|
|
981
|
-
"name": "
|
|
1261
|
+
"description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
|
|
1262
|
+
"name": "BmBox",
|
|
982
1263
|
"slots": [
|
|
983
1264
|
{
|
|
984
|
-
"description": "
|
|
985
|
-
"name": "
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
989
|
-
"name": "heading"
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
993
|
-
"name": "body"
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
"description": "Specify if actions display on the Alert",
|
|
997
|
-
"name": "actions"
|
|
1265
|
+
"description": "Provide content for the Box",
|
|
1266
|
+
"name": "default"
|
|
998
1267
|
}
|
|
999
1268
|
],
|
|
1000
1269
|
"members": [
|
|
1001
1270
|
{
|
|
1002
1271
|
"kind": "field",
|
|
1003
|
-
"name": "
|
|
1272
|
+
"name": "backgroundColor",
|
|
1004
1273
|
"type": {
|
|
1005
|
-
"text": "
|
|
1274
|
+
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
|
|
1006
1275
|
},
|
|
1007
|
-
"description": "Specify the
|
|
1008
|
-
"attribute": "
|
|
1276
|
+
"description": "Specify the background color of a Box",
|
|
1277
|
+
"attribute": "backgroundColor"
|
|
1009
1278
|
},
|
|
1010
1279
|
{
|
|
1011
1280
|
"kind": "field",
|
|
1012
|
-
"name": "
|
|
1281
|
+
"name": "borderColor",
|
|
1013
1282
|
"type": {
|
|
1014
|
-
"text": "
|
|
1283
|
+
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
|
|
1015
1284
|
},
|
|
1016
|
-
"description": "Specify the
|
|
1017
|
-
"attribute": "
|
|
1285
|
+
"description": "Specify the border color of a Box",
|
|
1286
|
+
"attribute": "borderColor"
|
|
1018
1287
|
},
|
|
1019
1288
|
{
|
|
1020
1289
|
"kind": "field",
|
|
1021
|
-
"name": "
|
|
1290
|
+
"name": "borderWidth",
|
|
1022
1291
|
"type": {
|
|
1023
|
-
"text": "'
|
|
1292
|
+
"text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
|
|
1024
1293
|
},
|
|
1025
|
-
"
|
|
1026
|
-
"
|
|
1027
|
-
"attribute": "size"
|
|
1294
|
+
"description": "Specify the border width of a Box",
|
|
1295
|
+
"attribute": "borderWidth"
|
|
1028
1296
|
},
|
|
1029
1297
|
{
|
|
1030
1298
|
"kind": "field",
|
|
1031
|
-
"name": "
|
|
1299
|
+
"name": "borderRadius",
|
|
1032
1300
|
"type": {
|
|
1033
|
-
"text": "
|
|
1301
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
|
|
1034
1302
|
},
|
|
1035
|
-
"
|
|
1036
|
-
"
|
|
1037
|
-
"attribute": "fullWidth"
|
|
1303
|
+
"description": "Specify the border radius of a Box",
|
|
1304
|
+
"attribute": "borderRadius"
|
|
1038
1305
|
},
|
|
1039
1306
|
{
|
|
1040
1307
|
"kind": "field",
|
|
1041
|
-
"name": "
|
|
1308
|
+
"name": "px",
|
|
1042
1309
|
"type": {
|
|
1043
|
-
"text": "'
|
|
1310
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1044
1311
|
},
|
|
1045
|
-
"description": "Specify
|
|
1046
|
-
"attribute": "
|
|
1312
|
+
"description": "Specify before and after padding of a Box",
|
|
1313
|
+
"attribute": "px"
|
|
1047
1314
|
},
|
|
1048
1315
|
{
|
|
1049
1316
|
"kind": "field",
|
|
1050
|
-
"name": "
|
|
1317
|
+
"name": "py",
|
|
1051
1318
|
"type": {
|
|
1052
|
-
"text": "'
|
|
1319
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1053
1320
|
},
|
|
1054
|
-
"
|
|
1055
|
-
"
|
|
1056
|
-
"attribute": "appearance"
|
|
1321
|
+
"description": "Specify top and bottom padding of a Box",
|
|
1322
|
+
"attribute": "py"
|
|
1057
1323
|
},
|
|
1058
1324
|
{
|
|
1059
1325
|
"kind": "field",
|
|
1060
|
-
"name": "
|
|
1326
|
+
"name": "pTop",
|
|
1061
1327
|
"type": {
|
|
1062
|
-
"text": "
|
|
1328
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1063
1329
|
},
|
|
1064
|
-
"
|
|
1065
|
-
"
|
|
1066
|
-
"attribute": "hidden"
|
|
1330
|
+
"description": "Specify top padding of a Box",
|
|
1331
|
+
"attribute": "pTop"
|
|
1067
1332
|
},
|
|
1068
1333
|
{
|
|
1069
1334
|
"kind": "field",
|
|
1070
|
-
"name": "
|
|
1335
|
+
"name": "pBottom",
|
|
1071
1336
|
"type": {
|
|
1072
|
-
"text": "
|
|
1337
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1073
1338
|
},
|
|
1074
|
-
"
|
|
1075
|
-
"
|
|
1076
|
-
"attribute": "hideIcon"
|
|
1339
|
+
"description": "Specify bottom padding of a Box",
|
|
1340
|
+
"attribute": "pBottom"
|
|
1077
1341
|
},
|
|
1078
1342
|
{
|
|
1079
1343
|
"kind": "field",
|
|
1080
|
-
"name": "
|
|
1344
|
+
"name": "pBefore",
|
|
1081
1345
|
"type": {
|
|
1082
|
-
"text": "
|
|
1346
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1083
1347
|
},
|
|
1084
|
-
"
|
|
1085
|
-
"
|
|
1086
|
-
"attribute": "dismissible"
|
|
1348
|
+
"description": "Specify before padding of a Box",
|
|
1349
|
+
"attribute": "pBefore"
|
|
1087
1350
|
},
|
|
1088
1351
|
{
|
|
1089
1352
|
"kind": "field",
|
|
1090
|
-
"name": "
|
|
1353
|
+
"name": "pAfter",
|
|
1091
1354
|
"type": {
|
|
1092
|
-
"text": "
|
|
1355
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1093
1356
|
},
|
|
1094
|
-
"
|
|
1095
|
-
"
|
|
1096
|
-
"attribute": "disableAutoFocus"
|
|
1357
|
+
"description": "Specify after padding of a Box",
|
|
1358
|
+
"attribute": "pAfter"
|
|
1097
1359
|
},
|
|
1098
1360
|
{
|
|
1099
1361
|
"kind": "field",
|
|
1100
|
-
"name": "
|
|
1101
|
-
"type": {
|
|
1102
|
-
"text": "boolean"
|
|
1103
|
-
},
|
|
1104
|
-
"default": "false",
|
|
1105
|
-
"description": "Prevent Escape from closing",
|
|
1106
|
-
"attribute": "disableCloseOnEscape"
|
|
1107
|
-
}
|
|
1108
|
-
],
|
|
1109
|
-
"events": [
|
|
1110
|
-
{
|
|
1111
|
-
"description": "Dispatched when the Alert has been dismissed",
|
|
1112
|
-
"name": "bm-dismiss"
|
|
1113
|
-
}
|
|
1114
|
-
],
|
|
1115
|
-
"attributes": [
|
|
1116
|
-
{
|
|
1117
|
-
"name": "heading",
|
|
1118
|
-
"type": {
|
|
1119
|
-
"text": "string | undefined"
|
|
1120
|
-
},
|
|
1121
|
-
"description": "Specify the heading text for Alert",
|
|
1122
|
-
"fieldName": "heading"
|
|
1123
|
-
},
|
|
1124
|
-
{
|
|
1125
|
-
"name": "body",
|
|
1362
|
+
"name": "mx",
|
|
1126
1363
|
"type": {
|
|
1127
|
-
"text": "
|
|
1364
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1128
1365
|
},
|
|
1129
|
-
"description": "Specify
|
|
1130
|
-
"
|
|
1366
|
+
"description": "Specify before and after margin of a Box",
|
|
1367
|
+
"attribute": "mx"
|
|
1131
1368
|
},
|
|
1132
1369
|
{
|
|
1133
|
-
"
|
|
1370
|
+
"kind": "field",
|
|
1371
|
+
"name": "my",
|
|
1134
1372
|
"type": {
|
|
1135
|
-
"text": "'
|
|
1373
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1136
1374
|
},
|
|
1137
|
-
"
|
|
1138
|
-
"
|
|
1139
|
-
"fieldName": "size"
|
|
1375
|
+
"description": "Specify top and bottom margin of a Box",
|
|
1376
|
+
"attribute": "my"
|
|
1140
1377
|
},
|
|
1141
1378
|
{
|
|
1142
|
-
"
|
|
1379
|
+
"kind": "field",
|
|
1380
|
+
"name": "mTop",
|
|
1143
1381
|
"type": {
|
|
1144
|
-
"text": "
|
|
1382
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1145
1383
|
},
|
|
1146
|
-
"
|
|
1147
|
-
"
|
|
1148
|
-
"fieldName": "fullWidth"
|
|
1384
|
+
"description": "Specify top margin of a Box",
|
|
1385
|
+
"attribute": "mTop"
|
|
1149
1386
|
},
|
|
1150
1387
|
{
|
|
1151
|
-
"
|
|
1388
|
+
"kind": "field",
|
|
1389
|
+
"name": "mBottom",
|
|
1152
1390
|
"type": {
|
|
1153
|
-
"text": "'
|
|
1391
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1154
1392
|
},
|
|
1155
|
-
"description": "Specify
|
|
1156
|
-
"
|
|
1393
|
+
"description": "Specify bottom margin of a Box",
|
|
1394
|
+
"attribute": "mBottom"
|
|
1157
1395
|
},
|
|
1158
1396
|
{
|
|
1159
|
-
"
|
|
1397
|
+
"kind": "field",
|
|
1398
|
+
"name": "mBefore",
|
|
1160
1399
|
"type": {
|
|
1161
|
-
"text": "'
|
|
1400
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1162
1401
|
},
|
|
1163
|
-
"
|
|
1164
|
-
"
|
|
1165
|
-
"fieldName": "appearance"
|
|
1402
|
+
"description": "Specify before margin of a Box",
|
|
1403
|
+
"attribute": "mBefore"
|
|
1166
1404
|
},
|
|
1167
1405
|
{
|
|
1168
|
-
"
|
|
1406
|
+
"kind": "field",
|
|
1407
|
+
"name": "mAfter",
|
|
1169
1408
|
"type": {
|
|
1170
|
-
"text": "
|
|
1409
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1171
1410
|
},
|
|
1172
|
-
"
|
|
1173
|
-
"
|
|
1174
|
-
"fieldName": "hidden"
|
|
1411
|
+
"description": "Specify after margin of a Box",
|
|
1412
|
+
"attribute": "mAfter"
|
|
1175
1413
|
},
|
|
1176
1414
|
{
|
|
1177
|
-
"
|
|
1415
|
+
"kind": "field",
|
|
1416
|
+
"name": "m",
|
|
1178
1417
|
"type": {
|
|
1179
|
-
"text": "
|
|
1418
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1180
1419
|
},
|
|
1181
|
-
"
|
|
1182
|
-
"
|
|
1183
|
-
"fieldName": "hideIcon"
|
|
1420
|
+
"description": "Specify all margin",
|
|
1421
|
+
"attribute": "m"
|
|
1184
1422
|
},
|
|
1185
1423
|
{
|
|
1186
|
-
"
|
|
1424
|
+
"kind": "field",
|
|
1425
|
+
"name": "p",
|
|
1187
1426
|
"type": {
|
|
1188
|
-
"text": "
|
|
1427
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1189
1428
|
},
|
|
1190
|
-
"
|
|
1191
|
-
"
|
|
1192
|
-
"fieldName": "dismissible"
|
|
1429
|
+
"description": "Specify all padding",
|
|
1430
|
+
"attribute": "p"
|
|
1193
1431
|
},
|
|
1194
1432
|
{
|
|
1195
|
-
"
|
|
1433
|
+
"kind": "field",
|
|
1434
|
+
"name": "gap",
|
|
1196
1435
|
"type": {
|
|
1197
|
-
"text": "
|
|
1436
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1198
1437
|
},
|
|
1199
|
-
"
|
|
1200
|
-
"
|
|
1201
|
-
"fieldName": "disableAutoFocus"
|
|
1438
|
+
"description": "Specify gap between child elements",
|
|
1439
|
+
"attribute": "gap"
|
|
1202
1440
|
},
|
|
1203
1441
|
{
|
|
1204
|
-
"
|
|
1442
|
+
"kind": "field",
|
|
1443
|
+
"name": "shadow",
|
|
1205
1444
|
"type": {
|
|
1206
|
-
"text": "
|
|
1445
|
+
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1207
1446
|
},
|
|
1208
|
-
"
|
|
1209
|
-
"
|
|
1210
|
-
"fieldName": "disableCloseOnEscape"
|
|
1211
|
-
}
|
|
1212
|
-
],
|
|
1213
|
-
"superclass": {
|
|
1214
|
-
"name": "LitElement",
|
|
1215
|
-
"package": "lit"
|
|
1216
|
-
},
|
|
1217
|
-
"tagName": "bm-alert",
|
|
1218
|
-
"customElement": true
|
|
1219
|
-
}
|
|
1220
|
-
],
|
|
1221
|
-
"exports": [
|
|
1222
|
-
{
|
|
1223
|
-
"kind": "js",
|
|
1224
|
-
"name": "BmAlert",
|
|
1225
|
-
"declaration": {
|
|
1226
|
-
"name": "BmAlert",
|
|
1227
|
-
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
1228
|
-
}
|
|
1229
|
-
},
|
|
1230
|
-
{
|
|
1231
|
-
"kind": "custom-element-definition",
|
|
1232
|
-
"name": "bm-alert",
|
|
1233
|
-
"declaration": {
|
|
1234
|
-
"name": "BmAlert",
|
|
1235
|
-
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
]
|
|
1239
|
-
},
|
|
1240
|
-
{
|
|
1241
|
-
"kind": "javascript-module",
|
|
1242
|
-
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
1243
|
-
"declarations": [],
|
|
1244
|
-
"exports": [
|
|
1245
|
-
{
|
|
1246
|
-
"kind": "js",
|
|
1247
|
-
"name": "*",
|
|
1248
|
-
"declaration": {
|
|
1249
|
-
"name": "*",
|
|
1250
|
-
"package": "./Alert"
|
|
1251
|
-
}
|
|
1252
|
-
}
|
|
1253
|
-
]
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
"kind": "javascript-module",
|
|
1257
|
-
"path": "libs/web-components/src/lib/Box/Box.ts",
|
|
1258
|
-
"declarations": [
|
|
1259
|
-
{
|
|
1260
|
-
"kind": "class",
|
|
1261
|
-
"description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
|
|
1262
|
-
"name": "BmBox",
|
|
1263
|
-
"slots": [
|
|
1264
|
-
{
|
|
1265
|
-
"description": "Provide content for the Box",
|
|
1266
|
-
"name": "default"
|
|
1447
|
+
"description": "Specify if a Box has a shadow",
|
|
1448
|
+
"attribute": "shadow"
|
|
1267
1449
|
}
|
|
1268
1450
|
],
|
|
1269
|
-
"
|
|
1451
|
+
"attributes": [
|
|
1270
1452
|
{
|
|
1271
|
-
"kind": "field",
|
|
1272
1453
|
"name": "backgroundColor",
|
|
1273
1454
|
"type": {
|
|
1274
1455
|
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
|
|
1275
1456
|
},
|
|
1276
1457
|
"description": "Specify the background color of a Box",
|
|
1277
|
-
"
|
|
1458
|
+
"fieldName": "backgroundColor"
|
|
1278
1459
|
},
|
|
1279
1460
|
{
|
|
1280
|
-
"kind": "field",
|
|
1281
1461
|
"name": "borderColor",
|
|
1282
1462
|
"type": {
|
|
1283
1463
|
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
|
|
1284
1464
|
},
|
|
1285
1465
|
"description": "Specify the border color of a Box",
|
|
1286
|
-
"
|
|
1466
|
+
"fieldName": "borderColor"
|
|
1287
1467
|
},
|
|
1288
1468
|
{
|
|
1289
|
-
"kind": "field",
|
|
1290
1469
|
"name": "borderWidth",
|
|
1291
1470
|
"type": {
|
|
1292
1471
|
"text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
|
|
1293
1472
|
},
|
|
1294
1473
|
"description": "Specify the border width of a Box",
|
|
1295
|
-
"
|
|
1474
|
+
"fieldName": "borderWidth"
|
|
1296
1475
|
},
|
|
1297
1476
|
{
|
|
1298
|
-
"kind": "field",
|
|
1299
1477
|
"name": "borderRadius",
|
|
1300
1478
|
"type": {
|
|
1301
1479
|
"text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
|
|
1302
1480
|
},
|
|
1303
1481
|
"description": "Specify the border radius of a Box",
|
|
1304
|
-
"
|
|
1482
|
+
"fieldName": "borderRadius"
|
|
1305
1483
|
},
|
|
1306
1484
|
{
|
|
1307
|
-
"kind": "field",
|
|
1308
1485
|
"name": "px",
|
|
1309
1486
|
"type": {
|
|
1310
1487
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1311
1488
|
},
|
|
1312
1489
|
"description": "Specify before and after padding of a Box",
|
|
1313
|
-
"
|
|
1490
|
+
"fieldName": "px"
|
|
1314
1491
|
},
|
|
1315
1492
|
{
|
|
1316
|
-
"kind": "field",
|
|
1317
1493
|
"name": "py",
|
|
1318
1494
|
"type": {
|
|
1319
1495
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1320
1496
|
},
|
|
1321
1497
|
"description": "Specify top and bottom padding of a Box",
|
|
1322
|
-
"
|
|
1498
|
+
"fieldName": "py"
|
|
1323
1499
|
},
|
|
1324
1500
|
{
|
|
1325
|
-
"kind": "field",
|
|
1326
1501
|
"name": "pTop",
|
|
1327
1502
|
"type": {
|
|
1328
1503
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1329
1504
|
},
|
|
1330
1505
|
"description": "Specify top padding of a Box",
|
|
1331
|
-
"
|
|
1506
|
+
"fieldName": "pTop"
|
|
1332
1507
|
},
|
|
1333
1508
|
{
|
|
1334
|
-
"kind": "field",
|
|
1335
1509
|
"name": "pBottom",
|
|
1336
1510
|
"type": {
|
|
1337
1511
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1338
1512
|
},
|
|
1339
1513
|
"description": "Specify bottom padding of a Box",
|
|
1340
|
-
"
|
|
1514
|
+
"fieldName": "pBottom"
|
|
1341
1515
|
},
|
|
1342
1516
|
{
|
|
1343
|
-
"kind": "field",
|
|
1344
1517
|
"name": "pBefore",
|
|
1345
1518
|
"type": {
|
|
1346
1519
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1347
1520
|
},
|
|
1348
1521
|
"description": "Specify before padding of a Box",
|
|
1349
|
-
"
|
|
1522
|
+
"fieldName": "pBefore"
|
|
1350
1523
|
},
|
|
1351
1524
|
{
|
|
1352
|
-
"kind": "field",
|
|
1353
1525
|
"name": "pAfter",
|
|
1354
1526
|
"type": {
|
|
1355
1527
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1356
1528
|
},
|
|
1357
1529
|
"description": "Specify after padding of a Box",
|
|
1358
|
-
"
|
|
1530
|
+
"fieldName": "pAfter"
|
|
1359
1531
|
},
|
|
1360
1532
|
{
|
|
1361
|
-
"kind": "field",
|
|
1362
1533
|
"name": "mx",
|
|
1363
1534
|
"type": {
|
|
1364
1535
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1365
1536
|
},
|
|
1366
1537
|
"description": "Specify before and after margin of a Box",
|
|
1367
|
-
"
|
|
1538
|
+
"fieldName": "mx"
|
|
1368
1539
|
},
|
|
1369
1540
|
{
|
|
1370
|
-
"kind": "field",
|
|
1371
1541
|
"name": "my",
|
|
1372
1542
|
"type": {
|
|
1373
1543
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1374
1544
|
},
|
|
1375
1545
|
"description": "Specify top and bottom margin of a Box",
|
|
1376
|
-
"
|
|
1546
|
+
"fieldName": "my"
|
|
1377
1547
|
},
|
|
1378
1548
|
{
|
|
1379
|
-
"kind": "field",
|
|
1380
1549
|
"name": "mTop",
|
|
1381
1550
|
"type": {
|
|
1382
1551
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1383
1552
|
},
|
|
1384
1553
|
"description": "Specify top margin of a Box",
|
|
1385
|
-
"
|
|
1554
|
+
"fieldName": "mTop"
|
|
1386
1555
|
},
|
|
1387
1556
|
{
|
|
1388
|
-
"kind": "field",
|
|
1389
1557
|
"name": "mBottom",
|
|
1390
1558
|
"type": {
|
|
1391
1559
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1392
1560
|
},
|
|
1393
1561
|
"description": "Specify bottom margin of a Box",
|
|
1394
|
-
"
|
|
1562
|
+
"fieldName": "mBottom"
|
|
1395
1563
|
},
|
|
1396
1564
|
{
|
|
1397
|
-
"kind": "field",
|
|
1398
1565
|
"name": "mBefore",
|
|
1399
1566
|
"type": {
|
|
1400
1567
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1401
1568
|
},
|
|
1402
1569
|
"description": "Specify before margin of a Box",
|
|
1403
|
-
"
|
|
1570
|
+
"fieldName": "mBefore"
|
|
1404
1571
|
},
|
|
1405
1572
|
{
|
|
1406
|
-
"kind": "field",
|
|
1407
1573
|
"name": "mAfter",
|
|
1408
1574
|
"type": {
|
|
1409
1575
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1410
1576
|
},
|
|
1411
1577
|
"description": "Specify after margin of a Box",
|
|
1412
|
-
"
|
|
1578
|
+
"fieldName": "mAfter"
|
|
1413
1579
|
},
|
|
1414
1580
|
{
|
|
1415
|
-
"kind": "field",
|
|
1416
1581
|
"name": "m",
|
|
1417
1582
|
"type": {
|
|
1418
1583
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1419
1584
|
},
|
|
1420
1585
|
"description": "Specify all margin",
|
|
1421
|
-
"
|
|
1586
|
+
"fieldName": "m"
|
|
1422
1587
|
},
|
|
1423
1588
|
{
|
|
1424
|
-
"kind": "field",
|
|
1425
1589
|
"name": "p",
|
|
1426
1590
|
"type": {
|
|
1427
1591
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1428
1592
|
},
|
|
1429
1593
|
"description": "Specify all padding",
|
|
1430
|
-
"
|
|
1594
|
+
"fieldName": "p"
|
|
1431
1595
|
},
|
|
1432
1596
|
{
|
|
1433
|
-
"kind": "field",
|
|
1434
1597
|
"name": "gap",
|
|
1435
1598
|
"type": {
|
|
1436
1599
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1437
1600
|
},
|
|
1438
1601
|
"description": "Specify gap between child elements",
|
|
1439
|
-
"
|
|
1602
|
+
"fieldName": "gap"
|
|
1440
1603
|
},
|
|
1441
1604
|
{
|
|
1442
|
-
"kind": "field",
|
|
1443
1605
|
"name": "shadow",
|
|
1444
1606
|
"type": {
|
|
1445
1607
|
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1446
1608
|
},
|
|
1447
1609
|
"description": "Specify if a Box has a shadow",
|
|
1448
|
-
"
|
|
1449
|
-
}
|
|
1450
|
-
],
|
|
1451
|
-
"attributes": [
|
|
1452
|
-
{
|
|
1453
|
-
"name": "backgroundColor",
|
|
1454
|
-
"type": {
|
|
1455
|
-
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'selected-subtle' | 'highlight' | 'transparent' | 'expressive-stronger' | 'expressive-inverse' | undefined"
|
|
1456
|
-
},
|
|
1457
|
-
"description": "Specify the background color of a Box",
|
|
1458
|
-
"fieldName": "backgroundColor"
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"name": "borderColor",
|
|
1462
|
-
"type": {
|
|
1463
|
-
"text": "'positive' | 'warning' | 'negative' | 'inverse' | 'selected' | 'expressive' | 'strong' | '00' | '00-alt' | '01' | '02' | '03' | 'info-primary' | 'info-secondary' | 'positive-strong' | 'warning-strong' | 'negative-strong' | 'info-primary-strong' | 'info-secondary-strong' | 'transparent' | 'expressive-stronger' | 'focus' | undefined"
|
|
1464
|
-
},
|
|
1465
|
-
"description": "Specify the border color of a Box",
|
|
1466
|
-
"fieldName": "borderColor"
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
"name": "borderWidth",
|
|
1470
|
-
"type": {
|
|
1471
|
-
"text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
|
|
1472
|
-
},
|
|
1473
|
-
"description": "Specify the border width of a Box",
|
|
1474
|
-
"fieldName": "borderWidth"
|
|
1475
|
-
},
|
|
1476
|
-
{
|
|
1477
|
-
"name": "borderRadius",
|
|
1478
|
-
"type": {
|
|
1479
|
-
"text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
|
|
1480
|
-
},
|
|
1481
|
-
"description": "Specify the border radius of a Box",
|
|
1482
|
-
"fieldName": "borderRadius"
|
|
1483
|
-
},
|
|
1484
|
-
{
|
|
1485
|
-
"name": "px",
|
|
1486
|
-
"type": {
|
|
1487
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1488
|
-
},
|
|
1489
|
-
"description": "Specify before and after padding of a Box",
|
|
1490
|
-
"fieldName": "px"
|
|
1491
|
-
},
|
|
1492
|
-
{
|
|
1493
|
-
"name": "py",
|
|
1494
|
-
"type": {
|
|
1495
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1496
|
-
},
|
|
1497
|
-
"description": "Specify top and bottom padding of a Box",
|
|
1498
|
-
"fieldName": "py"
|
|
1499
|
-
},
|
|
1500
|
-
{
|
|
1501
|
-
"name": "pTop",
|
|
1502
|
-
"type": {
|
|
1503
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1504
|
-
},
|
|
1505
|
-
"description": "Specify top padding of a Box",
|
|
1506
|
-
"fieldName": "pTop"
|
|
1507
|
-
},
|
|
1508
|
-
{
|
|
1509
|
-
"name": "pBottom",
|
|
1510
|
-
"type": {
|
|
1511
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1512
|
-
},
|
|
1513
|
-
"description": "Specify bottom padding of a Box",
|
|
1514
|
-
"fieldName": "pBottom"
|
|
1515
|
-
},
|
|
1516
|
-
{
|
|
1517
|
-
"name": "pBefore",
|
|
1518
|
-
"type": {
|
|
1519
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1520
|
-
},
|
|
1521
|
-
"description": "Specify before padding of a Box",
|
|
1522
|
-
"fieldName": "pBefore"
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
"name": "pAfter",
|
|
1526
|
-
"type": {
|
|
1527
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1528
|
-
},
|
|
1529
|
-
"description": "Specify after padding of a Box",
|
|
1530
|
-
"fieldName": "pAfter"
|
|
1531
|
-
},
|
|
1532
|
-
{
|
|
1533
|
-
"name": "mx",
|
|
1534
|
-
"type": {
|
|
1535
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1536
|
-
},
|
|
1537
|
-
"description": "Specify before and after margin of a Box",
|
|
1538
|
-
"fieldName": "mx"
|
|
1539
|
-
},
|
|
1540
|
-
{
|
|
1541
|
-
"name": "my",
|
|
1542
|
-
"type": {
|
|
1543
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1544
|
-
},
|
|
1545
|
-
"description": "Specify top and bottom margin of a Box",
|
|
1546
|
-
"fieldName": "my"
|
|
1547
|
-
},
|
|
1548
|
-
{
|
|
1549
|
-
"name": "mTop",
|
|
1550
|
-
"type": {
|
|
1551
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1552
|
-
},
|
|
1553
|
-
"description": "Specify top margin of a Box",
|
|
1554
|
-
"fieldName": "mTop"
|
|
1555
|
-
},
|
|
1556
|
-
{
|
|
1557
|
-
"name": "mBottom",
|
|
1558
|
-
"type": {
|
|
1559
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1560
|
-
},
|
|
1561
|
-
"description": "Specify bottom margin of a Box",
|
|
1562
|
-
"fieldName": "mBottom"
|
|
1563
|
-
},
|
|
1564
|
-
{
|
|
1565
|
-
"name": "mBefore",
|
|
1566
|
-
"type": {
|
|
1567
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1568
|
-
},
|
|
1569
|
-
"description": "Specify before margin of a Box",
|
|
1570
|
-
"fieldName": "mBefore"
|
|
1571
|
-
},
|
|
1572
|
-
{
|
|
1573
|
-
"name": "mAfter",
|
|
1574
|
-
"type": {
|
|
1575
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1576
|
-
},
|
|
1577
|
-
"description": "Specify after margin of a Box",
|
|
1578
|
-
"fieldName": "mAfter"
|
|
1579
|
-
},
|
|
1580
|
-
{
|
|
1581
|
-
"name": "m",
|
|
1582
|
-
"type": {
|
|
1583
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1584
|
-
},
|
|
1585
|
-
"description": "Specify all margin",
|
|
1586
|
-
"fieldName": "m"
|
|
1587
|
-
},
|
|
1588
|
-
{
|
|
1589
|
-
"name": "p",
|
|
1590
|
-
"type": {
|
|
1591
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1592
|
-
},
|
|
1593
|
-
"description": "Specify all padding",
|
|
1594
|
-
"fieldName": "p"
|
|
1595
|
-
},
|
|
1596
|
-
{
|
|
1597
|
-
"name": "gap",
|
|
1598
|
-
"type": {
|
|
1599
|
-
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1600
|
-
},
|
|
1601
|
-
"description": "Specify gap between child elements",
|
|
1602
|
-
"fieldName": "gap"
|
|
1603
|
-
},
|
|
1604
|
-
{
|
|
1605
|
-
"name": "shadow",
|
|
1606
|
-
"type": {
|
|
1607
|
-
"text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
|
|
1608
|
-
},
|
|
1609
|
-
"description": "Specify if a Box has a shadow",
|
|
1610
|
-
"fieldName": "shadow"
|
|
1610
|
+
"fieldName": "shadow"
|
|
1611
1611
|
}
|
|
1612
1612
|
],
|
|
1613
1613
|
"superclass": {
|
|
@@ -6425,139 +6425,249 @@
|
|
|
6425
6425
|
},
|
|
6426
6426
|
{
|
|
6427
6427
|
"kind": "javascript-module",
|
|
6428
|
-
"path": "libs/web-components/src/lib/wip/
|
|
6428
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.context.ts",
|
|
6429
|
+
"declarations": [
|
|
6430
|
+
{
|
|
6431
|
+
"kind": "variable",
|
|
6432
|
+
"name": "bmFormInitials",
|
|
6433
|
+
"type": {
|
|
6434
|
+
"text": "BmFormContext"
|
|
6435
|
+
},
|
|
6436
|
+
"default": "{ required: false, disabled: false, readOnly: false, initialValues: {}, registerField: () => undefined, formBlurHandler: () => undefined, formChangeHandler: () => undefined, }"
|
|
6437
|
+
},
|
|
6438
|
+
{
|
|
6439
|
+
"kind": "variable",
|
|
6440
|
+
"name": "bmFormContext"
|
|
6441
|
+
}
|
|
6442
|
+
],
|
|
6443
|
+
"exports": [
|
|
6444
|
+
{
|
|
6445
|
+
"kind": "js",
|
|
6446
|
+
"name": "bmFormInitials",
|
|
6447
|
+
"declaration": {
|
|
6448
|
+
"name": "bmFormInitials",
|
|
6449
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
6450
|
+
}
|
|
6451
|
+
},
|
|
6452
|
+
{
|
|
6453
|
+
"kind": "js",
|
|
6454
|
+
"name": "bmFormContext",
|
|
6455
|
+
"declaration": {
|
|
6456
|
+
"name": "bmFormContext",
|
|
6457
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
6458
|
+
}
|
|
6459
|
+
}
|
|
6460
|
+
]
|
|
6461
|
+
},
|
|
6462
|
+
{
|
|
6463
|
+
"kind": "javascript-module",
|
|
6464
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.decorator.ts",
|
|
6429
6465
|
"declarations": [
|
|
6430
6466
|
{
|
|
6431
6467
|
"kind": "class",
|
|
6432
|
-
"description": "
|
|
6433
|
-
"name": "
|
|
6434
|
-
"slots": [
|
|
6435
|
-
{
|
|
6436
|
-
"description": "Specify text for the Button",
|
|
6437
|
-
"name": "default",
|
|
6438
|
-
"inheritedFrom": {
|
|
6439
|
-
"name": "BmButton",
|
|
6440
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6441
|
-
}
|
|
6442
|
-
},
|
|
6443
|
-
{
|
|
6444
|
-
"description": "Specify if the Button displays icon before the text",
|
|
6445
|
-
"name": "iconBefore",
|
|
6446
|
-
"inheritedFrom": {
|
|
6447
|
-
"name": "BmButton",
|
|
6448
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6449
|
-
}
|
|
6450
|
-
},
|
|
6451
|
-
{
|
|
6452
|
-
"description": "Specify if the Button displays icon after the text",
|
|
6453
|
-
"name": "iconAfter",
|
|
6454
|
-
"inheritedFrom": {
|
|
6455
|
-
"name": "BmButton",
|
|
6456
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6457
|
-
}
|
|
6458
|
-
}
|
|
6459
|
-
],
|
|
6468
|
+
"description": "### Attributes:\n- **id** \n- **name** \n- **value** \n- **validationRules** \n- **input-aria-label** ",
|
|
6469
|
+
"name": "FormField",
|
|
6460
6470
|
"members": [
|
|
6461
6471
|
{
|
|
6462
6472
|
"kind": "field",
|
|
6463
|
-
"name": "
|
|
6473
|
+
"name": "formAssociated",
|
|
6464
6474
|
"type": {
|
|
6465
|
-
"text": "boolean
|
|
6475
|
+
"text": "boolean"
|
|
6466
6476
|
},
|
|
6467
|
-
"
|
|
6468
|
-
"
|
|
6477
|
+
"static": true,
|
|
6478
|
+
"default": "true"
|
|
6469
6479
|
},
|
|
6470
6480
|
{
|
|
6471
6481
|
"kind": "field",
|
|
6472
|
-
"name": "
|
|
6482
|
+
"name": "id",
|
|
6473
6483
|
"type": {
|
|
6474
|
-
"text": "string
|
|
6484
|
+
"text": "string"
|
|
6475
6485
|
},
|
|
6476
|
-
"
|
|
6477
|
-
"attribute": "
|
|
6486
|
+
"default": "''",
|
|
6487
|
+
"attribute": "id"
|
|
6478
6488
|
},
|
|
6479
6489
|
{
|
|
6480
6490
|
"kind": "field",
|
|
6481
|
-
"name": "
|
|
6491
|
+
"name": "name",
|
|
6482
6492
|
"type": {
|
|
6483
|
-
"text": "
|
|
6493
|
+
"text": "string"
|
|
6484
6494
|
},
|
|
6485
|
-
"
|
|
6486
|
-
"attribute": "
|
|
6495
|
+
"default": "''",
|
|
6496
|
+
"attribute": "name",
|
|
6497
|
+
"reflects": true
|
|
6487
6498
|
},
|
|
6488
6499
|
{
|
|
6489
6500
|
"kind": "field",
|
|
6490
|
-
"name": "
|
|
6501
|
+
"name": "value",
|
|
6491
6502
|
"type": {
|
|
6492
|
-
"text": "
|
|
6503
|
+
"text": "string"
|
|
6493
6504
|
},
|
|
6494
|
-
"default": "'
|
|
6495
|
-
"
|
|
6496
|
-
"attribute": "appearance",
|
|
6497
|
-
"inheritedFrom": {
|
|
6498
|
-
"name": "BmButton",
|
|
6499
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6500
|
-
}
|
|
6505
|
+
"default": "''",
|
|
6506
|
+
"attribute": "value"
|
|
6501
6507
|
},
|
|
6502
6508
|
{
|
|
6503
6509
|
"kind": "field",
|
|
6504
|
-
"name": "
|
|
6510
|
+
"name": "validationRules",
|
|
6505
6511
|
"type": {
|
|
6506
|
-
"text": "
|
|
6512
|
+
"text": "Array<FormValidator>"
|
|
6507
6513
|
},
|
|
6508
|
-
"default": "
|
|
6509
|
-
"
|
|
6510
|
-
"attribute": "kind",
|
|
6511
|
-
"inheritedFrom": {
|
|
6512
|
-
"name": "BmButton",
|
|
6513
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6514
|
-
}
|
|
6514
|
+
"default": "[]",
|
|
6515
|
+
"attribute": "validationRules"
|
|
6515
6516
|
},
|
|
6516
6517
|
{
|
|
6517
6518
|
"kind": "field",
|
|
6518
|
-
"name": "
|
|
6519
|
+
"name": "inputAriaLabel",
|
|
6519
6520
|
"type": {
|
|
6520
|
-
"text": "
|
|
6521
|
+
"text": "string | undefined"
|
|
6521
6522
|
},
|
|
6522
|
-
"
|
|
6523
|
-
|
|
6524
|
-
|
|
6525
|
-
"
|
|
6526
|
-
|
|
6527
|
-
|
|
6523
|
+
"attribute": "input-aria-label"
|
|
6524
|
+
},
|
|
6525
|
+
{
|
|
6526
|
+
"kind": "field",
|
|
6527
|
+
"name": "formContext",
|
|
6528
|
+
"type": {
|
|
6529
|
+
"text": "BmFormContext"
|
|
6530
|
+
}
|
|
6531
|
+
},
|
|
6532
|
+
{
|
|
6533
|
+
"kind": "method",
|
|
6534
|
+
"name": "formAssociatedCallback",
|
|
6535
|
+
"return": {
|
|
6536
|
+
"type": {
|
|
6537
|
+
"text": "void"
|
|
6538
|
+
}
|
|
6539
|
+
}
|
|
6540
|
+
},
|
|
6541
|
+
{
|
|
6542
|
+
"kind": "method",
|
|
6543
|
+
"name": "formResetCallback",
|
|
6544
|
+
"return": {
|
|
6545
|
+
"type": {
|
|
6546
|
+
"text": "void"
|
|
6547
|
+
}
|
|
6528
6548
|
}
|
|
6529
6549
|
},
|
|
6550
|
+
{
|
|
6551
|
+
"kind": "method",
|
|
6552
|
+
"name": "finalizeAssociatedCallback",
|
|
6553
|
+
"return": {
|
|
6554
|
+
"type": {
|
|
6555
|
+
"text": "FinalizeAssociatedResult"
|
|
6556
|
+
}
|
|
6557
|
+
},
|
|
6558
|
+
"parameters": [
|
|
6559
|
+
{
|
|
6560
|
+
"name": "ctxValue",
|
|
6561
|
+
"type": {
|
|
6562
|
+
"text": "string"
|
|
6563
|
+
}
|
|
6564
|
+
}
|
|
6565
|
+
]
|
|
6566
|
+
}
|
|
6567
|
+
],
|
|
6568
|
+
"attributes": [
|
|
6569
|
+
{
|
|
6570
|
+
"name": "id",
|
|
6571
|
+
"type": {
|
|
6572
|
+
"text": "string"
|
|
6573
|
+
},
|
|
6574
|
+
"default": "''",
|
|
6575
|
+
"fieldName": "id"
|
|
6576
|
+
},
|
|
6577
|
+
{
|
|
6578
|
+
"name": "name",
|
|
6579
|
+
"type": {
|
|
6580
|
+
"text": "string"
|
|
6581
|
+
},
|
|
6582
|
+
"default": "''",
|
|
6583
|
+
"fieldName": "name"
|
|
6584
|
+
},
|
|
6585
|
+
{
|
|
6586
|
+
"name": "value",
|
|
6587
|
+
"type": {
|
|
6588
|
+
"text": "string"
|
|
6589
|
+
},
|
|
6590
|
+
"default": "''",
|
|
6591
|
+
"fieldName": "value"
|
|
6592
|
+
},
|
|
6593
|
+
{
|
|
6594
|
+
"name": "validationRules",
|
|
6595
|
+
"type": {
|
|
6596
|
+
"text": "Array<FormValidator>"
|
|
6597
|
+
},
|
|
6598
|
+
"default": "[]",
|
|
6599
|
+
"fieldName": "validationRules"
|
|
6600
|
+
},
|
|
6601
|
+
{
|
|
6602
|
+
"name": "input-aria-label",
|
|
6603
|
+
"type": {
|
|
6604
|
+
"text": "string | undefined"
|
|
6605
|
+
},
|
|
6606
|
+
"fieldName": "inputAriaLabel"
|
|
6607
|
+
}
|
|
6608
|
+
],
|
|
6609
|
+
"superclass": {
|
|
6610
|
+
"name": "LitElement",
|
|
6611
|
+
"package": "lit"
|
|
6612
|
+
},
|
|
6613
|
+
"customElement": true
|
|
6614
|
+
}
|
|
6615
|
+
],
|
|
6616
|
+
"exports": [
|
|
6617
|
+
{
|
|
6618
|
+
"kind": "js",
|
|
6619
|
+
"name": "FormField",
|
|
6620
|
+
"declaration": {
|
|
6621
|
+
"name": "FormField",
|
|
6622
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
6623
|
+
}
|
|
6624
|
+
}
|
|
6625
|
+
]
|
|
6626
|
+
},
|
|
6627
|
+
{
|
|
6628
|
+
"kind": "javascript-module",
|
|
6629
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.ts",
|
|
6630
|
+
"declarations": [
|
|
6631
|
+
{
|
|
6632
|
+
"kind": "class",
|
|
6633
|
+
"description": "### Attributes:\n- **validationMode** - Specify if validation runs on change or when loosing focus\n- **initialValues** - Specify initial values on Form controls based on their names\n- **required** - Specify if input is a required\n- **disabled** - Specify if input is a disabled\n- **readOnly** - Specify if input is a read only\n- **action** \n- **method** \n- **target** \n- **enctype** ",
|
|
6634
|
+
"name": "BmForm",
|
|
6635
|
+
"slots": [
|
|
6636
|
+
{
|
|
6637
|
+
"description": "Add controls to the Form",
|
|
6638
|
+
"name": "slot"
|
|
6639
|
+
}
|
|
6640
|
+
],
|
|
6641
|
+
"members": [
|
|
6530
6642
|
{
|
|
6531
6643
|
"kind": "field",
|
|
6532
|
-
"name": "
|
|
6644
|
+
"name": "validationMode",
|
|
6533
6645
|
"type": {
|
|
6534
|
-
"text": "
|
|
6646
|
+
"text": "'onChange' | 'onBlur' | 'onSubmit'"
|
|
6535
6647
|
},
|
|
6536
|
-
"
|
|
6537
|
-
"
|
|
6538
|
-
"
|
|
6539
|
-
"inheritedFrom": {
|
|
6540
|
-
"name": "BmButton",
|
|
6541
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6542
|
-
}
|
|
6648
|
+
"default": "'onBlur'",
|
|
6649
|
+
"description": "Specify if validation runs on change or when loosing focus",
|
|
6650
|
+
"attribute": "validationMode"
|
|
6543
6651
|
},
|
|
6544
6652
|
{
|
|
6545
6653
|
"kind": "field",
|
|
6546
|
-
"name": "
|
|
6547
|
-
"
|
|
6654
|
+
"name": "initialValues",
|
|
6655
|
+
"type": {
|
|
6656
|
+
"text": "Record<string, FormValue>"
|
|
6657
|
+
},
|
|
6658
|
+
"default": "{}",
|
|
6659
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
6660
|
+
"attribute": "initialValues"
|
|
6548
6661
|
},
|
|
6549
6662
|
{
|
|
6550
6663
|
"kind": "field",
|
|
6551
|
-
"name": "
|
|
6664
|
+
"name": "required",
|
|
6552
6665
|
"type": {
|
|
6553
6666
|
"text": "boolean"
|
|
6554
6667
|
},
|
|
6555
|
-
"
|
|
6556
|
-
"
|
|
6557
|
-
"
|
|
6558
|
-
"name": "BmButton",
|
|
6559
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6560
|
-
}
|
|
6668
|
+
"default": "false",
|
|
6669
|
+
"description": "Specify if input is a required",
|
|
6670
|
+
"attribute": "required"
|
|
6561
6671
|
},
|
|
6562
6672
|
{
|
|
6563
6673
|
"kind": "field",
|
|
@@ -6566,78 +6676,62 @@
|
|
|
6566
6676
|
"text": "boolean"
|
|
6567
6677
|
},
|
|
6568
6678
|
"default": "false",
|
|
6569
|
-
"description": "Specify if
|
|
6570
|
-
"attribute": "disabled"
|
|
6571
|
-
"inheritedFrom": {
|
|
6572
|
-
"name": "BmButton",
|
|
6573
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6574
|
-
}
|
|
6679
|
+
"description": "Specify if input is a disabled",
|
|
6680
|
+
"attribute": "disabled"
|
|
6575
6681
|
},
|
|
6576
6682
|
{
|
|
6577
6683
|
"kind": "field",
|
|
6578
|
-
"name": "
|
|
6684
|
+
"name": "readOnly",
|
|
6579
6685
|
"type": {
|
|
6580
6686
|
"text": "boolean"
|
|
6581
6687
|
},
|
|
6582
6688
|
"default": "false",
|
|
6583
|
-
"description": "Specify if
|
|
6584
|
-
"attribute": "
|
|
6585
|
-
"inheritedFrom": {
|
|
6586
|
-
"name": "BmButton",
|
|
6587
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6588
|
-
}
|
|
6689
|
+
"description": "Specify if input is a read only",
|
|
6690
|
+
"attribute": "readOnly"
|
|
6589
6691
|
},
|
|
6590
6692
|
{
|
|
6591
6693
|
"kind": "field",
|
|
6592
|
-
"name": "
|
|
6694
|
+
"name": "action",
|
|
6593
6695
|
"type": {
|
|
6594
6696
|
"text": "string | undefined"
|
|
6595
6697
|
},
|
|
6596
|
-
"
|
|
6597
|
-
"attribute": "width",
|
|
6598
|
-
"inheritedFrom": {
|
|
6599
|
-
"name": "BmButton",
|
|
6600
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6601
|
-
}
|
|
6698
|
+
"attribute": "action"
|
|
6602
6699
|
},
|
|
6603
6700
|
{
|
|
6604
6701
|
"kind": "field",
|
|
6605
|
-
"name": "
|
|
6702
|
+
"name": "method",
|
|
6606
6703
|
"type": {
|
|
6607
6704
|
"text": "string | undefined"
|
|
6608
6705
|
},
|
|
6609
|
-
"
|
|
6610
|
-
"attribute": "height",
|
|
6611
|
-
"inheritedFrom": {
|
|
6612
|
-
"name": "BmButton",
|
|
6613
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6614
|
-
}
|
|
6706
|
+
"attribute": "method"
|
|
6615
6707
|
},
|
|
6616
6708
|
{
|
|
6617
6709
|
"kind": "field",
|
|
6618
|
-
"name": "
|
|
6710
|
+
"name": "target",
|
|
6619
6711
|
"type": {
|
|
6620
|
-
"text": "
|
|
6712
|
+
"text": "string | undefined"
|
|
6621
6713
|
},
|
|
6622
|
-
"
|
|
6623
|
-
"attribute": "theme",
|
|
6624
|
-
"inheritedFrom": {
|
|
6625
|
-
"name": "BmButton",
|
|
6626
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6627
|
-
}
|
|
6714
|
+
"attribute": "target"
|
|
6628
6715
|
},
|
|
6629
6716
|
{
|
|
6630
6717
|
"kind": "field",
|
|
6631
|
-
"name": "
|
|
6718
|
+
"name": "enctype",
|
|
6632
6719
|
"type": {
|
|
6633
|
-
"text": "string"
|
|
6720
|
+
"text": "string | undefined"
|
|
6634
6721
|
},
|
|
6635
|
-
"
|
|
6636
|
-
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6722
|
+
"attribute": "enctype"
|
|
6723
|
+
},
|
|
6724
|
+
{
|
|
6725
|
+
"kind": "field",
|
|
6726
|
+
"name": "formMeta",
|
|
6727
|
+
"type": {
|
|
6728
|
+
"text": "Record<string, FieldMeta>"
|
|
6729
|
+
},
|
|
6730
|
+
"default": "{}"
|
|
6731
|
+
},
|
|
6732
|
+
{
|
|
6733
|
+
"kind": "field",
|
|
6734
|
+
"name": "formRef"
|
|
6641
6735
|
},
|
|
6642
6736
|
{
|
|
6643
6737
|
"kind": "field",
|
|
@@ -6645,75 +6739,43 @@
|
|
|
6645
6739
|
"type": {
|
|
6646
6740
|
"text": "BmFormContext"
|
|
6647
6741
|
},
|
|
6648
|
-
"
|
|
6649
|
-
|
|
6650
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6651
|
-
}
|
|
6742
|
+
"privacy": "public",
|
|
6743
|
+
"default": "bmFormInitials"
|
|
6652
6744
|
}
|
|
6653
6745
|
],
|
|
6654
|
-
"
|
|
6655
|
-
{
|
|
6656
|
-
"name": "error",
|
|
6657
|
-
"type": {
|
|
6658
|
-
"text": "boolean | undefined"
|
|
6659
|
-
},
|
|
6660
|
-
"description": "Specify if FileUpload is in error state",
|
|
6661
|
-
"fieldName": "error"
|
|
6662
|
-
},
|
|
6663
|
-
{
|
|
6664
|
-
"name": "accept",
|
|
6665
|
-
"type": {
|
|
6666
|
-
"text": "string | undefined"
|
|
6667
|
-
},
|
|
6668
|
-
"description": "Specify the accepted file types",
|
|
6669
|
-
"fieldName": "accept"
|
|
6670
|
-
},
|
|
6746
|
+
"events": [
|
|
6671
6747
|
{
|
|
6672
|
-
"
|
|
6673
|
-
"
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
"fieldName": "multiple"
|
|
6678
|
-
},
|
|
6748
|
+
"description": "Validates the inputs and submits the form",
|
|
6749
|
+
"name": "submit"
|
|
6750
|
+
}
|
|
6751
|
+
],
|
|
6752
|
+
"attributes": [
|
|
6679
6753
|
{
|
|
6680
|
-
"name": "
|
|
6754
|
+
"name": "validationMode",
|
|
6681
6755
|
"type": {
|
|
6682
|
-
"text": "'
|
|
6756
|
+
"text": "'onChange' | 'onBlur' | 'onSubmit'"
|
|
6683
6757
|
},
|
|
6684
|
-
"default": "'
|
|
6685
|
-
"description": "Specify
|
|
6686
|
-
"fieldName": "
|
|
6687
|
-
"inheritedFrom": {
|
|
6688
|
-
"name": "BmButton",
|
|
6689
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6690
|
-
}
|
|
6758
|
+
"default": "'onBlur'",
|
|
6759
|
+
"description": "Specify if validation runs on change or when loosing focus",
|
|
6760
|
+
"fieldName": "validationMode"
|
|
6691
6761
|
},
|
|
6692
6762
|
{
|
|
6693
|
-
"name": "
|
|
6763
|
+
"name": "initialValues",
|
|
6694
6764
|
"type": {
|
|
6695
|
-
"text": "
|
|
6765
|
+
"text": "Record<string, FormValue>"
|
|
6696
6766
|
},
|
|
6697
|
-
"default": "
|
|
6698
|
-
"description": "Specify
|
|
6699
|
-
"fieldName": "
|
|
6700
|
-
"inheritedFrom": {
|
|
6701
|
-
"name": "BmButton",
|
|
6702
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6703
|
-
}
|
|
6767
|
+
"default": "{}",
|
|
6768
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
6769
|
+
"fieldName": "initialValues"
|
|
6704
6770
|
},
|
|
6705
6771
|
{
|
|
6706
|
-
"name": "
|
|
6772
|
+
"name": "required",
|
|
6707
6773
|
"type": {
|
|
6708
|
-
"text": "
|
|
6774
|
+
"text": "boolean"
|
|
6709
6775
|
},
|
|
6710
|
-
"default": "
|
|
6711
|
-
"description": "Specify
|
|
6712
|
-
"fieldName": "
|
|
6713
|
-
"inheritedFrom": {
|
|
6714
|
-
"name": "BmButton",
|
|
6715
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6716
|
-
}
|
|
6776
|
+
"default": "false",
|
|
6777
|
+
"description": "Specify if input is a required",
|
|
6778
|
+
"fieldName": "required"
|
|
6717
6779
|
},
|
|
6718
6780
|
{
|
|
6719
6781
|
"name": "disabled",
|
|
@@ -6721,126 +6783,163 @@
|
|
|
6721
6783
|
"text": "boolean"
|
|
6722
6784
|
},
|
|
6723
6785
|
"default": "false",
|
|
6724
|
-
"description": "Specify if
|
|
6725
|
-
"fieldName": "disabled"
|
|
6726
|
-
"inheritedFrom": {
|
|
6727
|
-
"name": "BmButton",
|
|
6728
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6729
|
-
}
|
|
6786
|
+
"description": "Specify if input is a disabled",
|
|
6787
|
+
"fieldName": "disabled"
|
|
6730
6788
|
},
|
|
6731
6789
|
{
|
|
6732
|
-
"name": "
|
|
6790
|
+
"name": "readOnly",
|
|
6733
6791
|
"type": {
|
|
6734
6792
|
"text": "boolean"
|
|
6735
6793
|
},
|
|
6736
6794
|
"default": "false",
|
|
6737
|
-
"description": "Specify if
|
|
6738
|
-
"fieldName": "
|
|
6739
|
-
"inheritedFrom": {
|
|
6740
|
-
"name": "BmButton",
|
|
6741
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6742
|
-
}
|
|
6795
|
+
"description": "Specify if input is a read only",
|
|
6796
|
+
"fieldName": "readOnly"
|
|
6743
6797
|
},
|
|
6744
6798
|
{
|
|
6745
|
-
"name": "
|
|
6799
|
+
"name": "action",
|
|
6746
6800
|
"type": {
|
|
6747
6801
|
"text": "string | undefined"
|
|
6748
6802
|
},
|
|
6749
|
-
"
|
|
6750
|
-
"fieldName": "width",
|
|
6751
|
-
"inheritedFrom": {
|
|
6752
|
-
"name": "BmButton",
|
|
6753
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6754
|
-
}
|
|
6803
|
+
"fieldName": "action"
|
|
6755
6804
|
},
|
|
6756
6805
|
{
|
|
6757
|
-
"name": "
|
|
6806
|
+
"name": "method",
|
|
6758
6807
|
"type": {
|
|
6759
6808
|
"text": "string | undefined"
|
|
6760
6809
|
},
|
|
6761
|
-
"
|
|
6762
|
-
"fieldName": "height",
|
|
6763
|
-
"inheritedFrom": {
|
|
6764
|
-
"name": "BmButton",
|
|
6765
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6766
|
-
}
|
|
6767
|
-
},
|
|
6768
|
-
{
|
|
6769
|
-
"name": "theme",
|
|
6770
|
-
"type": {
|
|
6771
|
-
"text": "'light' | 'dark' | undefined"
|
|
6772
|
-
},
|
|
6773
|
-
"description": "Specify the theme of the Button",
|
|
6774
|
-
"fieldName": "theme",
|
|
6775
|
-
"inheritedFrom": {
|
|
6776
|
-
"name": "BmButton",
|
|
6777
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6778
|
-
}
|
|
6810
|
+
"fieldName": "method"
|
|
6779
6811
|
},
|
|
6780
6812
|
{
|
|
6781
|
-
"name": "
|
|
6813
|
+
"name": "target",
|
|
6782
6814
|
"type": {
|
|
6783
|
-
"text": "
|
|
6815
|
+
"text": "string | undefined"
|
|
6784
6816
|
},
|
|
6785
|
-
"
|
|
6786
|
-
"fieldName": "iconOnly",
|
|
6787
|
-
"inheritedFrom": {
|
|
6788
|
-
"name": "BmButton",
|
|
6789
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6790
|
-
}
|
|
6817
|
+
"fieldName": "target"
|
|
6791
6818
|
},
|
|
6792
6819
|
{
|
|
6793
|
-
"name": "
|
|
6820
|
+
"name": "enctype",
|
|
6794
6821
|
"type": {
|
|
6795
|
-
"text": "string"
|
|
6822
|
+
"text": "string | undefined"
|
|
6796
6823
|
},
|
|
6797
|
-
"
|
|
6798
|
-
"fieldName": "type",
|
|
6799
|
-
"inheritedFrom": {
|
|
6800
|
-
"name": "BmButton",
|
|
6801
|
-
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6802
|
-
}
|
|
6824
|
+
"fieldName": "enctype"
|
|
6803
6825
|
}
|
|
6804
6826
|
],
|
|
6805
6827
|
"superclass": {
|
|
6806
|
-
"name": "
|
|
6807
|
-
"
|
|
6828
|
+
"name": "LitElement",
|
|
6829
|
+
"package": "lit"
|
|
6808
6830
|
},
|
|
6809
|
-
"
|
|
6831
|
+
"summary": "`bm-form`",
|
|
6832
|
+
"tagName": "bm-form",
|
|
6810
6833
|
"customElement": true
|
|
6811
6834
|
}
|
|
6812
6835
|
],
|
|
6813
6836
|
"exports": [
|
|
6814
6837
|
{
|
|
6815
6838
|
"kind": "js",
|
|
6816
|
-
"name": "
|
|
6839
|
+
"name": "validators",
|
|
6817
6840
|
"declaration": {
|
|
6818
|
-
"name": "
|
|
6819
|
-
"
|
|
6841
|
+
"name": "validators",
|
|
6842
|
+
"package": "@viasat/beam-shared/components/form"
|
|
6843
|
+
}
|
|
6844
|
+
},
|
|
6845
|
+
{
|
|
6846
|
+
"kind": "js",
|
|
6847
|
+
"name": "BmForm",
|
|
6848
|
+
"declaration": {
|
|
6849
|
+
"name": "BmForm",
|
|
6850
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.ts"
|
|
6820
6851
|
}
|
|
6821
6852
|
},
|
|
6822
6853
|
{
|
|
6823
6854
|
"kind": "custom-element-definition",
|
|
6824
|
-
"name": "bm-
|
|
6855
|
+
"name": "bm-form",
|
|
6825
6856
|
"declaration": {
|
|
6826
|
-
"name": "
|
|
6827
|
-
"module": "libs/web-components/src/lib/wip/
|
|
6857
|
+
"name": "BmForm",
|
|
6858
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.ts"
|
|
6828
6859
|
}
|
|
6829
6860
|
}
|
|
6830
6861
|
]
|
|
6831
6862
|
},
|
|
6832
6863
|
{
|
|
6833
6864
|
"kind": "javascript-module",
|
|
6834
|
-
"path": "libs/web-components/src/lib/wip/
|
|
6865
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.utils.ts",
|
|
6866
|
+
"declarations": [
|
|
6867
|
+
{
|
|
6868
|
+
"kind": "function",
|
|
6869
|
+
"name": "createId",
|
|
6870
|
+
"return": {
|
|
6871
|
+
"type": {
|
|
6872
|
+
"text": "string"
|
|
6873
|
+
}
|
|
6874
|
+
}
|
|
6875
|
+
}
|
|
6876
|
+
],
|
|
6877
|
+
"exports": [
|
|
6878
|
+
{
|
|
6879
|
+
"kind": "js",
|
|
6880
|
+
"name": "createId",
|
|
6881
|
+
"declaration": {
|
|
6882
|
+
"name": "createId",
|
|
6883
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.utils.ts"
|
|
6884
|
+
}
|
|
6885
|
+
}
|
|
6886
|
+
]
|
|
6887
|
+
},
|
|
6888
|
+
{
|
|
6889
|
+
"kind": "javascript-module",
|
|
6890
|
+
"path": "libs/web-components/src/lib/wip/Form/index.ts",
|
|
6891
|
+
"declarations": [],
|
|
6892
|
+
"exports": [
|
|
6893
|
+
{
|
|
6894
|
+
"kind": "js",
|
|
6895
|
+
"name": "*",
|
|
6896
|
+
"declaration": {
|
|
6897
|
+
"name": "*",
|
|
6898
|
+
"package": "./Form"
|
|
6899
|
+
}
|
|
6900
|
+
},
|
|
6901
|
+
{
|
|
6902
|
+
"kind": "js",
|
|
6903
|
+
"name": "*",
|
|
6904
|
+
"declaration": {
|
|
6905
|
+
"name": "*",
|
|
6906
|
+
"package": "./Form.decorator"
|
|
6907
|
+
}
|
|
6908
|
+
}
|
|
6909
|
+
]
|
|
6910
|
+
},
|
|
6911
|
+
{
|
|
6912
|
+
"kind": "javascript-module",
|
|
6913
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Button.ts",
|
|
6835
6914
|
"declarations": [
|
|
6836
6915
|
{
|
|
6837
6916
|
"kind": "class",
|
|
6838
|
-
"description": "`bm-file-upload-
|
|
6839
|
-
"name": "
|
|
6917
|
+
"description": "`bm-file-upload-button`\n\n### Attributes:\n- **error** - Specify if FileUpload is in error state\n- **accept** - Specify the accepted file types\n- **multiple** - Specify if multiple files can be uploaded",
|
|
6918
|
+
"name": "BmFileUploadButton",
|
|
6840
6919
|
"slots": [
|
|
6841
6920
|
{
|
|
6842
|
-
"description": "Specify text for the
|
|
6843
|
-
"name": "default"
|
|
6921
|
+
"description": "Specify text for the Button",
|
|
6922
|
+
"name": "default",
|
|
6923
|
+
"inheritedFrom": {
|
|
6924
|
+
"name": "BmButton",
|
|
6925
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6926
|
+
}
|
|
6927
|
+
},
|
|
6928
|
+
{
|
|
6929
|
+
"description": "Specify if the Button displays icon before the text",
|
|
6930
|
+
"name": "iconBefore",
|
|
6931
|
+
"inheritedFrom": {
|
|
6932
|
+
"name": "BmButton",
|
|
6933
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6934
|
+
}
|
|
6935
|
+
},
|
|
6936
|
+
{
|
|
6937
|
+
"description": "Specify if the Button displays icon after the text",
|
|
6938
|
+
"name": "iconAfter",
|
|
6939
|
+
"inheritedFrom": {
|
|
6940
|
+
"name": "BmButton",
|
|
6941
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6942
|
+
}
|
|
6844
6943
|
}
|
|
6845
6944
|
],
|
|
6846
6945
|
"members": [
|
|
@@ -6855,376 +6954,389 @@
|
|
|
6855
6954
|
},
|
|
6856
6955
|
{
|
|
6857
6956
|
"kind": "field",
|
|
6858
|
-
"name": "
|
|
6957
|
+
"name": "accept",
|
|
6859
6958
|
"type": {
|
|
6860
|
-
"text": "
|
|
6959
|
+
"text": "string | undefined"
|
|
6861
6960
|
},
|
|
6862
|
-
"description": "Specify the
|
|
6863
|
-
"attribute": "
|
|
6961
|
+
"description": "Specify the accepted file types",
|
|
6962
|
+
"attribute": "accept"
|
|
6864
6963
|
},
|
|
6865
6964
|
{
|
|
6866
6965
|
"kind": "field",
|
|
6867
|
-
"name": "
|
|
6966
|
+
"name": "multiple",
|
|
6868
6967
|
"type": {
|
|
6869
6968
|
"text": "boolean | undefined"
|
|
6870
6969
|
},
|
|
6871
|
-
"
|
|
6872
|
-
"
|
|
6873
|
-
"attribute": "disabled"
|
|
6970
|
+
"description": "Specify if multiple files can be uploaded",
|
|
6971
|
+
"attribute": "multiple"
|
|
6874
6972
|
},
|
|
6875
6973
|
{
|
|
6876
6974
|
"kind": "field",
|
|
6877
|
-
"name": "
|
|
6975
|
+
"name": "appearance",
|
|
6878
6976
|
"type": {
|
|
6879
|
-
"text": "
|
|
6977
|
+
"text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
|
|
6880
6978
|
},
|
|
6881
|
-
"
|
|
6882
|
-
"
|
|
6979
|
+
"default": "'neutral-subtle'",
|
|
6980
|
+
"description": "Specify the appearance of a Button",
|
|
6981
|
+
"attribute": "appearance",
|
|
6982
|
+
"inheritedFrom": {
|
|
6983
|
+
"name": "BmButton",
|
|
6984
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6985
|
+
}
|
|
6883
6986
|
},
|
|
6884
6987
|
{
|
|
6885
6988
|
"kind": "field",
|
|
6886
|
-
"name": "
|
|
6989
|
+
"name": "kind",
|
|
6887
6990
|
"type": {
|
|
6888
|
-
"text": "
|
|
6991
|
+
"text": "'filled' | 'outline' | 'ghost' | 'bare'"
|
|
6889
6992
|
},
|
|
6890
|
-
"
|
|
6891
|
-
"
|
|
6993
|
+
"default": "'outline'",
|
|
6994
|
+
"description": "Specify the kind of Button",
|
|
6995
|
+
"attribute": "kind",
|
|
6996
|
+
"inheritedFrom": {
|
|
6997
|
+
"name": "BmButton",
|
|
6998
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
6999
|
+
}
|
|
6892
7000
|
},
|
|
6893
7001
|
{
|
|
6894
7002
|
"kind": "field",
|
|
6895
|
-
"name": "
|
|
7003
|
+
"name": "size",
|
|
6896
7004
|
"type": {
|
|
6897
|
-
"text": "
|
|
7005
|
+
"text": "'sm' | 'md' | 'lg'"
|
|
6898
7006
|
},
|
|
6899
|
-
"
|
|
6900
|
-
"
|
|
7007
|
+
"default": "'md'",
|
|
7008
|
+
"description": "Specify the size of a Button",
|
|
7009
|
+
"attribute": "size",
|
|
7010
|
+
"inheritedFrom": {
|
|
7011
|
+
"name": "BmButton",
|
|
7012
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7013
|
+
}
|
|
6901
7014
|
},
|
|
6902
7015
|
{
|
|
6903
|
-
"kind": "
|
|
6904
|
-
"name": "
|
|
6905
|
-
"privacy": "public"
|
|
6906
|
-
}
|
|
6907
|
-
],
|
|
6908
|
-
"attributes": [
|
|
6909
|
-
{
|
|
6910
|
-
"name": "error",
|
|
7016
|
+
"kind": "field",
|
|
7017
|
+
"name": "iconOnly",
|
|
6911
7018
|
"type": {
|
|
6912
7019
|
"text": "boolean | undefined"
|
|
6913
7020
|
},
|
|
6914
|
-
"description": "Specify if
|
|
6915
|
-
"
|
|
7021
|
+
"description": "Specify if the icon displays without text",
|
|
7022
|
+
"attribute": "iconOnly",
|
|
7023
|
+
"default": "false",
|
|
7024
|
+
"inheritedFrom": {
|
|
7025
|
+
"name": "BmButton",
|
|
7026
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7027
|
+
}
|
|
6916
7028
|
},
|
|
6917
7029
|
{
|
|
6918
|
-
"
|
|
7030
|
+
"kind": "field",
|
|
7031
|
+
"name": "iconBefore",
|
|
7032
|
+
"default": "unsafeSVG(Upload)"
|
|
7033
|
+
},
|
|
7034
|
+
{
|
|
7035
|
+
"kind": "field",
|
|
7036
|
+
"name": "formAssociated",
|
|
6919
7037
|
"type": {
|
|
6920
|
-
"text": "
|
|
7038
|
+
"text": "boolean"
|
|
6921
7039
|
},
|
|
6922
|
-
"
|
|
6923
|
-
"
|
|
7040
|
+
"static": true,
|
|
7041
|
+
"default": "true",
|
|
7042
|
+
"inheritedFrom": {
|
|
7043
|
+
"name": "BmButton",
|
|
7044
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7045
|
+
}
|
|
6924
7046
|
},
|
|
6925
7047
|
{
|
|
7048
|
+
"kind": "field",
|
|
6926
7049
|
"name": "disabled",
|
|
6927
7050
|
"type": {
|
|
6928
|
-
"text": "boolean
|
|
7051
|
+
"text": "boolean"
|
|
6929
7052
|
},
|
|
6930
7053
|
"default": "false",
|
|
6931
|
-
"description": "Specify if the
|
|
6932
|
-
"
|
|
7054
|
+
"description": "Specify if the Button is disabled",
|
|
7055
|
+
"attribute": "disabled",
|
|
7056
|
+
"inheritedFrom": {
|
|
7057
|
+
"name": "BmButton",
|
|
7058
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7059
|
+
}
|
|
6933
7060
|
},
|
|
6934
7061
|
{
|
|
6935
|
-
"
|
|
7062
|
+
"kind": "field",
|
|
7063
|
+
"name": "fluid",
|
|
6936
7064
|
"type": {
|
|
6937
|
-
"text": "
|
|
7065
|
+
"text": "boolean"
|
|
6938
7066
|
},
|
|
6939
|
-
"
|
|
6940
|
-
"
|
|
7067
|
+
"default": "false",
|
|
7068
|
+
"description": "Specify if Button is fluid",
|
|
7069
|
+
"attribute": "fluid",
|
|
7070
|
+
"inheritedFrom": {
|
|
7071
|
+
"name": "BmButton",
|
|
7072
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7073
|
+
}
|
|
6941
7074
|
},
|
|
6942
7075
|
{
|
|
6943
|
-
"
|
|
7076
|
+
"kind": "field",
|
|
7077
|
+
"name": "width",
|
|
6944
7078
|
"type": {
|
|
6945
7079
|
"text": "string | undefined"
|
|
6946
7080
|
},
|
|
6947
|
-
"description": "Specify the
|
|
6948
|
-
"
|
|
7081
|
+
"description": "Specify the width of a Button",
|
|
7082
|
+
"attribute": "width",
|
|
7083
|
+
"inheritedFrom": {
|
|
7084
|
+
"name": "BmButton",
|
|
7085
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7086
|
+
}
|
|
6949
7087
|
},
|
|
6950
|
-
{
|
|
6951
|
-
"name": "multiple",
|
|
6952
|
-
"type": {
|
|
6953
|
-
"text": "boolean | undefined"
|
|
6954
|
-
},
|
|
6955
|
-
"description": "Specify if multiple files can be uploaded",
|
|
6956
|
-
"fieldName": "multiple"
|
|
6957
|
-
}
|
|
6958
|
-
],
|
|
6959
|
-
"superclass": {
|
|
6960
|
-
"name": "LitElement",
|
|
6961
|
-
"package": "lit"
|
|
6962
|
-
},
|
|
6963
|
-
"tagName": "bm-file-upload-dropzone",
|
|
6964
|
-
"customElement": true
|
|
6965
|
-
}
|
|
6966
|
-
],
|
|
6967
|
-
"exports": [
|
|
6968
|
-
{
|
|
6969
|
-
"kind": "js",
|
|
6970
|
-
"name": "BmFileUploadDropzone",
|
|
6971
|
-
"declaration": {
|
|
6972
|
-
"name": "BmFileUploadDropzone",
|
|
6973
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Dropzone.ts"
|
|
6974
|
-
}
|
|
6975
|
-
},
|
|
6976
|
-
{
|
|
6977
|
-
"kind": "custom-element-definition",
|
|
6978
|
-
"name": "bm-file-upload-dropzone",
|
|
6979
|
-
"declaration": {
|
|
6980
|
-
"name": "BmFileUploadDropzone",
|
|
6981
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Dropzone.ts"
|
|
6982
|
-
}
|
|
6983
|
-
}
|
|
6984
|
-
]
|
|
6985
|
-
},
|
|
6986
|
-
{
|
|
6987
|
-
"kind": "javascript-module",
|
|
6988
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.Item.ts",
|
|
6989
|
-
"declarations": [
|
|
6990
|
-
{
|
|
6991
|
-
"kind": "class",
|
|
6992
|
-
"description": "`bm-file-upload-list-item`\n\n### Attributes:\n- **error** - Specify error text and display error state of list item\n- **fileName** - The name of the uploaded file\n- **fileSize** - The size of the uploaded file\n- **size** - Specify the size of the item\n- **thumbnail** - Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **state** - Specify the status of the file\n- **progress** - Specify the progress of the file upload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled",
|
|
6993
|
-
"name": "BmFileUploadListItem",
|
|
6994
|
-
"members": [
|
|
6995
7088
|
{
|
|
6996
7089
|
"kind": "field",
|
|
6997
|
-
"name": "
|
|
7090
|
+
"name": "height",
|
|
6998
7091
|
"type": {
|
|
6999
7092
|
"text": "string | undefined"
|
|
7000
7093
|
},
|
|
7001
|
-
"
|
|
7002
|
-
"
|
|
7003
|
-
"
|
|
7094
|
+
"description": "Specify the height of a Button",
|
|
7095
|
+
"attribute": "height",
|
|
7096
|
+
"inheritedFrom": {
|
|
7097
|
+
"name": "BmButton",
|
|
7098
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7099
|
+
}
|
|
7004
7100
|
},
|
|
7005
7101
|
{
|
|
7006
7102
|
"kind": "field",
|
|
7007
|
-
"name": "
|
|
7103
|
+
"name": "theme",
|
|
7008
7104
|
"type": {
|
|
7009
|
-
"text": "
|
|
7105
|
+
"text": "'light' | 'dark' | undefined"
|
|
7010
7106
|
},
|
|
7011
|
-
"description": "
|
|
7012
|
-
"attribute": "
|
|
7107
|
+
"description": "Specify the theme of the Button",
|
|
7108
|
+
"attribute": "theme",
|
|
7109
|
+
"inheritedFrom": {
|
|
7110
|
+
"name": "BmButton",
|
|
7111
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7112
|
+
}
|
|
7013
7113
|
},
|
|
7014
7114
|
{
|
|
7015
7115
|
"kind": "field",
|
|
7016
|
-
"name": "
|
|
7116
|
+
"name": "type",
|
|
7017
7117
|
"type": {
|
|
7018
|
-
"text": "string
|
|
7118
|
+
"text": "string"
|
|
7019
7119
|
},
|
|
7020
|
-
"
|
|
7021
|
-
"attribute": "
|
|
7120
|
+
"default": "'button'",
|
|
7121
|
+
"attribute": "type",
|
|
7122
|
+
"inheritedFrom": {
|
|
7123
|
+
"name": "BmButton",
|
|
7124
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7125
|
+
}
|
|
7022
7126
|
},
|
|
7023
7127
|
{
|
|
7024
7128
|
"kind": "field",
|
|
7025
|
-
"name": "
|
|
7129
|
+
"name": "formContext",
|
|
7026
7130
|
"type": {
|
|
7027
|
-
"text": "
|
|
7131
|
+
"text": "BmFormContext"
|
|
7028
7132
|
},
|
|
7029
|
-
"
|
|
7030
|
-
|
|
7031
|
-
|
|
7032
|
-
|
|
7133
|
+
"inheritedFrom": {
|
|
7134
|
+
"name": "BmButton",
|
|
7135
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7136
|
+
}
|
|
7137
|
+
}
|
|
7138
|
+
],
|
|
7139
|
+
"attributes": [
|
|
7033
7140
|
{
|
|
7034
|
-
"
|
|
7035
|
-
"name": "thumbnail",
|
|
7141
|
+
"name": "error",
|
|
7036
7142
|
"type": {
|
|
7037
|
-
"text": "
|
|
7143
|
+
"text": "boolean | undefined"
|
|
7038
7144
|
},
|
|
7039
|
-
"description": "Specify if
|
|
7040
|
-
"
|
|
7041
|
-
"attribute": "thumbnail"
|
|
7145
|
+
"description": "Specify if FileUpload is in error state",
|
|
7146
|
+
"fieldName": "error"
|
|
7042
7147
|
},
|
|
7043
7148
|
{
|
|
7044
|
-
"
|
|
7045
|
-
"name": "state",
|
|
7149
|
+
"name": "accept",
|
|
7046
7150
|
"type": {
|
|
7047
|
-
"text": "
|
|
7151
|
+
"text": "string | undefined"
|
|
7048
7152
|
},
|
|
7049
|
-
"
|
|
7050
|
-
"
|
|
7051
|
-
"attribute": "state"
|
|
7153
|
+
"description": "Specify the accepted file types",
|
|
7154
|
+
"fieldName": "accept"
|
|
7052
7155
|
},
|
|
7053
7156
|
{
|
|
7054
|
-
"
|
|
7055
|
-
"name": "progress",
|
|
7157
|
+
"name": "multiple",
|
|
7056
7158
|
"type": {
|
|
7057
|
-
"text": "
|
|
7159
|
+
"text": "boolean | undefined"
|
|
7058
7160
|
},
|
|
7059
|
-
"
|
|
7060
|
-
"
|
|
7061
|
-
"attribute": "progress"
|
|
7161
|
+
"description": "Specify if multiple files can be uploaded",
|
|
7162
|
+
"fieldName": "multiple"
|
|
7062
7163
|
},
|
|
7063
7164
|
{
|
|
7064
|
-
"
|
|
7065
|
-
"name": "theme",
|
|
7165
|
+
"name": "appearance",
|
|
7066
7166
|
"type": {
|
|
7067
|
-
"text": "'
|
|
7167
|
+
"text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
|
|
7068
7168
|
},
|
|
7069
|
-
"
|
|
7070
|
-
"
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
|
|
7074
|
-
|
|
7075
|
-
|
|
7076
|
-
"text": "boolean | undefined"
|
|
7077
|
-
},
|
|
7078
|
-
"description": "Specify if the FileUpload is disabled",
|
|
7079
|
-
"attribute": "disabled"
|
|
7080
|
-
}
|
|
7081
|
-
],
|
|
7082
|
-
"events": [
|
|
7083
|
-
{
|
|
7084
|
-
"description": "Dispatched when the dismiss button is clicked",
|
|
7085
|
-
"name": "bm-dismiss"
|
|
7086
|
-
}
|
|
7087
|
-
],
|
|
7088
|
-
"attributes": [
|
|
7089
|
-
{
|
|
7090
|
-
"name": "error",
|
|
7091
|
-
"type": {
|
|
7092
|
-
"text": "string | undefined"
|
|
7093
|
-
},
|
|
7094
|
-
"default": "''",
|
|
7095
|
-
"description": "Specify error text and display error state of list item",
|
|
7096
|
-
"fieldName": "error"
|
|
7169
|
+
"default": "'accent'",
|
|
7170
|
+
"description": "Specify the appearance of a Button",
|
|
7171
|
+
"fieldName": "appearance",
|
|
7172
|
+
"inheritedFrom": {
|
|
7173
|
+
"name": "BmButton",
|
|
7174
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7175
|
+
}
|
|
7097
7176
|
},
|
|
7098
7177
|
{
|
|
7099
|
-
"name": "
|
|
7178
|
+
"name": "kind",
|
|
7100
7179
|
"type": {
|
|
7101
|
-
"text": "
|
|
7180
|
+
"text": "'filled' | 'outline' | 'ghost' | 'bare'"
|
|
7102
7181
|
},
|
|
7103
|
-
"
|
|
7104
|
-
"
|
|
7182
|
+
"default": "'filled'",
|
|
7183
|
+
"description": "Specify the kind of Button",
|
|
7184
|
+
"fieldName": "kind",
|
|
7185
|
+
"inheritedFrom": {
|
|
7186
|
+
"name": "BmButton",
|
|
7187
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7188
|
+
}
|
|
7105
7189
|
},
|
|
7106
7190
|
{
|
|
7107
|
-
"name": "
|
|
7191
|
+
"name": "size",
|
|
7108
7192
|
"type": {
|
|
7109
|
-
"text": "
|
|
7193
|
+
"text": "'sm' | 'md' | 'lg'"
|
|
7110
7194
|
},
|
|
7111
|
-
"
|
|
7112
|
-
"
|
|
7195
|
+
"default": "'md'",
|
|
7196
|
+
"description": "Specify the size of a Button",
|
|
7197
|
+
"fieldName": "size",
|
|
7198
|
+
"inheritedFrom": {
|
|
7199
|
+
"name": "BmButton",
|
|
7200
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7201
|
+
}
|
|
7113
7202
|
},
|
|
7114
7203
|
{
|
|
7115
|
-
"name": "
|
|
7204
|
+
"name": "disabled",
|
|
7116
7205
|
"type": {
|
|
7117
|
-
"text": "
|
|
7206
|
+
"text": "boolean"
|
|
7118
7207
|
},
|
|
7119
|
-
"default": "
|
|
7120
|
-
"description": "Specify the
|
|
7121
|
-
"fieldName": "
|
|
7208
|
+
"default": "false",
|
|
7209
|
+
"description": "Specify if the Button is disabled",
|
|
7210
|
+
"fieldName": "disabled",
|
|
7211
|
+
"inheritedFrom": {
|
|
7212
|
+
"name": "BmButton",
|
|
7213
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7214
|
+
}
|
|
7122
7215
|
},
|
|
7123
7216
|
{
|
|
7124
|
-
"name": "
|
|
7217
|
+
"name": "fluid",
|
|
7125
7218
|
"type": {
|
|
7126
|
-
"text": "
|
|
7219
|
+
"text": "boolean"
|
|
7127
7220
|
},
|
|
7128
|
-
"description": "Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
|
|
7129
7221
|
"default": "false",
|
|
7130
|
-
"
|
|
7222
|
+
"description": "Specify if Button is fluid",
|
|
7223
|
+
"fieldName": "fluid",
|
|
7224
|
+
"inheritedFrom": {
|
|
7225
|
+
"name": "BmButton",
|
|
7226
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7227
|
+
}
|
|
7131
7228
|
},
|
|
7132
7229
|
{
|
|
7133
|
-
"name": "
|
|
7230
|
+
"name": "width",
|
|
7134
7231
|
"type": {
|
|
7135
|
-
"text": "
|
|
7232
|
+
"text": "string | undefined"
|
|
7136
7233
|
},
|
|
7137
|
-
"
|
|
7138
|
-
"
|
|
7139
|
-
"
|
|
7234
|
+
"description": "Specify the width of a Button",
|
|
7235
|
+
"fieldName": "width",
|
|
7236
|
+
"inheritedFrom": {
|
|
7237
|
+
"name": "BmButton",
|
|
7238
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7239
|
+
}
|
|
7140
7240
|
},
|
|
7141
7241
|
{
|
|
7142
|
-
"name": "
|
|
7242
|
+
"name": "height",
|
|
7143
7243
|
"type": {
|
|
7144
|
-
"text": "
|
|
7244
|
+
"text": "string | undefined"
|
|
7145
7245
|
},
|
|
7146
|
-
"
|
|
7147
|
-
"
|
|
7148
|
-
"
|
|
7246
|
+
"description": "Specify the height of a Button",
|
|
7247
|
+
"fieldName": "height",
|
|
7248
|
+
"inheritedFrom": {
|
|
7249
|
+
"name": "BmButton",
|
|
7250
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7251
|
+
}
|
|
7149
7252
|
},
|
|
7150
7253
|
{
|
|
7151
7254
|
"name": "theme",
|
|
7152
7255
|
"type": {
|
|
7153
7256
|
"text": "'light' | 'dark' | undefined"
|
|
7154
7257
|
},
|
|
7155
|
-
"description": "Specify the theme of the
|
|
7156
|
-
"fieldName": "theme"
|
|
7258
|
+
"description": "Specify the theme of the Button",
|
|
7259
|
+
"fieldName": "theme",
|
|
7260
|
+
"inheritedFrom": {
|
|
7261
|
+
"name": "BmButton",
|
|
7262
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7263
|
+
}
|
|
7157
7264
|
},
|
|
7158
7265
|
{
|
|
7159
|
-
"name": "
|
|
7266
|
+
"name": "iconOnly",
|
|
7160
7267
|
"type": {
|
|
7161
7268
|
"text": "boolean | undefined"
|
|
7162
7269
|
},
|
|
7163
|
-
"description": "Specify if the
|
|
7164
|
-
"fieldName": "
|
|
7270
|
+
"description": "Specify if the icon displays without text",
|
|
7271
|
+
"fieldName": "iconOnly",
|
|
7272
|
+
"inheritedFrom": {
|
|
7273
|
+
"name": "BmButton",
|
|
7274
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7275
|
+
}
|
|
7276
|
+
},
|
|
7277
|
+
{
|
|
7278
|
+
"name": "type",
|
|
7279
|
+
"type": {
|
|
7280
|
+
"text": "string"
|
|
7281
|
+
},
|
|
7282
|
+
"default": "'button'",
|
|
7283
|
+
"fieldName": "type",
|
|
7284
|
+
"inheritedFrom": {
|
|
7285
|
+
"name": "BmButton",
|
|
7286
|
+
"module": "libs/web-components/src/lib/Button/Button.ts"
|
|
7287
|
+
}
|
|
7165
7288
|
}
|
|
7166
7289
|
],
|
|
7167
7290
|
"superclass": {
|
|
7168
|
-
"name": "
|
|
7169
|
-
"
|
|
7291
|
+
"name": "BmButton",
|
|
7292
|
+
"module": "/libs/web-components/src/lib/Button/Button"
|
|
7170
7293
|
},
|
|
7171
|
-
"tagName": "bm-file-upload-
|
|
7294
|
+
"tagName": "bm-file-upload-button",
|
|
7172
7295
|
"customElement": true
|
|
7173
7296
|
}
|
|
7174
7297
|
],
|
|
7175
7298
|
"exports": [
|
|
7176
7299
|
{
|
|
7177
7300
|
"kind": "js",
|
|
7178
|
-
"name": "
|
|
7301
|
+
"name": "BmFileUploadButton",
|
|
7179
7302
|
"declaration": {
|
|
7180
|
-
"name": "
|
|
7181
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.
|
|
7303
|
+
"name": "BmFileUploadButton",
|
|
7304
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Button.ts"
|
|
7182
7305
|
}
|
|
7183
7306
|
},
|
|
7184
7307
|
{
|
|
7185
7308
|
"kind": "custom-element-definition",
|
|
7186
|
-
"name": "bm-file-upload-
|
|
7309
|
+
"name": "bm-file-upload-button",
|
|
7187
7310
|
"declaration": {
|
|
7188
|
-
"name": "
|
|
7189
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.
|
|
7311
|
+
"name": "BmFileUploadButton",
|
|
7312
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Button.ts"
|
|
7190
7313
|
}
|
|
7191
7314
|
}
|
|
7192
7315
|
]
|
|
7193
7316
|
},
|
|
7194
7317
|
{
|
|
7195
7318
|
"kind": "javascript-module",
|
|
7196
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.
|
|
7319
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Dropzone.ts",
|
|
7197
7320
|
"declarations": [
|
|
7198
7321
|
{
|
|
7199
7322
|
"kind": "class",
|
|
7200
|
-
"description": "`bm-file-upload-
|
|
7201
|
-
"name": "
|
|
7323
|
+
"description": "`bm-file-upload-dropzone`\n\n### Attributes:\n- **error** - Specify if FileUpload is in error state\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n- **accept** - Specify the accepted file types\n- **name** - Specify the name of the FileUpload\n- **multiple** - Specify if multiple files can be uploaded",
|
|
7324
|
+
"name": "BmFileUploadDropzone",
|
|
7202
7325
|
"slots": [
|
|
7203
7326
|
{
|
|
7204
|
-
"description": "Specify the
|
|
7327
|
+
"description": "Specify text for the Dropzone",
|
|
7205
7328
|
"name": "default"
|
|
7206
7329
|
}
|
|
7207
7330
|
],
|
|
7208
7331
|
"members": [
|
|
7209
7332
|
{
|
|
7210
7333
|
"kind": "field",
|
|
7211
|
-
"name": "
|
|
7334
|
+
"name": "error",
|
|
7212
7335
|
"type": {
|
|
7213
7336
|
"text": "boolean | undefined"
|
|
7214
7337
|
},
|
|
7215
|
-
"description": "Specify if
|
|
7216
|
-
"
|
|
7217
|
-
"attribute": "thumbnail"
|
|
7218
|
-
},
|
|
7219
|
-
{
|
|
7220
|
-
"kind": "field",
|
|
7221
|
-
"name": "size",
|
|
7222
|
-
"type": {
|
|
7223
|
-
"text": "'md' | 'lg' | undefined"
|
|
7224
|
-
},
|
|
7225
|
-
"description": "Specify FileUpload List size",
|
|
7226
|
-
"default": "'md'",
|
|
7227
|
-
"attribute": "size"
|
|
7338
|
+
"description": "Specify if FileUpload is in error state",
|
|
7339
|
+
"attribute": "error"
|
|
7228
7340
|
},
|
|
7229
7341
|
{
|
|
7230
7342
|
"kind": "field",
|
|
@@ -7241,37 +7353,51 @@
|
|
|
7241
7353
|
"type": {
|
|
7242
7354
|
"text": "boolean | undefined"
|
|
7243
7355
|
},
|
|
7356
|
+
"default": "false",
|
|
7244
7357
|
"description": "Specify if the FileUpload is disabled",
|
|
7245
7358
|
"attribute": "disabled"
|
|
7246
7359
|
},
|
|
7247
7360
|
{
|
|
7248
7361
|
"kind": "field",
|
|
7249
|
-
"name": "
|
|
7362
|
+
"name": "accept",
|
|
7250
7363
|
"type": {
|
|
7251
|
-
"text": "
|
|
7364
|
+
"text": "string | undefined"
|
|
7252
7365
|
},
|
|
7253
|
-
"description": "Specify
|
|
7254
|
-
"attribute": "
|
|
7255
|
-
}
|
|
7256
|
-
],
|
|
7257
|
-
"attributes": [
|
|
7366
|
+
"description": "Specify the accepted file types",
|
|
7367
|
+
"attribute": "accept"
|
|
7368
|
+
},
|
|
7258
7369
|
{
|
|
7259
|
-
"
|
|
7370
|
+
"kind": "field",
|
|
7371
|
+
"name": "name",
|
|
7372
|
+
"type": {
|
|
7373
|
+
"text": "string | undefined"
|
|
7374
|
+
},
|
|
7375
|
+
"description": "Specify the name of the FileUpload",
|
|
7376
|
+
"attribute": "name"
|
|
7377
|
+
},
|
|
7378
|
+
{
|
|
7379
|
+
"kind": "field",
|
|
7380
|
+
"name": "multiple",
|
|
7260
7381
|
"type": {
|
|
7261
7382
|
"text": "boolean | undefined"
|
|
7262
7383
|
},
|
|
7263
|
-
"description": "Specify if
|
|
7264
|
-
"
|
|
7265
|
-
"fieldName": "thumbnail"
|
|
7384
|
+
"description": "Specify if multiple files can be uploaded",
|
|
7385
|
+
"attribute": "multiple"
|
|
7266
7386
|
},
|
|
7267
7387
|
{
|
|
7268
|
-
"
|
|
7388
|
+
"kind": "method",
|
|
7389
|
+
"name": "focus",
|
|
7390
|
+
"privacy": "public"
|
|
7391
|
+
}
|
|
7392
|
+
],
|
|
7393
|
+
"attributes": [
|
|
7394
|
+
{
|
|
7395
|
+
"name": "error",
|
|
7269
7396
|
"type": {
|
|
7270
|
-
"text": "
|
|
7397
|
+
"text": "boolean | undefined"
|
|
7271
7398
|
},
|
|
7272
|
-
"description": "Specify FileUpload
|
|
7273
|
-
"
|
|
7274
|
-
"fieldName": "size"
|
|
7399
|
+
"description": "Specify if FileUpload is in error state",
|
|
7400
|
+
"fieldName": "error"
|
|
7275
7401
|
},
|
|
7276
7402
|
{
|
|
7277
7403
|
"name": "theme",
|
|
@@ -7286,440 +7412,351 @@
|
|
|
7286
7412
|
"type": {
|
|
7287
7413
|
"text": "boolean | undefined"
|
|
7288
7414
|
},
|
|
7415
|
+
"default": "false",
|
|
7289
7416
|
"description": "Specify if the FileUpload is disabled",
|
|
7290
7417
|
"fieldName": "disabled"
|
|
7291
7418
|
},
|
|
7292
7419
|
{
|
|
7293
|
-
"name": "
|
|
7420
|
+
"name": "accept",
|
|
7294
7421
|
"type": {
|
|
7295
|
-
"text": "
|
|
7422
|
+
"text": "string | undefined"
|
|
7296
7423
|
},
|
|
7297
|
-
"description": "Specify
|
|
7298
|
-
"fieldName": "
|
|
7424
|
+
"description": "Specify the accepted file types",
|
|
7425
|
+
"fieldName": "accept"
|
|
7426
|
+
},
|
|
7427
|
+
{
|
|
7428
|
+
"name": "name",
|
|
7429
|
+
"type": {
|
|
7430
|
+
"text": "string | undefined"
|
|
7431
|
+
},
|
|
7432
|
+
"description": "Specify the name of the FileUpload",
|
|
7433
|
+
"fieldName": "name"
|
|
7434
|
+
},
|
|
7435
|
+
{
|
|
7436
|
+
"name": "multiple",
|
|
7437
|
+
"type": {
|
|
7438
|
+
"text": "boolean | undefined"
|
|
7439
|
+
},
|
|
7440
|
+
"description": "Specify if multiple files can be uploaded",
|
|
7441
|
+
"fieldName": "multiple"
|
|
7299
7442
|
}
|
|
7300
7443
|
],
|
|
7301
7444
|
"superclass": {
|
|
7302
7445
|
"name": "LitElement",
|
|
7303
7446
|
"package": "lit"
|
|
7304
7447
|
},
|
|
7305
|
-
"tagName": "bm-file-upload-
|
|
7448
|
+
"tagName": "bm-file-upload-dropzone",
|
|
7306
7449
|
"customElement": true
|
|
7307
7450
|
}
|
|
7308
7451
|
],
|
|
7309
7452
|
"exports": [
|
|
7310
7453
|
{
|
|
7311
7454
|
"kind": "js",
|
|
7312
|
-
"name": "
|
|
7455
|
+
"name": "BmFileUploadDropzone",
|
|
7313
7456
|
"declaration": {
|
|
7314
|
-
"name": "
|
|
7315
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.
|
|
7457
|
+
"name": "BmFileUploadDropzone",
|
|
7458
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Dropzone.ts"
|
|
7316
7459
|
}
|
|
7317
7460
|
},
|
|
7318
7461
|
{
|
|
7319
7462
|
"kind": "custom-element-definition",
|
|
7320
|
-
"name": "bm-file-upload-
|
|
7463
|
+
"name": "bm-file-upload-dropzone",
|
|
7321
7464
|
"declaration": {
|
|
7322
|
-
"name": "
|
|
7323
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.
|
|
7465
|
+
"name": "BmFileUploadDropzone",
|
|
7466
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.Dropzone.ts"
|
|
7324
7467
|
}
|
|
7325
7468
|
}
|
|
7326
7469
|
]
|
|
7327
7470
|
},
|
|
7328
7471
|
{
|
|
7329
7472
|
"kind": "javascript-module",
|
|
7330
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts",
|
|
7473
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.Item.ts",
|
|
7331
7474
|
"declarations": [
|
|
7332
7475
|
{
|
|
7333
7476
|
"kind": "class",
|
|
7334
|
-
"description": "",
|
|
7335
|
-
"name": "
|
|
7336
|
-
"superclass": {
|
|
7337
|
-
"name": "CustomEvent",
|
|
7338
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
7339
|
-
}
|
|
7340
|
-
},
|
|
7341
|
-
{
|
|
7342
|
-
"kind": "class",
|
|
7343
|
-
"description": "`bm-file-upload`\n\n### Attributes:\n- **accept** - Specify what types of files can be uploaded\n- **error** - Specify error text and display error state of FileUpload\n- **disabled** - Specify if FileUpload is in disabled state\n- **multiple** - Specify if more than one file can be can be uploaded\n- **fileLimit** - Specify how many files can be uploaded\n- **maxFileSize** - Specify the maximum file size that can be uploaded\n- **required** - Specify if FileUpload is a required input\n- **readOnly** - Specify if FileUpload is in read-only state\n- **hideRequiredMarker** - Specify if FileUpload displays with an asterisk\n- **validationRules** - Specify form validation rules for FileUpload\n- **fluid** - Specify if FileUpload is fluid\n- **width** - Specify the width of FileUpload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
7344
|
-
"name": "BmFileUpload",
|
|
7345
|
-
"slots": [
|
|
7346
|
-
{
|
|
7347
|
-
"description": "Specify Label for for FileUpload",
|
|
7348
|
-
"name": "label"
|
|
7349
|
-
},
|
|
7350
|
-
{
|
|
7351
|
-
"description": "Specify HelperText for FileUpload",
|
|
7352
|
-
"name": "helper-text"
|
|
7353
|
-
}
|
|
7354
|
-
],
|
|
7477
|
+
"description": "`bm-file-upload-list-item`\n\n### Attributes:\n- **error** - Specify error text and display error state of list item\n- **fileName** - The name of the uploaded file\n- **fileSize** - The size of the uploaded file\n- **size** - Specify the size of the item\n- **thumbnail** - Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **state** - Specify the status of the file\n- **progress** - Specify the progress of the file upload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled",
|
|
7478
|
+
"name": "BmFileUploadListItem",
|
|
7355
7479
|
"members": [
|
|
7356
|
-
{
|
|
7357
|
-
"kind": "field",
|
|
7358
|
-
"name": "accept",
|
|
7359
|
-
"type": {
|
|
7360
|
-
"text": "string | undefined"
|
|
7361
|
-
},
|
|
7362
|
-
"description": "Specify what types of files can be uploaded",
|
|
7363
|
-
"attribute": "accept"
|
|
7364
|
-
},
|
|
7365
7480
|
{
|
|
7366
7481
|
"kind": "field",
|
|
7367
7482
|
"name": "error",
|
|
7368
7483
|
"type": {
|
|
7369
|
-
"text": "string |
|
|
7484
|
+
"text": "string | undefined"
|
|
7370
7485
|
},
|
|
7371
|
-
"
|
|
7486
|
+
"default": "''",
|
|
7487
|
+
"description": "Specify error text and display error state of list item",
|
|
7372
7488
|
"attribute": "error"
|
|
7373
7489
|
},
|
|
7374
7490
|
{
|
|
7375
7491
|
"kind": "field",
|
|
7376
|
-
"name": "
|
|
7377
|
-
"type": {
|
|
7378
|
-
"text": "boolean | undefined"
|
|
7379
|
-
},
|
|
7380
|
-
"default": "false",
|
|
7381
|
-
"description": "Specify if FileUpload is in disabled state",
|
|
7382
|
-
"attribute": "disabled"
|
|
7383
|
-
},
|
|
7384
|
-
{
|
|
7385
|
-
"kind": "field",
|
|
7386
|
-
"name": "multiple",
|
|
7492
|
+
"name": "fileName",
|
|
7387
7493
|
"type": {
|
|
7388
|
-
"text": "
|
|
7494
|
+
"text": "string | undefined"
|
|
7389
7495
|
},
|
|
7390
|
-
"description": "
|
|
7391
|
-
"
|
|
7392
|
-
"attribute": "multiple"
|
|
7496
|
+
"description": "The name of the uploaded file",
|
|
7497
|
+
"attribute": "fileName"
|
|
7393
7498
|
},
|
|
7394
7499
|
{
|
|
7395
7500
|
"kind": "field",
|
|
7396
|
-
"name": "
|
|
7501
|
+
"name": "fileSize",
|
|
7397
7502
|
"type": {
|
|
7398
|
-
"text": "
|
|
7503
|
+
"text": "string | undefined"
|
|
7399
7504
|
},
|
|
7400
|
-
"description": "
|
|
7401
|
-
"attribute": "
|
|
7505
|
+
"description": "The size of the uploaded file",
|
|
7506
|
+
"attribute": "fileSize"
|
|
7402
7507
|
},
|
|
7403
7508
|
{
|
|
7404
7509
|
"kind": "field",
|
|
7405
|
-
"name": "
|
|
7510
|
+
"name": "size",
|
|
7406
7511
|
"type": {
|
|
7407
|
-
"text": "
|
|
7512
|
+
"text": "'md' | 'lg' | undefined"
|
|
7408
7513
|
},
|
|
7409
|
-
"
|
|
7410
|
-
"
|
|
7514
|
+
"default": "'md'",
|
|
7515
|
+
"description": "Specify the size of the item",
|
|
7516
|
+
"attribute": "size"
|
|
7411
7517
|
},
|
|
7412
7518
|
{
|
|
7413
7519
|
"kind": "field",
|
|
7414
|
-
"name": "
|
|
7520
|
+
"name": "thumbnail",
|
|
7415
7521
|
"type": {
|
|
7416
|
-
"text": "boolean | undefined"
|
|
7522
|
+
"text": "string | boolean | undefined"
|
|
7417
7523
|
},
|
|
7418
|
-
"description": "Specify if
|
|
7524
|
+
"description": "Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
|
|
7419
7525
|
"default": "false",
|
|
7420
|
-
"attribute": "
|
|
7526
|
+
"attribute": "thumbnail"
|
|
7421
7527
|
},
|
|
7422
7528
|
{
|
|
7423
7529
|
"kind": "field",
|
|
7424
|
-
"name": "
|
|
7530
|
+
"name": "state",
|
|
7425
7531
|
"type": {
|
|
7426
|
-
"text": "
|
|
7532
|
+
"text": "'error' | 'success' | 'uploading' | 'uploaded'"
|
|
7427
7533
|
},
|
|
7428
|
-
"
|
|
7429
|
-
"
|
|
7534
|
+
"default": "'uploaded'",
|
|
7535
|
+
"description": "Specify the status of the file",
|
|
7536
|
+
"attribute": "state"
|
|
7430
7537
|
},
|
|
7431
7538
|
{
|
|
7432
7539
|
"kind": "field",
|
|
7433
|
-
"name": "
|
|
7540
|
+
"name": "progress",
|
|
7434
7541
|
"type": {
|
|
7435
|
-
"text": "
|
|
7542
|
+
"text": "number | undefined"
|
|
7436
7543
|
},
|
|
7437
|
-
"
|
|
7438
|
-
"
|
|
7439
|
-
"attribute": "
|
|
7544
|
+
"default": "0",
|
|
7545
|
+
"description": "Specify the progress of the file upload",
|
|
7546
|
+
"attribute": "progress"
|
|
7440
7547
|
},
|
|
7441
7548
|
{
|
|
7442
7549
|
"kind": "field",
|
|
7443
|
-
"name": "
|
|
7550
|
+
"name": "theme",
|
|
7444
7551
|
"type": {
|
|
7445
|
-
"text": "
|
|
7552
|
+
"text": "'light' | 'dark' | undefined"
|
|
7446
7553
|
},
|
|
7447
|
-
"
|
|
7448
|
-
"attribute": "
|
|
7449
|
-
"description": "Specify form validation rules for FileUpload",
|
|
7450
|
-
"inheritedFrom": {
|
|
7451
|
-
"name": "FormField",
|
|
7452
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7453
|
-
}
|
|
7554
|
+
"description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
7555
|
+
"attribute": "theme"
|
|
7454
7556
|
},
|
|
7455
7557
|
{
|
|
7456
7558
|
"kind": "field",
|
|
7457
|
-
"name": "
|
|
7559
|
+
"name": "disabled",
|
|
7458
7560
|
"type": {
|
|
7459
7561
|
"text": "boolean | undefined"
|
|
7460
7562
|
},
|
|
7461
|
-
"description": "Specify if FileUpload is
|
|
7462
|
-
"
|
|
7463
|
-
|
|
7464
|
-
|
|
7563
|
+
"description": "Specify if the FileUpload is disabled",
|
|
7564
|
+
"attribute": "disabled"
|
|
7565
|
+
}
|
|
7566
|
+
],
|
|
7567
|
+
"events": [
|
|
7465
7568
|
{
|
|
7466
|
-
"
|
|
7467
|
-
"name": "
|
|
7569
|
+
"description": "Dispatched when the dismiss button is clicked",
|
|
7570
|
+
"name": "bm-dismiss"
|
|
7571
|
+
}
|
|
7572
|
+
],
|
|
7573
|
+
"attributes": [
|
|
7574
|
+
{
|
|
7575
|
+
"name": "error",
|
|
7468
7576
|
"type": {
|
|
7469
7577
|
"text": "string | undefined"
|
|
7470
7578
|
},
|
|
7471
|
-
"
|
|
7472
|
-
"
|
|
7579
|
+
"default": "''",
|
|
7580
|
+
"description": "Specify error text and display error state of list item",
|
|
7581
|
+
"fieldName": "error"
|
|
7473
7582
|
},
|
|
7474
7583
|
{
|
|
7475
|
-
"
|
|
7476
|
-
"name": "theme",
|
|
7584
|
+
"name": "fileName",
|
|
7477
7585
|
"type": {
|
|
7478
|
-
"text": "
|
|
7586
|
+
"text": "string | undefined"
|
|
7479
7587
|
},
|
|
7480
|
-
"description": "
|
|
7481
|
-
"
|
|
7588
|
+
"description": "The name of the uploaded file",
|
|
7589
|
+
"fieldName": "fileName"
|
|
7482
7590
|
},
|
|
7483
7591
|
{
|
|
7484
|
-
"
|
|
7485
|
-
"name": "formContext",
|
|
7592
|
+
"name": "fileSize",
|
|
7486
7593
|
"type": {
|
|
7487
|
-
"text": "
|
|
7594
|
+
"text": "string | undefined"
|
|
7488
7595
|
},
|
|
7489
|
-
"
|
|
7490
|
-
|
|
7491
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7492
|
-
}
|
|
7493
|
-
},
|
|
7494
|
-
{
|
|
7495
|
-
"kind": "field",
|
|
7496
|
-
"name": "pickerRef"
|
|
7596
|
+
"description": "The size of the uploaded file",
|
|
7597
|
+
"fieldName": "fileSize"
|
|
7497
7598
|
},
|
|
7498
7599
|
{
|
|
7499
|
-
"
|
|
7500
|
-
"
|
|
7501
|
-
|
|
7502
|
-
"type": {
|
|
7503
|
-
"text": "void"
|
|
7504
|
-
}
|
|
7600
|
+
"name": "size",
|
|
7601
|
+
"type": {
|
|
7602
|
+
"text": "'md' | 'lg' | undefined"
|
|
7505
7603
|
},
|
|
7506
|
-
"
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
}
|
|
7604
|
+
"default": "'md'",
|
|
7605
|
+
"description": "Specify the size of the item",
|
|
7606
|
+
"fieldName": "size"
|
|
7510
7607
|
},
|
|
7511
7608
|
{
|
|
7512
|
-
"
|
|
7513
|
-
"
|
|
7514
|
-
|
|
7515
|
-
"type": {
|
|
7516
|
-
"text": "void"
|
|
7517
|
-
}
|
|
7609
|
+
"name": "thumbnail",
|
|
7610
|
+
"type": {
|
|
7611
|
+
"text": "string | boolean | undefined"
|
|
7518
7612
|
},
|
|
7519
|
-
"
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
}
|
|
7613
|
+
"description": "Specify if the item displays a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
|
|
7614
|
+
"default": "false",
|
|
7615
|
+
"fieldName": "thumbnail"
|
|
7523
7616
|
},
|
|
7524
7617
|
{
|
|
7525
|
-
"
|
|
7526
|
-
"name": "formAssociated",
|
|
7618
|
+
"name": "state",
|
|
7527
7619
|
"type": {
|
|
7528
|
-
"text": "
|
|
7620
|
+
"text": "'error' | 'success' | 'uploading' | 'uploaded'"
|
|
7529
7621
|
},
|
|
7530
|
-
"
|
|
7531
|
-
"
|
|
7532
|
-
"
|
|
7533
|
-
"name": "FormField",
|
|
7534
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7535
|
-
}
|
|
7622
|
+
"default": "'uploaded'",
|
|
7623
|
+
"description": "Specify the status of the file",
|
|
7624
|
+
"fieldName": "state"
|
|
7536
7625
|
},
|
|
7537
7626
|
{
|
|
7538
|
-
"
|
|
7539
|
-
"name": "id",
|
|
7627
|
+
"name": "progress",
|
|
7540
7628
|
"type": {
|
|
7541
|
-
"text": "
|
|
7629
|
+
"text": "number | undefined"
|
|
7542
7630
|
},
|
|
7543
|
-
"default": "
|
|
7544
|
-
"
|
|
7545
|
-
"
|
|
7546
|
-
"name": "FormField",
|
|
7547
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7548
|
-
}
|
|
7631
|
+
"default": "0",
|
|
7632
|
+
"description": "Specify the progress of the file upload",
|
|
7633
|
+
"fieldName": "progress"
|
|
7549
7634
|
},
|
|
7550
7635
|
{
|
|
7551
|
-
"
|
|
7552
|
-
"name": "name",
|
|
7636
|
+
"name": "theme",
|
|
7553
7637
|
"type": {
|
|
7554
|
-
"text": "
|
|
7638
|
+
"text": "'light' | 'dark' | undefined"
|
|
7555
7639
|
},
|
|
7556
|
-
"
|
|
7557
|
-
"
|
|
7558
|
-
"reflects": true,
|
|
7559
|
-
"inheritedFrom": {
|
|
7560
|
-
"name": "FormField",
|
|
7561
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7562
|
-
}
|
|
7640
|
+
"description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
7641
|
+
"fieldName": "theme"
|
|
7563
7642
|
},
|
|
7564
7643
|
{
|
|
7565
|
-
"
|
|
7566
|
-
"name": "value",
|
|
7644
|
+
"name": "disabled",
|
|
7567
7645
|
"type": {
|
|
7568
|
-
"text": "
|
|
7646
|
+
"text": "boolean | undefined"
|
|
7569
7647
|
},
|
|
7570
|
-
"
|
|
7571
|
-
"
|
|
7572
|
-
"inheritedFrom": {
|
|
7573
|
-
"name": "FormField",
|
|
7574
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7575
|
-
}
|
|
7576
|
-
},
|
|
7577
|
-
{
|
|
7578
|
-
"kind": "field",
|
|
7579
|
-
"name": "inputAriaLabel",
|
|
7580
|
-
"type": {
|
|
7581
|
-
"text": "string | undefined"
|
|
7582
|
-
},
|
|
7583
|
-
"attribute": "input-aria-label",
|
|
7584
|
-
"inheritedFrom": {
|
|
7585
|
-
"name": "FormField",
|
|
7586
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7587
|
-
}
|
|
7588
|
-
},
|
|
7589
|
-
{
|
|
7590
|
-
"kind": "method",
|
|
7591
|
-
"name": "finalizeAssociatedCallback",
|
|
7592
|
-
"return": {
|
|
7593
|
-
"type": {
|
|
7594
|
-
"text": "FinalizeAssociatedResult"
|
|
7595
|
-
}
|
|
7596
|
-
},
|
|
7597
|
-
"parameters": [
|
|
7598
|
-
{
|
|
7599
|
-
"name": "ctxValue",
|
|
7600
|
-
"type": {
|
|
7601
|
-
"text": "string"
|
|
7602
|
-
}
|
|
7603
|
-
}
|
|
7604
|
-
],
|
|
7605
|
-
"inheritedFrom": {
|
|
7606
|
-
"name": "FormField",
|
|
7607
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7608
|
-
}
|
|
7648
|
+
"description": "Specify if the FileUpload is disabled",
|
|
7649
|
+
"fieldName": "disabled"
|
|
7609
7650
|
}
|
|
7610
7651
|
],
|
|
7611
|
-
"
|
|
7652
|
+
"superclass": {
|
|
7653
|
+
"name": "LitElement",
|
|
7654
|
+
"package": "lit"
|
|
7655
|
+
},
|
|
7656
|
+
"tagName": "bm-file-upload-list-item",
|
|
7657
|
+
"customElement": true
|
|
7658
|
+
}
|
|
7659
|
+
],
|
|
7660
|
+
"exports": [
|
|
7661
|
+
{
|
|
7662
|
+
"kind": "js",
|
|
7663
|
+
"name": "BmFileUploadListItem",
|
|
7664
|
+
"declaration": {
|
|
7665
|
+
"name": "BmFileUploadListItem",
|
|
7666
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.Item.ts"
|
|
7667
|
+
}
|
|
7668
|
+
},
|
|
7669
|
+
{
|
|
7670
|
+
"kind": "custom-element-definition",
|
|
7671
|
+
"name": "bm-file-upload-list-item",
|
|
7672
|
+
"declaration": {
|
|
7673
|
+
"name": "BmFileUploadListItem",
|
|
7674
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.Item.ts"
|
|
7675
|
+
}
|
|
7676
|
+
}
|
|
7677
|
+
]
|
|
7678
|
+
},
|
|
7679
|
+
{
|
|
7680
|
+
"kind": "javascript-module",
|
|
7681
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.ts",
|
|
7682
|
+
"declarations": [
|
|
7683
|
+
{
|
|
7684
|
+
"kind": "class",
|
|
7685
|
+
"description": "`bm-file-upload-list`\n\n### Attributes:\n- **thumbnail** - Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.\n- **size** - Specify FileUpload List size\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent\n- **disabled** - Specify if the FileUpload is disabled\n- **renderItem** - Specify a render function for the list item",
|
|
7686
|
+
"name": "BmFileUploadList",
|
|
7687
|
+
"slots": [
|
|
7612
7688
|
{
|
|
7613
|
-
"description": "
|
|
7614
|
-
"name": "
|
|
7689
|
+
"description": "Specify the list items",
|
|
7690
|
+
"name": "default"
|
|
7615
7691
|
}
|
|
7616
7692
|
],
|
|
7617
|
-
"
|
|
7618
|
-
{
|
|
7619
|
-
"name": "accept",
|
|
7620
|
-
"type": {
|
|
7621
|
-
"text": "string | undefined"
|
|
7622
|
-
},
|
|
7623
|
-
"description": "Specify what types of files can be uploaded",
|
|
7624
|
-
"fieldName": "accept"
|
|
7625
|
-
},
|
|
7626
|
-
{
|
|
7627
|
-
"name": "error",
|
|
7628
|
-
"type": {
|
|
7629
|
-
"text": "string | boolean | undefined"
|
|
7630
|
-
},
|
|
7631
|
-
"description": "Specify error text and display error state of FileUpload",
|
|
7632
|
-
"fieldName": "error"
|
|
7633
|
-
},
|
|
7634
|
-
{
|
|
7635
|
-
"name": "disabled",
|
|
7636
|
-
"type": {
|
|
7637
|
-
"text": "boolean | undefined"
|
|
7638
|
-
},
|
|
7639
|
-
"default": "false",
|
|
7640
|
-
"description": "Specify if FileUpload is in disabled state",
|
|
7641
|
-
"fieldName": "disabled"
|
|
7642
|
-
},
|
|
7693
|
+
"members": [
|
|
7643
7694
|
{
|
|
7644
|
-
"
|
|
7695
|
+
"kind": "field",
|
|
7696
|
+
"name": "thumbnail",
|
|
7645
7697
|
"type": {
|
|
7646
7698
|
"text": "boolean | undefined"
|
|
7647
7699
|
},
|
|
7648
|
-
"description": "Specify if
|
|
7700
|
+
"description": "Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
|
|
7649
7701
|
"default": "false",
|
|
7650
|
-
"
|
|
7651
|
-
},
|
|
7652
|
-
{
|
|
7653
|
-
"name": "fileLimit",
|
|
7654
|
-
"type": {
|
|
7655
|
-
"text": "number | undefined"
|
|
7656
|
-
},
|
|
7657
|
-
"description": "Specify how many files can be uploaded",
|
|
7658
|
-
"fieldName": "fileLimit"
|
|
7659
|
-
},
|
|
7660
|
-
{
|
|
7661
|
-
"name": "maxFileSize",
|
|
7662
|
-
"type": {
|
|
7663
|
-
"text": "number | undefined"
|
|
7664
|
-
},
|
|
7665
|
-
"description": "Specify the maximum file size that can be uploaded",
|
|
7666
|
-
"fieldName": "maxFileSize"
|
|
7702
|
+
"attribute": "thumbnail"
|
|
7667
7703
|
},
|
|
7668
7704
|
{
|
|
7669
|
-
"
|
|
7705
|
+
"kind": "field",
|
|
7706
|
+
"name": "size",
|
|
7670
7707
|
"type": {
|
|
7671
|
-
"text": "
|
|
7708
|
+
"text": "'md' | 'lg' | undefined"
|
|
7672
7709
|
},
|
|
7673
|
-
"description": "Specify
|
|
7674
|
-
"default": "
|
|
7675
|
-
"
|
|
7710
|
+
"description": "Specify FileUpload List size",
|
|
7711
|
+
"default": "'md'",
|
|
7712
|
+
"attribute": "size"
|
|
7676
7713
|
},
|
|
7677
7714
|
{
|
|
7678
|
-
"
|
|
7715
|
+
"kind": "field",
|
|
7716
|
+
"name": "theme",
|
|
7679
7717
|
"type": {
|
|
7680
|
-
"text": "
|
|
7718
|
+
"text": "'light' | 'dark' | undefined"
|
|
7681
7719
|
},
|
|
7682
|
-
"description": "Specify
|
|
7683
|
-
"
|
|
7720
|
+
"description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
7721
|
+
"attribute": "theme"
|
|
7684
7722
|
},
|
|
7685
7723
|
{
|
|
7686
|
-
"
|
|
7724
|
+
"kind": "field",
|
|
7725
|
+
"name": "disabled",
|
|
7687
7726
|
"type": {
|
|
7688
7727
|
"text": "boolean | undefined"
|
|
7689
7728
|
},
|
|
7690
|
-
"description": "Specify if FileUpload
|
|
7691
|
-
"
|
|
7692
|
-
"fieldName": "hideRequiredMarker"
|
|
7729
|
+
"description": "Specify if the FileUpload is disabled",
|
|
7730
|
+
"attribute": "disabled"
|
|
7693
7731
|
},
|
|
7694
7732
|
{
|
|
7695
|
-
"
|
|
7733
|
+
"kind": "field",
|
|
7734
|
+
"name": "renderItem",
|
|
7696
7735
|
"type": {
|
|
7697
|
-
"text": "
|
|
7736
|
+
"text": "(fileItem: FileItem, dismissFile: () => void) => void | undefined"
|
|
7698
7737
|
},
|
|
7699
|
-
"
|
|
7700
|
-
"
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7705
|
-
}
|
|
7706
|
-
},
|
|
7738
|
+
"description": "Specify a render function for the list item",
|
|
7739
|
+
"attribute": "renderItem"
|
|
7740
|
+
}
|
|
7741
|
+
],
|
|
7742
|
+
"attributes": [
|
|
7707
7743
|
{
|
|
7708
|
-
"name": "
|
|
7744
|
+
"name": "thumbnail",
|
|
7709
7745
|
"type": {
|
|
7710
7746
|
"text": "boolean | undefined"
|
|
7711
7747
|
},
|
|
7712
|
-
"description": "Specify if
|
|
7748
|
+
"description": "Specify if the all items displays with a default thumbnail or a preview of the image being uploaded. Image only displays for size lg.",
|
|
7713
7749
|
"default": "false",
|
|
7714
|
-
"fieldName": "
|
|
7750
|
+
"fieldName": "thumbnail"
|
|
7715
7751
|
},
|
|
7716
7752
|
{
|
|
7717
|
-
"name": "
|
|
7753
|
+
"name": "size",
|
|
7718
7754
|
"type": {
|
|
7719
|
-
"text": "
|
|
7755
|
+
"text": "'md' | 'lg' | undefined"
|
|
7720
7756
|
},
|
|
7721
|
-
"description": "Specify
|
|
7722
|
-
"
|
|
7757
|
+
"description": "Specify FileUpload List size",
|
|
7758
|
+
"default": "'md'",
|
|
7759
|
+
"fieldName": "size"
|
|
7723
7760
|
},
|
|
7724
7761
|
{
|
|
7725
7762
|
"name": "theme",
|
|
@@ -7730,256 +7767,161 @@
|
|
|
7730
7767
|
"fieldName": "theme"
|
|
7731
7768
|
},
|
|
7732
7769
|
{
|
|
7733
|
-
"name": "
|
|
7734
|
-
"type": {
|
|
7735
|
-
"text": "string"
|
|
7736
|
-
},
|
|
7737
|
-
"default": "''",
|
|
7738
|
-
"fieldName": "id",
|
|
7739
|
-
"inheritedFrom": {
|
|
7740
|
-
"name": "FormField",
|
|
7741
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7742
|
-
}
|
|
7743
|
-
},
|
|
7744
|
-
{
|
|
7745
|
-
"name": "name",
|
|
7746
|
-
"type": {
|
|
7747
|
-
"text": "string"
|
|
7748
|
-
},
|
|
7749
|
-
"default": "''",
|
|
7750
|
-
"fieldName": "name",
|
|
7751
|
-
"inheritedFrom": {
|
|
7752
|
-
"name": "FormField",
|
|
7753
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7754
|
-
}
|
|
7755
|
-
},
|
|
7756
|
-
{
|
|
7757
|
-
"name": "value",
|
|
7770
|
+
"name": "disabled",
|
|
7758
7771
|
"type": {
|
|
7759
|
-
"text": "
|
|
7772
|
+
"text": "boolean | undefined"
|
|
7760
7773
|
},
|
|
7761
|
-
"
|
|
7762
|
-
"fieldName": "
|
|
7763
|
-
"inheritedFrom": {
|
|
7764
|
-
"name": "FormField",
|
|
7765
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7766
|
-
}
|
|
7774
|
+
"description": "Specify if the FileUpload is disabled",
|
|
7775
|
+
"fieldName": "disabled"
|
|
7767
7776
|
},
|
|
7768
7777
|
{
|
|
7769
|
-
"name": "
|
|
7778
|
+
"name": "renderItem",
|
|
7770
7779
|
"type": {
|
|
7771
|
-
"text": "
|
|
7780
|
+
"text": "(fileItem: FileItem, dismissFile: () => void) => void | undefined"
|
|
7772
7781
|
},
|
|
7773
|
-
"
|
|
7774
|
-
"
|
|
7775
|
-
"name": "FormField",
|
|
7776
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7777
|
-
}
|
|
7782
|
+
"description": "Specify a render function for the list item",
|
|
7783
|
+
"fieldName": "renderItem"
|
|
7778
7784
|
}
|
|
7779
7785
|
],
|
|
7780
7786
|
"superclass": {
|
|
7781
|
-
"name": "
|
|
7782
|
-
"
|
|
7787
|
+
"name": "LitElement",
|
|
7788
|
+
"package": "lit"
|
|
7783
7789
|
},
|
|
7784
|
-
"tagName": "bm-file-upload",
|
|
7790
|
+
"tagName": "bm-file-upload-list",
|
|
7785
7791
|
"customElement": true
|
|
7786
7792
|
}
|
|
7787
7793
|
],
|
|
7788
7794
|
"exports": [
|
|
7789
7795
|
{
|
|
7790
7796
|
"kind": "js",
|
|
7791
|
-
"name": "
|
|
7792
|
-
"declaration": {
|
|
7793
|
-
"name": "BmFileUploadFileSelectedEvent",
|
|
7794
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
7795
|
-
}
|
|
7796
|
-
},
|
|
7797
|
-
{
|
|
7798
|
-
"kind": "js",
|
|
7799
|
-
"name": "BmFileUpload",
|
|
7797
|
+
"name": "BmFileUploadList",
|
|
7800
7798
|
"declaration": {
|
|
7801
|
-
"name": "
|
|
7802
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
7799
|
+
"name": "BmFileUploadList",
|
|
7800
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.ts"
|
|
7803
7801
|
}
|
|
7804
7802
|
},
|
|
7805
7803
|
{
|
|
7806
7804
|
"kind": "custom-element-definition",
|
|
7807
|
-
"name": "bm-file-upload",
|
|
7808
|
-
"declaration": {
|
|
7809
|
-
"name": "BmFileUpload",
|
|
7810
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
7811
|
-
}
|
|
7812
|
-
}
|
|
7813
|
-
]
|
|
7814
|
-
},
|
|
7815
|
-
{
|
|
7816
|
-
"kind": "javascript-module",
|
|
7817
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/FileUploadContext.ts",
|
|
7818
|
-
"declarations": [
|
|
7819
|
-
{
|
|
7820
|
-
"kind": "variable",
|
|
7821
|
-
"name": "fileUploadContext"
|
|
7822
|
-
}
|
|
7823
|
-
],
|
|
7824
|
-
"exports": [
|
|
7825
|
-
{
|
|
7826
|
-
"kind": "js",
|
|
7827
|
-
"name": "fileUploadContext",
|
|
7828
|
-
"declaration": {
|
|
7829
|
-
"name": "fileUploadContext",
|
|
7830
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUploadContext.ts"
|
|
7831
|
-
}
|
|
7832
|
-
}
|
|
7833
|
-
]
|
|
7834
|
-
},
|
|
7835
|
-
{
|
|
7836
|
-
"kind": "javascript-module",
|
|
7837
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts",
|
|
7838
|
-
"declarations": [
|
|
7839
|
-
{
|
|
7840
|
-
"kind": "variable",
|
|
7841
|
-
"name": "fileUploadListContext"
|
|
7842
|
-
}
|
|
7843
|
-
],
|
|
7844
|
-
"exports": [
|
|
7845
|
-
{
|
|
7846
|
-
"kind": "js",
|
|
7847
|
-
"name": "fileUploadListContext",
|
|
7848
|
-
"declaration": {
|
|
7849
|
-
"name": "fileUploadListContext",
|
|
7850
|
-
"module": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts"
|
|
7851
|
-
}
|
|
7852
|
-
}
|
|
7853
|
-
]
|
|
7854
|
-
},
|
|
7855
|
-
{
|
|
7856
|
-
"kind": "javascript-module",
|
|
7857
|
-
"path": "libs/web-components/src/lib/wip/FileUpload/index.ts",
|
|
7858
|
-
"declarations": [],
|
|
7859
|
-
"exports": [
|
|
7860
|
-
{
|
|
7861
|
-
"kind": "js",
|
|
7862
|
-
"name": "*",
|
|
7863
|
-
"declaration": {
|
|
7864
|
-
"name": "*",
|
|
7865
|
-
"package": "./FileUpload"
|
|
7866
|
-
}
|
|
7867
|
-
},
|
|
7868
|
-
{
|
|
7869
|
-
"kind": "js",
|
|
7870
|
-
"name": "*",
|
|
7871
|
-
"declaration": {
|
|
7872
|
-
"name": "*",
|
|
7873
|
-
"package": "./FileUpload.Button"
|
|
7874
|
-
}
|
|
7875
|
-
},
|
|
7876
|
-
{
|
|
7877
|
-
"kind": "js",
|
|
7878
|
-
"name": "*",
|
|
7879
|
-
"declaration": {
|
|
7880
|
-
"name": "*",
|
|
7881
|
-
"package": "./FileUpload.Dropzone"
|
|
7882
|
-
}
|
|
7883
|
-
},
|
|
7884
|
-
{
|
|
7885
|
-
"kind": "js",
|
|
7886
|
-
"name": "*",
|
|
7887
|
-
"declaration": {
|
|
7888
|
-
"name": "*",
|
|
7889
|
-
"package": "./FileUpload.List"
|
|
7890
|
-
}
|
|
7891
|
-
},
|
|
7892
|
-
{
|
|
7893
|
-
"kind": "js",
|
|
7894
|
-
"name": "*",
|
|
7805
|
+
"name": "bm-file-upload-list",
|
|
7895
7806
|
"declaration": {
|
|
7896
|
-
"name": "
|
|
7897
|
-
"
|
|
7807
|
+
"name": "BmFileUploadList",
|
|
7808
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.List.ts"
|
|
7898
7809
|
}
|
|
7899
7810
|
}
|
|
7900
7811
|
]
|
|
7901
7812
|
},
|
|
7902
7813
|
{
|
|
7903
7814
|
"kind": "javascript-module",
|
|
7904
|
-
"path": "libs/web-components/src/lib/wip/
|
|
7815
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts",
|
|
7905
7816
|
"declarations": [
|
|
7906
7817
|
{
|
|
7907
|
-
"kind": "
|
|
7908
|
-
"
|
|
7909
|
-
"
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
},
|
|
7914
|
-
{
|
|
7915
|
-
"kind": "variable",
|
|
7916
|
-
"name": "bmFormContext"
|
|
7917
|
-
}
|
|
7918
|
-
],
|
|
7919
|
-
"exports": [
|
|
7920
|
-
{
|
|
7921
|
-
"kind": "js",
|
|
7922
|
-
"name": "bmFormInitials",
|
|
7923
|
-
"declaration": {
|
|
7924
|
-
"name": "bmFormInitials",
|
|
7925
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
7818
|
+
"kind": "class",
|
|
7819
|
+
"description": "",
|
|
7820
|
+
"name": "BmFileUploadFileSelectedEvent",
|
|
7821
|
+
"superclass": {
|
|
7822
|
+
"name": "CustomEvent",
|
|
7823
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
7926
7824
|
}
|
|
7927
7825
|
},
|
|
7928
|
-
{
|
|
7929
|
-
"kind": "js",
|
|
7930
|
-
"name": "bmFormContext",
|
|
7931
|
-
"declaration": {
|
|
7932
|
-
"name": "bmFormContext",
|
|
7933
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
7934
|
-
}
|
|
7935
|
-
}
|
|
7936
|
-
]
|
|
7937
|
-
},
|
|
7938
|
-
{
|
|
7939
|
-
"kind": "javascript-module",
|
|
7940
|
-
"path": "libs/web-components/src/lib/wip/Form/Form.decorator.ts",
|
|
7941
|
-
"declarations": [
|
|
7942
7826
|
{
|
|
7943
7827
|
"kind": "class",
|
|
7944
|
-
"description": "### Attributes:\n- **
|
|
7945
|
-
"name": "
|
|
7828
|
+
"description": "`bm-file-upload`\n\n### Attributes:\n- **accept** - Specify what types of files can be uploaded\n- **error** - Specify error text and display error state of FileUpload\n- **disabled** - Specify if FileUpload is in disabled state\n- **multiple** - Specify if more than one file can be can be uploaded\n- **fileLimit** - Specify how many files can be uploaded\n- **maxFileSize** - Specify the maximum file size that can be uploaded\n- **required** - Specify if FileUpload is a required input\n- **readOnly** - Specify if FileUpload is in read-only state\n- **hideRequiredMarker** - Specify if FileUpload displays with an asterisk\n- **validationRules** - Specify form validation rules for FileUpload\n- **fluid** - Specify if FileUpload is fluid\n- **width** - Specify the width of FileUpload\n- **theme** - Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
7829
|
+
"name": "BmFileUpload",
|
|
7830
|
+
"slots": [
|
|
7831
|
+
{
|
|
7832
|
+
"description": "Specify Label for for FileUpload",
|
|
7833
|
+
"name": "label"
|
|
7834
|
+
},
|
|
7835
|
+
{
|
|
7836
|
+
"description": "Specify HelperText for FileUpload",
|
|
7837
|
+
"name": "helper-text"
|
|
7838
|
+
}
|
|
7839
|
+
],
|
|
7946
7840
|
"members": [
|
|
7947
7841
|
{
|
|
7948
7842
|
"kind": "field",
|
|
7949
|
-
"name": "
|
|
7843
|
+
"name": "accept",
|
|
7844
|
+
"type": {
|
|
7845
|
+
"text": "string | undefined"
|
|
7846
|
+
},
|
|
7847
|
+
"description": "Specify what types of files can be uploaded",
|
|
7848
|
+
"attribute": "accept"
|
|
7849
|
+
},
|
|
7850
|
+
{
|
|
7851
|
+
"kind": "field",
|
|
7852
|
+
"name": "error",
|
|
7853
|
+
"type": {
|
|
7854
|
+
"text": "string | boolean | undefined"
|
|
7855
|
+
},
|
|
7856
|
+
"description": "Specify error text and display error state of FileUpload",
|
|
7857
|
+
"attribute": "error"
|
|
7858
|
+
},
|
|
7859
|
+
{
|
|
7860
|
+
"kind": "field",
|
|
7861
|
+
"name": "disabled",
|
|
7862
|
+
"type": {
|
|
7863
|
+
"text": "boolean | undefined"
|
|
7864
|
+
},
|
|
7865
|
+
"default": "false",
|
|
7866
|
+
"description": "Specify if FileUpload is in disabled state",
|
|
7867
|
+
"attribute": "disabled"
|
|
7868
|
+
},
|
|
7869
|
+
{
|
|
7870
|
+
"kind": "field",
|
|
7871
|
+
"name": "multiple",
|
|
7872
|
+
"type": {
|
|
7873
|
+
"text": "boolean | undefined"
|
|
7874
|
+
},
|
|
7875
|
+
"description": "Specify if more than one file can be can be uploaded",
|
|
7876
|
+
"default": "false",
|
|
7877
|
+
"attribute": "multiple"
|
|
7878
|
+
},
|
|
7879
|
+
{
|
|
7880
|
+
"kind": "field",
|
|
7881
|
+
"name": "fileLimit",
|
|
7882
|
+
"type": {
|
|
7883
|
+
"text": "number | undefined"
|
|
7884
|
+
},
|
|
7885
|
+
"description": "Specify how many files can be uploaded",
|
|
7886
|
+
"attribute": "fileLimit"
|
|
7887
|
+
},
|
|
7888
|
+
{
|
|
7889
|
+
"kind": "field",
|
|
7890
|
+
"name": "maxFileSize",
|
|
7950
7891
|
"type": {
|
|
7951
|
-
"text": "
|
|
7892
|
+
"text": "number | undefined"
|
|
7952
7893
|
},
|
|
7953
|
-
"
|
|
7954
|
-
"
|
|
7894
|
+
"description": "Specify the maximum file size that can be uploaded",
|
|
7895
|
+
"attribute": "maxFileSize"
|
|
7955
7896
|
},
|
|
7956
7897
|
{
|
|
7957
7898
|
"kind": "field",
|
|
7958
|
-
"name": "
|
|
7899
|
+
"name": "required",
|
|
7959
7900
|
"type": {
|
|
7960
|
-
"text": "
|
|
7901
|
+
"text": "boolean | undefined"
|
|
7961
7902
|
},
|
|
7962
|
-
"
|
|
7963
|
-
"
|
|
7903
|
+
"description": "Specify if FileUpload is a required input",
|
|
7904
|
+
"default": "false",
|
|
7905
|
+
"attribute": "required"
|
|
7964
7906
|
},
|
|
7965
7907
|
{
|
|
7966
7908
|
"kind": "field",
|
|
7967
|
-
"name": "
|
|
7909
|
+
"name": "readOnly",
|
|
7968
7910
|
"type": {
|
|
7969
|
-
"text": "
|
|
7911
|
+
"text": "boolean | undefined"
|
|
7970
7912
|
},
|
|
7971
|
-
"
|
|
7972
|
-
"attribute": "
|
|
7973
|
-
"reflects": true
|
|
7913
|
+
"description": "Specify if FileUpload is in read-only state",
|
|
7914
|
+
"attribute": "readOnly"
|
|
7974
7915
|
},
|
|
7975
7916
|
{
|
|
7976
7917
|
"kind": "field",
|
|
7977
|
-
"name": "
|
|
7918
|
+
"name": "hideRequiredMarker",
|
|
7978
7919
|
"type": {
|
|
7979
|
-
"text": "
|
|
7920
|
+
"text": "boolean | undefined"
|
|
7980
7921
|
},
|
|
7981
|
-
"
|
|
7982
|
-
"
|
|
7922
|
+
"description": "Specify if FileUpload displays with an asterisk",
|
|
7923
|
+
"default": "false",
|
|
7924
|
+
"attribute": "hideRequiredMarker"
|
|
7983
7925
|
},
|
|
7984
7926
|
{
|
|
7985
7927
|
"kind": "field",
|
|
@@ -7988,23 +7930,56 @@
|
|
|
7988
7930
|
"text": "Array<FormValidator>"
|
|
7989
7931
|
},
|
|
7990
7932
|
"default": "[]",
|
|
7991
|
-
"attribute": "validationRules"
|
|
7933
|
+
"attribute": "validationRules",
|
|
7934
|
+
"description": "Specify form validation rules for FileUpload",
|
|
7935
|
+
"inheritedFrom": {
|
|
7936
|
+
"name": "FormField",
|
|
7937
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
7938
|
+
}
|
|
7992
7939
|
},
|
|
7993
7940
|
{
|
|
7994
7941
|
"kind": "field",
|
|
7995
|
-
"name": "
|
|
7942
|
+
"name": "fluid",
|
|
7943
|
+
"type": {
|
|
7944
|
+
"text": "boolean | undefined"
|
|
7945
|
+
},
|
|
7946
|
+
"description": "Specify if FileUpload is fluid",
|
|
7947
|
+
"default": "false",
|
|
7948
|
+
"attribute": "fluid"
|
|
7949
|
+
},
|
|
7950
|
+
{
|
|
7951
|
+
"kind": "field",
|
|
7952
|
+
"name": "width",
|
|
7996
7953
|
"type": {
|
|
7997
7954
|
"text": "string | undefined"
|
|
7998
7955
|
},
|
|
7999
|
-
"
|
|
7956
|
+
"description": "Specify the width of FileUpload",
|
|
7957
|
+
"attribute": "width"
|
|
7958
|
+
},
|
|
7959
|
+
{
|
|
7960
|
+
"kind": "field",
|
|
7961
|
+
"name": "theme",
|
|
7962
|
+
"type": {
|
|
7963
|
+
"text": "'light' | 'dark' | undefined"
|
|
7964
|
+
},
|
|
7965
|
+
"description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
7966
|
+
"attribute": "theme"
|
|
8000
7967
|
},
|
|
8001
7968
|
{
|
|
8002
7969
|
"kind": "field",
|
|
8003
7970
|
"name": "formContext",
|
|
8004
7971
|
"type": {
|
|
8005
7972
|
"text": "BmFormContext"
|
|
7973
|
+
},
|
|
7974
|
+
"inheritedFrom": {
|
|
7975
|
+
"name": "FormField",
|
|
7976
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8006
7977
|
}
|
|
8007
7978
|
},
|
|
7979
|
+
{
|
|
7980
|
+
"kind": "field",
|
|
7981
|
+
"name": "pickerRef"
|
|
7982
|
+
},
|
|
8008
7983
|
{
|
|
8009
7984
|
"kind": "method",
|
|
8010
7985
|
"name": "formAssociatedCallback",
|
|
@@ -8012,6 +7987,10 @@
|
|
|
8012
7987
|
"type": {
|
|
8013
7988
|
"text": "void"
|
|
8014
7989
|
}
|
|
7990
|
+
},
|
|
7991
|
+
"inheritedFrom": {
|
|
7992
|
+
"name": "FormField",
|
|
7993
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8015
7994
|
}
|
|
8016
7995
|
},
|
|
8017
7996
|
{
|
|
@@ -8021,349 +8000,346 @@
|
|
|
8021
8000
|
"type": {
|
|
8022
8001
|
"text": "void"
|
|
8023
8002
|
}
|
|
8003
|
+
},
|
|
8004
|
+
"inheritedFrom": {
|
|
8005
|
+
"name": "FormField",
|
|
8006
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8024
8007
|
}
|
|
8025
8008
|
},
|
|
8026
8009
|
{
|
|
8027
|
-
"kind": "
|
|
8028
|
-
"name": "
|
|
8029
|
-
"
|
|
8030
|
-
"
|
|
8031
|
-
"text": "FinalizeAssociatedResult"
|
|
8032
|
-
}
|
|
8010
|
+
"kind": "field",
|
|
8011
|
+
"name": "formAssociated",
|
|
8012
|
+
"type": {
|
|
8013
|
+
"text": "boolean"
|
|
8033
8014
|
},
|
|
8034
|
-
"
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
|
|
8040
|
-
|
|
8041
|
-
]
|
|
8042
|
-
}
|
|
8043
|
-
],
|
|
8044
|
-
"attributes": [
|
|
8015
|
+
"static": true,
|
|
8016
|
+
"default": "true",
|
|
8017
|
+
"inheritedFrom": {
|
|
8018
|
+
"name": "FormField",
|
|
8019
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8020
|
+
}
|
|
8021
|
+
},
|
|
8045
8022
|
{
|
|
8023
|
+
"kind": "field",
|
|
8046
8024
|
"name": "id",
|
|
8047
8025
|
"type": {
|
|
8048
8026
|
"text": "string"
|
|
8049
8027
|
},
|
|
8050
8028
|
"default": "''",
|
|
8051
|
-
"
|
|
8029
|
+
"attribute": "id",
|
|
8030
|
+
"inheritedFrom": {
|
|
8031
|
+
"name": "FormField",
|
|
8032
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8033
|
+
}
|
|
8052
8034
|
},
|
|
8053
8035
|
{
|
|
8036
|
+
"kind": "field",
|
|
8054
8037
|
"name": "name",
|
|
8055
8038
|
"type": {
|
|
8056
8039
|
"text": "string"
|
|
8057
8040
|
},
|
|
8058
8041
|
"default": "''",
|
|
8059
|
-
"
|
|
8042
|
+
"attribute": "name",
|
|
8043
|
+
"reflects": true,
|
|
8044
|
+
"inheritedFrom": {
|
|
8045
|
+
"name": "FormField",
|
|
8046
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8047
|
+
}
|
|
8060
8048
|
},
|
|
8061
8049
|
{
|
|
8050
|
+
"kind": "field",
|
|
8062
8051
|
"name": "value",
|
|
8063
8052
|
"type": {
|
|
8064
8053
|
"text": "string"
|
|
8065
8054
|
},
|
|
8066
8055
|
"default": "''",
|
|
8067
|
-
"
|
|
8056
|
+
"attribute": "value",
|
|
8057
|
+
"inheritedFrom": {
|
|
8058
|
+
"name": "FormField",
|
|
8059
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8060
|
+
}
|
|
8068
8061
|
},
|
|
8069
8062
|
{
|
|
8070
|
-
"
|
|
8063
|
+
"kind": "field",
|
|
8064
|
+
"name": "inputAriaLabel",
|
|
8071
8065
|
"type": {
|
|
8072
|
-
"text": "
|
|
8066
|
+
"text": "string | undefined"
|
|
8073
8067
|
},
|
|
8074
|
-
"
|
|
8075
|
-
"
|
|
8068
|
+
"attribute": "input-aria-label",
|
|
8069
|
+
"inheritedFrom": {
|
|
8070
|
+
"name": "FormField",
|
|
8071
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8072
|
+
}
|
|
8076
8073
|
},
|
|
8077
8074
|
{
|
|
8078
|
-
"
|
|
8079
|
-
"
|
|
8080
|
-
|
|
8075
|
+
"kind": "method",
|
|
8076
|
+
"name": "finalizeAssociatedCallback",
|
|
8077
|
+
"return": {
|
|
8078
|
+
"type": {
|
|
8079
|
+
"text": "FinalizeAssociatedResult"
|
|
8080
|
+
}
|
|
8081
8081
|
},
|
|
8082
|
-
"
|
|
8082
|
+
"parameters": [
|
|
8083
|
+
{
|
|
8084
|
+
"name": "ctxValue",
|
|
8085
|
+
"type": {
|
|
8086
|
+
"text": "string"
|
|
8087
|
+
}
|
|
8088
|
+
}
|
|
8089
|
+
],
|
|
8090
|
+
"inheritedFrom": {
|
|
8091
|
+
"name": "FormField",
|
|
8092
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8093
|
+
}
|
|
8083
8094
|
}
|
|
8084
8095
|
],
|
|
8085
|
-
"
|
|
8086
|
-
"name": "LitElement",
|
|
8087
|
-
"package": "lit"
|
|
8088
|
-
},
|
|
8089
|
-
"customElement": true
|
|
8090
|
-
}
|
|
8091
|
-
],
|
|
8092
|
-
"exports": [
|
|
8093
|
-
{
|
|
8094
|
-
"kind": "js",
|
|
8095
|
-
"name": "FormField",
|
|
8096
|
-
"declaration": {
|
|
8097
|
-
"name": "FormField",
|
|
8098
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8099
|
-
}
|
|
8100
|
-
}
|
|
8101
|
-
]
|
|
8102
|
-
},
|
|
8103
|
-
{
|
|
8104
|
-
"kind": "javascript-module",
|
|
8105
|
-
"path": "libs/web-components/src/lib/wip/Form/Form.ts",
|
|
8106
|
-
"declarations": [
|
|
8107
|
-
{
|
|
8108
|
-
"kind": "class",
|
|
8109
|
-
"description": "### Attributes:\n- **validationMode** - Specify if validation runs on change or when loosing focus\n- **initialValues** - Specify initial values on Form controls based on their names\n- **required** - Specify if input is a required\n- **disabled** - Specify if input is a disabled\n- **readOnly** - Specify if input is a read only\n- **action** \n- **method** \n- **target** \n- **enctype** ",
|
|
8110
|
-
"name": "BmForm",
|
|
8111
|
-
"slots": [
|
|
8096
|
+
"events": [
|
|
8112
8097
|
{
|
|
8113
|
-
"description": "
|
|
8114
|
-
"name": "
|
|
8098
|
+
"description": "Dispatched when a file is uploaded. Preventing default on this event will make upload asynchronous",
|
|
8099
|
+
"name": "bm-selected"
|
|
8115
8100
|
}
|
|
8116
8101
|
],
|
|
8117
|
-
"
|
|
8118
|
-
{
|
|
8119
|
-
"kind": "field",
|
|
8120
|
-
"name": "validationMode",
|
|
8121
|
-
"type": {
|
|
8122
|
-
"text": "'onChange' | 'onBlur' | 'onSubmit'"
|
|
8123
|
-
},
|
|
8124
|
-
"default": "'onBlur'",
|
|
8125
|
-
"description": "Specify if validation runs on change or when loosing focus",
|
|
8126
|
-
"attribute": "validationMode"
|
|
8127
|
-
},
|
|
8128
|
-
{
|
|
8129
|
-
"kind": "field",
|
|
8130
|
-
"name": "initialValues",
|
|
8131
|
-
"type": {
|
|
8132
|
-
"text": "Record<string, FormValue>"
|
|
8133
|
-
},
|
|
8134
|
-
"default": "{}",
|
|
8135
|
-
"description": "Specify initial values on Form controls based on their names",
|
|
8136
|
-
"attribute": "initialValues"
|
|
8137
|
-
},
|
|
8138
|
-
{
|
|
8139
|
-
"kind": "field",
|
|
8140
|
-
"name": "required",
|
|
8141
|
-
"type": {
|
|
8142
|
-
"text": "boolean"
|
|
8143
|
-
},
|
|
8144
|
-
"default": "false",
|
|
8145
|
-
"description": "Specify if input is a required",
|
|
8146
|
-
"attribute": "required"
|
|
8147
|
-
},
|
|
8148
|
-
{
|
|
8149
|
-
"kind": "field",
|
|
8150
|
-
"name": "disabled",
|
|
8151
|
-
"type": {
|
|
8152
|
-
"text": "boolean"
|
|
8153
|
-
},
|
|
8154
|
-
"default": "false",
|
|
8155
|
-
"description": "Specify if input is a disabled",
|
|
8156
|
-
"attribute": "disabled"
|
|
8157
|
-
},
|
|
8158
|
-
{
|
|
8159
|
-
"kind": "field",
|
|
8160
|
-
"name": "readOnly",
|
|
8161
|
-
"type": {
|
|
8162
|
-
"text": "boolean"
|
|
8163
|
-
},
|
|
8164
|
-
"default": "false",
|
|
8165
|
-
"description": "Specify if input is a read only",
|
|
8166
|
-
"attribute": "readOnly"
|
|
8167
|
-
},
|
|
8102
|
+
"attributes": [
|
|
8168
8103
|
{
|
|
8169
|
-
"
|
|
8170
|
-
"name": "action",
|
|
8104
|
+
"name": "accept",
|
|
8171
8105
|
"type": {
|
|
8172
8106
|
"text": "string | undefined"
|
|
8173
8107
|
},
|
|
8174
|
-
"
|
|
8108
|
+
"description": "Specify what types of files can be uploaded",
|
|
8109
|
+
"fieldName": "accept"
|
|
8175
8110
|
},
|
|
8176
8111
|
{
|
|
8177
|
-
"
|
|
8178
|
-
"name": "method",
|
|
8112
|
+
"name": "error",
|
|
8179
8113
|
"type": {
|
|
8180
|
-
"text": "string | undefined"
|
|
8114
|
+
"text": "string | boolean | undefined"
|
|
8181
8115
|
},
|
|
8182
|
-
"
|
|
8116
|
+
"description": "Specify error text and display error state of FileUpload",
|
|
8117
|
+
"fieldName": "error"
|
|
8183
8118
|
},
|
|
8184
8119
|
{
|
|
8185
|
-
"
|
|
8186
|
-
"name": "target",
|
|
8120
|
+
"name": "disabled",
|
|
8187
8121
|
"type": {
|
|
8188
|
-
"text": "
|
|
8122
|
+
"text": "boolean | undefined"
|
|
8189
8123
|
},
|
|
8190
|
-
"
|
|
8124
|
+
"default": "false",
|
|
8125
|
+
"description": "Specify if FileUpload is in disabled state",
|
|
8126
|
+
"fieldName": "disabled"
|
|
8191
8127
|
},
|
|
8192
8128
|
{
|
|
8193
|
-
"
|
|
8194
|
-
"name": "enctype",
|
|
8129
|
+
"name": "multiple",
|
|
8195
8130
|
"type": {
|
|
8196
|
-
"text": "
|
|
8131
|
+
"text": "boolean | undefined"
|
|
8197
8132
|
},
|
|
8198
|
-
"
|
|
8133
|
+
"description": "Specify if more than one file can be can be uploaded",
|
|
8134
|
+
"default": "false",
|
|
8135
|
+
"fieldName": "multiple"
|
|
8199
8136
|
},
|
|
8200
8137
|
{
|
|
8201
|
-
"
|
|
8202
|
-
"name": "formMeta",
|
|
8138
|
+
"name": "fileLimit",
|
|
8203
8139
|
"type": {
|
|
8204
|
-
"text": "
|
|
8140
|
+
"text": "number | undefined"
|
|
8205
8141
|
},
|
|
8206
|
-
"
|
|
8142
|
+
"description": "Specify how many files can be uploaded",
|
|
8143
|
+
"fieldName": "fileLimit"
|
|
8207
8144
|
},
|
|
8208
8145
|
{
|
|
8209
|
-
"
|
|
8210
|
-
"
|
|
8146
|
+
"name": "maxFileSize",
|
|
8147
|
+
"type": {
|
|
8148
|
+
"text": "number | undefined"
|
|
8149
|
+
},
|
|
8150
|
+
"description": "Specify the maximum file size that can be uploaded",
|
|
8151
|
+
"fieldName": "maxFileSize"
|
|
8211
8152
|
},
|
|
8212
8153
|
{
|
|
8213
|
-
"
|
|
8214
|
-
"name": "formContext",
|
|
8154
|
+
"name": "required",
|
|
8215
8155
|
"type": {
|
|
8216
|
-
"text": "
|
|
8156
|
+
"text": "boolean | undefined"
|
|
8217
8157
|
},
|
|
8218
|
-
"
|
|
8219
|
-
"default": "
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
"events": [
|
|
8158
|
+
"description": "Specify if FileUpload is a required input",
|
|
8159
|
+
"default": "false",
|
|
8160
|
+
"fieldName": "required"
|
|
8161
|
+
},
|
|
8223
8162
|
{
|
|
8224
|
-
"
|
|
8225
|
-
"
|
|
8226
|
-
|
|
8227
|
-
|
|
8228
|
-
|
|
8163
|
+
"name": "readOnly",
|
|
8164
|
+
"type": {
|
|
8165
|
+
"text": "boolean | undefined"
|
|
8166
|
+
},
|
|
8167
|
+
"description": "Specify if FileUpload is in read-only state",
|
|
8168
|
+
"fieldName": "readOnly"
|
|
8169
|
+
},
|
|
8229
8170
|
{
|
|
8230
|
-
"name": "
|
|
8171
|
+
"name": "hideRequiredMarker",
|
|
8231
8172
|
"type": {
|
|
8232
|
-
"text": "
|
|
8173
|
+
"text": "boolean | undefined"
|
|
8233
8174
|
},
|
|
8234
|
-
"
|
|
8235
|
-
"
|
|
8236
|
-
"fieldName": "
|
|
8175
|
+
"description": "Specify if FileUpload displays with an asterisk",
|
|
8176
|
+
"default": "false",
|
|
8177
|
+
"fieldName": "hideRequiredMarker"
|
|
8237
8178
|
},
|
|
8238
8179
|
{
|
|
8239
|
-
"name": "
|
|
8180
|
+
"name": "validationRules",
|
|
8240
8181
|
"type": {
|
|
8241
|
-
"text": "
|
|
8182
|
+
"text": "Array<FormValidator>"
|
|
8242
8183
|
},
|
|
8243
|
-
"default": "
|
|
8244
|
-
"
|
|
8245
|
-
"
|
|
8184
|
+
"default": "[]",
|
|
8185
|
+
"fieldName": "validationRules",
|
|
8186
|
+
"description": "Specify form validation rules for FileUpload",
|
|
8187
|
+
"inheritedFrom": {
|
|
8188
|
+
"name": "FormField",
|
|
8189
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8190
|
+
}
|
|
8246
8191
|
},
|
|
8247
8192
|
{
|
|
8248
|
-
"name": "
|
|
8193
|
+
"name": "fluid",
|
|
8249
8194
|
"type": {
|
|
8250
|
-
"text": "boolean"
|
|
8195
|
+
"text": "boolean | undefined"
|
|
8251
8196
|
},
|
|
8197
|
+
"description": "Specify if FileUpload is fluid",
|
|
8252
8198
|
"default": "false",
|
|
8253
|
-
"
|
|
8254
|
-
"fieldName": "required"
|
|
8199
|
+
"fieldName": "fluid"
|
|
8255
8200
|
},
|
|
8256
8201
|
{
|
|
8257
|
-
"name": "
|
|
8202
|
+
"name": "width",
|
|
8258
8203
|
"type": {
|
|
8259
|
-
"text": "
|
|
8204
|
+
"text": "string | undefined"
|
|
8260
8205
|
},
|
|
8261
|
-
"
|
|
8262
|
-
"
|
|
8263
|
-
"fieldName": "disabled"
|
|
8206
|
+
"description": "Specify the width of FileUpload",
|
|
8207
|
+
"fieldName": "width"
|
|
8264
8208
|
},
|
|
8265
8209
|
{
|
|
8266
|
-
"name": "
|
|
8210
|
+
"name": "theme",
|
|
8267
8211
|
"type": {
|
|
8268
|
-
"text": "
|
|
8212
|
+
"text": "'light' | 'dark' | undefined"
|
|
8269
8213
|
},
|
|
8270
|
-
"
|
|
8271
|
-
"
|
|
8272
|
-
"fieldName": "readOnly"
|
|
8214
|
+
"description": "Specify the theme of the FileUpload. By default it inherits the theme from the parent",
|
|
8215
|
+
"fieldName": "theme"
|
|
8273
8216
|
},
|
|
8274
8217
|
{
|
|
8275
|
-
"name": "
|
|
8218
|
+
"name": "id",
|
|
8276
8219
|
"type": {
|
|
8277
|
-
"text": "string
|
|
8220
|
+
"text": "string"
|
|
8278
8221
|
},
|
|
8279
|
-
"
|
|
8222
|
+
"default": "''",
|
|
8223
|
+
"fieldName": "id",
|
|
8224
|
+
"inheritedFrom": {
|
|
8225
|
+
"name": "FormField",
|
|
8226
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8227
|
+
}
|
|
8280
8228
|
},
|
|
8281
8229
|
{
|
|
8282
|
-
"name": "
|
|
8230
|
+
"name": "name",
|
|
8283
8231
|
"type": {
|
|
8284
|
-
"text": "string
|
|
8232
|
+
"text": "string"
|
|
8285
8233
|
},
|
|
8286
|
-
"
|
|
8234
|
+
"default": "''",
|
|
8235
|
+
"fieldName": "name",
|
|
8236
|
+
"inheritedFrom": {
|
|
8237
|
+
"name": "FormField",
|
|
8238
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8239
|
+
}
|
|
8287
8240
|
},
|
|
8288
8241
|
{
|
|
8289
|
-
"name": "
|
|
8242
|
+
"name": "value",
|
|
8290
8243
|
"type": {
|
|
8291
|
-
"text": "string
|
|
8244
|
+
"text": "string"
|
|
8292
8245
|
},
|
|
8293
|
-
"
|
|
8246
|
+
"default": "''",
|
|
8247
|
+
"fieldName": "value",
|
|
8248
|
+
"inheritedFrom": {
|
|
8249
|
+
"name": "FormField",
|
|
8250
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8251
|
+
}
|
|
8294
8252
|
},
|
|
8295
8253
|
{
|
|
8296
|
-
"name": "
|
|
8254
|
+
"name": "input-aria-label",
|
|
8297
8255
|
"type": {
|
|
8298
8256
|
"text": "string | undefined"
|
|
8299
8257
|
},
|
|
8300
|
-
"fieldName": "
|
|
8258
|
+
"fieldName": "inputAriaLabel",
|
|
8259
|
+
"inheritedFrom": {
|
|
8260
|
+
"name": "FormField",
|
|
8261
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8262
|
+
}
|
|
8301
8263
|
}
|
|
8302
8264
|
],
|
|
8303
8265
|
"superclass": {
|
|
8304
|
-
"name": "
|
|
8305
|
-
"
|
|
8266
|
+
"name": "FormField",
|
|
8267
|
+
"module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
|
|
8306
8268
|
},
|
|
8307
|
-
"
|
|
8308
|
-
"tagName": "bm-form",
|
|
8269
|
+
"tagName": "bm-file-upload",
|
|
8309
8270
|
"customElement": true
|
|
8310
8271
|
}
|
|
8311
8272
|
],
|
|
8312
8273
|
"exports": [
|
|
8313
8274
|
{
|
|
8314
8275
|
"kind": "js",
|
|
8315
|
-
"name": "
|
|
8276
|
+
"name": "BmFileUploadFileSelectedEvent",
|
|
8316
8277
|
"declaration": {
|
|
8317
|
-
"name": "
|
|
8318
|
-
"
|
|
8278
|
+
"name": "BmFileUploadFileSelectedEvent",
|
|
8279
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
8319
8280
|
}
|
|
8320
8281
|
},
|
|
8321
8282
|
{
|
|
8322
8283
|
"kind": "js",
|
|
8323
|
-
"name": "
|
|
8284
|
+
"name": "BmFileUpload",
|
|
8324
8285
|
"declaration": {
|
|
8325
|
-
"name": "
|
|
8326
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8286
|
+
"name": "BmFileUpload",
|
|
8287
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
8327
8288
|
}
|
|
8328
8289
|
},
|
|
8329
8290
|
{
|
|
8330
8291
|
"kind": "custom-element-definition",
|
|
8331
|
-
"name": "bm-
|
|
8292
|
+
"name": "bm-file-upload",
|
|
8332
8293
|
"declaration": {
|
|
8333
|
-
"name": "
|
|
8334
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8294
|
+
"name": "BmFileUpload",
|
|
8295
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUpload.ts"
|
|
8335
8296
|
}
|
|
8336
8297
|
}
|
|
8337
8298
|
]
|
|
8338
8299
|
},
|
|
8339
8300
|
{
|
|
8340
8301
|
"kind": "javascript-module",
|
|
8341
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8302
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUploadContext.ts",
|
|
8342
8303
|
"declarations": [
|
|
8343
8304
|
{
|
|
8344
|
-
"kind": "
|
|
8345
|
-
"name": "
|
|
8346
|
-
|
|
8347
|
-
|
|
8348
|
-
|
|
8349
|
-
|
|
8305
|
+
"kind": "variable",
|
|
8306
|
+
"name": "fileUploadContext"
|
|
8307
|
+
}
|
|
8308
|
+
],
|
|
8309
|
+
"exports": [
|
|
8310
|
+
{
|
|
8311
|
+
"kind": "js",
|
|
8312
|
+
"name": "fileUploadContext",
|
|
8313
|
+
"declaration": {
|
|
8314
|
+
"name": "fileUploadContext",
|
|
8315
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUploadContext.ts"
|
|
8350
8316
|
}
|
|
8351
8317
|
}
|
|
8318
|
+
]
|
|
8319
|
+
},
|
|
8320
|
+
{
|
|
8321
|
+
"kind": "javascript-module",
|
|
8322
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts",
|
|
8323
|
+
"declarations": [
|
|
8324
|
+
{
|
|
8325
|
+
"kind": "variable",
|
|
8326
|
+
"name": "fileUploadListContext"
|
|
8327
|
+
}
|
|
8352
8328
|
],
|
|
8353
8329
|
"exports": [
|
|
8354
8330
|
{
|
|
8355
8331
|
"kind": "js",
|
|
8356
|
-
"name": "
|
|
8332
|
+
"name": "fileUploadListContext",
|
|
8357
8333
|
"declaration": {
|
|
8358
|
-
"name": "
|
|
8359
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8334
|
+
"name": "fileUploadListContext",
|
|
8335
|
+
"module": "libs/web-components/src/lib/wip/FileUpload/FileUploadListContext.ts"
|
|
8360
8336
|
}
|
|
8361
8337
|
}
|
|
8362
8338
|
]
|
|
8363
8339
|
},
|
|
8364
8340
|
{
|
|
8365
8341
|
"kind": "javascript-module",
|
|
8366
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8342
|
+
"path": "libs/web-components/src/lib/wip/FileUpload/index.ts",
|
|
8367
8343
|
"declarations": [],
|
|
8368
8344
|
"exports": [
|
|
8369
8345
|
{
|
|
@@ -8371,7 +8347,7 @@
|
|
|
8371
8347
|
"name": "*",
|
|
8372
8348
|
"declaration": {
|
|
8373
8349
|
"name": "*",
|
|
8374
|
-
"package": "./
|
|
8350
|
+
"package": "./FileUpload"
|
|
8375
8351
|
}
|
|
8376
8352
|
},
|
|
8377
8353
|
{
|
|
@@ -8379,7 +8355,31 @@
|
|
|
8379
8355
|
"name": "*",
|
|
8380
8356
|
"declaration": {
|
|
8381
8357
|
"name": "*",
|
|
8382
|
-
"package": "./
|
|
8358
|
+
"package": "./FileUpload.Button"
|
|
8359
|
+
}
|
|
8360
|
+
},
|
|
8361
|
+
{
|
|
8362
|
+
"kind": "js",
|
|
8363
|
+
"name": "*",
|
|
8364
|
+
"declaration": {
|
|
8365
|
+
"name": "*",
|
|
8366
|
+
"package": "./FileUpload.Dropzone"
|
|
8367
|
+
}
|
|
8368
|
+
},
|
|
8369
|
+
{
|
|
8370
|
+
"kind": "js",
|
|
8371
|
+
"name": "*",
|
|
8372
|
+
"declaration": {
|
|
8373
|
+
"name": "*",
|
|
8374
|
+
"package": "./FileUpload.List"
|
|
8375
|
+
}
|
|
8376
|
+
},
|
|
8377
|
+
{
|
|
8378
|
+
"kind": "js",
|
|
8379
|
+
"name": "*",
|
|
8380
|
+
"declaration": {
|
|
8381
|
+
"name": "*",
|
|
8382
|
+
"package": "./FileUpload.List.Item"
|
|
8383
8383
|
}
|
|
8384
8384
|
}
|
|
8385
8385
|
]
|