@viasat/beam-web-components 2.16.0 → 2.17.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 +1011 -1011
- package/package.json +6 -6
- package/vscode.html-custom-data.json +174 -174
package/custom-elements.json
CHANGED
|
@@ -686,26 +686,76 @@
|
|
|
686
686
|
},
|
|
687
687
|
{
|
|
688
688
|
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/
|
|
689
|
+
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
690
690
|
"declarations": [
|
|
691
691
|
{
|
|
692
692
|
"kind": "class",
|
|
693
|
-
"description": "`bm-
|
|
694
|
-
"name": "
|
|
693
|
+
"description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
|
|
694
|
+
"name": "BmAlert",
|
|
695
695
|
"slots": [
|
|
696
696
|
{
|
|
697
|
-
"description": "
|
|
698
|
-
"name": "
|
|
697
|
+
"description": "Specify a different icon for the Alert",
|
|
698
|
+
"name": "icon"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
702
|
+
"name": "heading"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
706
|
+
"name": "body"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"description": "Specify if actions display on the Alert",
|
|
710
|
+
"name": "actions"
|
|
699
711
|
}
|
|
700
712
|
],
|
|
701
713
|
"members": [
|
|
714
|
+
{
|
|
715
|
+
"kind": "field",
|
|
716
|
+
"name": "heading",
|
|
717
|
+
"type": {
|
|
718
|
+
"text": "string | undefined"
|
|
719
|
+
},
|
|
720
|
+
"description": "Specify the heading text for Alert",
|
|
721
|
+
"attribute": "heading"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"kind": "field",
|
|
725
|
+
"name": "body",
|
|
726
|
+
"type": {
|
|
727
|
+
"text": "string | undefined"
|
|
728
|
+
},
|
|
729
|
+
"description": "Specify the body text for Alert",
|
|
730
|
+
"attribute": "body"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"kind": "field",
|
|
734
|
+
"name": "size",
|
|
735
|
+
"type": {
|
|
736
|
+
"text": "'sm' | 'md'"
|
|
737
|
+
},
|
|
738
|
+
"default": "'sm'",
|
|
739
|
+
"description": "Specify the size of the Alert",
|
|
740
|
+
"attribute": "size"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"kind": "field",
|
|
744
|
+
"name": "fullWidth",
|
|
745
|
+
"type": {
|
|
746
|
+
"text": "boolean"
|
|
747
|
+
},
|
|
748
|
+
"default": "false",
|
|
749
|
+
"description": "Specify if the Alert has no border radius",
|
|
750
|
+
"attribute": "fullWidth"
|
|
751
|
+
},
|
|
702
752
|
{
|
|
703
753
|
"kind": "field",
|
|
704
754
|
"name": "theme",
|
|
705
755
|
"type": {
|
|
706
756
|
"text": "'light' | 'dark' | undefined"
|
|
707
757
|
},
|
|
708
|
-
"description": "Specify the theme of the
|
|
758
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
709
759
|
"attribute": "theme"
|
|
710
760
|
},
|
|
711
761
|
{
|
|
@@ -715,36 +765,107 @@
|
|
|
715
765
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
716
766
|
},
|
|
717
767
|
"default": "'infoPrimary'",
|
|
718
|
-
"description": "Specify the appearance of the
|
|
768
|
+
"description": "Specify the appearance of the Alert",
|
|
719
769
|
"attribute": "appearance"
|
|
720
770
|
},
|
|
721
771
|
{
|
|
722
772
|
"kind": "field",
|
|
723
|
-
"name": "
|
|
773
|
+
"name": "hidden",
|
|
724
774
|
"type": {
|
|
725
|
-
"text": "
|
|
775
|
+
"text": "boolean"
|
|
726
776
|
},
|
|
727
|
-
"default": "
|
|
728
|
-
"description": "Specify the
|
|
729
|
-
"attribute": "
|
|
777
|
+
"default": "false",
|
|
778
|
+
"description": "Specify if the Alert is hidden",
|
|
779
|
+
"attribute": "hidden"
|
|
730
780
|
},
|
|
731
781
|
{
|
|
732
782
|
"kind": "field",
|
|
733
|
-
"name": "
|
|
783
|
+
"name": "hideIcon",
|
|
734
784
|
"type": {
|
|
735
|
-
"text": "
|
|
785
|
+
"text": "boolean"
|
|
736
786
|
},
|
|
737
|
-
"
|
|
738
|
-
"
|
|
787
|
+
"default": "false",
|
|
788
|
+
"description": "Specify if the icon displays on the Alert",
|
|
789
|
+
"attribute": "hideIcon"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"kind": "field",
|
|
793
|
+
"name": "dismissible",
|
|
794
|
+
"type": {
|
|
795
|
+
"text": "boolean"
|
|
796
|
+
},
|
|
797
|
+
"default": "false",
|
|
798
|
+
"description": "Specify if the Alert can be dismissed",
|
|
799
|
+
"attribute": "dismissible"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"kind": "field",
|
|
803
|
+
"name": "disableAutoFocus",
|
|
804
|
+
"type": {
|
|
805
|
+
"text": "boolean"
|
|
806
|
+
},
|
|
807
|
+
"default": "false",
|
|
808
|
+
"description": "Prevent autofocus on show",
|
|
809
|
+
"attribute": "disableAutoFocus"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"kind": "field",
|
|
813
|
+
"name": "disableCloseOnEscape",
|
|
814
|
+
"type": {
|
|
815
|
+
"text": "boolean"
|
|
816
|
+
},
|
|
817
|
+
"default": "false",
|
|
818
|
+
"description": "Prevent Escape from closing",
|
|
819
|
+
"attribute": "disableCloseOnEscape"
|
|
820
|
+
}
|
|
821
|
+
],
|
|
822
|
+
"events": [
|
|
823
|
+
{
|
|
824
|
+
"description": "Dispatched when the Alert has been dismissed",
|
|
825
|
+
"name": "bm-dismiss"
|
|
739
826
|
}
|
|
740
827
|
],
|
|
741
828
|
"attributes": [
|
|
829
|
+
{
|
|
830
|
+
"name": "heading",
|
|
831
|
+
"type": {
|
|
832
|
+
"text": "string | undefined"
|
|
833
|
+
},
|
|
834
|
+
"description": "Specify the heading text for Alert",
|
|
835
|
+
"fieldName": "heading"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"name": "body",
|
|
839
|
+
"type": {
|
|
840
|
+
"text": "string | undefined"
|
|
841
|
+
},
|
|
842
|
+
"description": "Specify the body text for Alert",
|
|
843
|
+
"fieldName": "body"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"name": "size",
|
|
847
|
+
"type": {
|
|
848
|
+
"text": "'sm' | 'md'"
|
|
849
|
+
},
|
|
850
|
+
"default": "'sm'",
|
|
851
|
+
"description": "Specify the size of the Alert",
|
|
852
|
+
"fieldName": "size"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"name": "fullWidth",
|
|
856
|
+
"type": {
|
|
857
|
+
"text": "boolean"
|
|
858
|
+
},
|
|
859
|
+
"default": "false",
|
|
860
|
+
"description": "Specify if the Alert has no border radius",
|
|
861
|
+
"fieldName": "fullWidth"
|
|
862
|
+
},
|
|
742
863
|
{
|
|
743
864
|
"name": "theme",
|
|
744
865
|
"type": {
|
|
745
866
|
"text": "'light' | 'dark' | undefined"
|
|
746
867
|
},
|
|
747
|
-
"description": "Specify the theme of the
|
|
868
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
748
869
|
"fieldName": "theme"
|
|
749
870
|
},
|
|
750
871
|
{
|
|
@@ -753,57 +874,85 @@
|
|
|
753
874
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
754
875
|
},
|
|
755
876
|
"default": "'infoPrimary'",
|
|
756
|
-
"description": "Specify the appearance of the
|
|
877
|
+
"description": "Specify the appearance of the Alert",
|
|
757
878
|
"fieldName": "appearance"
|
|
758
879
|
},
|
|
759
880
|
{
|
|
760
|
-
"name": "
|
|
881
|
+
"name": "hidden",
|
|
761
882
|
"type": {
|
|
762
|
-
"text": "
|
|
883
|
+
"text": "boolean"
|
|
763
884
|
},
|
|
764
|
-
"default": "
|
|
765
|
-
"description": "Specify the
|
|
766
|
-
"fieldName": "
|
|
885
|
+
"default": "false",
|
|
886
|
+
"description": "Specify if the Alert is hidden",
|
|
887
|
+
"fieldName": "hidden"
|
|
767
888
|
},
|
|
768
889
|
{
|
|
769
|
-
"name": "
|
|
890
|
+
"name": "hideIcon",
|
|
770
891
|
"type": {
|
|
771
|
-
"text": "
|
|
892
|
+
"text": "boolean"
|
|
772
893
|
},
|
|
773
|
-
"
|
|
774
|
-
"
|
|
894
|
+
"default": "false",
|
|
895
|
+
"description": "Specify if the icon displays on the Alert",
|
|
896
|
+
"fieldName": "hideIcon"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"name": "dismissible",
|
|
900
|
+
"type": {
|
|
901
|
+
"text": "boolean"
|
|
902
|
+
},
|
|
903
|
+
"default": "false",
|
|
904
|
+
"description": "Specify if the Alert can be dismissed",
|
|
905
|
+
"fieldName": "dismissible"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"name": "disableAutoFocus",
|
|
909
|
+
"type": {
|
|
910
|
+
"text": "boolean"
|
|
911
|
+
},
|
|
912
|
+
"default": "false",
|
|
913
|
+
"description": "Prevent autofocus on show",
|
|
914
|
+
"fieldName": "disableAutoFocus"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "disableCloseOnEscape",
|
|
918
|
+
"type": {
|
|
919
|
+
"text": "boolean"
|
|
920
|
+
},
|
|
921
|
+
"default": "false",
|
|
922
|
+
"description": "Prevent Escape from closing",
|
|
923
|
+
"fieldName": "disableCloseOnEscape"
|
|
775
924
|
}
|
|
776
925
|
],
|
|
777
926
|
"superclass": {
|
|
778
927
|
"name": "LitElement",
|
|
779
928
|
"package": "lit"
|
|
780
929
|
},
|
|
781
|
-
"tagName": "bm-
|
|
930
|
+
"tagName": "bm-alert",
|
|
782
931
|
"customElement": true
|
|
783
932
|
}
|
|
784
933
|
],
|
|
785
934
|
"exports": [
|
|
786
935
|
{
|
|
787
936
|
"kind": "js",
|
|
788
|
-
"name": "
|
|
937
|
+
"name": "BmAlert",
|
|
789
938
|
"declaration": {
|
|
790
|
-
"name": "
|
|
791
|
-
"module": "libs/web-components/src/lib/
|
|
939
|
+
"name": "BmAlert",
|
|
940
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
792
941
|
}
|
|
793
942
|
},
|
|
794
943
|
{
|
|
795
944
|
"kind": "custom-element-definition",
|
|
796
|
-
"name": "bm-
|
|
945
|
+
"name": "bm-alert",
|
|
797
946
|
"declaration": {
|
|
798
|
-
"name": "
|
|
799
|
-
"module": "libs/web-components/src/lib/
|
|
947
|
+
"name": "BmAlert",
|
|
948
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
800
949
|
}
|
|
801
950
|
}
|
|
802
951
|
]
|
|
803
952
|
},
|
|
804
953
|
{
|
|
805
954
|
"kind": "javascript-module",
|
|
806
|
-
"path": "libs/web-components/src/lib/
|
|
955
|
+
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
807
956
|
"declarations": [],
|
|
808
957
|
"exports": [
|
|
809
958
|
{
|
|
@@ -811,7 +960,7 @@
|
|
|
811
960
|
"name": "*",
|
|
812
961
|
"declaration": {
|
|
813
962
|
"name": "*",
|
|
814
|
-
"package": "./
|
|
963
|
+
"package": "./Alert"
|
|
815
964
|
}
|
|
816
965
|
}
|
|
817
966
|
]
|
|
@@ -1373,186 +1522,65 @@
|
|
|
1373
1522
|
},
|
|
1374
1523
|
{
|
|
1375
1524
|
"kind": "javascript-module",
|
|
1376
|
-
"path": "libs/web-components/src/lib/
|
|
1525
|
+
"path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
|
|
1377
1526
|
"declarations": [
|
|
1378
1527
|
{
|
|
1379
1528
|
"kind": "class",
|
|
1380
|
-
"description": "`bm-
|
|
1381
|
-
"name": "
|
|
1529
|
+
"description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
|
|
1530
|
+
"name": "BmBadgeDot",
|
|
1382
1531
|
"slots": [
|
|
1383
1532
|
{
|
|
1384
|
-
"description": "
|
|
1385
|
-
"name": "
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
1389
|
-
"name": "heading"
|
|
1390
|
-
},
|
|
1391
|
-
{
|
|
1392
|
-
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
1393
|
-
"name": "body"
|
|
1394
|
-
},
|
|
1395
|
-
{
|
|
1396
|
-
"description": "Specify if actions display on the Alert",
|
|
1397
|
-
"name": "actions"
|
|
1533
|
+
"description": "Provide text for the BadgeDot",
|
|
1534
|
+
"name": "default"
|
|
1398
1535
|
}
|
|
1399
1536
|
],
|
|
1400
1537
|
"members": [
|
|
1401
1538
|
{
|
|
1402
1539
|
"kind": "field",
|
|
1403
|
-
"name": "
|
|
1540
|
+
"name": "theme",
|
|
1404
1541
|
"type": {
|
|
1405
|
-
"text": "
|
|
1542
|
+
"text": "'light' | 'dark' | undefined"
|
|
1406
1543
|
},
|
|
1407
|
-
"description": "Specify the
|
|
1408
|
-
"attribute": "
|
|
1544
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1545
|
+
"attribute": "theme"
|
|
1409
1546
|
},
|
|
1410
1547
|
{
|
|
1411
1548
|
"kind": "field",
|
|
1412
|
-
"name": "
|
|
1549
|
+
"name": "appearance",
|
|
1413
1550
|
"type": {
|
|
1414
|
-
"text": "
|
|
1415
|
-
},
|
|
1416
|
-
"description": "Specify the body text for Alert",
|
|
1417
|
-
"attribute": "body"
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
"kind": "field",
|
|
1421
|
-
"name": "size",
|
|
1422
|
-
"type": {
|
|
1423
|
-
"text": "'sm' | 'md'"
|
|
1424
|
-
},
|
|
1425
|
-
"default": "'sm'",
|
|
1426
|
-
"description": "Specify the size of the Alert",
|
|
1427
|
-
"attribute": "size"
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
"kind": "field",
|
|
1431
|
-
"name": "fullWidth",
|
|
1432
|
-
"type": {
|
|
1433
|
-
"text": "boolean"
|
|
1434
|
-
},
|
|
1435
|
-
"default": "false",
|
|
1436
|
-
"description": "Specify if the Alert has no border radius",
|
|
1437
|
-
"attribute": "fullWidth"
|
|
1438
|
-
},
|
|
1439
|
-
{
|
|
1440
|
-
"kind": "field",
|
|
1441
|
-
"name": "theme",
|
|
1442
|
-
"type": {
|
|
1443
|
-
"text": "'light' | 'dark' | undefined"
|
|
1444
|
-
},
|
|
1445
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
1446
|
-
"attribute": "theme"
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
"kind": "field",
|
|
1450
|
-
"name": "appearance",
|
|
1451
|
-
"type": {
|
|
1452
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1551
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1453
1552
|
},
|
|
1454
1553
|
"default": "'infoPrimary'",
|
|
1455
|
-
"description": "Specify the appearance of the
|
|
1554
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1456
1555
|
"attribute": "appearance"
|
|
1457
1556
|
},
|
|
1458
1557
|
{
|
|
1459
1558
|
"kind": "field",
|
|
1460
|
-
"name": "
|
|
1461
|
-
"type": {
|
|
1462
|
-
"text": "boolean"
|
|
1463
|
-
},
|
|
1464
|
-
"default": "false",
|
|
1465
|
-
"description": "Specify if the Alert is hidden",
|
|
1466
|
-
"attribute": "hidden"
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
"kind": "field",
|
|
1470
|
-
"name": "hideIcon",
|
|
1471
|
-
"type": {
|
|
1472
|
-
"text": "boolean"
|
|
1473
|
-
},
|
|
1474
|
-
"default": "false",
|
|
1475
|
-
"description": "Specify if the icon displays on the Alert",
|
|
1476
|
-
"attribute": "hideIcon"
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
"kind": "field",
|
|
1480
|
-
"name": "dismissible",
|
|
1481
|
-
"type": {
|
|
1482
|
-
"text": "boolean"
|
|
1483
|
-
},
|
|
1484
|
-
"default": "false",
|
|
1485
|
-
"description": "Specify if the Alert can be dismissed",
|
|
1486
|
-
"attribute": "dismissible"
|
|
1487
|
-
},
|
|
1488
|
-
{
|
|
1489
|
-
"kind": "field",
|
|
1490
|
-
"name": "disableAutoFocus",
|
|
1559
|
+
"name": "emphasis",
|
|
1491
1560
|
"type": {
|
|
1492
|
-
"text": "
|
|
1561
|
+
"text": "'strong' | 'subtle'"
|
|
1493
1562
|
},
|
|
1494
|
-
"default": "
|
|
1495
|
-
"description": "
|
|
1496
|
-
"attribute": "
|
|
1563
|
+
"default": "'strong'",
|
|
1564
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1565
|
+
"attribute": "emphasis"
|
|
1497
1566
|
},
|
|
1498
1567
|
{
|
|
1499
1568
|
"kind": "field",
|
|
1500
|
-
"name": "
|
|
1569
|
+
"name": "overrideDotColor",
|
|
1501
1570
|
"type": {
|
|
1502
|
-
"text": "
|
|
1571
|
+
"text": "string | undefined"
|
|
1503
1572
|
},
|
|
1504
|
-
"
|
|
1505
|
-
"
|
|
1506
|
-
"attribute": "disableCloseOnEscape"
|
|
1507
|
-
}
|
|
1508
|
-
],
|
|
1509
|
-
"events": [
|
|
1510
|
-
{
|
|
1511
|
-
"description": "Dispatched when the Alert has been dismissed",
|
|
1512
|
-
"name": "bm-dismiss"
|
|
1573
|
+
"description": "Overrides default dot color",
|
|
1574
|
+
"attribute": "overrideDotColor"
|
|
1513
1575
|
}
|
|
1514
1576
|
],
|
|
1515
1577
|
"attributes": [
|
|
1516
|
-
{
|
|
1517
|
-
"name": "heading",
|
|
1518
|
-
"type": {
|
|
1519
|
-
"text": "string | undefined"
|
|
1520
|
-
},
|
|
1521
|
-
"description": "Specify the heading text for Alert",
|
|
1522
|
-
"fieldName": "heading"
|
|
1523
|
-
},
|
|
1524
|
-
{
|
|
1525
|
-
"name": "body",
|
|
1526
|
-
"type": {
|
|
1527
|
-
"text": "string | undefined"
|
|
1528
|
-
},
|
|
1529
|
-
"description": "Specify the body text for Alert",
|
|
1530
|
-
"fieldName": "body"
|
|
1531
|
-
},
|
|
1532
|
-
{
|
|
1533
|
-
"name": "size",
|
|
1534
|
-
"type": {
|
|
1535
|
-
"text": "'sm' | 'md'"
|
|
1536
|
-
},
|
|
1537
|
-
"default": "'sm'",
|
|
1538
|
-
"description": "Specify the size of the Alert",
|
|
1539
|
-
"fieldName": "size"
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
"name": "fullWidth",
|
|
1543
|
-
"type": {
|
|
1544
|
-
"text": "boolean"
|
|
1545
|
-
},
|
|
1546
|
-
"default": "false",
|
|
1547
|
-
"description": "Specify if the Alert has no border radius",
|
|
1548
|
-
"fieldName": "fullWidth"
|
|
1549
|
-
},
|
|
1550
1578
|
{
|
|
1551
1579
|
"name": "theme",
|
|
1552
1580
|
"type": {
|
|
1553
1581
|
"text": "'light' | 'dark' | undefined"
|
|
1554
1582
|
},
|
|
1555
|
-
"description": "Specify the theme of the
|
|
1583
|
+
"description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
|
|
1556
1584
|
"fieldName": "theme"
|
|
1557
1585
|
},
|
|
1558
1586
|
{
|
|
@@ -1561,85 +1589,57 @@
|
|
|
1561
1589
|
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1562
1590
|
},
|
|
1563
1591
|
"default": "'infoPrimary'",
|
|
1564
|
-
"description": "Specify the appearance of the
|
|
1592
|
+
"description": "Specify the appearance of the BadgeDot",
|
|
1565
1593
|
"fieldName": "appearance"
|
|
1566
1594
|
},
|
|
1567
1595
|
{
|
|
1568
|
-
"name": "
|
|
1569
|
-
"type": {
|
|
1570
|
-
"text": "boolean"
|
|
1571
|
-
},
|
|
1572
|
-
"default": "false",
|
|
1573
|
-
"description": "Specify if the Alert is hidden",
|
|
1574
|
-
"fieldName": "hidden"
|
|
1575
|
-
},
|
|
1576
|
-
{
|
|
1577
|
-
"name": "hideIcon",
|
|
1578
|
-
"type": {
|
|
1579
|
-
"text": "boolean"
|
|
1580
|
-
},
|
|
1581
|
-
"default": "false",
|
|
1582
|
-
"description": "Specify if the icon displays on the Alert",
|
|
1583
|
-
"fieldName": "hideIcon"
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
"name": "dismissible",
|
|
1587
|
-
"type": {
|
|
1588
|
-
"text": "boolean"
|
|
1589
|
-
},
|
|
1590
|
-
"default": "false",
|
|
1591
|
-
"description": "Specify if the Alert can be dismissed",
|
|
1592
|
-
"fieldName": "dismissible"
|
|
1593
|
-
},
|
|
1594
|
-
{
|
|
1595
|
-
"name": "disableAutoFocus",
|
|
1596
|
+
"name": "emphasis",
|
|
1596
1597
|
"type": {
|
|
1597
|
-
"text": "
|
|
1598
|
+
"text": "'strong' | 'subtle'"
|
|
1598
1599
|
},
|
|
1599
|
-
"default": "
|
|
1600
|
-
"description": "
|
|
1601
|
-
"fieldName": "
|
|
1600
|
+
"default": "'strong'",
|
|
1601
|
+
"description": "Specify the emphasis of the BadgeDot",
|
|
1602
|
+
"fieldName": "emphasis"
|
|
1602
1603
|
},
|
|
1603
1604
|
{
|
|
1604
|
-
"name": "
|
|
1605
|
+
"name": "overrideDotColor",
|
|
1605
1606
|
"type": {
|
|
1606
|
-
"text": "
|
|
1607
|
+
"text": "string | undefined"
|
|
1607
1608
|
},
|
|
1608
|
-
"
|
|
1609
|
-
"
|
|
1610
|
-
"fieldName": "disableCloseOnEscape"
|
|
1609
|
+
"description": "Overrides default dot color",
|
|
1610
|
+
"fieldName": "overrideDotColor"
|
|
1611
1611
|
}
|
|
1612
1612
|
],
|
|
1613
1613
|
"superclass": {
|
|
1614
1614
|
"name": "LitElement",
|
|
1615
1615
|
"package": "lit"
|
|
1616
1616
|
},
|
|
1617
|
-
"tagName": "bm-
|
|
1617
|
+
"tagName": "bm-badge-dot",
|
|
1618
1618
|
"customElement": true
|
|
1619
1619
|
}
|
|
1620
1620
|
],
|
|
1621
1621
|
"exports": [
|
|
1622
1622
|
{
|
|
1623
1623
|
"kind": "js",
|
|
1624
|
-
"name": "
|
|
1624
|
+
"name": "BmBadgeDot",
|
|
1625
1625
|
"declaration": {
|
|
1626
|
-
"name": "
|
|
1627
|
-
"module": "libs/web-components/src/lib/
|
|
1626
|
+
"name": "BmBadgeDot",
|
|
1627
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1628
1628
|
}
|
|
1629
1629
|
},
|
|
1630
1630
|
{
|
|
1631
1631
|
"kind": "custom-element-definition",
|
|
1632
|
-
"name": "bm-
|
|
1632
|
+
"name": "bm-badge-dot",
|
|
1633
1633
|
"declaration": {
|
|
1634
|
-
"name": "
|
|
1635
|
-
"module": "libs/web-components/src/lib/
|
|
1634
|
+
"name": "BmBadgeDot",
|
|
1635
|
+
"module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
|
|
1636
1636
|
}
|
|
1637
1637
|
}
|
|
1638
1638
|
]
|
|
1639
1639
|
},
|
|
1640
1640
|
{
|
|
1641
1641
|
"kind": "javascript-module",
|
|
1642
|
-
"path": "libs/web-components/src/lib/
|
|
1642
|
+
"path": "libs/web-components/src/lib/BadgeDot/index.ts",
|
|
1643
1643
|
"declarations": [],
|
|
1644
1644
|
"exports": [
|
|
1645
1645
|
{
|
|
@@ -1647,7 +1647,7 @@
|
|
|
1647
1647
|
"name": "*",
|
|
1648
1648
|
"declaration": {
|
|
1649
1649
|
"name": "*",
|
|
1650
|
-
"package": "./
|
|
1650
|
+
"package": "./BadgeDot"
|
|
1651
1651
|
}
|
|
1652
1652
|
}
|
|
1653
1653
|
]
|
|
@@ -7217,210 +7217,52 @@
|
|
|
7217
7217
|
},
|
|
7218
7218
|
{
|
|
7219
7219
|
"kind": "javascript-module",
|
|
7220
|
-
"path": "libs/web-components/src/lib/wip/
|
|
7220
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.context.ts",
|
|
7221
|
+
"declarations": [
|
|
7222
|
+
{
|
|
7223
|
+
"kind": "variable",
|
|
7224
|
+
"name": "bmFormInitials",
|
|
7225
|
+
"type": {
|
|
7226
|
+
"text": "BmFormContext"
|
|
7227
|
+
},
|
|
7228
|
+
"default": "{ required: false, disabled: false, readOnly: false, initialValues: {}, registerField: () => undefined, formBlurHandler: () => undefined, formChangeHandler: () => undefined, }"
|
|
7229
|
+
},
|
|
7230
|
+
{
|
|
7231
|
+
"kind": "variable",
|
|
7232
|
+
"name": "bmFormContext"
|
|
7233
|
+
}
|
|
7234
|
+
],
|
|
7235
|
+
"exports": [
|
|
7236
|
+
{
|
|
7237
|
+
"kind": "js",
|
|
7238
|
+
"name": "bmFormInitials",
|
|
7239
|
+
"declaration": {
|
|
7240
|
+
"name": "bmFormInitials",
|
|
7241
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
7242
|
+
}
|
|
7243
|
+
},
|
|
7244
|
+
{
|
|
7245
|
+
"kind": "js",
|
|
7246
|
+
"name": "bmFormContext",
|
|
7247
|
+
"declaration": {
|
|
7248
|
+
"name": "bmFormContext",
|
|
7249
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
7250
|
+
}
|
|
7251
|
+
}
|
|
7252
|
+
]
|
|
7253
|
+
},
|
|
7254
|
+
{
|
|
7255
|
+
"kind": "javascript-module",
|
|
7256
|
+
"path": "libs/web-components/src/lib/wip/Form/Form.decorator.ts",
|
|
7221
7257
|
"declarations": [
|
|
7222
7258
|
{
|
|
7223
7259
|
"kind": "class",
|
|
7224
|
-
"description": "### Attributes:\n- **
|
|
7225
|
-
"name": "
|
|
7226
|
-
"slots": [
|
|
7227
|
-
{
|
|
7228
|
-
"description": "Specify the text for Label",
|
|
7229
|
-
"name": "text"
|
|
7230
|
-
},
|
|
7231
|
-
{
|
|
7232
|
-
"description": "Specify if the Label displays as optional",
|
|
7233
|
-
"name": "optional"
|
|
7234
|
-
},
|
|
7235
|
-
{
|
|
7236
|
-
"description": "Specify if the icon displays to add a Tooltip",
|
|
7237
|
-
"name": "tooltip"
|
|
7238
|
-
}
|
|
7239
|
-
],
|
|
7260
|
+
"description": "### Attributes:\n- **id** \n- **name** \n- **value** \n- **validationRules** \n- **input-aria-label** ",
|
|
7261
|
+
"name": "FormField",
|
|
7240
7262
|
"members": [
|
|
7241
7263
|
{
|
|
7242
7264
|
"kind": "field",
|
|
7243
|
-
"name": "
|
|
7244
|
-
"type": {
|
|
7245
|
-
"text": "boolean"
|
|
7246
|
-
},
|
|
7247
|
-
"default": "false",
|
|
7248
|
-
"description": "Specify if the Label displays disabled",
|
|
7249
|
-
"attribute": "disabled"
|
|
7250
|
-
},
|
|
7251
|
-
{
|
|
7252
|
-
"kind": "field",
|
|
7253
|
-
"name": "required",
|
|
7254
|
-
"type": {
|
|
7255
|
-
"text": "boolean"
|
|
7256
|
-
},
|
|
7257
|
-
"default": "false",
|
|
7258
|
-
"description": "Specify if the Label displays as required",
|
|
7259
|
-
"attribute": "required"
|
|
7260
|
-
},
|
|
7261
|
-
{
|
|
7262
|
-
"kind": "field",
|
|
7263
|
-
"name": "text",
|
|
7264
|
-
"type": {
|
|
7265
|
-
"text": "string | undefined"
|
|
7266
|
-
},
|
|
7267
|
-
"description": "Specify the text for Label",
|
|
7268
|
-
"attribute": "text"
|
|
7269
|
-
},
|
|
7270
|
-
{
|
|
7271
|
-
"kind": "field",
|
|
7272
|
-
"name": "optional",
|
|
7273
|
-
"type": {
|
|
7274
|
-
"text": "string | undefined"
|
|
7275
|
-
},
|
|
7276
|
-
"description": "Specify the text for Label",
|
|
7277
|
-
"attribute": "optional"
|
|
7278
|
-
},
|
|
7279
|
-
{
|
|
7280
|
-
"kind": "field",
|
|
7281
|
-
"name": "theme",
|
|
7282
|
-
"type": {
|
|
7283
|
-
"text": "'light' | 'dark' | undefined"
|
|
7284
|
-
},
|
|
7285
|
-
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7286
|
-
"attribute": "theme"
|
|
7287
|
-
}
|
|
7288
|
-
],
|
|
7289
|
-
"attributes": [
|
|
7290
|
-
{
|
|
7291
|
-
"name": "disabled",
|
|
7292
|
-
"type": {
|
|
7293
|
-
"text": "boolean"
|
|
7294
|
-
},
|
|
7295
|
-
"default": "false",
|
|
7296
|
-
"description": "Specify if the Label displays disabled",
|
|
7297
|
-
"fieldName": "disabled"
|
|
7298
|
-
},
|
|
7299
|
-
{
|
|
7300
|
-
"name": "required",
|
|
7301
|
-
"type": {
|
|
7302
|
-
"text": "boolean"
|
|
7303
|
-
},
|
|
7304
|
-
"default": "false",
|
|
7305
|
-
"description": "Specify if the Label displays as required",
|
|
7306
|
-
"fieldName": "required"
|
|
7307
|
-
},
|
|
7308
|
-
{
|
|
7309
|
-
"name": "text",
|
|
7310
|
-
"type": {
|
|
7311
|
-
"text": "string | undefined"
|
|
7312
|
-
},
|
|
7313
|
-
"description": "Specify the text for Label",
|
|
7314
|
-
"fieldName": "text"
|
|
7315
|
-
},
|
|
7316
|
-
{
|
|
7317
|
-
"name": "optional",
|
|
7318
|
-
"type": {
|
|
7319
|
-
"text": "string | undefined"
|
|
7320
|
-
},
|
|
7321
|
-
"description": "Specify the text for Label",
|
|
7322
|
-
"fieldName": "optional"
|
|
7323
|
-
},
|
|
7324
|
-
{
|
|
7325
|
-
"name": "theme",
|
|
7326
|
-
"type": {
|
|
7327
|
-
"text": "'light' | 'dark' | undefined"
|
|
7328
|
-
},
|
|
7329
|
-
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7330
|
-
"fieldName": "theme"
|
|
7331
|
-
}
|
|
7332
|
-
],
|
|
7333
|
-
"superclass": {
|
|
7334
|
-
"name": "LitElement",
|
|
7335
|
-
"package": "lit"
|
|
7336
|
-
},
|
|
7337
|
-
"summary": "`bm-label`",
|
|
7338
|
-
"tagName": "bm-label",
|
|
7339
|
-
"customElement": true
|
|
7340
|
-
}
|
|
7341
|
-
],
|
|
7342
|
-
"exports": [
|
|
7343
|
-
{
|
|
7344
|
-
"kind": "js",
|
|
7345
|
-
"name": "BmLabel",
|
|
7346
|
-
"declaration": {
|
|
7347
|
-
"name": "BmLabel",
|
|
7348
|
-
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7349
|
-
}
|
|
7350
|
-
},
|
|
7351
|
-
{
|
|
7352
|
-
"kind": "custom-element-definition",
|
|
7353
|
-
"name": "bm-label",
|
|
7354
|
-
"declaration": {
|
|
7355
|
-
"name": "BmLabel",
|
|
7356
|
-
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7357
|
-
}
|
|
7358
|
-
}
|
|
7359
|
-
]
|
|
7360
|
-
},
|
|
7361
|
-
{
|
|
7362
|
-
"kind": "javascript-module",
|
|
7363
|
-
"path": "libs/web-components/src/lib/wip/Label/index.ts",
|
|
7364
|
-
"declarations": [],
|
|
7365
|
-
"exports": [
|
|
7366
|
-
{
|
|
7367
|
-
"kind": "js",
|
|
7368
|
-
"name": "*",
|
|
7369
|
-
"declaration": {
|
|
7370
|
-
"name": "*",
|
|
7371
|
-
"package": "./Label"
|
|
7372
|
-
}
|
|
7373
|
-
}
|
|
7374
|
-
]
|
|
7375
|
-
},
|
|
7376
|
-
{
|
|
7377
|
-
"kind": "javascript-module",
|
|
7378
|
-
"path": "libs/web-components/src/lib/wip/Form/Form.context.ts",
|
|
7379
|
-
"declarations": [
|
|
7380
|
-
{
|
|
7381
|
-
"kind": "variable",
|
|
7382
|
-
"name": "bmFormInitials",
|
|
7383
|
-
"type": {
|
|
7384
|
-
"text": "BmFormContext"
|
|
7385
|
-
},
|
|
7386
|
-
"default": "{ required: false, disabled: false, readOnly: false, initialValues: {}, registerField: () => undefined, formBlurHandler: () => undefined, formChangeHandler: () => undefined, }"
|
|
7387
|
-
},
|
|
7388
|
-
{
|
|
7389
|
-
"kind": "variable",
|
|
7390
|
-
"name": "bmFormContext"
|
|
7391
|
-
}
|
|
7392
|
-
],
|
|
7393
|
-
"exports": [
|
|
7394
|
-
{
|
|
7395
|
-
"kind": "js",
|
|
7396
|
-
"name": "bmFormInitials",
|
|
7397
|
-
"declaration": {
|
|
7398
|
-
"name": "bmFormInitials",
|
|
7399
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
7400
|
-
}
|
|
7401
|
-
},
|
|
7402
|
-
{
|
|
7403
|
-
"kind": "js",
|
|
7404
|
-
"name": "bmFormContext",
|
|
7405
|
-
"declaration": {
|
|
7406
|
-
"name": "bmFormContext",
|
|
7407
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.context.ts"
|
|
7408
|
-
}
|
|
7409
|
-
}
|
|
7410
|
-
]
|
|
7411
|
-
},
|
|
7412
|
-
{
|
|
7413
|
-
"kind": "javascript-module",
|
|
7414
|
-
"path": "libs/web-components/src/lib/wip/Form/Form.decorator.ts",
|
|
7415
|
-
"declarations": [
|
|
7416
|
-
{
|
|
7417
|
-
"kind": "class",
|
|
7418
|
-
"description": "### Attributes:\n- **id** \n- **name** \n- **value** \n- **validationRules** \n- **input-aria-label** ",
|
|
7419
|
-
"name": "FormField",
|
|
7420
|
-
"members": [
|
|
7421
|
-
{
|
|
7422
|
-
"kind": "field",
|
|
7423
|
-
"name": "formAssociated",
|
|
7265
|
+
"name": "formAssociated",
|
|
7424
7266
|
"type": {
|
|
7425
7267
|
"text": "boolean"
|
|
7426
7268
|
},
|
|
@@ -7859,97 +7701,255 @@
|
|
|
7859
7701
|
},
|
|
7860
7702
|
{
|
|
7861
7703
|
"kind": "javascript-module",
|
|
7862
|
-
"path": "libs/web-components/src/lib/wip/
|
|
7704
|
+
"path": "libs/web-components/src/lib/wip/Label/Label.ts",
|
|
7863
7705
|
"declarations": [
|
|
7864
7706
|
{
|
|
7865
7707
|
"kind": "class",
|
|
7866
|
-
"description": "### Attributes:\n- **
|
|
7867
|
-
"name": "
|
|
7708
|
+
"description": "### Attributes:\n- **disabled** - Specify if the Label displays disabled\n- **required** - Specify if the Label displays as required\n- **text** - Specify the text for Label\n- **optional** - Specify the text for Label\n- **theme** - Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7709
|
+
"name": "BmLabel",
|
|
7868
7710
|
"slots": [
|
|
7869
7711
|
{
|
|
7870
|
-
"description": "Specify
|
|
7871
|
-
"name": "
|
|
7712
|
+
"description": "Specify the text for Label",
|
|
7713
|
+
"name": "text"
|
|
7872
7714
|
},
|
|
7873
7715
|
{
|
|
7874
|
-
"description": "Specify Label
|
|
7875
|
-
"name": "
|
|
7716
|
+
"description": "Specify if the Label displays as optional",
|
|
7717
|
+
"name": "optional"
|
|
7876
7718
|
},
|
|
7877
7719
|
{
|
|
7878
|
-
"description": "Specify
|
|
7879
|
-
"name": "
|
|
7720
|
+
"description": "Specify if the icon displays to add a Tooltip",
|
|
7721
|
+
"name": "tooltip"
|
|
7880
7722
|
}
|
|
7881
7723
|
],
|
|
7882
7724
|
"members": [
|
|
7883
7725
|
{
|
|
7884
7726
|
"kind": "field",
|
|
7885
|
-
"name": "
|
|
7727
|
+
"name": "disabled",
|
|
7886
7728
|
"type": {
|
|
7887
7729
|
"text": "boolean"
|
|
7888
7730
|
},
|
|
7889
7731
|
"default": "false",
|
|
7890
|
-
"description": "Specify if
|
|
7891
|
-
"attribute": "
|
|
7732
|
+
"description": "Specify if the Label displays disabled",
|
|
7733
|
+
"attribute": "disabled"
|
|
7892
7734
|
},
|
|
7893
7735
|
{
|
|
7894
7736
|
"kind": "field",
|
|
7895
|
-
"name": "
|
|
7737
|
+
"name": "required",
|
|
7896
7738
|
"type": {
|
|
7897
7739
|
"text": "boolean"
|
|
7898
7740
|
},
|
|
7899
7741
|
"default": "false",
|
|
7900
|
-
"description": "Specify if
|
|
7901
|
-
"attribute": "
|
|
7742
|
+
"description": "Specify if the Label displays as required",
|
|
7743
|
+
"attribute": "required"
|
|
7902
7744
|
},
|
|
7903
7745
|
{
|
|
7904
7746
|
"kind": "field",
|
|
7905
|
-
"name": "
|
|
7747
|
+
"name": "text",
|
|
7906
7748
|
"type": {
|
|
7907
|
-
"text": "
|
|
7749
|
+
"text": "string | undefined"
|
|
7908
7750
|
},
|
|
7909
|
-
"
|
|
7910
|
-
"
|
|
7911
|
-
"attribute": "disabled"
|
|
7751
|
+
"description": "Specify the text for Label",
|
|
7752
|
+
"attribute": "text"
|
|
7912
7753
|
},
|
|
7913
7754
|
{
|
|
7914
7755
|
"kind": "field",
|
|
7915
|
-
"name": "
|
|
7756
|
+
"name": "optional",
|
|
7916
7757
|
"type": {
|
|
7917
7758
|
"text": "string | undefined"
|
|
7918
7759
|
},
|
|
7919
|
-
"description": "Specify
|
|
7920
|
-
"attribute": "
|
|
7760
|
+
"description": "Specify the text for Label",
|
|
7761
|
+
"attribute": "optional"
|
|
7921
7762
|
},
|
|
7922
7763
|
{
|
|
7923
7764
|
"kind": "field",
|
|
7924
|
-
"name": "
|
|
7765
|
+
"name": "theme",
|
|
7925
7766
|
"type": {
|
|
7926
|
-
"text": "
|
|
7767
|
+
"text": "'light' | 'dark' | undefined"
|
|
7927
7768
|
},
|
|
7928
|
-
"
|
|
7929
|
-
"
|
|
7930
|
-
|
|
7931
|
-
|
|
7769
|
+
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7770
|
+
"attribute": "theme"
|
|
7771
|
+
}
|
|
7772
|
+
],
|
|
7773
|
+
"attributes": [
|
|
7932
7774
|
{
|
|
7933
|
-
"
|
|
7934
|
-
"name": "width",
|
|
7775
|
+
"name": "disabled",
|
|
7935
7776
|
"type": {
|
|
7936
|
-
"text": "
|
|
7777
|
+
"text": "boolean"
|
|
7937
7778
|
},
|
|
7938
|
-
"
|
|
7939
|
-
"
|
|
7779
|
+
"default": "false",
|
|
7780
|
+
"description": "Specify if the Label displays disabled",
|
|
7781
|
+
"fieldName": "disabled"
|
|
7940
7782
|
},
|
|
7941
7783
|
{
|
|
7942
|
-
"
|
|
7943
|
-
"name": "ellipse",
|
|
7784
|
+
"name": "required",
|
|
7944
7785
|
"type": {
|
|
7945
7786
|
"text": "boolean"
|
|
7946
7787
|
},
|
|
7947
|
-
"default": "
|
|
7948
|
-
"description": "Specify if
|
|
7949
|
-
"
|
|
7788
|
+
"default": "false",
|
|
7789
|
+
"description": "Specify if the Label displays as required",
|
|
7790
|
+
"fieldName": "required"
|
|
7950
7791
|
},
|
|
7951
7792
|
{
|
|
7952
|
-
"
|
|
7793
|
+
"name": "text",
|
|
7794
|
+
"type": {
|
|
7795
|
+
"text": "string | undefined"
|
|
7796
|
+
},
|
|
7797
|
+
"description": "Specify the text for Label",
|
|
7798
|
+
"fieldName": "text"
|
|
7799
|
+
},
|
|
7800
|
+
{
|
|
7801
|
+
"name": "optional",
|
|
7802
|
+
"type": {
|
|
7803
|
+
"text": "string | undefined"
|
|
7804
|
+
},
|
|
7805
|
+
"description": "Specify the text for Label",
|
|
7806
|
+
"fieldName": "optional"
|
|
7807
|
+
},
|
|
7808
|
+
{
|
|
7809
|
+
"name": "theme",
|
|
7810
|
+
"type": {
|
|
7811
|
+
"text": "'light' | 'dark' | undefined"
|
|
7812
|
+
},
|
|
7813
|
+
"description": "Specify the theme of the Label. By default it inherits the theme from the parent",
|
|
7814
|
+
"fieldName": "theme"
|
|
7815
|
+
}
|
|
7816
|
+
],
|
|
7817
|
+
"superclass": {
|
|
7818
|
+
"name": "LitElement",
|
|
7819
|
+
"package": "lit"
|
|
7820
|
+
},
|
|
7821
|
+
"summary": "`bm-label`",
|
|
7822
|
+
"tagName": "bm-label",
|
|
7823
|
+
"customElement": true
|
|
7824
|
+
}
|
|
7825
|
+
],
|
|
7826
|
+
"exports": [
|
|
7827
|
+
{
|
|
7828
|
+
"kind": "js",
|
|
7829
|
+
"name": "BmLabel",
|
|
7830
|
+
"declaration": {
|
|
7831
|
+
"name": "BmLabel",
|
|
7832
|
+
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7833
|
+
}
|
|
7834
|
+
},
|
|
7835
|
+
{
|
|
7836
|
+
"kind": "custom-element-definition",
|
|
7837
|
+
"name": "bm-label",
|
|
7838
|
+
"declaration": {
|
|
7839
|
+
"name": "BmLabel",
|
|
7840
|
+
"module": "libs/web-components/src/lib/wip/Label/Label.ts"
|
|
7841
|
+
}
|
|
7842
|
+
}
|
|
7843
|
+
]
|
|
7844
|
+
},
|
|
7845
|
+
{
|
|
7846
|
+
"kind": "javascript-module",
|
|
7847
|
+
"path": "libs/web-components/src/lib/wip/Label/index.ts",
|
|
7848
|
+
"declarations": [],
|
|
7849
|
+
"exports": [
|
|
7850
|
+
{
|
|
7851
|
+
"kind": "js",
|
|
7852
|
+
"name": "*",
|
|
7853
|
+
"declaration": {
|
|
7854
|
+
"name": "*",
|
|
7855
|
+
"package": "./Label"
|
|
7856
|
+
}
|
|
7857
|
+
}
|
|
7858
|
+
]
|
|
7859
|
+
},
|
|
7860
|
+
{
|
|
7861
|
+
"kind": "javascript-module",
|
|
7862
|
+
"path": "libs/web-components/src/lib/wip/NativeSelect/NativeSelect.ts",
|
|
7863
|
+
"declarations": [
|
|
7864
|
+
{
|
|
7865
|
+
"kind": "class",
|
|
7866
|
+
"description": "### Attributes:\n- **required** - Specify if NativeSelect is a required input\n- **readOnly** - Specify if NativeSelect displays in a read-only state\n- **disabled** - Specify if NativeSelect displays in a disabled state\n- **error** - Specify error text and display error state of a NativeSelect\n- **fluid** - Specify if NativeSelect is fluid\n- **width** - Specify the width of NativeSelect\n- **ellipse** - Specify if overflow displays ellipsis\n- **hideRequiredMarker** - Specify if the NativeSelect displays with an asterisk\n- **theme** - Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
|
|
7867
|
+
"name": "BmNativeSelect",
|
|
7868
|
+
"slots": [
|
|
7869
|
+
{
|
|
7870
|
+
"description": "Specify Options for NativeSelect",
|
|
7871
|
+
"name": "slot"
|
|
7872
|
+
},
|
|
7873
|
+
{
|
|
7874
|
+
"description": "Specify Label for NativeSelect",
|
|
7875
|
+
"name": "label"
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
"description": "Specify HelperText for NativeSelect",
|
|
7879
|
+
"name": "helper-text"
|
|
7880
|
+
}
|
|
7881
|
+
],
|
|
7882
|
+
"members": [
|
|
7883
|
+
{
|
|
7884
|
+
"kind": "field",
|
|
7885
|
+
"name": "required",
|
|
7886
|
+
"type": {
|
|
7887
|
+
"text": "boolean"
|
|
7888
|
+
},
|
|
7889
|
+
"default": "false",
|
|
7890
|
+
"description": "Specify if NativeSelect is a required input",
|
|
7891
|
+
"attribute": "required"
|
|
7892
|
+
},
|
|
7893
|
+
{
|
|
7894
|
+
"kind": "field",
|
|
7895
|
+
"name": "readOnly",
|
|
7896
|
+
"type": {
|
|
7897
|
+
"text": "boolean"
|
|
7898
|
+
},
|
|
7899
|
+
"default": "false",
|
|
7900
|
+
"description": "Specify if NativeSelect displays in a read-only state",
|
|
7901
|
+
"attribute": "readOnly"
|
|
7902
|
+
},
|
|
7903
|
+
{
|
|
7904
|
+
"kind": "field",
|
|
7905
|
+
"name": "disabled",
|
|
7906
|
+
"type": {
|
|
7907
|
+
"text": "boolean"
|
|
7908
|
+
},
|
|
7909
|
+
"default": "false",
|
|
7910
|
+
"description": "Specify if NativeSelect displays in a disabled state",
|
|
7911
|
+
"attribute": "disabled"
|
|
7912
|
+
},
|
|
7913
|
+
{
|
|
7914
|
+
"kind": "field",
|
|
7915
|
+
"name": "error",
|
|
7916
|
+
"type": {
|
|
7917
|
+
"text": "string | undefined"
|
|
7918
|
+
},
|
|
7919
|
+
"description": "Specify error text and display error state of a NativeSelect",
|
|
7920
|
+
"attribute": "error"
|
|
7921
|
+
},
|
|
7922
|
+
{
|
|
7923
|
+
"kind": "field",
|
|
7924
|
+
"name": "fluid",
|
|
7925
|
+
"type": {
|
|
7926
|
+
"text": "boolean"
|
|
7927
|
+
},
|
|
7928
|
+
"default": "false",
|
|
7929
|
+
"description": "Specify if NativeSelect is fluid",
|
|
7930
|
+
"attribute": "fluid"
|
|
7931
|
+
},
|
|
7932
|
+
{
|
|
7933
|
+
"kind": "field",
|
|
7934
|
+
"name": "width",
|
|
7935
|
+
"type": {
|
|
7936
|
+
"text": "string | undefined"
|
|
7937
|
+
},
|
|
7938
|
+
"description": "Specify the width of NativeSelect",
|
|
7939
|
+
"attribute": "width"
|
|
7940
|
+
},
|
|
7941
|
+
{
|
|
7942
|
+
"kind": "field",
|
|
7943
|
+
"name": "ellipse",
|
|
7944
|
+
"type": {
|
|
7945
|
+
"text": "boolean"
|
|
7946
|
+
},
|
|
7947
|
+
"default": "true",
|
|
7948
|
+
"description": "Specify if overflow displays ellipsis",
|
|
7949
|
+
"attribute": "ellipse"
|
|
7950
|
+
},
|
|
7951
|
+
{
|
|
7952
|
+
"kind": "field",
|
|
7953
7953
|
"name": "hideRequiredMarker",
|
|
7954
7954
|
"type": {
|
|
7955
7955
|
"text": "boolean"
|
|
@@ -8287,507 +8287,420 @@
|
|
|
8287
8287
|
},
|
|
8288
8288
|
{
|
|
8289
8289
|
"kind": "javascript-module",
|
|
8290
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8290
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
|
|
8291
8291
|
"declarations": [
|
|
8292
8292
|
{
|
|
8293
8293
|
"kind": "class",
|
|
8294
|
-
"description": "### Attributes:\n- **
|
|
8295
|
-
"name": "
|
|
8296
|
-
"slots": [
|
|
8297
|
-
{
|
|
8298
|
-
"description": "Specify the label for TextArea",
|
|
8299
|
-
"name": "label"
|
|
8300
|
-
},
|
|
8301
|
-
{
|
|
8302
|
-
"description": "Specify the helper text for TextArea",
|
|
8303
|
-
"name": "helper-text"
|
|
8304
|
-
}
|
|
8305
|
-
],
|
|
8294
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events",
|
|
8295
|
+
"name": "BmRadioButton",
|
|
8306
8296
|
"members": [
|
|
8307
8297
|
{
|
|
8308
8298
|
"kind": "field",
|
|
8309
|
-
"name": "
|
|
8299
|
+
"name": "label",
|
|
8310
8300
|
"type": {
|
|
8311
|
-
"text": "
|
|
8301
|
+
"text": "string | undefined"
|
|
8312
8302
|
},
|
|
8313
|
-
"description": "Specify the
|
|
8314
|
-
"attribute": "
|
|
8303
|
+
"description": "Specify the text for the label",
|
|
8304
|
+
"attribute": "label"
|
|
8315
8305
|
},
|
|
8316
8306
|
{
|
|
8317
8307
|
"kind": "field",
|
|
8318
|
-
"name": "
|
|
8308
|
+
"name": "error",
|
|
8319
8309
|
"type": {
|
|
8320
|
-
"text": "
|
|
8310
|
+
"text": "boolean | undefined"
|
|
8321
8311
|
},
|
|
8322
|
-
"description": "Specify
|
|
8323
|
-
"attribute": "
|
|
8312
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8313
|
+
"attribute": "error"
|
|
8324
8314
|
},
|
|
8325
8315
|
{
|
|
8326
8316
|
"kind": "field",
|
|
8327
|
-
"name": "
|
|
8317
|
+
"name": "readOnly",
|
|
8328
8318
|
"type": {
|
|
8329
|
-
"text": "
|
|
8319
|
+
"text": "boolean | undefined"
|
|
8330
8320
|
},
|
|
8331
|
-
"description": "Specify
|
|
8332
|
-
"attribute": "
|
|
8321
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8322
|
+
"attribute": "readOnly"
|
|
8333
8323
|
},
|
|
8334
8324
|
{
|
|
8335
8325
|
"kind": "field",
|
|
8336
|
-
"name": "
|
|
8326
|
+
"name": "disabled",
|
|
8337
8327
|
"type": {
|
|
8338
|
-
"text": "boolean"
|
|
8328
|
+
"text": "boolean | undefined"
|
|
8339
8329
|
},
|
|
8340
|
-
"
|
|
8341
|
-
"
|
|
8342
|
-
"attribute": "required"
|
|
8330
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8331
|
+
"attribute": "disabled"
|
|
8343
8332
|
},
|
|
8344
8333
|
{
|
|
8345
8334
|
"kind": "field",
|
|
8346
|
-
"name": "
|
|
8335
|
+
"name": "theme",
|
|
8347
8336
|
"type": {
|
|
8348
|
-
"text": "
|
|
8337
|
+
"text": "'light' | 'dark' | undefined"
|
|
8349
8338
|
},
|
|
8350
|
-
"
|
|
8351
|
-
"
|
|
8352
|
-
"attribute": "hideRequiredMarker"
|
|
8339
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8340
|
+
"attribute": "theme"
|
|
8353
8341
|
},
|
|
8354
8342
|
{
|
|
8355
8343
|
"kind": "field",
|
|
8356
|
-
"name": "
|
|
8344
|
+
"name": "value",
|
|
8357
8345
|
"type": {
|
|
8358
8346
|
"text": "string | undefined"
|
|
8359
8347
|
},
|
|
8360
|
-
"description": "
|
|
8361
|
-
"attribute": "
|
|
8348
|
+
"description": "The value attribute for the input element",
|
|
8349
|
+
"attribute": "value"
|
|
8362
8350
|
},
|
|
8363
8351
|
{
|
|
8364
8352
|
"kind": "field",
|
|
8365
|
-
"name": "
|
|
8353
|
+
"name": "checked",
|
|
8366
8354
|
"type": {
|
|
8367
8355
|
"text": "boolean"
|
|
8368
8356
|
},
|
|
8369
8357
|
"default": "false",
|
|
8370
|
-
"description": "
|
|
8371
|
-
"attribute": "
|
|
8358
|
+
"description": "The checked attribute for the input element",
|
|
8359
|
+
"attribute": "checked"
|
|
8372
8360
|
},
|
|
8373
8361
|
{
|
|
8374
8362
|
"kind": "field",
|
|
8375
|
-
"name": "
|
|
8363
|
+
"name": "onKeyDown",
|
|
8376
8364
|
"type": {
|
|
8377
|
-
"text": "
|
|
8365
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8378
8366
|
},
|
|
8379
|
-
"
|
|
8380
|
-
"
|
|
8381
|
-
"attribute": "disabled"
|
|
8367
|
+
"description": "A user-defined function to handle keydown events",
|
|
8368
|
+
"attribute": "onKeyDown"
|
|
8382
8369
|
},
|
|
8383
8370
|
{
|
|
8384
8371
|
"kind": "field",
|
|
8385
|
-
"name": "
|
|
8372
|
+
"name": "inputChoiceGroupContext",
|
|
8386
8373
|
"type": {
|
|
8387
|
-
"text": "
|
|
8388
|
-
}
|
|
8389
|
-
"default": "false",
|
|
8390
|
-
"description": "Specify if TextArea is fluid",
|
|
8391
|
-
"attribute": "fluid"
|
|
8374
|
+
"text": "InputChoiceGroupContextProps"
|
|
8375
|
+
}
|
|
8392
8376
|
},
|
|
8393
8377
|
{
|
|
8394
8378
|
"kind": "field",
|
|
8395
|
-
"name": "
|
|
8396
|
-
"type": {
|
|
8397
|
-
"text": "string | undefined"
|
|
8398
|
-
},
|
|
8399
|
-
"description": "Specify the width of TextArea",
|
|
8400
|
-
"attribute": "width"
|
|
8379
|
+
"name": "radioButtonRef"
|
|
8401
8380
|
},
|
|
8402
8381
|
{
|
|
8403
|
-
"kind": "
|
|
8404
|
-
"name": "
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
"default": "false",
|
|
8409
|
-
"description": "Specify if TextArea can be manually resized",
|
|
8410
|
-
"attribute": "hideResize"
|
|
8411
|
-
},
|
|
8412
|
-
{
|
|
8413
|
-
"kind": "field",
|
|
8414
|
-
"name": "maxCount",
|
|
8415
|
-
"type": {
|
|
8416
|
-
"text": "number | undefined"
|
|
8417
|
-
},
|
|
8418
|
-
"description": "Specify the maximum character count for the TextArea",
|
|
8419
|
-
"attribute": "maxCount"
|
|
8420
|
-
},
|
|
8382
|
+
"kind": "method",
|
|
8383
|
+
"name": "focus"
|
|
8384
|
+
}
|
|
8385
|
+
],
|
|
8386
|
+
"attributes": [
|
|
8421
8387
|
{
|
|
8422
|
-
"
|
|
8423
|
-
"name": "autoResize",
|
|
8388
|
+
"name": "label",
|
|
8424
8389
|
"type": {
|
|
8425
|
-
"text": "
|
|
8390
|
+
"text": "string | undefined"
|
|
8426
8391
|
},
|
|
8427
|
-
"
|
|
8428
|
-
"
|
|
8429
|
-
"attribute": "autoResize"
|
|
8392
|
+
"description": "Specify the text for the label",
|
|
8393
|
+
"fieldName": "label"
|
|
8430
8394
|
},
|
|
8431
8395
|
{
|
|
8432
|
-
"
|
|
8433
|
-
"name": "theme",
|
|
8396
|
+
"name": "error",
|
|
8434
8397
|
"type": {
|
|
8435
|
-
"text": "
|
|
8436
|
-
},
|
|
8437
|
-
"description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
|
|
8438
|
-
"attribute": "theme"
|
|
8439
|
-
},
|
|
8440
|
-
{
|
|
8441
|
-
"kind": "field",
|
|
8442
|
-
"name": "formFieldCounterRef"
|
|
8443
|
-
},
|
|
8444
|
-
{
|
|
8445
|
-
"kind": "method",
|
|
8446
|
-
"name": "finalizeAssociatedCallback",
|
|
8447
|
-
"return": {
|
|
8448
|
-
"type": {
|
|
8449
|
-
"text": "FinalizeAssociatedResult"
|
|
8450
|
-
}
|
|
8398
|
+
"text": "boolean | undefined"
|
|
8451
8399
|
},
|
|
8452
|
-
"
|
|
8453
|
-
|
|
8454
|
-
"name": "value",
|
|
8455
|
-
"type": {
|
|
8456
|
-
"text": "string"
|
|
8457
|
-
}
|
|
8458
|
-
}
|
|
8459
|
-
],
|
|
8460
|
-
"inheritedFrom": {
|
|
8461
|
-
"name": "FormField",
|
|
8462
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8463
|
-
}
|
|
8400
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
8401
|
+
"fieldName": "error"
|
|
8464
8402
|
},
|
|
8465
8403
|
{
|
|
8466
|
-
"
|
|
8467
|
-
"name": "formAssociated",
|
|
8404
|
+
"name": "readOnly",
|
|
8468
8405
|
"type": {
|
|
8469
|
-
"text": "boolean"
|
|
8406
|
+
"text": "boolean | undefined"
|
|
8470
8407
|
},
|
|
8471
|
-
"
|
|
8472
|
-
"
|
|
8473
|
-
"inheritedFrom": {
|
|
8474
|
-
"name": "FormField",
|
|
8475
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8476
|
-
}
|
|
8408
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
8409
|
+
"fieldName": "readOnly"
|
|
8477
8410
|
},
|
|
8478
8411
|
{
|
|
8479
|
-
"
|
|
8480
|
-
"name": "id",
|
|
8412
|
+
"name": "disabled",
|
|
8481
8413
|
"type": {
|
|
8482
|
-
"text": "
|
|
8414
|
+
"text": "boolean | undefined"
|
|
8483
8415
|
},
|
|
8484
|
-
"
|
|
8485
|
-
"
|
|
8486
|
-
"inheritedFrom": {
|
|
8487
|
-
"name": "FormField",
|
|
8488
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8489
|
-
}
|
|
8416
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
8417
|
+
"fieldName": "disabled"
|
|
8490
8418
|
},
|
|
8491
8419
|
{
|
|
8492
|
-
"
|
|
8493
|
-
"name": "name",
|
|
8420
|
+
"name": "theme",
|
|
8494
8421
|
"type": {
|
|
8495
|
-
"text": "
|
|
8422
|
+
"text": "'light' | 'dark' | undefined"
|
|
8496
8423
|
},
|
|
8497
|
-
"
|
|
8498
|
-
"
|
|
8499
|
-
"inheritedFrom": {
|
|
8500
|
-
"name": "FormField",
|
|
8501
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8502
|
-
}
|
|
8424
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
8425
|
+
"fieldName": "theme"
|
|
8503
8426
|
},
|
|
8504
8427
|
{
|
|
8505
|
-
"kind": "field",
|
|
8506
8428
|
"name": "value",
|
|
8507
8429
|
"type": {
|
|
8508
|
-
"text": "string"
|
|
8509
|
-
},
|
|
8510
|
-
"default": "''",
|
|
8511
|
-
"attribute": "value",
|
|
8512
|
-
"inheritedFrom": {
|
|
8513
|
-
"name": "FormField",
|
|
8514
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8515
|
-
}
|
|
8516
|
-
},
|
|
8517
|
-
{
|
|
8518
|
-
"kind": "field",
|
|
8519
|
-
"name": "validationRules",
|
|
8520
|
-
"type": {
|
|
8521
|
-
"text": "Array<FormValidator>"
|
|
8430
|
+
"text": "string | undefined"
|
|
8522
8431
|
},
|
|
8523
|
-
"
|
|
8524
|
-
"
|
|
8525
|
-
"inheritedFrom": {
|
|
8526
|
-
"name": "FormField",
|
|
8527
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8528
|
-
}
|
|
8432
|
+
"description": "The value attribute for the input element",
|
|
8433
|
+
"fieldName": "value"
|
|
8529
8434
|
},
|
|
8530
8435
|
{
|
|
8531
|
-
"
|
|
8532
|
-
"name": "inputAriaLabel",
|
|
8436
|
+
"name": "checked",
|
|
8533
8437
|
"type": {
|
|
8534
|
-
"text": "
|
|
8438
|
+
"text": "boolean"
|
|
8535
8439
|
},
|
|
8536
|
-
"
|
|
8537
|
-
"
|
|
8538
|
-
|
|
8539
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8540
|
-
}
|
|
8440
|
+
"default": "false",
|
|
8441
|
+
"description": "The checked attribute for the input element",
|
|
8442
|
+
"fieldName": "checked"
|
|
8541
8443
|
},
|
|
8542
8444
|
{
|
|
8543
|
-
"
|
|
8544
|
-
"name": "formContext",
|
|
8445
|
+
"name": "onKeyDown",
|
|
8545
8446
|
"type": {
|
|
8546
|
-
"text": "
|
|
8447
|
+
"text": "(event: KeyboardEvent) => void | undefined"
|
|
8547
8448
|
},
|
|
8548
|
-
"
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8449
|
+
"description": "A user-defined function to handle keydown events",
|
|
8450
|
+
"fieldName": "onKeyDown"
|
|
8451
|
+
}
|
|
8452
|
+
],
|
|
8453
|
+
"superclass": {
|
|
8454
|
+
"name": "LitElement",
|
|
8455
|
+
"package": "lit"
|
|
8456
|
+
},
|
|
8457
|
+
"tagName": "bm-radio-button",
|
|
8458
|
+
"customElement": true
|
|
8459
|
+
}
|
|
8460
|
+
],
|
|
8461
|
+
"exports": [
|
|
8462
|
+
{
|
|
8463
|
+
"kind": "js",
|
|
8464
|
+
"name": "BmRadioButton",
|
|
8465
|
+
"declaration": {
|
|
8466
|
+
"name": "BmRadioButton",
|
|
8467
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8468
|
+
}
|
|
8469
|
+
},
|
|
8470
|
+
{
|
|
8471
|
+
"kind": "custom-element-definition",
|
|
8472
|
+
"name": "bm-radio-button",
|
|
8473
|
+
"declaration": {
|
|
8474
|
+
"name": "BmRadioButton",
|
|
8475
|
+
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8476
|
+
}
|
|
8477
|
+
}
|
|
8478
|
+
]
|
|
8479
|
+
},
|
|
8480
|
+
{
|
|
8481
|
+
"kind": "javascript-module",
|
|
8482
|
+
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
8483
|
+
"declarations": [],
|
|
8484
|
+
"exports": [
|
|
8485
|
+
{
|
|
8486
|
+
"kind": "js",
|
|
8487
|
+
"name": "*",
|
|
8488
|
+
"declaration": {
|
|
8489
|
+
"name": "*",
|
|
8490
|
+
"package": "./RadioButton"
|
|
8491
|
+
}
|
|
8492
|
+
},
|
|
8493
|
+
{
|
|
8494
|
+
"kind": "js",
|
|
8495
|
+
"name": "*",
|
|
8496
|
+
"declaration": {
|
|
8497
|
+
"name": "*",
|
|
8498
|
+
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
8499
|
+
}
|
|
8500
|
+
}
|
|
8501
|
+
]
|
|
8502
|
+
},
|
|
8503
|
+
{
|
|
8504
|
+
"kind": "javascript-module",
|
|
8505
|
+
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
8506
|
+
"declarations": [
|
|
8507
|
+
{
|
|
8508
|
+
"kind": "class",
|
|
8509
|
+
"description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
|
|
8510
|
+
"name": "BmSwitch",
|
|
8511
|
+
"slots": [
|
|
8553
8512
|
{
|
|
8554
|
-
"
|
|
8555
|
-
"name": "
|
|
8556
|
-
"return": {
|
|
8557
|
-
"type": {
|
|
8558
|
-
"text": "void"
|
|
8559
|
-
}
|
|
8560
|
-
},
|
|
8561
|
-
"inheritedFrom": {
|
|
8562
|
-
"name": "FormField",
|
|
8563
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8564
|
-
}
|
|
8513
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8514
|
+
"name": "onText"
|
|
8565
8515
|
},
|
|
8566
8516
|
{
|
|
8567
|
-
"
|
|
8568
|
-
"name": "
|
|
8569
|
-
"return": {
|
|
8570
|
-
"type": {
|
|
8571
|
-
"text": "void"
|
|
8572
|
-
}
|
|
8573
|
-
},
|
|
8574
|
-
"inheritedFrom": {
|
|
8575
|
-
"name": "FormField",
|
|
8576
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8577
|
-
}
|
|
8517
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8518
|
+
"name": "offText"
|
|
8578
8519
|
}
|
|
8579
8520
|
],
|
|
8580
|
-
"
|
|
8581
|
-
{
|
|
8582
|
-
"name": "rows",
|
|
8583
|
-
"type": {
|
|
8584
|
-
"text": "number | undefined"
|
|
8585
|
-
},
|
|
8586
|
-
"description": "Specify the height of TextArea",
|
|
8587
|
-
"fieldName": "rows"
|
|
8588
|
-
},
|
|
8521
|
+
"members": [
|
|
8589
8522
|
{
|
|
8590
|
-
"
|
|
8523
|
+
"kind": "field",
|
|
8524
|
+
"name": "inputChoiceGroupContext",
|
|
8591
8525
|
"type": {
|
|
8592
|
-
"text": "
|
|
8593
|
-
}
|
|
8594
|
-
"description": "Specify the width of TextArea",
|
|
8595
|
-
"fieldName": "cols"
|
|
8526
|
+
"text": "InputChoiceGroupContextProps"
|
|
8527
|
+
}
|
|
8596
8528
|
},
|
|
8597
8529
|
{
|
|
8598
|
-
"
|
|
8530
|
+
"kind": "field",
|
|
8531
|
+
"name": "onText",
|
|
8599
8532
|
"type": {
|
|
8600
8533
|
"text": "string | undefined"
|
|
8601
8534
|
},
|
|
8602
|
-
"
|
|
8603
|
-
"
|
|
8535
|
+
"default": "undefined",
|
|
8536
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8537
|
+
"attribute": "onText"
|
|
8604
8538
|
},
|
|
8605
8539
|
{
|
|
8606
|
-
"
|
|
8540
|
+
"kind": "field",
|
|
8541
|
+
"name": "offText",
|
|
8607
8542
|
"type": {
|
|
8608
|
-
"text": "
|
|
8543
|
+
"text": "string | undefined"
|
|
8609
8544
|
},
|
|
8610
|
-
"default": "
|
|
8611
|
-
"description": "Specify
|
|
8612
|
-
"
|
|
8545
|
+
"default": "undefined",
|
|
8546
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8547
|
+
"attribute": "offText"
|
|
8613
8548
|
},
|
|
8614
8549
|
{
|
|
8615
|
-
"
|
|
8550
|
+
"kind": "field",
|
|
8551
|
+
"name": "theme",
|
|
8616
8552
|
"type": {
|
|
8617
|
-
"text": "
|
|
8553
|
+
"text": "ThemeTypes | undefined"
|
|
8618
8554
|
},
|
|
8619
|
-
"default": "
|
|
8620
|
-
"description": "Specify
|
|
8621
|
-
"fieldName": "hideRequiredMarker"
|
|
8555
|
+
"default": "undefined",
|
|
8556
|
+
"description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
|
|
8622
8557
|
},
|
|
8623
8558
|
{
|
|
8624
|
-
"
|
|
8559
|
+
"kind": "field",
|
|
8560
|
+
"name": "textPosition",
|
|
8625
8561
|
"type": {
|
|
8626
|
-
"text": "
|
|
8562
|
+
"text": "'before' | 'after'"
|
|
8627
8563
|
},
|
|
8628
|
-
"
|
|
8629
|
-
"
|
|
8564
|
+
"default": "'after'",
|
|
8565
|
+
"description": "Specify the position of the side label",
|
|
8566
|
+
"attribute": "textPosition"
|
|
8630
8567
|
},
|
|
8631
8568
|
{
|
|
8569
|
+
"kind": "field",
|
|
8632
8570
|
"name": "readOnly",
|
|
8633
8571
|
"type": {
|
|
8634
8572
|
"text": "boolean"
|
|
8635
8573
|
},
|
|
8636
8574
|
"default": "false",
|
|
8637
|
-
"description": "Specify if
|
|
8638
|
-
"
|
|
8575
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
8576
|
+
"attribute": "readOnly"
|
|
8639
8577
|
},
|
|
8640
8578
|
{
|
|
8579
|
+
"kind": "field",
|
|
8641
8580
|
"name": "disabled",
|
|
8642
8581
|
"type": {
|
|
8643
8582
|
"text": "boolean"
|
|
8644
8583
|
},
|
|
8645
8584
|
"default": "false",
|
|
8646
|
-
"description": "Specify if
|
|
8647
|
-
"
|
|
8585
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
8586
|
+
"attribute": "disabled"
|
|
8648
8587
|
},
|
|
8649
8588
|
{
|
|
8650
|
-
"
|
|
8589
|
+
"kind": "field",
|
|
8590
|
+
"name": "checked",
|
|
8651
8591
|
"type": {
|
|
8652
8592
|
"text": "boolean"
|
|
8653
8593
|
},
|
|
8654
8594
|
"default": "false",
|
|
8655
|
-
"
|
|
8656
|
-
"fieldName": "fluid"
|
|
8595
|
+
"attribute": "checked"
|
|
8657
8596
|
},
|
|
8658
8597
|
{
|
|
8659
|
-
"
|
|
8598
|
+
"kind": "field",
|
|
8599
|
+
"name": "value",
|
|
8660
8600
|
"type": {
|
|
8661
8601
|
"text": "string | undefined"
|
|
8662
8602
|
},
|
|
8663
|
-
"description": "
|
|
8664
|
-
"
|
|
8665
|
-
},
|
|
8666
|
-
{
|
|
8667
|
-
"name": "hideResize",
|
|
8668
|
-
"type": {
|
|
8669
|
-
"text": "boolean"
|
|
8670
|
-
},
|
|
8671
|
-
"default": "false",
|
|
8672
|
-
"description": "Specify if TextArea can be manually resized",
|
|
8673
|
-
"fieldName": "hideResize"
|
|
8603
|
+
"description": "The value attribute for the input element",
|
|
8604
|
+
"attribute": "value"
|
|
8674
8605
|
},
|
|
8675
8606
|
{
|
|
8676
|
-
"
|
|
8677
|
-
"
|
|
8678
|
-
|
|
8679
|
-
|
|
8680
|
-
|
|
8681
|
-
"fieldName": "maxCount"
|
|
8682
|
-
},
|
|
8607
|
+
"kind": "field",
|
|
8608
|
+
"name": "switchRef"
|
|
8609
|
+
}
|
|
8610
|
+
],
|
|
8611
|
+
"attributes": [
|
|
8683
8612
|
{
|
|
8684
|
-
"name": "
|
|
8613
|
+
"name": "onText",
|
|
8685
8614
|
"type": {
|
|
8686
|
-
"text": "
|
|
8615
|
+
"text": "string | undefined"
|
|
8687
8616
|
},
|
|
8688
|
-
"default": "
|
|
8689
|
-
"description": "Specify
|
|
8690
|
-
"fieldName": "
|
|
8617
|
+
"default": "undefined",
|
|
8618
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
8619
|
+
"fieldName": "onText"
|
|
8691
8620
|
},
|
|
8692
8621
|
{
|
|
8693
|
-
"name": "
|
|
8622
|
+
"name": "offText",
|
|
8694
8623
|
"type": {
|
|
8695
|
-
"text": "
|
|
8624
|
+
"text": "string | undefined"
|
|
8696
8625
|
},
|
|
8697
|
-
"
|
|
8698
|
-
"
|
|
8626
|
+
"default": "undefined",
|
|
8627
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
8628
|
+
"fieldName": "offText"
|
|
8699
8629
|
},
|
|
8700
8630
|
{
|
|
8701
|
-
"name": "
|
|
8631
|
+
"name": "textPosition",
|
|
8702
8632
|
"type": {
|
|
8703
|
-
"text": "
|
|
8633
|
+
"text": "'before' | 'after'"
|
|
8704
8634
|
},
|
|
8705
|
-
"default": "''",
|
|
8706
|
-
"
|
|
8707
|
-
"
|
|
8708
|
-
"name": "FormField",
|
|
8709
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8710
|
-
}
|
|
8635
|
+
"default": "'after'",
|
|
8636
|
+
"description": "Specify the position of the side label",
|
|
8637
|
+
"fieldName": "textPosition"
|
|
8711
8638
|
},
|
|
8712
8639
|
{
|
|
8713
|
-
"name": "
|
|
8640
|
+
"name": "readOnly",
|
|
8714
8641
|
"type": {
|
|
8715
|
-
"text": "
|
|
8642
|
+
"text": "boolean"
|
|
8716
8643
|
},
|
|
8717
|
-
"default": "
|
|
8718
|
-
"
|
|
8719
|
-
"
|
|
8720
|
-
"name": "FormField",
|
|
8721
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8722
|
-
}
|
|
8644
|
+
"default": "false",
|
|
8645
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
8646
|
+
"fieldName": "readOnly"
|
|
8723
8647
|
},
|
|
8724
8648
|
{
|
|
8725
|
-
"name": "
|
|
8649
|
+
"name": "disabled",
|
|
8726
8650
|
"type": {
|
|
8727
|
-
"text": "
|
|
8651
|
+
"text": "boolean"
|
|
8728
8652
|
},
|
|
8729
|
-
"default": "
|
|
8730
|
-
"
|
|
8731
|
-
"
|
|
8732
|
-
"name": "FormField",
|
|
8733
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8734
|
-
}
|
|
8653
|
+
"default": "false",
|
|
8654
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
8655
|
+
"fieldName": "disabled"
|
|
8735
8656
|
},
|
|
8736
8657
|
{
|
|
8737
|
-
"name": "
|
|
8658
|
+
"name": "checked",
|
|
8738
8659
|
"type": {
|
|
8739
|
-
"text": "
|
|
8660
|
+
"text": "boolean"
|
|
8740
8661
|
},
|
|
8741
|
-
"default": "
|
|
8742
|
-
"fieldName": "
|
|
8743
|
-
"inheritedFrom": {
|
|
8744
|
-
"name": "FormField",
|
|
8745
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8746
|
-
}
|
|
8662
|
+
"default": "false",
|
|
8663
|
+
"fieldName": "checked"
|
|
8747
8664
|
},
|
|
8748
8665
|
{
|
|
8749
|
-
"name": "
|
|
8666
|
+
"name": "value",
|
|
8750
8667
|
"type": {
|
|
8751
8668
|
"text": "string | undefined"
|
|
8752
8669
|
},
|
|
8753
|
-
"
|
|
8754
|
-
"
|
|
8755
|
-
"name": "FormField",
|
|
8756
|
-
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8757
|
-
}
|
|
8670
|
+
"description": "The value attribute for the input element",
|
|
8671
|
+
"fieldName": "value"
|
|
8758
8672
|
}
|
|
8759
8673
|
],
|
|
8760
8674
|
"superclass": {
|
|
8761
|
-
"name": "
|
|
8762
|
-
"
|
|
8675
|
+
"name": "LitElement",
|
|
8676
|
+
"package": "lit"
|
|
8763
8677
|
},
|
|
8764
|
-
"
|
|
8765
|
-
"tagName": "bm-text-area",
|
|
8678
|
+
"tagName": "bm-switch",
|
|
8766
8679
|
"customElement": true
|
|
8767
8680
|
}
|
|
8768
8681
|
],
|
|
8769
8682
|
"exports": [
|
|
8770
8683
|
{
|
|
8771
8684
|
"kind": "js",
|
|
8772
|
-
"name": "
|
|
8685
|
+
"name": "BmSwitch",
|
|
8773
8686
|
"declaration": {
|
|
8774
|
-
"name": "
|
|
8775
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8687
|
+
"name": "BmSwitch",
|
|
8688
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
8776
8689
|
}
|
|
8777
8690
|
},
|
|
8778
8691
|
{
|
|
8779
8692
|
"kind": "custom-element-definition",
|
|
8780
|
-
"name": "bm-
|
|
8693
|
+
"name": "bm-switch",
|
|
8781
8694
|
"declaration": {
|
|
8782
|
-
"name": "
|
|
8783
|
-
"module": "libs/web-components/src/lib/wip/
|
|
8695
|
+
"name": "BmSwitch",
|
|
8696
|
+
"module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
|
|
8784
8697
|
}
|
|
8785
8698
|
}
|
|
8786
8699
|
]
|
|
8787
8700
|
},
|
|
8788
8701
|
{
|
|
8789
8702
|
"kind": "javascript-module",
|
|
8790
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8703
|
+
"path": "libs/web-components/src/lib/wip/Switch/index.ts",
|
|
8791
8704
|
"declarations": [],
|
|
8792
8705
|
"exports": [
|
|
8793
8706
|
{
|
|
@@ -8795,427 +8708,522 @@
|
|
|
8795
8708
|
"name": "*",
|
|
8796
8709
|
"declaration": {
|
|
8797
8710
|
"name": "*",
|
|
8798
|
-
"package": "./
|
|
8711
|
+
"package": "./Switch"
|
|
8712
|
+
}
|
|
8713
|
+
},
|
|
8714
|
+
{
|
|
8715
|
+
"kind": "js",
|
|
8716
|
+
"name": "*",
|
|
8717
|
+
"declaration": {
|
|
8718
|
+
"name": "*",
|
|
8719
|
+
"package": "./SwitchGroup/SwitchGroup"
|
|
8799
8720
|
}
|
|
8800
8721
|
}
|
|
8801
8722
|
]
|
|
8802
8723
|
},
|
|
8803
8724
|
{
|
|
8804
8725
|
"kind": "javascript-module",
|
|
8805
|
-
"path": "libs/web-components/src/lib/wip/
|
|
8726
|
+
"path": "libs/web-components/src/lib/wip/TextArea/TextArea.ts",
|
|
8806
8727
|
"declarations": [
|
|
8807
8728
|
{
|
|
8808
8729
|
"kind": "class",
|
|
8809
|
-
"description": "
|
|
8810
|
-
"name": "
|
|
8730
|
+
"description": "### Attributes:\n- **rows** - Specify the height of TextArea\n- **cols** - Specify the width of TextArea\n- **placeholder** - Specify placeholder text for TextArea\n- **required** - Specify if TextArea is a required input\n- **hideRequiredMarker** - Specify if the TextArea displays with an asterisk\n- **error** - Specify error text and display error state of a TextArea\n- **readOnly** - Specify if TextArea displays in a read-only state\n- **disabled** - Specify if TextArea displays in a disabled state\n- **fluid** - Specify if TextArea is fluid\n- **width** - Specify the width of TextArea\n- **hideResize** - Specify if TextArea can be manually resized\n- **maxCount** - Specify the maximum character count for the TextArea\n- **autoResize** - Specify if the TextArea automatically resizes to fit the text\n- **theme** - Specify the theme of the TextArea. By default it inherits the theme from the parent",
|
|
8731
|
+
"name": "BmTextArea",
|
|
8732
|
+
"slots": [
|
|
8733
|
+
{
|
|
8734
|
+
"description": "Specify the label for TextArea",
|
|
8735
|
+
"name": "label"
|
|
8736
|
+
},
|
|
8737
|
+
{
|
|
8738
|
+
"description": "Specify the helper text for TextArea",
|
|
8739
|
+
"name": "helper-text"
|
|
8740
|
+
}
|
|
8741
|
+
],
|
|
8811
8742
|
"members": [
|
|
8812
8743
|
{
|
|
8813
8744
|
"kind": "field",
|
|
8814
|
-
"name": "
|
|
8745
|
+
"name": "rows",
|
|
8746
|
+
"type": {
|
|
8747
|
+
"text": "number | undefined"
|
|
8748
|
+
},
|
|
8749
|
+
"description": "Specify the height of TextArea",
|
|
8750
|
+
"attribute": "rows"
|
|
8751
|
+
},
|
|
8752
|
+
{
|
|
8753
|
+
"kind": "field",
|
|
8754
|
+
"name": "cols",
|
|
8755
|
+
"type": {
|
|
8756
|
+
"text": "number | undefined"
|
|
8757
|
+
},
|
|
8758
|
+
"description": "Specify the width of TextArea",
|
|
8759
|
+
"attribute": "cols"
|
|
8760
|
+
},
|
|
8761
|
+
{
|
|
8762
|
+
"kind": "field",
|
|
8763
|
+
"name": "placeholder",
|
|
8815
8764
|
"type": {
|
|
8816
8765
|
"text": "string | undefined"
|
|
8817
8766
|
},
|
|
8818
|
-
"description": "Specify
|
|
8819
|
-
"attribute": "
|
|
8767
|
+
"description": "Specify placeholder text for TextArea",
|
|
8768
|
+
"attribute": "placeholder"
|
|
8769
|
+
},
|
|
8770
|
+
{
|
|
8771
|
+
"kind": "field",
|
|
8772
|
+
"name": "required",
|
|
8773
|
+
"type": {
|
|
8774
|
+
"text": "boolean"
|
|
8775
|
+
},
|
|
8776
|
+
"default": "false",
|
|
8777
|
+
"description": "Specify if TextArea is a required input",
|
|
8778
|
+
"attribute": "required"
|
|
8779
|
+
},
|
|
8780
|
+
{
|
|
8781
|
+
"kind": "field",
|
|
8782
|
+
"name": "hideRequiredMarker",
|
|
8783
|
+
"type": {
|
|
8784
|
+
"text": "boolean"
|
|
8785
|
+
},
|
|
8786
|
+
"default": "false",
|
|
8787
|
+
"description": "Specify if the TextArea displays with an asterisk",
|
|
8788
|
+
"attribute": "hideRequiredMarker"
|
|
8820
8789
|
},
|
|
8821
8790
|
{
|
|
8822
8791
|
"kind": "field",
|
|
8823
8792
|
"name": "error",
|
|
8824
8793
|
"type": {
|
|
8825
|
-
"text": "
|
|
8794
|
+
"text": "string | undefined"
|
|
8826
8795
|
},
|
|
8827
|
-
"description": "Specify error text and display error state of a
|
|
8796
|
+
"description": "Specify error text and display error state of a TextArea",
|
|
8828
8797
|
"attribute": "error"
|
|
8829
8798
|
},
|
|
8830
8799
|
{
|
|
8831
8800
|
"kind": "field",
|
|
8832
8801
|
"name": "readOnly",
|
|
8833
8802
|
"type": {
|
|
8834
|
-
"text": "boolean
|
|
8803
|
+
"text": "boolean"
|
|
8835
8804
|
},
|
|
8836
|
-
"
|
|
8805
|
+
"default": "false",
|
|
8806
|
+
"description": "Specify if TextArea displays in a read-only state",
|
|
8837
8807
|
"attribute": "readOnly"
|
|
8838
8808
|
},
|
|
8839
8809
|
{
|
|
8840
8810
|
"kind": "field",
|
|
8841
8811
|
"name": "disabled",
|
|
8842
8812
|
"type": {
|
|
8843
|
-
"text": "boolean
|
|
8813
|
+
"text": "boolean"
|
|
8844
8814
|
},
|
|
8845
|
-
"
|
|
8815
|
+
"default": "false",
|
|
8816
|
+
"description": "Specify if TextArea displays in a disabled state",
|
|
8846
8817
|
"attribute": "disabled"
|
|
8847
8818
|
},
|
|
8848
8819
|
{
|
|
8849
8820
|
"kind": "field",
|
|
8850
|
-
"name": "
|
|
8821
|
+
"name": "fluid",
|
|
8851
8822
|
"type": {
|
|
8852
|
-
"text": "
|
|
8823
|
+
"text": "boolean"
|
|
8853
8824
|
},
|
|
8854
|
-
"
|
|
8855
|
-
"
|
|
8825
|
+
"default": "false",
|
|
8826
|
+
"description": "Specify if TextArea is fluid",
|
|
8827
|
+
"attribute": "fluid"
|
|
8856
8828
|
},
|
|
8857
8829
|
{
|
|
8858
8830
|
"kind": "field",
|
|
8859
|
-
"name": "
|
|
8831
|
+
"name": "width",
|
|
8860
8832
|
"type": {
|
|
8861
8833
|
"text": "string | undefined"
|
|
8862
8834
|
},
|
|
8863
|
-
"description": "
|
|
8864
|
-
"attribute": "
|
|
8835
|
+
"description": "Specify the width of TextArea",
|
|
8836
|
+
"attribute": "width"
|
|
8865
8837
|
},
|
|
8866
8838
|
{
|
|
8867
8839
|
"kind": "field",
|
|
8868
|
-
"name": "
|
|
8840
|
+
"name": "hideResize",
|
|
8869
8841
|
"type": {
|
|
8870
8842
|
"text": "boolean"
|
|
8871
8843
|
},
|
|
8872
8844
|
"default": "false",
|
|
8873
|
-
"description": "
|
|
8874
|
-
"attribute": "
|
|
8845
|
+
"description": "Specify if TextArea can be manually resized",
|
|
8846
|
+
"attribute": "hideResize"
|
|
8875
8847
|
},
|
|
8876
8848
|
{
|
|
8877
8849
|
"kind": "field",
|
|
8878
|
-
"name": "
|
|
8850
|
+
"name": "maxCount",
|
|
8879
8851
|
"type": {
|
|
8880
|
-
"text": "
|
|
8852
|
+
"text": "number | undefined"
|
|
8881
8853
|
},
|
|
8882
|
-
"description": "
|
|
8883
|
-
"attribute": "
|
|
8854
|
+
"description": "Specify the maximum character count for the TextArea",
|
|
8855
|
+
"attribute": "maxCount"
|
|
8884
8856
|
},
|
|
8885
8857
|
{
|
|
8886
8858
|
"kind": "field",
|
|
8887
|
-
"name": "
|
|
8859
|
+
"name": "autoResize",
|
|
8888
8860
|
"type": {
|
|
8889
|
-
"text": "
|
|
8890
|
-
}
|
|
8861
|
+
"text": "boolean"
|
|
8862
|
+
},
|
|
8863
|
+
"default": "false",
|
|
8864
|
+
"description": "Specify if the TextArea automatically resizes to fit the text",
|
|
8865
|
+
"attribute": "autoResize"
|
|
8891
8866
|
},
|
|
8892
8867
|
{
|
|
8893
8868
|
"kind": "field",
|
|
8894
|
-
"name": "
|
|
8895
|
-
},
|
|
8896
|
-
{
|
|
8897
|
-
"kind": "method",
|
|
8898
|
-
"name": "focus"
|
|
8899
|
-
}
|
|
8900
|
-
],
|
|
8901
|
-
"attributes": [
|
|
8902
|
-
{
|
|
8903
|
-
"name": "label",
|
|
8869
|
+
"name": "theme",
|
|
8904
8870
|
"type": {
|
|
8905
|
-
"text": "
|
|
8871
|
+
"text": "'light' | 'dark' | undefined"
|
|
8906
8872
|
},
|
|
8907
|
-
"description": "Specify the
|
|
8908
|
-
"
|
|
8873
|
+
"description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
|
|
8874
|
+
"attribute": "theme"
|
|
8909
8875
|
},
|
|
8910
8876
|
{
|
|
8911
|
-
"
|
|
8912
|
-
"
|
|
8913
|
-
|
|
8877
|
+
"kind": "field",
|
|
8878
|
+
"name": "formFieldCounterRef"
|
|
8879
|
+
},
|
|
8880
|
+
{
|
|
8881
|
+
"kind": "method",
|
|
8882
|
+
"name": "finalizeAssociatedCallback",
|
|
8883
|
+
"return": {
|
|
8884
|
+
"type": {
|
|
8885
|
+
"text": "FinalizeAssociatedResult"
|
|
8886
|
+
}
|
|
8914
8887
|
},
|
|
8915
|
-
"
|
|
8916
|
-
|
|
8888
|
+
"parameters": [
|
|
8889
|
+
{
|
|
8890
|
+
"name": "value",
|
|
8891
|
+
"type": {
|
|
8892
|
+
"text": "string"
|
|
8893
|
+
}
|
|
8894
|
+
}
|
|
8895
|
+
],
|
|
8896
|
+
"inheritedFrom": {
|
|
8897
|
+
"name": "FormField",
|
|
8898
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8899
|
+
}
|
|
8917
8900
|
},
|
|
8918
8901
|
{
|
|
8919
|
-
"
|
|
8902
|
+
"kind": "field",
|
|
8903
|
+
"name": "formAssociated",
|
|
8920
8904
|
"type": {
|
|
8921
|
-
"text": "boolean
|
|
8905
|
+
"text": "boolean"
|
|
8922
8906
|
},
|
|
8923
|
-
"
|
|
8924
|
-
"
|
|
8907
|
+
"static": true,
|
|
8908
|
+
"default": "true",
|
|
8909
|
+
"inheritedFrom": {
|
|
8910
|
+
"name": "FormField",
|
|
8911
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8912
|
+
}
|
|
8925
8913
|
},
|
|
8926
8914
|
{
|
|
8927
|
-
"
|
|
8915
|
+
"kind": "field",
|
|
8916
|
+
"name": "id",
|
|
8928
8917
|
"type": {
|
|
8929
|
-
"text": "
|
|
8918
|
+
"text": "string"
|
|
8930
8919
|
},
|
|
8931
|
-
"
|
|
8932
|
-
"
|
|
8920
|
+
"default": "''",
|
|
8921
|
+
"attribute": "id",
|
|
8922
|
+
"inheritedFrom": {
|
|
8923
|
+
"name": "FormField",
|
|
8924
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8925
|
+
}
|
|
8933
8926
|
},
|
|
8934
8927
|
{
|
|
8935
|
-
"
|
|
8928
|
+
"kind": "field",
|
|
8929
|
+
"name": "name",
|
|
8936
8930
|
"type": {
|
|
8937
|
-
"text": "
|
|
8931
|
+
"text": "string"
|
|
8938
8932
|
},
|
|
8939
|
-
"
|
|
8940
|
-
"
|
|
8933
|
+
"default": "''",
|
|
8934
|
+
"attribute": "name",
|
|
8935
|
+
"inheritedFrom": {
|
|
8936
|
+
"name": "FormField",
|
|
8937
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8938
|
+
}
|
|
8941
8939
|
},
|
|
8942
8940
|
{
|
|
8941
|
+
"kind": "field",
|
|
8943
8942
|
"name": "value",
|
|
8944
8943
|
"type": {
|
|
8945
|
-
"text": "string
|
|
8944
|
+
"text": "string"
|
|
8946
8945
|
},
|
|
8947
|
-
"
|
|
8948
|
-
"
|
|
8946
|
+
"default": "''",
|
|
8947
|
+
"attribute": "value",
|
|
8948
|
+
"inheritedFrom": {
|
|
8949
|
+
"name": "FormField",
|
|
8950
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8951
|
+
}
|
|
8949
8952
|
},
|
|
8950
8953
|
{
|
|
8951
|
-
"
|
|
8954
|
+
"kind": "field",
|
|
8955
|
+
"name": "validationRules",
|
|
8952
8956
|
"type": {
|
|
8953
|
-
"text": "
|
|
8957
|
+
"text": "Array<FormValidator>"
|
|
8954
8958
|
},
|
|
8955
|
-
"default": "
|
|
8956
|
-
"
|
|
8957
|
-
"
|
|
8959
|
+
"default": "[]",
|
|
8960
|
+
"attribute": "validationRules",
|
|
8961
|
+
"inheritedFrom": {
|
|
8962
|
+
"name": "FormField",
|
|
8963
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8964
|
+
}
|
|
8958
8965
|
},
|
|
8959
8966
|
{
|
|
8960
|
-
"
|
|
8967
|
+
"kind": "field",
|
|
8968
|
+
"name": "inputAriaLabel",
|
|
8961
8969
|
"type": {
|
|
8962
|
-
"text": "
|
|
8963
|
-
},
|
|
8964
|
-
"
|
|
8965
|
-
"
|
|
8966
|
-
|
|
8967
|
-
|
|
8968
|
-
|
|
8969
|
-
|
|
8970
|
-
"package": "lit"
|
|
8971
|
-
},
|
|
8972
|
-
"tagName": "bm-radio-button",
|
|
8973
|
-
"customElement": true
|
|
8974
|
-
}
|
|
8975
|
-
],
|
|
8976
|
-
"exports": [
|
|
8977
|
-
{
|
|
8978
|
-
"kind": "js",
|
|
8979
|
-
"name": "BmRadioButton",
|
|
8980
|
-
"declaration": {
|
|
8981
|
-
"name": "BmRadioButton",
|
|
8982
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8983
|
-
}
|
|
8984
|
-
},
|
|
8985
|
-
{
|
|
8986
|
-
"kind": "custom-element-definition",
|
|
8987
|
-
"name": "bm-radio-button",
|
|
8988
|
-
"declaration": {
|
|
8989
|
-
"name": "BmRadioButton",
|
|
8990
|
-
"module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
|
|
8991
|
-
}
|
|
8992
|
-
}
|
|
8993
|
-
]
|
|
8994
|
-
},
|
|
8995
|
-
{
|
|
8996
|
-
"kind": "javascript-module",
|
|
8997
|
-
"path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
|
|
8998
|
-
"declarations": [],
|
|
8999
|
-
"exports": [
|
|
9000
|
-
{
|
|
9001
|
-
"kind": "js",
|
|
9002
|
-
"name": "*",
|
|
9003
|
-
"declaration": {
|
|
9004
|
-
"name": "*",
|
|
9005
|
-
"package": "./RadioButton"
|
|
9006
|
-
}
|
|
9007
|
-
},
|
|
9008
|
-
{
|
|
9009
|
-
"kind": "js",
|
|
9010
|
-
"name": "*",
|
|
9011
|
-
"declaration": {
|
|
9012
|
-
"name": "*",
|
|
9013
|
-
"package": "./RadioButtonGroup/RadioButtonGroup"
|
|
9014
|
-
}
|
|
9015
|
-
}
|
|
9016
|
-
]
|
|
9017
|
-
},
|
|
9018
|
-
{
|
|
9019
|
-
"kind": "javascript-module",
|
|
9020
|
-
"path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
|
|
9021
|
-
"declarations": [
|
|
9022
|
-
{
|
|
9023
|
-
"kind": "class",
|
|
9024
|
-
"description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
|
|
9025
|
-
"name": "BmSwitch",
|
|
9026
|
-
"slots": [
|
|
8970
|
+
"text": "string | undefined"
|
|
8971
|
+
},
|
|
8972
|
+
"attribute": "input-aria-label",
|
|
8973
|
+
"inheritedFrom": {
|
|
8974
|
+
"name": "FormField",
|
|
8975
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8976
|
+
}
|
|
8977
|
+
},
|
|
9027
8978
|
{
|
|
9028
|
-
"
|
|
9029
|
-
"name": "
|
|
8979
|
+
"kind": "field",
|
|
8980
|
+
"name": "formContext",
|
|
8981
|
+
"type": {
|
|
8982
|
+
"text": "BmFormContext"
|
|
8983
|
+
},
|
|
8984
|
+
"inheritedFrom": {
|
|
8985
|
+
"name": "FormField",
|
|
8986
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
8987
|
+
}
|
|
9030
8988
|
},
|
|
9031
8989
|
{
|
|
9032
|
-
"
|
|
9033
|
-
"name": "
|
|
8990
|
+
"kind": "method",
|
|
8991
|
+
"name": "formAssociatedCallback",
|
|
8992
|
+
"return": {
|
|
8993
|
+
"type": {
|
|
8994
|
+
"text": "void"
|
|
8995
|
+
}
|
|
8996
|
+
},
|
|
8997
|
+
"inheritedFrom": {
|
|
8998
|
+
"name": "FormField",
|
|
8999
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9000
|
+
}
|
|
9001
|
+
},
|
|
9002
|
+
{
|
|
9003
|
+
"kind": "method",
|
|
9004
|
+
"name": "formResetCallback",
|
|
9005
|
+
"return": {
|
|
9006
|
+
"type": {
|
|
9007
|
+
"text": "void"
|
|
9008
|
+
}
|
|
9009
|
+
},
|
|
9010
|
+
"inheritedFrom": {
|
|
9011
|
+
"name": "FormField",
|
|
9012
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9013
|
+
}
|
|
9034
9014
|
}
|
|
9035
9015
|
],
|
|
9036
|
-
"
|
|
9016
|
+
"attributes": [
|
|
9037
9017
|
{
|
|
9038
|
-
"
|
|
9039
|
-
"name": "inputChoiceGroupContext",
|
|
9018
|
+
"name": "rows",
|
|
9040
9019
|
"type": {
|
|
9041
|
-
"text": "
|
|
9042
|
-
}
|
|
9020
|
+
"text": "number | undefined"
|
|
9021
|
+
},
|
|
9022
|
+
"description": "Specify the height of TextArea",
|
|
9023
|
+
"fieldName": "rows"
|
|
9043
9024
|
},
|
|
9044
9025
|
{
|
|
9045
|
-
"
|
|
9046
|
-
"name": "onText",
|
|
9026
|
+
"name": "cols",
|
|
9047
9027
|
"type": {
|
|
9048
|
-
"text": "
|
|
9028
|
+
"text": "number | undefined"
|
|
9049
9029
|
},
|
|
9050
|
-
"
|
|
9051
|
-
"
|
|
9052
|
-
"attribute": "onText"
|
|
9030
|
+
"description": "Specify the width of TextArea",
|
|
9031
|
+
"fieldName": "cols"
|
|
9053
9032
|
},
|
|
9054
9033
|
{
|
|
9055
|
-
"
|
|
9056
|
-
"name": "offText",
|
|
9034
|
+
"name": "placeholder",
|
|
9057
9035
|
"type": {
|
|
9058
9036
|
"text": "string | undefined"
|
|
9059
9037
|
},
|
|
9060
|
-
"
|
|
9061
|
-
"
|
|
9062
|
-
"attribute": "offText"
|
|
9038
|
+
"description": "Specify placeholder text for TextArea",
|
|
9039
|
+
"fieldName": "placeholder"
|
|
9063
9040
|
},
|
|
9064
9041
|
{
|
|
9065
|
-
"
|
|
9066
|
-
"name": "theme",
|
|
9042
|
+
"name": "required",
|
|
9067
9043
|
"type": {
|
|
9068
|
-
"text": "
|
|
9044
|
+
"text": "boolean"
|
|
9069
9045
|
},
|
|
9070
|
-
"default": "
|
|
9071
|
-
"description": "Specify
|
|
9046
|
+
"default": "false",
|
|
9047
|
+
"description": "Specify if TextArea is a required input",
|
|
9048
|
+
"fieldName": "required"
|
|
9072
9049
|
},
|
|
9073
9050
|
{
|
|
9074
|
-
"
|
|
9075
|
-
"name": "textPosition",
|
|
9051
|
+
"name": "hideRequiredMarker",
|
|
9076
9052
|
"type": {
|
|
9077
|
-
"text": "
|
|
9053
|
+
"text": "boolean"
|
|
9078
9054
|
},
|
|
9079
|
-
"default": "
|
|
9080
|
-
"description": "Specify the
|
|
9081
|
-
"
|
|
9055
|
+
"default": "false",
|
|
9056
|
+
"description": "Specify if the TextArea displays with an asterisk",
|
|
9057
|
+
"fieldName": "hideRequiredMarker"
|
|
9058
|
+
},
|
|
9059
|
+
{
|
|
9060
|
+
"name": "error",
|
|
9061
|
+
"type": {
|
|
9062
|
+
"text": "string | undefined"
|
|
9063
|
+
},
|
|
9064
|
+
"description": "Specify error text and display error state of a TextArea",
|
|
9065
|
+
"fieldName": "error"
|
|
9082
9066
|
},
|
|
9083
9067
|
{
|
|
9084
|
-
"kind": "field",
|
|
9085
9068
|
"name": "readOnly",
|
|
9086
9069
|
"type": {
|
|
9087
9070
|
"text": "boolean"
|
|
9088
9071
|
},
|
|
9089
9072
|
"default": "false",
|
|
9090
|
-
"description": "Specify if
|
|
9091
|
-
"
|
|
9073
|
+
"description": "Specify if TextArea displays in a read-only state",
|
|
9074
|
+
"fieldName": "readOnly"
|
|
9092
9075
|
},
|
|
9093
9076
|
{
|
|
9094
|
-
"kind": "field",
|
|
9095
9077
|
"name": "disabled",
|
|
9096
9078
|
"type": {
|
|
9097
9079
|
"text": "boolean"
|
|
9098
9080
|
},
|
|
9099
9081
|
"default": "false",
|
|
9100
|
-
"description": "Specify if
|
|
9101
|
-
"
|
|
9082
|
+
"description": "Specify if TextArea displays in a disabled state",
|
|
9083
|
+
"fieldName": "disabled"
|
|
9102
9084
|
},
|
|
9103
9085
|
{
|
|
9104
|
-
"
|
|
9105
|
-
"name": "checked",
|
|
9086
|
+
"name": "fluid",
|
|
9106
9087
|
"type": {
|
|
9107
9088
|
"text": "boolean"
|
|
9108
9089
|
},
|
|
9109
9090
|
"default": "false",
|
|
9110
|
-
"
|
|
9091
|
+
"description": "Specify if TextArea is fluid",
|
|
9092
|
+
"fieldName": "fluid"
|
|
9111
9093
|
},
|
|
9112
9094
|
{
|
|
9113
|
-
"
|
|
9114
|
-
"name": "value",
|
|
9095
|
+
"name": "width",
|
|
9115
9096
|
"type": {
|
|
9116
9097
|
"text": "string | undefined"
|
|
9117
9098
|
},
|
|
9118
|
-
"description": "
|
|
9119
|
-
"
|
|
9099
|
+
"description": "Specify the width of TextArea",
|
|
9100
|
+
"fieldName": "width"
|
|
9120
9101
|
},
|
|
9121
9102
|
{
|
|
9122
|
-
"
|
|
9123
|
-
"name": "switchRef"
|
|
9124
|
-
}
|
|
9125
|
-
],
|
|
9126
|
-
"attributes": [
|
|
9127
|
-
{
|
|
9128
|
-
"name": "onText",
|
|
9103
|
+
"name": "hideResize",
|
|
9129
9104
|
"type": {
|
|
9130
|
-
"text": "
|
|
9105
|
+
"text": "boolean"
|
|
9131
9106
|
},
|
|
9132
|
-
"default": "
|
|
9133
|
-
"description": "Specify
|
|
9134
|
-
"fieldName": "
|
|
9107
|
+
"default": "false",
|
|
9108
|
+
"description": "Specify if TextArea can be manually resized",
|
|
9109
|
+
"fieldName": "hideResize"
|
|
9135
9110
|
},
|
|
9136
9111
|
{
|
|
9137
|
-
"name": "
|
|
9112
|
+
"name": "maxCount",
|
|
9138
9113
|
"type": {
|
|
9139
|
-
"text": "
|
|
9114
|
+
"text": "number | undefined"
|
|
9140
9115
|
},
|
|
9141
|
-
"
|
|
9142
|
-
"
|
|
9143
|
-
"fieldName": "offText"
|
|
9116
|
+
"description": "Specify the maximum character count for the TextArea",
|
|
9117
|
+
"fieldName": "maxCount"
|
|
9144
9118
|
},
|
|
9145
9119
|
{
|
|
9146
|
-
"name": "
|
|
9120
|
+
"name": "autoResize",
|
|
9147
9121
|
"type": {
|
|
9148
|
-
"text": "
|
|
9122
|
+
"text": "boolean"
|
|
9149
9123
|
},
|
|
9150
|
-
"default": "
|
|
9151
|
-
"description": "Specify the
|
|
9152
|
-
"fieldName": "
|
|
9124
|
+
"default": "false",
|
|
9125
|
+
"description": "Specify if the TextArea automatically resizes to fit the text",
|
|
9126
|
+
"fieldName": "autoResize"
|
|
9153
9127
|
},
|
|
9154
9128
|
{
|
|
9155
|
-
"name": "
|
|
9129
|
+
"name": "theme",
|
|
9156
9130
|
"type": {
|
|
9157
|
-
"text": "
|
|
9131
|
+
"text": "'light' | 'dark' | undefined"
|
|
9158
9132
|
},
|
|
9159
|
-
"
|
|
9160
|
-
"
|
|
9161
|
-
"fieldName": "readOnly"
|
|
9133
|
+
"description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
|
|
9134
|
+
"fieldName": "theme"
|
|
9162
9135
|
},
|
|
9163
9136
|
{
|
|
9164
|
-
"name": "
|
|
9137
|
+
"name": "id",
|
|
9165
9138
|
"type": {
|
|
9166
|
-
"text": "
|
|
9139
|
+
"text": "string"
|
|
9167
9140
|
},
|
|
9168
|
-
"default": "
|
|
9169
|
-
"
|
|
9170
|
-
"
|
|
9141
|
+
"default": "''",
|
|
9142
|
+
"fieldName": "id",
|
|
9143
|
+
"inheritedFrom": {
|
|
9144
|
+
"name": "FormField",
|
|
9145
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9146
|
+
}
|
|
9171
9147
|
},
|
|
9172
9148
|
{
|
|
9173
|
-
"name": "
|
|
9149
|
+
"name": "name",
|
|
9174
9150
|
"type": {
|
|
9175
|
-
"text": "
|
|
9151
|
+
"text": "string"
|
|
9176
9152
|
},
|
|
9177
|
-
"default": "
|
|
9178
|
-
"fieldName": "
|
|
9153
|
+
"default": "''",
|
|
9154
|
+
"fieldName": "name",
|
|
9155
|
+
"inheritedFrom": {
|
|
9156
|
+
"name": "FormField",
|
|
9157
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9158
|
+
}
|
|
9179
9159
|
},
|
|
9180
9160
|
{
|
|
9181
9161
|
"name": "value",
|
|
9162
|
+
"type": {
|
|
9163
|
+
"text": "string"
|
|
9164
|
+
},
|
|
9165
|
+
"default": "''",
|
|
9166
|
+
"fieldName": "value",
|
|
9167
|
+
"inheritedFrom": {
|
|
9168
|
+
"name": "FormField",
|
|
9169
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9170
|
+
}
|
|
9171
|
+
},
|
|
9172
|
+
{
|
|
9173
|
+
"name": "validationRules",
|
|
9174
|
+
"type": {
|
|
9175
|
+
"text": "Array<FormValidator>"
|
|
9176
|
+
},
|
|
9177
|
+
"default": "[]",
|
|
9178
|
+
"fieldName": "validationRules",
|
|
9179
|
+
"inheritedFrom": {
|
|
9180
|
+
"name": "FormField",
|
|
9181
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9182
|
+
}
|
|
9183
|
+
},
|
|
9184
|
+
{
|
|
9185
|
+
"name": "input-aria-label",
|
|
9182
9186
|
"type": {
|
|
9183
9187
|
"text": "string | undefined"
|
|
9184
9188
|
},
|
|
9185
|
-
"
|
|
9186
|
-
"
|
|
9189
|
+
"fieldName": "inputAriaLabel",
|
|
9190
|
+
"inheritedFrom": {
|
|
9191
|
+
"name": "FormField",
|
|
9192
|
+
"module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
|
|
9193
|
+
}
|
|
9187
9194
|
}
|
|
9188
9195
|
],
|
|
9189
9196
|
"superclass": {
|
|
9190
|
-
"name": "
|
|
9191
|
-
"
|
|
9197
|
+
"name": "FormField",
|
|
9198
|
+
"module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
|
|
9192
9199
|
},
|
|
9193
|
-
"
|
|
9200
|
+
"summary": "`bm-text-area`",
|
|
9201
|
+
"tagName": "bm-text-area",
|
|
9194
9202
|
"customElement": true
|
|
9195
9203
|
}
|
|
9196
9204
|
],
|
|
9197
9205
|
"exports": [
|
|
9198
9206
|
{
|
|
9199
9207
|
"kind": "js",
|
|
9200
|
-
"name": "
|
|
9208
|
+
"name": "BmTextArea",
|
|
9201
9209
|
"declaration": {
|
|
9202
|
-
"name": "
|
|
9203
|
-
"module": "libs/web-components/src/lib/wip/
|
|
9210
|
+
"name": "BmTextArea",
|
|
9211
|
+
"module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
|
|
9204
9212
|
}
|
|
9205
9213
|
},
|
|
9206
9214
|
{
|
|
9207
9215
|
"kind": "custom-element-definition",
|
|
9208
|
-
"name": "bm-
|
|
9216
|
+
"name": "bm-text-area",
|
|
9209
9217
|
"declaration": {
|
|
9210
|
-
"name": "
|
|
9211
|
-
"module": "libs/web-components/src/lib/wip/
|
|
9218
|
+
"name": "BmTextArea",
|
|
9219
|
+
"module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
|
|
9212
9220
|
}
|
|
9213
9221
|
}
|
|
9214
9222
|
]
|
|
9215
9223
|
},
|
|
9216
9224
|
{
|
|
9217
9225
|
"kind": "javascript-module",
|
|
9218
|
-
"path": "libs/web-components/src/lib/wip/
|
|
9226
|
+
"path": "libs/web-components/src/lib/wip/TextArea/index.ts",
|
|
9219
9227
|
"declarations": [],
|
|
9220
9228
|
"exports": [
|
|
9221
9229
|
{
|
|
@@ -9223,15 +9231,7 @@
|
|
|
9223
9231
|
"name": "*",
|
|
9224
9232
|
"declaration": {
|
|
9225
9233
|
"name": "*",
|
|
9226
|
-
"package": "./
|
|
9227
|
-
}
|
|
9228
|
-
},
|
|
9229
|
-
{
|
|
9230
|
-
"kind": "js",
|
|
9231
|
-
"name": "*",
|
|
9232
|
-
"declaration": {
|
|
9233
|
-
"name": "*",
|
|
9234
|
-
"package": "./SwitchGroup/SwitchGroup"
|
|
9234
|
+
"package": "./TextArea"
|
|
9235
9235
|
}
|
|
9236
9236
|
}
|
|
9237
9237
|
]
|