@viasat/beam-web-components 2.15.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.
@@ -686,147 +686,273 @@
686
686
  },
687
687
  {
688
688
  "kind": "javascript-module",
689
- "path": "libs/web-components/src/lib/Badge/Badge.ts",
689
+ "path": "libs/web-components/src/lib/Alert/Alert.ts",
690
690
  "declarations": [
691
691
  {
692
692
  "kind": "class",
693
- "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",
694
- "name": "BmBadge",
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": "Provide text for the Badge",
698
- "name": "default"
697
+ "description": "Specify a different icon for the Alert",
698
+ "name": "icon"
699
699
  },
700
700
  {
701
- "description": "Specify a different icon for the Badge",
702
- "name": "icon"
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"
703
711
  }
704
712
  ],
705
713
  "members": [
706
714
  {
707
715
  "kind": "field",
708
- "name": "appearance",
716
+ "name": "heading",
709
717
  "type": {
710
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
718
+ "text": "string | undefined"
711
719
  },
712
- "default": "'infoPrimary'",
713
- "description": "Specify the appearance of the Badge",
714
- "attribute": "appearance"
720
+ "description": "Specify the heading text for Alert",
721
+ "attribute": "heading"
715
722
  },
716
723
  {
717
724
  "kind": "field",
718
- "name": "theme",
725
+ "name": "body",
719
726
  "type": {
720
- "text": "'light' | 'dark' | undefined"
727
+ "text": "string | undefined"
721
728
  },
722
- "description": "Theme of the Badge",
723
- "attribute": "theme"
729
+ "description": "Specify the body text for Alert",
730
+ "attribute": "body"
724
731
  },
725
732
  {
726
733
  "kind": "field",
727
734
  "name": "size",
728
735
  "type": {
729
- "text": "'sm' | 'md' | undefined"
736
+ "text": "'sm' | 'md'"
730
737
  },
731
738
  "default": "'sm'",
732
- "description": "Specify the size of the Badge",
739
+ "description": "Specify the size of the Alert",
733
740
  "attribute": "size"
734
741
  },
735
742
  {
736
743
  "kind": "field",
737
- "name": "emphasis",
744
+ "name": "fullWidth",
738
745
  "type": {
739
- "text": "'strong' | 'medium' | 'subtle'"
746
+ "text": "boolean"
740
747
  },
741
- "default": "'strong'",
742
- "description": "Specify the emphasis of the Badge",
743
- "attribute": "emphasis"
748
+ "default": "false",
749
+ "description": "Specify if the Alert has no border radius",
750
+ "attribute": "fullWidth"
751
+ },
752
+ {
753
+ "kind": "field",
754
+ "name": "theme",
755
+ "type": {
756
+ "text": "'light' | 'dark' | undefined"
757
+ },
758
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
759
+ "attribute": "theme"
760
+ },
761
+ {
762
+ "kind": "field",
763
+ "name": "appearance",
764
+ "type": {
765
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
766
+ },
767
+ "default": "'infoPrimary'",
768
+ "description": "Specify the appearance of the Alert",
769
+ "attribute": "appearance"
770
+ },
771
+ {
772
+ "kind": "field",
773
+ "name": "hidden",
774
+ "type": {
775
+ "text": "boolean"
776
+ },
777
+ "default": "false",
778
+ "description": "Specify if the Alert is hidden",
779
+ "attribute": "hidden"
744
780
  },
745
781
  {
746
782
  "kind": "field",
747
783
  "name": "hideIcon",
748
784
  "type": {
749
- "text": "boolean | undefined"
785
+ "text": "boolean"
750
786
  },
751
- "description": "Hides Badge icon",
787
+ "default": "false",
788
+ "description": "Specify if the icon displays on the Alert",
752
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"
753
826
  }
754
827
  ],
755
828
  "attributes": [
756
829
  {
757
- "name": "appearance",
830
+ "name": "heading",
758
831
  "type": {
759
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
832
+ "text": "string | undefined"
760
833
  },
761
- "default": "'infoPrimary'",
762
- "description": "Specify the appearance of the Badge",
763
- "fieldName": "appearance"
834
+ "description": "Specify the heading text for Alert",
835
+ "fieldName": "heading"
764
836
  },
765
837
  {
766
- "name": "theme",
838
+ "name": "body",
767
839
  "type": {
768
- "text": "'light' | 'dark' | undefined"
840
+ "text": "string | undefined"
769
841
  },
770
- "description": "Theme of the Badge",
771
- "fieldName": "theme"
842
+ "description": "Specify the body text for Alert",
843
+ "fieldName": "body"
772
844
  },
773
845
  {
774
846
  "name": "size",
775
847
  "type": {
776
- "text": "'sm' | 'md' | undefined"
848
+ "text": "'sm' | 'md'"
777
849
  },
778
850
  "default": "'sm'",
779
- "description": "Specify the size of the Badge",
851
+ "description": "Specify the size of the Alert",
780
852
  "fieldName": "size"
781
853
  },
782
854
  {
783
- "name": "emphasis",
855
+ "name": "fullWidth",
784
856
  "type": {
785
- "text": "'strong' | 'medium' | 'subtle'"
857
+ "text": "boolean"
786
858
  },
787
- "default": "'strong'",
788
- "description": "Specify the emphasis of the Badge",
789
- "fieldName": "emphasis"
859
+ "default": "false",
860
+ "description": "Specify if the Alert has no border radius",
861
+ "fieldName": "fullWidth"
862
+ },
863
+ {
864
+ "name": "theme",
865
+ "type": {
866
+ "text": "'light' | 'dark' | undefined"
867
+ },
868
+ "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
869
+ "fieldName": "theme"
870
+ },
871
+ {
872
+ "name": "appearance",
873
+ "type": {
874
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
875
+ },
876
+ "default": "'infoPrimary'",
877
+ "description": "Specify the appearance of the Alert",
878
+ "fieldName": "appearance"
879
+ },
880
+ {
881
+ "name": "hidden",
882
+ "type": {
883
+ "text": "boolean"
884
+ },
885
+ "default": "false",
886
+ "description": "Specify if the Alert is hidden",
887
+ "fieldName": "hidden"
790
888
  },
791
889
  {
792
890
  "name": "hideIcon",
793
891
  "type": {
794
- "text": "boolean | undefined"
892
+ "text": "boolean"
795
893
  },
796
- "description": "Hides Badge icon",
894
+ "default": "false",
895
+ "description": "Specify if the icon displays on the Alert",
797
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"
798
924
  }
799
925
  ],
800
926
  "superclass": {
801
927
  "name": "LitElement",
802
928
  "package": "lit"
803
929
  },
804
- "tagName": "bm-badge",
930
+ "tagName": "bm-alert",
805
931
  "customElement": true
806
932
  }
807
933
  ],
808
934
  "exports": [
809
935
  {
810
936
  "kind": "js",
811
- "name": "BmBadge",
937
+ "name": "BmAlert",
812
938
  "declaration": {
813
- "name": "BmBadge",
814
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
939
+ "name": "BmAlert",
940
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
815
941
  }
816
942
  },
817
943
  {
818
944
  "kind": "custom-element-definition",
819
- "name": "bm-badge",
945
+ "name": "bm-alert",
820
946
  "declaration": {
821
- "name": "BmBadge",
822
- "module": "libs/web-components/src/lib/Badge/Badge.ts"
947
+ "name": "BmAlert",
948
+ "module": "libs/web-components/src/lib/Alert/Alert.ts"
823
949
  }
824
950
  }
825
951
  ]
826
952
  },
827
953
  {
828
954
  "kind": "javascript-module",
829
- "path": "libs/web-components/src/lib/Badge/index.ts",
955
+ "path": "libs/web-components/src/lib/Alert/index.ts",
830
956
  "declarations": [],
831
957
  "exports": [
832
958
  {
@@ -834,35 +960,30 @@
834
960
  "name": "*",
835
961
  "declaration": {
836
962
  "name": "*",
837
- "package": "./Badge"
963
+ "package": "./Alert"
838
964
  }
839
965
  }
840
966
  ]
841
967
  },
842
968
  {
843
969
  "kind": "javascript-module",
844
- "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
970
+ "path": "libs/web-components/src/lib/Badge/Badge.ts",
845
971
  "declarations": [
846
972
  {
847
973
  "kind": "class",
848
- "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",
849
- "name": "BmBadgeDot",
974
+ "description": "`bm-badge`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Badge\n- **theme** - Theme of the Badge\n- **size** - Specify the size of the Badge\n- **emphasis** - Specify the emphasis of the Badge\n- **hideIcon** - Hides Badge icon",
975
+ "name": "BmBadge",
850
976
  "slots": [
851
977
  {
852
- "description": "Provide text for the BadgeDot",
978
+ "description": "Provide text for the Badge",
853
979
  "name": "default"
980
+ },
981
+ {
982
+ "description": "Specify a different icon for the Badge",
983
+ "name": "icon"
854
984
  }
855
985
  ],
856
986
  "members": [
857
- {
858
- "kind": "field",
859
- "name": "theme",
860
- "type": {
861
- "text": "'light' | 'dark' | undefined"
862
- },
863
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
864
- "attribute": "theme"
865
- },
866
987
  {
867
988
  "kind": "field",
868
989
  "name": "appearance",
@@ -870,95 +991,123 @@
870
991
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
871
992
  },
872
993
  "default": "'infoPrimary'",
873
- "description": "Specify the appearance of the BadgeDot",
994
+ "description": "Specify the appearance of the Badge",
874
995
  "attribute": "appearance"
875
996
  },
876
997
  {
877
998
  "kind": "field",
878
- "name": "emphasis",
999
+ "name": "theme",
879
1000
  "type": {
880
- "text": "'strong' | 'subtle'"
1001
+ "text": "'light' | 'dark' | undefined"
1002
+ },
1003
+ "description": "Theme of the Badge",
1004
+ "attribute": "theme"
1005
+ },
1006
+ {
1007
+ "kind": "field",
1008
+ "name": "size",
1009
+ "type": {
1010
+ "text": "'sm' | 'md' | undefined"
1011
+ },
1012
+ "default": "'sm'",
1013
+ "description": "Specify the size of the Badge",
1014
+ "attribute": "size"
1015
+ },
1016
+ {
1017
+ "kind": "field",
1018
+ "name": "emphasis",
1019
+ "type": {
1020
+ "text": "'strong' | 'medium' | 'subtle'"
881
1021
  },
882
1022
  "default": "'strong'",
883
- "description": "Specify the emphasis of the BadgeDot",
1023
+ "description": "Specify the emphasis of the Badge",
884
1024
  "attribute": "emphasis"
885
1025
  },
886
1026
  {
887
1027
  "kind": "field",
888
- "name": "overrideDotColor",
1028
+ "name": "hideIcon",
889
1029
  "type": {
890
- "text": "string | undefined"
1030
+ "text": "boolean | undefined"
891
1031
  },
892
- "description": "Overrides default dot color",
893
- "attribute": "overrideDotColor"
1032
+ "description": "Hides Badge icon",
1033
+ "attribute": "hideIcon"
894
1034
  }
895
1035
  ],
896
1036
  "attributes": [
1037
+ {
1038
+ "name": "appearance",
1039
+ "type": {
1040
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1041
+ },
1042
+ "default": "'infoPrimary'",
1043
+ "description": "Specify the appearance of the Badge",
1044
+ "fieldName": "appearance"
1045
+ },
897
1046
  {
898
1047
  "name": "theme",
899
1048
  "type": {
900
1049
  "text": "'light' | 'dark' | undefined"
901
1050
  },
902
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1051
+ "description": "Theme of the Badge",
903
1052
  "fieldName": "theme"
904
1053
  },
905
1054
  {
906
- "name": "appearance",
1055
+ "name": "size",
907
1056
  "type": {
908
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1057
+ "text": "'sm' | 'md' | undefined"
909
1058
  },
910
- "default": "'infoPrimary'",
911
- "description": "Specify the appearance of the BadgeDot",
912
- "fieldName": "appearance"
1059
+ "default": "'sm'",
1060
+ "description": "Specify the size of the Badge",
1061
+ "fieldName": "size"
913
1062
  },
914
1063
  {
915
1064
  "name": "emphasis",
916
1065
  "type": {
917
- "text": "'strong' | 'subtle'"
1066
+ "text": "'strong' | 'medium' | 'subtle'"
918
1067
  },
919
1068
  "default": "'strong'",
920
- "description": "Specify the emphasis of the BadgeDot",
1069
+ "description": "Specify the emphasis of the Badge",
921
1070
  "fieldName": "emphasis"
922
1071
  },
923
1072
  {
924
- "name": "overrideDotColor",
1073
+ "name": "hideIcon",
925
1074
  "type": {
926
- "text": "string | undefined"
1075
+ "text": "boolean | undefined"
927
1076
  },
928
- "description": "Overrides default dot color",
929
- "fieldName": "overrideDotColor"
1077
+ "description": "Hides Badge icon",
1078
+ "fieldName": "hideIcon"
930
1079
  }
931
1080
  ],
932
1081
  "superclass": {
933
1082
  "name": "LitElement",
934
1083
  "package": "lit"
935
1084
  },
936
- "tagName": "bm-badge-dot",
1085
+ "tagName": "bm-badge",
937
1086
  "customElement": true
938
1087
  }
939
1088
  ],
940
1089
  "exports": [
941
1090
  {
942
1091
  "kind": "js",
943
- "name": "BmBadgeDot",
1092
+ "name": "BmBadge",
944
1093
  "declaration": {
945
- "name": "BmBadgeDot",
946
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1094
+ "name": "BmBadge",
1095
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
947
1096
  }
948
1097
  },
949
1098
  {
950
1099
  "kind": "custom-element-definition",
951
- "name": "bm-badge-dot",
1100
+ "name": "bm-badge",
952
1101
  "declaration": {
953
- "name": "BmBadgeDot",
954
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1102
+ "name": "BmBadge",
1103
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
955
1104
  }
956
1105
  }
957
1106
  ]
958
1107
  },
959
1108
  {
960
1109
  "kind": "javascript-module",
961
- "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1110
+ "path": "libs/web-components/src/lib/Badge/index.ts",
962
1111
  "declarations": [],
963
1112
  "exports": [
964
1113
  {
@@ -966,450 +1115,169 @@
966
1115
  "name": "*",
967
1116
  "declaration": {
968
1117
  "name": "*",
969
- "package": "./BadgeDot"
1118
+ "package": "./Badge"
970
1119
  }
971
1120
  }
972
1121
  ]
973
1122
  },
974
1123
  {
975
1124
  "kind": "javascript-module",
976
- "path": "libs/web-components/src/lib/Alert/Alert.ts",
1125
+ "path": "libs/web-components/src/lib/Box/Box.ts",
977
1126
  "declarations": [
978
1127
  {
979
1128
  "kind": "class",
980
- "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",
981
- "name": "BmAlert",
1129
+ "description": "`bm-box`\n\n### Attributes:\n- **backgroundColor** - Specify the background color of a Box\n- **borderColor** - Specify the border color of a Box\n- **borderWidth** - Specify the border width of a Box\n- **borderRadius** - Specify the border radius of a Box\n- **px** - Specify before and after padding of a Box\n- **py** - Specify top and bottom padding of a Box\n- **pTop** - Specify top padding of a Box\n- **pBottom** - Specify bottom padding of a Box\n- **pBefore** - Specify before padding of a Box\n- **pAfter** - Specify after padding of a Box\n- **mx** - Specify before and after margin of a Box\n- **my** - Specify top and bottom margin of a Box\n- **mTop** - Specify top margin of a Box\n- **mBottom** - Specify bottom margin of a Box\n- **mBefore** - Specify before margin of a Box\n- **mAfter** - Specify after margin of a Box\n- **m** - Specify all margin\n- **p** - Specify all padding\n- **gap** - Specify gap between child elements\n- **shadow** - Specify if a Box has a shadow",
1130
+ "name": "BmBox",
982
1131
  "slots": [
983
1132
  {
984
- "description": "Specify a different icon for the Alert",
985
- "name": "icon"
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"
1133
+ "description": "Provide content for the Box",
1134
+ "name": "default"
998
1135
  }
999
1136
  ],
1000
1137
  "members": [
1001
1138
  {
1002
1139
  "kind": "field",
1003
- "name": "heading",
1140
+ "name": "backgroundColor",
1004
1141
  "type": {
1005
- "text": "string | undefined"
1142
+ "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
1143
  },
1007
- "description": "Specify the heading text for Alert",
1008
- "attribute": "heading"
1144
+ "description": "Specify the background color of a Box",
1145
+ "attribute": "backgroundColor"
1009
1146
  },
1010
1147
  {
1011
1148
  "kind": "field",
1012
- "name": "body",
1149
+ "name": "borderColor",
1013
1150
  "type": {
1014
- "text": "string | undefined"
1151
+ "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
1152
  },
1016
- "description": "Specify the body text for Alert",
1017
- "attribute": "body"
1153
+ "description": "Specify the border color of a Box",
1154
+ "attribute": "borderColor"
1018
1155
  },
1019
1156
  {
1020
1157
  "kind": "field",
1021
- "name": "size",
1158
+ "name": "borderWidth",
1022
1159
  "type": {
1023
- "text": "'sm' | 'md'"
1160
+ "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1024
1161
  },
1025
- "default": "'sm'",
1026
- "description": "Specify the size of the Alert",
1027
- "attribute": "size"
1162
+ "description": "Specify the border width of a Box",
1163
+ "attribute": "borderWidth"
1028
1164
  },
1029
1165
  {
1030
1166
  "kind": "field",
1031
- "name": "fullWidth",
1167
+ "name": "borderRadius",
1032
1168
  "type": {
1033
- "text": "boolean"
1169
+ "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1034
1170
  },
1035
- "default": "false",
1036
- "description": "Specify if the Alert has no border radius",
1037
- "attribute": "fullWidth"
1171
+ "description": "Specify the border radius of a Box",
1172
+ "attribute": "borderRadius"
1038
1173
  },
1039
1174
  {
1040
1175
  "kind": "field",
1041
- "name": "theme",
1176
+ "name": "px",
1042
1177
  "type": {
1043
- "text": "'light' | 'dark' | undefined"
1178
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1044
1179
  },
1045
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1046
- "attribute": "theme"
1180
+ "description": "Specify before and after padding of a Box",
1181
+ "attribute": "px"
1047
1182
  },
1048
1183
  {
1049
1184
  "kind": "field",
1050
- "name": "appearance",
1185
+ "name": "py",
1051
1186
  "type": {
1052
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1187
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1053
1188
  },
1054
- "default": "'infoPrimary'",
1055
- "description": "Specify the appearance of the Alert",
1056
- "attribute": "appearance"
1189
+ "description": "Specify top and bottom padding of a Box",
1190
+ "attribute": "py"
1057
1191
  },
1058
1192
  {
1059
1193
  "kind": "field",
1060
- "name": "hidden",
1194
+ "name": "pTop",
1061
1195
  "type": {
1062
- "text": "boolean"
1196
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1063
1197
  },
1064
- "default": "false",
1065
- "description": "Specify if the Alert is hidden",
1066
- "attribute": "hidden"
1198
+ "description": "Specify top padding of a Box",
1199
+ "attribute": "pTop"
1067
1200
  },
1068
1201
  {
1069
1202
  "kind": "field",
1070
- "name": "hideIcon",
1203
+ "name": "pBottom",
1071
1204
  "type": {
1072
- "text": "boolean"
1205
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1073
1206
  },
1074
- "default": "false",
1075
- "description": "Specify if the icon displays on the Alert",
1076
- "attribute": "hideIcon"
1207
+ "description": "Specify bottom padding of a Box",
1208
+ "attribute": "pBottom"
1077
1209
  },
1078
1210
  {
1079
1211
  "kind": "field",
1080
- "name": "dismissible",
1212
+ "name": "pBefore",
1081
1213
  "type": {
1082
- "text": "boolean"
1214
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1083
1215
  },
1084
- "default": "false",
1085
- "description": "Specify if the Alert can be dismissed",
1086
- "attribute": "dismissible"
1216
+ "description": "Specify before padding of a Box",
1217
+ "attribute": "pBefore"
1087
1218
  },
1088
1219
  {
1089
1220
  "kind": "field",
1090
- "name": "disableAutoFocus",
1221
+ "name": "pAfter",
1091
1222
  "type": {
1092
- "text": "boolean"
1223
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1093
1224
  },
1094
- "default": "false",
1095
- "description": "Prevent autofocus on show",
1096
- "attribute": "disableAutoFocus"
1225
+ "description": "Specify after padding of a Box",
1226
+ "attribute": "pAfter"
1097
1227
  },
1098
1228
  {
1099
1229
  "kind": "field",
1100
- "name": "disableCloseOnEscape",
1230
+ "name": "mx",
1101
1231
  "type": {
1102
- "text": "boolean"
1232
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1103
1233
  },
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": [
1234
+ "description": "Specify before and after margin of a Box",
1235
+ "attribute": "mx"
1236
+ },
1116
1237
  {
1117
- "name": "heading",
1238
+ "kind": "field",
1239
+ "name": "my",
1118
1240
  "type": {
1119
- "text": "string | undefined"
1241
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1120
1242
  },
1121
- "description": "Specify the heading text for Alert",
1122
- "fieldName": "heading"
1243
+ "description": "Specify top and bottom margin of a Box",
1244
+ "attribute": "my"
1123
1245
  },
1124
1246
  {
1125
- "name": "body",
1247
+ "kind": "field",
1248
+ "name": "mTop",
1126
1249
  "type": {
1127
- "text": "string | undefined"
1250
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1128
1251
  },
1129
- "description": "Specify the body text for Alert",
1130
- "fieldName": "body"
1252
+ "description": "Specify top margin of a Box",
1253
+ "attribute": "mTop"
1131
1254
  },
1132
1255
  {
1133
- "name": "size",
1256
+ "kind": "field",
1257
+ "name": "mBottom",
1134
1258
  "type": {
1135
- "text": "'sm' | 'md'"
1259
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1136
1260
  },
1137
- "default": "'sm'",
1138
- "description": "Specify the size of the Alert",
1139
- "fieldName": "size"
1261
+ "description": "Specify bottom margin of a Box",
1262
+ "attribute": "mBottom"
1140
1263
  },
1141
1264
  {
1142
- "name": "fullWidth",
1265
+ "kind": "field",
1266
+ "name": "mBefore",
1143
1267
  "type": {
1144
- "text": "boolean"
1268
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1145
1269
  },
1146
- "default": "false",
1147
- "description": "Specify if the Alert has no border radius",
1148
- "fieldName": "fullWidth"
1270
+ "description": "Specify before margin of a Box",
1271
+ "attribute": "mBefore"
1149
1272
  },
1150
1273
  {
1151
- "name": "theme",
1274
+ "kind": "field",
1275
+ "name": "mAfter",
1152
1276
  "type": {
1153
- "text": "'light' | 'dark' | undefined"
1277
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1154
1278
  },
1155
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1156
- "fieldName": "theme"
1157
- },
1158
- {
1159
- "name": "appearance",
1160
- "type": {
1161
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1162
- },
1163
- "default": "'infoPrimary'",
1164
- "description": "Specify the appearance of the Alert",
1165
- "fieldName": "appearance"
1166
- },
1167
- {
1168
- "name": "hidden",
1169
- "type": {
1170
- "text": "boolean"
1171
- },
1172
- "default": "false",
1173
- "description": "Specify if the Alert is hidden",
1174
- "fieldName": "hidden"
1175
- },
1176
- {
1177
- "name": "hideIcon",
1178
- "type": {
1179
- "text": "boolean"
1180
- },
1181
- "default": "false",
1182
- "description": "Specify if the icon displays on the Alert",
1183
- "fieldName": "hideIcon"
1184
- },
1185
- {
1186
- "name": "dismissible",
1187
- "type": {
1188
- "text": "boolean"
1189
- },
1190
- "default": "false",
1191
- "description": "Specify if the Alert can be dismissed",
1192
- "fieldName": "dismissible"
1193
- },
1194
- {
1195
- "name": "disableAutoFocus",
1196
- "type": {
1197
- "text": "boolean"
1198
- },
1199
- "default": "false",
1200
- "description": "Prevent autofocus on show",
1201
- "fieldName": "disableAutoFocus"
1202
- },
1203
- {
1204
- "name": "disableCloseOnEscape",
1205
- "type": {
1206
- "text": "boolean"
1207
- },
1208
- "default": "false",
1209
- "description": "Prevent Escape from closing",
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"
1267
- }
1268
- ],
1269
- "members": [
1270
- {
1271
- "kind": "field",
1272
- "name": "backgroundColor",
1273
- "type": {
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"
1275
- },
1276
- "description": "Specify the background color of a Box",
1277
- "attribute": "backgroundColor"
1278
- },
1279
- {
1280
- "kind": "field",
1281
- "name": "borderColor",
1282
- "type": {
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"
1284
- },
1285
- "description": "Specify the border color of a Box",
1286
- "attribute": "borderColor"
1287
- },
1288
- {
1289
- "kind": "field",
1290
- "name": "borderWidth",
1291
- "type": {
1292
- "text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
1293
- },
1294
- "description": "Specify the border width of a Box",
1295
- "attribute": "borderWidth"
1296
- },
1297
- {
1298
- "kind": "field",
1299
- "name": "borderRadius",
1300
- "type": {
1301
- "text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
1302
- },
1303
- "description": "Specify the border radius of a Box",
1304
- "attribute": "borderRadius"
1305
- },
1306
- {
1307
- "kind": "field",
1308
- "name": "px",
1309
- "type": {
1310
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1311
- },
1312
- "description": "Specify before and after padding of a Box",
1313
- "attribute": "px"
1314
- },
1315
- {
1316
- "kind": "field",
1317
- "name": "py",
1318
- "type": {
1319
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1320
- },
1321
- "description": "Specify top and bottom padding of a Box",
1322
- "attribute": "py"
1323
- },
1324
- {
1325
- "kind": "field",
1326
- "name": "pTop",
1327
- "type": {
1328
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1329
- },
1330
- "description": "Specify top padding of a Box",
1331
- "attribute": "pTop"
1332
- },
1333
- {
1334
- "kind": "field",
1335
- "name": "pBottom",
1336
- "type": {
1337
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1338
- },
1339
- "description": "Specify bottom padding of a Box",
1340
- "attribute": "pBottom"
1341
- },
1342
- {
1343
- "kind": "field",
1344
- "name": "pBefore",
1345
- "type": {
1346
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1347
- },
1348
- "description": "Specify before padding of a Box",
1349
- "attribute": "pBefore"
1350
- },
1351
- {
1352
- "kind": "field",
1353
- "name": "pAfter",
1354
- "type": {
1355
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1356
- },
1357
- "description": "Specify after padding of a Box",
1358
- "attribute": "pAfter"
1359
- },
1360
- {
1361
- "kind": "field",
1362
- "name": "mx",
1363
- "type": {
1364
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1365
- },
1366
- "description": "Specify before and after margin of a Box",
1367
- "attribute": "mx"
1368
- },
1369
- {
1370
- "kind": "field",
1371
- "name": "my",
1372
- "type": {
1373
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1374
- },
1375
- "description": "Specify top and bottom margin of a Box",
1376
- "attribute": "my"
1377
- },
1378
- {
1379
- "kind": "field",
1380
- "name": "mTop",
1381
- "type": {
1382
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1383
- },
1384
- "description": "Specify top margin of a Box",
1385
- "attribute": "mTop"
1386
- },
1387
- {
1388
- "kind": "field",
1389
- "name": "mBottom",
1390
- "type": {
1391
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1392
- },
1393
- "description": "Specify bottom margin of a Box",
1394
- "attribute": "mBottom"
1395
- },
1396
- {
1397
- "kind": "field",
1398
- "name": "mBefore",
1399
- "type": {
1400
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1401
- },
1402
- "description": "Specify before margin of a Box",
1403
- "attribute": "mBefore"
1404
- },
1405
- {
1406
- "kind": "field",
1407
- "name": "mAfter",
1408
- "type": {
1409
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1410
- },
1411
- "description": "Specify after margin of a Box",
1412
- "attribute": "mAfter"
1279
+ "description": "Specify after margin of a Box",
1280
+ "attribute": "mAfter"
1413
1281
  },
1414
1282
  {
1415
1283
  "kind": "field",
@@ -1652,6 +1520,138 @@
1652
1520
  }
1653
1521
  ]
1654
1522
  },
1523
+ {
1524
+ "kind": "javascript-module",
1525
+ "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
1526
+ "declarations": [
1527
+ {
1528
+ "kind": "class",
1529
+ "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
1530
+ "name": "BmBadgeDot",
1531
+ "slots": [
1532
+ {
1533
+ "description": "Provide text for the BadgeDot",
1534
+ "name": "default"
1535
+ }
1536
+ ],
1537
+ "members": [
1538
+ {
1539
+ "kind": "field",
1540
+ "name": "theme",
1541
+ "type": {
1542
+ "text": "'light' | 'dark' | undefined"
1543
+ },
1544
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1545
+ "attribute": "theme"
1546
+ },
1547
+ {
1548
+ "kind": "field",
1549
+ "name": "appearance",
1550
+ "type": {
1551
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1552
+ },
1553
+ "default": "'infoPrimary'",
1554
+ "description": "Specify the appearance of the BadgeDot",
1555
+ "attribute": "appearance"
1556
+ },
1557
+ {
1558
+ "kind": "field",
1559
+ "name": "emphasis",
1560
+ "type": {
1561
+ "text": "'strong' | 'subtle'"
1562
+ },
1563
+ "default": "'strong'",
1564
+ "description": "Specify the emphasis of the BadgeDot",
1565
+ "attribute": "emphasis"
1566
+ },
1567
+ {
1568
+ "kind": "field",
1569
+ "name": "overrideDotColor",
1570
+ "type": {
1571
+ "text": "string | undefined"
1572
+ },
1573
+ "description": "Overrides default dot color",
1574
+ "attribute": "overrideDotColor"
1575
+ }
1576
+ ],
1577
+ "attributes": [
1578
+ {
1579
+ "name": "theme",
1580
+ "type": {
1581
+ "text": "'light' | 'dark' | undefined"
1582
+ },
1583
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1584
+ "fieldName": "theme"
1585
+ },
1586
+ {
1587
+ "name": "appearance",
1588
+ "type": {
1589
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1590
+ },
1591
+ "default": "'infoPrimary'",
1592
+ "description": "Specify the appearance of the BadgeDot",
1593
+ "fieldName": "appearance"
1594
+ },
1595
+ {
1596
+ "name": "emphasis",
1597
+ "type": {
1598
+ "text": "'strong' | 'subtle'"
1599
+ },
1600
+ "default": "'strong'",
1601
+ "description": "Specify the emphasis of the BadgeDot",
1602
+ "fieldName": "emphasis"
1603
+ },
1604
+ {
1605
+ "name": "overrideDotColor",
1606
+ "type": {
1607
+ "text": "string | undefined"
1608
+ },
1609
+ "description": "Overrides default dot color",
1610
+ "fieldName": "overrideDotColor"
1611
+ }
1612
+ ],
1613
+ "superclass": {
1614
+ "name": "LitElement",
1615
+ "package": "lit"
1616
+ },
1617
+ "tagName": "bm-badge-dot",
1618
+ "customElement": true
1619
+ }
1620
+ ],
1621
+ "exports": [
1622
+ {
1623
+ "kind": "js",
1624
+ "name": "BmBadgeDot",
1625
+ "declaration": {
1626
+ "name": "BmBadgeDot",
1627
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1628
+ }
1629
+ },
1630
+ {
1631
+ "kind": "custom-element-definition",
1632
+ "name": "bm-badge-dot",
1633
+ "declaration": {
1634
+ "name": "BmBadgeDot",
1635
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1636
+ }
1637
+ }
1638
+ ]
1639
+ },
1640
+ {
1641
+ "kind": "javascript-module",
1642
+ "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1643
+ "declarations": [],
1644
+ "exports": [
1645
+ {
1646
+ "kind": "js",
1647
+ "name": "*",
1648
+ "declaration": {
1649
+ "name": "*",
1650
+ "package": "./BadgeDot"
1651
+ }
1652
+ }
1653
+ ]
1654
+ },
1655
1655
  {
1656
1656
  "kind": "javascript-module",
1657
1657
  "path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
@@ -8287,88 +8287,66 @@
8287
8287
  },
8288
8288
  {
8289
8289
  "kind": "javascript-module",
8290
- "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
8290
+ "path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
8291
8291
  "declarations": [
8292
8292
  {
8293
8293
  "kind": "class",
8294
- "description": "`bm-switch`\n\n### Attributes:\n- **onText** - Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.\n- **offText** - Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.\n- **textPosition** - Specify the position of the side label\n- **readOnly** - Specify if Switch displays in a read-only state\n- **disabled** - Specify if Switch displays in a disabled state\n- **checked** \n- **value** - The value attribute for the input element",
8295
- "name": "BmSwitch",
8296
- "slots": [
8297
- {
8298
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8299
- "name": "onText"
8300
- },
8301
- {
8302
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8303
- "name": "offText"
8304
- }
8305
- ],
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": "inputChoiceGroupContext",
8310
- "type": {
8311
- "text": "InputChoiceGroupContextProps"
8312
- }
8313
- },
8314
- {
8315
- "kind": "field",
8316
- "name": "onText",
8299
+ "name": "label",
8317
8300
  "type": {
8318
8301
  "text": "string | undefined"
8319
8302
  },
8320
- "default": "undefined",
8321
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8322
- "attribute": "onText"
8303
+ "description": "Specify the text for the label",
8304
+ "attribute": "label"
8323
8305
  },
8324
8306
  {
8325
8307
  "kind": "field",
8326
- "name": "offText",
8308
+ "name": "error",
8327
8309
  "type": {
8328
- "text": "string | undefined"
8310
+ "text": "boolean | undefined"
8329
8311
  },
8330
- "default": "undefined",
8331
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8332
- "attribute": "offText"
8312
+ "description": "Specify error text and display error state of a RadioButton",
8313
+ "attribute": "error"
8333
8314
  },
8334
8315
  {
8335
8316
  "kind": "field",
8336
- "name": "theme",
8317
+ "name": "readOnly",
8337
8318
  "type": {
8338
- "text": "ThemeTypes | undefined"
8319
+ "text": "boolean | undefined"
8339
8320
  },
8340
- "default": "undefined",
8341
- "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
8321
+ "description": "Specify if RadioButton displays in a read-only state",
8322
+ "attribute": "readOnly"
8342
8323
  },
8343
8324
  {
8344
8325
  "kind": "field",
8345
- "name": "textPosition",
8326
+ "name": "disabled",
8346
8327
  "type": {
8347
- "text": "'before' | 'after'"
8328
+ "text": "boolean | undefined"
8348
8329
  },
8349
- "default": "'after'",
8350
- "description": "Specify the position of the side label",
8351
- "attribute": "textPosition"
8330
+ "description": "Specify if RadioButton displays in a disabled state",
8331
+ "attribute": "disabled"
8352
8332
  },
8353
8333
  {
8354
8334
  "kind": "field",
8355
- "name": "readOnly",
8335
+ "name": "theme",
8356
8336
  "type": {
8357
- "text": "boolean"
8337
+ "text": "'light' | 'dark' | undefined"
8358
8338
  },
8359
- "default": "false",
8360
- "description": "Specify if Switch displays in a read-only state",
8361
- "attribute": "readOnly"
8339
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8340
+ "attribute": "theme"
8362
8341
  },
8363
8342
  {
8364
8343
  "kind": "field",
8365
- "name": "disabled",
8344
+ "name": "value",
8366
8345
  "type": {
8367
- "text": "boolean"
8346
+ "text": "string | undefined"
8368
8347
  },
8369
- "default": "false",
8370
- "description": "Specify if Switch displays in a disabled state",
8371
- "attribute": "disabled"
8348
+ "description": "The value attribute for the input element",
8349
+ "attribute": "value"
8372
8350
  },
8373
8351
  {
8374
8352
  "kind": "field",
@@ -8377,67 +8355,82 @@
8377
8355
  "text": "boolean"
8378
8356
  },
8379
8357
  "default": "false",
8358
+ "description": "The checked attribute for the input element",
8380
8359
  "attribute": "checked"
8381
8360
  },
8382
8361
  {
8383
8362
  "kind": "field",
8384
- "name": "value",
8363
+ "name": "onKeyDown",
8385
8364
  "type": {
8386
- "text": "string | undefined"
8365
+ "text": "(event: KeyboardEvent) => void | undefined"
8387
8366
  },
8388
- "description": "The value attribute for the input element",
8389
- "attribute": "value"
8367
+ "description": "A user-defined function to handle keydown events",
8368
+ "attribute": "onKeyDown"
8390
8369
  },
8391
8370
  {
8392
8371
  "kind": "field",
8393
- "name": "switchRef"
8372
+ "name": "inputChoiceGroupContext",
8373
+ "type": {
8374
+ "text": "InputChoiceGroupContextProps"
8375
+ }
8376
+ },
8377
+ {
8378
+ "kind": "field",
8379
+ "name": "radioButtonRef"
8380
+ },
8381
+ {
8382
+ "kind": "method",
8383
+ "name": "focus"
8394
8384
  }
8395
8385
  ],
8396
8386
  "attributes": [
8397
8387
  {
8398
- "name": "onText",
8388
+ "name": "label",
8399
8389
  "type": {
8400
8390
  "text": "string | undefined"
8401
8391
  },
8402
- "default": "undefined",
8403
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8404
- "fieldName": "onText"
8392
+ "description": "Specify the text for the label",
8393
+ "fieldName": "label"
8405
8394
  },
8406
8395
  {
8407
- "name": "offText",
8396
+ "name": "error",
8408
8397
  "type": {
8409
- "text": "string | undefined"
8398
+ "text": "boolean | undefined"
8410
8399
  },
8411
- "default": "undefined",
8412
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8413
- "fieldName": "offText"
8400
+ "description": "Specify error text and display error state of a RadioButton",
8401
+ "fieldName": "error"
8414
8402
  },
8415
8403
  {
8416
- "name": "textPosition",
8404
+ "name": "readOnly",
8417
8405
  "type": {
8418
- "text": "'before' | 'after'"
8406
+ "text": "boolean | undefined"
8419
8407
  },
8420
- "default": "'after'",
8421
- "description": "Specify the position of the side label",
8422
- "fieldName": "textPosition"
8408
+ "description": "Specify if RadioButton displays in a read-only state",
8409
+ "fieldName": "readOnly"
8423
8410
  },
8424
8411
  {
8425
- "name": "readOnly",
8412
+ "name": "disabled",
8426
8413
  "type": {
8427
- "text": "boolean"
8414
+ "text": "boolean | undefined"
8428
8415
  },
8429
- "default": "false",
8430
- "description": "Specify if Switch displays in a read-only state",
8431
- "fieldName": "readOnly"
8416
+ "description": "Specify if RadioButton displays in a disabled state",
8417
+ "fieldName": "disabled"
8432
8418
  },
8433
8419
  {
8434
- "name": "disabled",
8420
+ "name": "theme",
8435
8421
  "type": {
8436
- "text": "boolean"
8422
+ "text": "'light' | 'dark' | undefined"
8437
8423
  },
8438
- "default": "false",
8439
- "description": "Specify if Switch displays in a disabled state",
8440
- "fieldName": "disabled"
8424
+ "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
8425
+ "fieldName": "theme"
8426
+ },
8427
+ {
8428
+ "name": "value",
8429
+ "type": {
8430
+ "text": "string | undefined"
8431
+ },
8432
+ "description": "The value attribute for the input element",
8433
+ "fieldName": "value"
8441
8434
  },
8442
8435
  {
8443
8436
  "name": "checked",
@@ -8445,47 +8438,48 @@
8445
8438
  "text": "boolean"
8446
8439
  },
8447
8440
  "default": "false",
8441
+ "description": "The checked attribute for the input element",
8448
8442
  "fieldName": "checked"
8449
8443
  },
8450
8444
  {
8451
- "name": "value",
8445
+ "name": "onKeyDown",
8452
8446
  "type": {
8453
- "text": "string | undefined"
8447
+ "text": "(event: KeyboardEvent) => void | undefined"
8454
8448
  },
8455
- "description": "The value attribute for the input element",
8456
- "fieldName": "value"
8449
+ "description": "A user-defined function to handle keydown events",
8450
+ "fieldName": "onKeyDown"
8457
8451
  }
8458
8452
  ],
8459
8453
  "superclass": {
8460
8454
  "name": "LitElement",
8461
8455
  "package": "lit"
8462
8456
  },
8463
- "tagName": "bm-switch",
8457
+ "tagName": "bm-radio-button",
8464
8458
  "customElement": true
8465
8459
  }
8466
8460
  ],
8467
8461
  "exports": [
8468
8462
  {
8469
8463
  "kind": "js",
8470
- "name": "BmSwitch",
8464
+ "name": "BmRadioButton",
8471
8465
  "declaration": {
8472
- "name": "BmSwitch",
8473
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
8466
+ "name": "BmRadioButton",
8467
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8474
8468
  }
8475
8469
  },
8476
8470
  {
8477
8471
  "kind": "custom-element-definition",
8478
- "name": "bm-switch",
8472
+ "name": "bm-radio-button",
8479
8473
  "declaration": {
8480
- "name": "BmSwitch",
8481
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
8474
+ "name": "BmRadioButton",
8475
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
8482
8476
  }
8483
8477
  }
8484
8478
  ]
8485
8479
  },
8486
8480
  {
8487
8481
  "kind": "javascript-module",
8488
- "path": "libs/web-components/src/lib/wip/Switch/index.ts",
8482
+ "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
8489
8483
  "declarations": [],
8490
8484
  "exports": [
8491
8485
  {
@@ -8493,7 +8487,7 @@
8493
8487
  "name": "*",
8494
8488
  "declaration": {
8495
8489
  "name": "*",
8496
- "package": "./Switch"
8490
+ "package": "./RadioButton"
8497
8491
  }
8498
8492
  },
8499
8493
  {
@@ -8501,75 +8495,75 @@
8501
8495
  "name": "*",
8502
8496
  "declaration": {
8503
8497
  "name": "*",
8504
- "package": "./SwitchGroup/SwitchGroup"
8498
+ "package": "./RadioButtonGroup/RadioButtonGroup"
8505
8499
  }
8506
8500
  }
8507
8501
  ]
8508
8502
  },
8509
8503
  {
8510
8504
  "kind": "javascript-module",
8511
- "path": "libs/web-components/src/lib/wip/TextField/TextField.ts",
8505
+ "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
8512
8506
  "declarations": [
8513
8507
  {
8514
8508
  "kind": "class",
8515
- "description": "### Attributes:\n- **placeholder** - Specify placeholder text for TextField\n- **required** - Specify if TextField is a required input\n- **hideRequiredMarker** - Specify if the TextField displays with an asterisk\n- **error** - Specify error text and display error state of a TextField\n- **readOnly** - Specify if TextField displays in a read-only state\n- **disabled** - Specify if TextField displays in a disabled state\n- **fluid** - Specify if TextField is fluid\n- **width** - Specify the width of TextField\n- **ellipse** - Specify if overflow displays ellipsis\n- **theme** - Specify the theme of the TextField. By default it inherits the theme from the parent\n- **type** \n- **inputMode** ",
8516
- "name": "BmTextField",
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",
8517
8511
  "slots": [
8518
8512
  {
8519
- "description": "Specify the label for TextField",
8520
- "name": "label"
8521
- },
8522
- {
8523
- "description": "Specify the helper text for TextField",
8524
- "name": "helper-text"
8525
- },
8526
- {
8527
- "description": "Specify content to display after input",
8528
- "name": "content-after"
8513
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
8514
+ "name": "onText"
8529
8515
  },
8530
8516
  {
8531
- "description": "Specify content to display before input",
8532
- "name": "content-before"
8517
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
8518
+ "name": "offText"
8533
8519
  }
8534
8520
  ],
8535
8521
  "members": [
8536
8522
  {
8537
8523
  "kind": "field",
8538
- "name": "placeholder",
8524
+ "name": "inputChoiceGroupContext",
8525
+ "type": {
8526
+ "text": "InputChoiceGroupContextProps"
8527
+ }
8528
+ },
8529
+ {
8530
+ "kind": "field",
8531
+ "name": "onText",
8539
8532
  "type": {
8540
8533
  "text": "string | undefined"
8541
8534
  },
8542
- "description": "Specify placeholder text for TextField",
8543
- "attribute": "placeholder"
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"
8544
8538
  },
8545
8539
  {
8546
8540
  "kind": "field",
8547
- "name": "required",
8541
+ "name": "offText",
8548
8542
  "type": {
8549
- "text": "boolean"
8543
+ "text": "string | undefined"
8550
8544
  },
8551
- "default": "false",
8552
- "description": "Specify if TextField is a required input",
8553
- "attribute": "required"
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"
8554
8548
  },
8555
8549
  {
8556
8550
  "kind": "field",
8557
- "name": "hideRequiredMarker",
8551
+ "name": "theme",
8558
8552
  "type": {
8559
- "text": "boolean"
8553
+ "text": "ThemeTypes | undefined"
8560
8554
  },
8561
- "default": "false",
8562
- "description": "Specify if the TextField displays with an asterisk",
8563
- "attribute": "hideRequiredMarker"
8555
+ "default": "undefined",
8556
+ "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
8564
8557
  },
8565
8558
  {
8566
8559
  "kind": "field",
8567
- "name": "error",
8560
+ "name": "textPosition",
8568
8561
  "type": {
8569
- "text": "string | undefined"
8562
+ "text": "'before' | 'after'"
8570
8563
  },
8571
- "description": "Specify error text and display error state of a TextField",
8572
- "attribute": "error"
8564
+ "default": "'after'",
8565
+ "description": "Specify the position of the side label",
8566
+ "attribute": "textPosition"
8573
8567
  },
8574
8568
  {
8575
8569
  "kind": "field",
@@ -8578,7 +8572,7 @@
8578
8572
  "text": "boolean"
8579
8573
  },
8580
8574
  "default": "false",
8581
- "description": "Specify if TextField displays in a read-only state",
8575
+ "description": "Specify if Switch displays in a read-only state",
8582
8576
  "attribute": "readOnly"
8583
8577
  },
8584
8578
  {
@@ -8588,602 +8582,648 @@
8588
8582
  "text": "boolean"
8589
8583
  },
8590
8584
  "default": "false",
8591
- "description": "Specify if TextField displays in a disabled state",
8585
+ "description": "Specify if Switch displays in a disabled state",
8592
8586
  "attribute": "disabled"
8593
8587
  },
8594
8588
  {
8595
8589
  "kind": "field",
8596
- "name": "fluid",
8590
+ "name": "checked",
8597
8591
  "type": {
8598
8592
  "text": "boolean"
8599
8593
  },
8600
8594
  "default": "false",
8601
- "description": "Specify if TextField is fluid",
8602
- "attribute": "fluid"
8595
+ "attribute": "checked"
8603
8596
  },
8604
8597
  {
8605
8598
  "kind": "field",
8606
- "name": "width",
8599
+ "name": "value",
8607
8600
  "type": {
8608
8601
  "text": "string | undefined"
8609
8602
  },
8610
- "description": "Specify the width of TextField",
8611
- "attribute": "width"
8603
+ "description": "The value attribute for the input element",
8604
+ "attribute": "value"
8612
8605
  },
8613
8606
  {
8614
8607
  "kind": "field",
8615
- "name": "ellipse",
8616
- "type": {
8617
- "text": "boolean"
8618
- },
8619
- "default": "false",
8620
- "description": "Specify if overflow displays ellipsis",
8621
- "attribute": "ellipse"
8622
- },
8608
+ "name": "switchRef"
8609
+ }
8610
+ ],
8611
+ "attributes": [
8623
8612
  {
8624
- "kind": "field",
8625
- "name": "theme",
8613
+ "name": "onText",
8626
8614
  "type": {
8627
- "text": "'light' | 'dark' | undefined"
8615
+ "text": "string | undefined"
8628
8616
  },
8629
- "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
8630
- "attribute": "theme"
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"
8631
8620
  },
8632
8621
  {
8633
- "kind": "field",
8634
- "name": "type",
8622
+ "name": "offText",
8635
8623
  "type": {
8636
- "text": "string"
8624
+ "text": "string | undefined"
8637
8625
  },
8638
- "default": "'text'",
8639
- "attribute": "type"
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"
8640
8629
  },
8641
8630
  {
8642
- "kind": "field",
8643
- "name": "inputMode",
8631
+ "name": "textPosition",
8644
8632
  "type": {
8645
- "text": "string"
8633
+ "text": "'before' | 'after'"
8646
8634
  },
8647
- "default": "'text'",
8648
- "attribute": "inputMode"
8635
+ "default": "'after'",
8636
+ "description": "Specify the position of the side label",
8637
+ "fieldName": "textPosition"
8649
8638
  },
8650
8639
  {
8651
- "kind": "field",
8652
- "name": "formAssociated",
8640
+ "name": "readOnly",
8653
8641
  "type": {
8654
8642
  "text": "boolean"
8655
8643
  },
8656
- "static": true,
8657
- "default": "true",
8658
- "inheritedFrom": {
8659
- "name": "FormField",
8660
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8661
- }
8644
+ "default": "false",
8645
+ "description": "Specify if Switch displays in a read-only state",
8646
+ "fieldName": "readOnly"
8662
8647
  },
8663
8648
  {
8664
- "kind": "field",
8665
- "name": "id",
8649
+ "name": "disabled",
8666
8650
  "type": {
8667
- "text": "string"
8651
+ "text": "boolean"
8668
8652
  },
8669
- "default": "''",
8670
- "attribute": "id",
8671
- "inheritedFrom": {
8672
- "name": "FormField",
8673
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8674
- }
8653
+ "default": "false",
8654
+ "description": "Specify if Switch displays in a disabled state",
8655
+ "fieldName": "disabled"
8675
8656
  },
8676
8657
  {
8677
- "kind": "field",
8678
- "name": "name",
8658
+ "name": "checked",
8679
8659
  "type": {
8680
- "text": "string"
8660
+ "text": "boolean"
8681
8661
  },
8682
- "default": "''",
8683
- "attribute": "name",
8684
- "inheritedFrom": {
8685
- "name": "FormField",
8686
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8687
- }
8662
+ "default": "false",
8663
+ "fieldName": "checked"
8688
8664
  },
8689
8665
  {
8690
- "kind": "field",
8691
8666
  "name": "value",
8692
8667
  "type": {
8693
- "text": "string"
8668
+ "text": "string | undefined"
8694
8669
  },
8695
- "default": "''",
8696
- "attribute": "value",
8697
- "inheritedFrom": {
8698
- "name": "FormField",
8699
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8700
- }
8701
- },
8670
+ "description": "The value attribute for the input element",
8671
+ "fieldName": "value"
8672
+ }
8673
+ ],
8674
+ "superclass": {
8675
+ "name": "LitElement",
8676
+ "package": "lit"
8677
+ },
8678
+ "tagName": "bm-switch",
8679
+ "customElement": true
8680
+ }
8681
+ ],
8682
+ "exports": [
8683
+ {
8684
+ "kind": "js",
8685
+ "name": "BmSwitch",
8686
+ "declaration": {
8687
+ "name": "BmSwitch",
8688
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
8689
+ }
8690
+ },
8691
+ {
8692
+ "kind": "custom-element-definition",
8693
+ "name": "bm-switch",
8694
+ "declaration": {
8695
+ "name": "BmSwitch",
8696
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
8697
+ }
8698
+ }
8699
+ ]
8700
+ },
8701
+ {
8702
+ "kind": "javascript-module",
8703
+ "path": "libs/web-components/src/lib/wip/Switch/index.ts",
8704
+ "declarations": [],
8705
+ "exports": [
8706
+ {
8707
+ "kind": "js",
8708
+ "name": "*",
8709
+ "declaration": {
8710
+ "name": "*",
8711
+ "package": "./Switch"
8712
+ }
8713
+ },
8714
+ {
8715
+ "kind": "js",
8716
+ "name": "*",
8717
+ "declaration": {
8718
+ "name": "*",
8719
+ "package": "./SwitchGroup/SwitchGroup"
8720
+ }
8721
+ }
8722
+ ]
8723
+ },
8724
+ {
8725
+ "kind": "javascript-module",
8726
+ "path": "libs/web-components/src/lib/wip/TextArea/TextArea.ts",
8727
+ "declarations": [
8728
+ {
8729
+ "kind": "class",
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": [
8702
8733
  {
8703
- "kind": "field",
8704
- "name": "validationRules",
8705
- "type": {
8706
- "text": "Array<FormValidator>"
8707
- },
8708
- "default": "[]",
8709
- "attribute": "validationRules",
8710
- "inheritedFrom": {
8711
- "name": "FormField",
8712
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8713
- }
8734
+ "description": "Specify the label for TextArea",
8735
+ "name": "label"
8714
8736
  },
8737
+ {
8738
+ "description": "Specify the helper text for TextArea",
8739
+ "name": "helper-text"
8740
+ }
8741
+ ],
8742
+ "members": [
8715
8743
  {
8716
8744
  "kind": "field",
8717
- "name": "inputAriaLabel",
8745
+ "name": "rows",
8718
8746
  "type": {
8719
- "text": "string | undefined"
8747
+ "text": "number | undefined"
8720
8748
  },
8721
- "attribute": "input-aria-label",
8722
- "inheritedFrom": {
8723
- "name": "FormField",
8724
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8725
- }
8749
+ "description": "Specify the height of TextArea",
8750
+ "attribute": "rows"
8726
8751
  },
8727
8752
  {
8728
8753
  "kind": "field",
8729
- "name": "formContext",
8754
+ "name": "cols",
8730
8755
  "type": {
8731
- "text": "BmFormContext"
8732
- },
8733
- "inheritedFrom": {
8734
- "name": "FormField",
8735
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8736
- }
8737
- },
8738
- {
8739
- "kind": "method",
8740
- "name": "formAssociatedCallback",
8741
- "return": {
8742
- "type": {
8743
- "text": "void"
8744
- }
8745
- },
8746
- "inheritedFrom": {
8747
- "name": "FormField",
8748
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8749
- }
8750
- },
8751
- {
8752
- "kind": "method",
8753
- "name": "formResetCallback",
8754
- "return": {
8755
- "type": {
8756
- "text": "void"
8757
- }
8756
+ "text": "number | undefined"
8758
8757
  },
8759
- "inheritedFrom": {
8760
- "name": "FormField",
8761
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8762
- }
8758
+ "description": "Specify the width of TextArea",
8759
+ "attribute": "cols"
8763
8760
  },
8764
8761
  {
8765
- "kind": "method",
8766
- "name": "finalizeAssociatedCallback",
8767
- "return": {
8768
- "type": {
8769
- "text": "FinalizeAssociatedResult"
8770
- }
8771
- },
8772
- "parameters": [
8773
- {
8774
- "name": "ctxValue",
8775
- "type": {
8776
- "text": "string"
8777
- }
8778
- }
8779
- ],
8780
- "inheritedFrom": {
8781
- "name": "FormField",
8782
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8783
- }
8784
- }
8785
- ],
8786
- "attributes": [
8787
- {
8762
+ "kind": "field",
8788
8763
  "name": "placeholder",
8789
8764
  "type": {
8790
8765
  "text": "string | undefined"
8791
- },
8792
- "description": "Specify placeholder text for TextField",
8793
- "fieldName": "placeholder"
8766
+ },
8767
+ "description": "Specify placeholder text for TextArea",
8768
+ "attribute": "placeholder"
8794
8769
  },
8795
8770
  {
8771
+ "kind": "field",
8796
8772
  "name": "required",
8797
8773
  "type": {
8798
8774
  "text": "boolean"
8799
8775
  },
8800
8776
  "default": "false",
8801
- "description": "Specify if TextField is a required input",
8802
- "fieldName": "required"
8777
+ "description": "Specify if TextArea is a required input",
8778
+ "attribute": "required"
8803
8779
  },
8804
8780
  {
8781
+ "kind": "field",
8805
8782
  "name": "hideRequiredMarker",
8806
8783
  "type": {
8807
8784
  "text": "boolean"
8808
8785
  },
8809
8786
  "default": "false",
8810
- "description": "Specify if the TextField displays with an asterisk",
8811
- "fieldName": "hideRequiredMarker"
8787
+ "description": "Specify if the TextArea displays with an asterisk",
8788
+ "attribute": "hideRequiredMarker"
8812
8789
  },
8813
8790
  {
8791
+ "kind": "field",
8814
8792
  "name": "error",
8815
8793
  "type": {
8816
8794
  "text": "string | undefined"
8817
8795
  },
8818
- "description": "Specify error text and display error state of a TextField",
8819
- "fieldName": "error"
8796
+ "description": "Specify error text and display error state of a TextArea",
8797
+ "attribute": "error"
8820
8798
  },
8821
8799
  {
8800
+ "kind": "field",
8822
8801
  "name": "readOnly",
8823
8802
  "type": {
8824
8803
  "text": "boolean"
8825
8804
  },
8826
8805
  "default": "false",
8827
- "description": "Specify if TextField displays in a read-only state",
8828
- "fieldName": "readOnly"
8806
+ "description": "Specify if TextArea displays in a read-only state",
8807
+ "attribute": "readOnly"
8829
8808
  },
8830
8809
  {
8810
+ "kind": "field",
8831
8811
  "name": "disabled",
8832
8812
  "type": {
8833
8813
  "text": "boolean"
8834
8814
  },
8835
8815
  "default": "false",
8836
- "description": "Specify if TextField displays in a disabled state",
8837
- "fieldName": "disabled"
8816
+ "description": "Specify if TextArea displays in a disabled state",
8817
+ "attribute": "disabled"
8838
8818
  },
8839
8819
  {
8820
+ "kind": "field",
8840
8821
  "name": "fluid",
8841
8822
  "type": {
8842
8823
  "text": "boolean"
8843
8824
  },
8844
8825
  "default": "false",
8845
- "description": "Specify if TextField is fluid",
8846
- "fieldName": "fluid"
8826
+ "description": "Specify if TextArea is fluid",
8827
+ "attribute": "fluid"
8847
8828
  },
8848
8829
  {
8830
+ "kind": "field",
8849
8831
  "name": "width",
8850
8832
  "type": {
8851
8833
  "text": "string | undefined"
8852
8834
  },
8853
- "description": "Specify the width of TextField",
8854
- "fieldName": "width"
8835
+ "description": "Specify the width of TextArea",
8836
+ "attribute": "width"
8855
8837
  },
8856
8838
  {
8857
- "name": "ellipse",
8839
+ "kind": "field",
8840
+ "name": "hideResize",
8858
8841
  "type": {
8859
8842
  "text": "boolean"
8860
8843
  },
8861
8844
  "default": "false",
8862
- "description": "Specify if overflow displays ellipsis",
8863
- "fieldName": "ellipse"
8845
+ "description": "Specify if TextArea can be manually resized",
8846
+ "attribute": "hideResize"
8847
+ },
8848
+ {
8849
+ "kind": "field",
8850
+ "name": "maxCount",
8851
+ "type": {
8852
+ "text": "number | undefined"
8853
+ },
8854
+ "description": "Specify the maximum character count for the TextArea",
8855
+ "attribute": "maxCount"
8856
+ },
8857
+ {
8858
+ "kind": "field",
8859
+ "name": "autoResize",
8860
+ "type": {
8861
+ "text": "boolean"
8862
+ },
8863
+ "default": "false",
8864
+ "description": "Specify if the TextArea automatically resizes to fit the text",
8865
+ "attribute": "autoResize"
8864
8866
  },
8865
8867
  {
8868
+ "kind": "field",
8866
8869
  "name": "theme",
8867
8870
  "type": {
8868
8871
  "text": "'light' | 'dark' | undefined"
8869
8872
  },
8870
- "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
8871
- "fieldName": "theme"
8873
+ "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
8874
+ "attribute": "theme"
8872
8875
  },
8873
8876
  {
8874
- "name": "type",
8875
- "type": {
8876
- "text": "string"
8877
+ "kind": "field",
8878
+ "name": "formFieldCounterRef"
8879
+ },
8880
+ {
8881
+ "kind": "method",
8882
+ "name": "finalizeAssociatedCallback",
8883
+ "return": {
8884
+ "type": {
8885
+ "text": "FinalizeAssociatedResult"
8886
+ }
8877
8887
  },
8878
- "default": "'text'",
8879
- "fieldName": "type"
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
+ }
8880
8900
  },
8881
8901
  {
8882
- "name": "inputMode",
8902
+ "kind": "field",
8903
+ "name": "formAssociated",
8883
8904
  "type": {
8884
- "text": "string"
8905
+ "text": "boolean"
8885
8906
  },
8886
- "default": "'text'",
8887
- "fieldName": "inputMode"
8907
+ "static": true,
8908
+ "default": "true",
8909
+ "inheritedFrom": {
8910
+ "name": "FormField",
8911
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8912
+ }
8888
8913
  },
8889
8914
  {
8915
+ "kind": "field",
8890
8916
  "name": "id",
8891
8917
  "type": {
8892
8918
  "text": "string"
8893
8919
  },
8894
8920
  "default": "''",
8895
- "fieldName": "id",
8921
+ "attribute": "id",
8896
8922
  "inheritedFrom": {
8897
8923
  "name": "FormField",
8898
8924
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8899
8925
  }
8900
8926
  },
8901
8927
  {
8928
+ "kind": "field",
8902
8929
  "name": "name",
8903
8930
  "type": {
8904
8931
  "text": "string"
8905
8932
  },
8906
8933
  "default": "''",
8907
- "fieldName": "name",
8934
+ "attribute": "name",
8908
8935
  "inheritedFrom": {
8909
8936
  "name": "FormField",
8910
8937
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8911
8938
  }
8912
8939
  },
8913
8940
  {
8941
+ "kind": "field",
8914
8942
  "name": "value",
8915
8943
  "type": {
8916
8944
  "text": "string"
8917
8945
  },
8918
8946
  "default": "''",
8919
- "fieldName": "value",
8947
+ "attribute": "value",
8920
8948
  "inheritedFrom": {
8921
8949
  "name": "FormField",
8922
8950
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8923
8951
  }
8924
8952
  },
8925
8953
  {
8954
+ "kind": "field",
8926
8955
  "name": "validationRules",
8927
8956
  "type": {
8928
8957
  "text": "Array<FormValidator>"
8929
8958
  },
8930
8959
  "default": "[]",
8931
- "fieldName": "validationRules",
8960
+ "attribute": "validationRules",
8932
8961
  "inheritedFrom": {
8933
8962
  "name": "FormField",
8934
8963
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8935
8964
  }
8936
8965
  },
8937
8966
  {
8938
- "name": "input-aria-label",
8967
+ "kind": "field",
8968
+ "name": "inputAriaLabel",
8939
8969
  "type": {
8940
8970
  "text": "string | undefined"
8941
8971
  },
8942
- "fieldName": "inputAriaLabel",
8972
+ "attribute": "input-aria-label",
8943
8973
  "inheritedFrom": {
8944
8974
  "name": "FormField",
8945
8975
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8946
8976
  }
8947
- }
8948
- ],
8949
- "superclass": {
8950
- "name": "FormField",
8951
- "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
8952
- },
8953
- "summary": "`bm-text-field`",
8954
- "tagName": "bm-text-field",
8955
- "customElement": true
8956
- }
8957
- ],
8958
- "exports": [
8959
- {
8960
- "kind": "js",
8961
- "name": "BmTextField",
8962
- "declaration": {
8963
- "name": "BmTextField",
8964
- "module": "libs/web-components/src/lib/wip/TextField/TextField.ts"
8965
- }
8966
- },
8967
- {
8968
- "kind": "custom-element-definition",
8969
- "name": "bm-text-field",
8970
- "declaration": {
8971
- "name": "BmTextField",
8972
- "module": "libs/web-components/src/lib/wip/TextField/TextField.ts"
8973
- }
8974
- }
8975
- ]
8976
- },
8977
- {
8978
- "kind": "javascript-module",
8979
- "path": "libs/web-components/src/lib/wip/TextField/index.ts",
8980
- "declarations": [],
8981
- "exports": [
8982
- {
8983
- "kind": "js",
8984
- "name": "*",
8985
- "declaration": {
8986
- "name": "*",
8987
- "package": "./TextField"
8988
- }
8989
- }
8990
- ]
8991
- },
8992
- {
8993
- "kind": "javascript-module",
8994
- "path": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts",
8995
- "declarations": [
8996
- {
8997
- "kind": "class",
8998
- "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",
8999
- "name": "BmRadioButton",
9000
- "members": [
8977
+ },
9001
8978
  {
9002
8979
  "kind": "field",
9003
- "name": "label",
8980
+ "name": "formContext",
9004
8981
  "type": {
9005
- "text": "string | undefined"
8982
+ "text": "BmFormContext"
9006
8983
  },
9007
- "description": "Specify the text for the label",
9008
- "attribute": "label"
8984
+ "inheritedFrom": {
8985
+ "name": "FormField",
8986
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
8987
+ }
9009
8988
  },
9010
8989
  {
9011
- "kind": "field",
9012
- "name": "error",
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
+ }
9014
+ }
9015
+ ],
9016
+ "attributes": [
9017
+ {
9018
+ "name": "rows",
9013
9019
  "type": {
9014
- "text": "boolean | undefined"
9020
+ "text": "number | undefined"
9015
9021
  },
9016
- "description": "Specify error text and display error state of a RadioButton",
9017
- "attribute": "error"
9022
+ "description": "Specify the height of TextArea",
9023
+ "fieldName": "rows"
9018
9024
  },
9019
9025
  {
9020
- "kind": "field",
9021
- "name": "readOnly",
9026
+ "name": "cols",
9022
9027
  "type": {
9023
- "text": "boolean | undefined"
9028
+ "text": "number | undefined"
9024
9029
  },
9025
- "description": "Specify if RadioButton displays in a read-only state",
9026
- "attribute": "readOnly"
9030
+ "description": "Specify the width of TextArea",
9031
+ "fieldName": "cols"
9027
9032
  },
9028
9033
  {
9029
- "kind": "field",
9030
- "name": "disabled",
9034
+ "name": "placeholder",
9031
9035
  "type": {
9032
- "text": "boolean | undefined"
9036
+ "text": "string | undefined"
9033
9037
  },
9034
- "description": "Specify if RadioButton displays in a disabled state",
9035
- "attribute": "disabled"
9038
+ "description": "Specify placeholder text for TextArea",
9039
+ "fieldName": "placeholder"
9036
9040
  },
9037
9041
  {
9038
- "kind": "field",
9039
- "name": "theme",
9042
+ "name": "required",
9043
+ "type": {
9044
+ "text": "boolean"
9045
+ },
9046
+ "default": "false",
9047
+ "description": "Specify if TextArea is a required input",
9048
+ "fieldName": "required"
9049
+ },
9050
+ {
9051
+ "name": "hideRequiredMarker",
9040
9052
  "type": {
9041
- "text": "'light' | 'dark' | undefined"
9053
+ "text": "boolean"
9042
9054
  },
9043
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
9044
- "attribute": "theme"
9055
+ "default": "false",
9056
+ "description": "Specify if the TextArea displays with an asterisk",
9057
+ "fieldName": "hideRequiredMarker"
9045
9058
  },
9046
9059
  {
9047
- "kind": "field",
9048
- "name": "value",
9060
+ "name": "error",
9049
9061
  "type": {
9050
9062
  "text": "string | undefined"
9051
9063
  },
9052
- "description": "The value attribute for the input element",
9053
- "attribute": "value"
9064
+ "description": "Specify error text and display error state of a TextArea",
9065
+ "fieldName": "error"
9054
9066
  },
9055
9067
  {
9056
- "kind": "field",
9057
- "name": "checked",
9068
+ "name": "readOnly",
9058
9069
  "type": {
9059
9070
  "text": "boolean"
9060
9071
  },
9061
9072
  "default": "false",
9062
- "description": "The checked attribute for the input element",
9063
- "attribute": "checked"
9073
+ "description": "Specify if TextArea displays in a read-only state",
9074
+ "fieldName": "readOnly"
9064
9075
  },
9065
9076
  {
9066
- "kind": "field",
9067
- "name": "onKeyDown",
9077
+ "name": "disabled",
9068
9078
  "type": {
9069
- "text": "(event: KeyboardEvent) => void | undefined"
9079
+ "text": "boolean"
9070
9080
  },
9071
- "description": "A user-defined function to handle keydown events",
9072
- "attribute": "onKeyDown"
9081
+ "default": "false",
9082
+ "description": "Specify if TextArea displays in a disabled state",
9083
+ "fieldName": "disabled"
9073
9084
  },
9074
9085
  {
9075
- "kind": "field",
9076
- "name": "inputChoiceGroupContext",
9086
+ "name": "fluid",
9077
9087
  "type": {
9078
- "text": "InputChoiceGroupContextProps"
9079
- }
9080
- },
9081
- {
9082
- "kind": "field",
9083
- "name": "radioButtonRef"
9088
+ "text": "boolean"
9089
+ },
9090
+ "default": "false",
9091
+ "description": "Specify if TextArea is fluid",
9092
+ "fieldName": "fluid"
9084
9093
  },
9085
9094
  {
9086
- "kind": "method",
9087
- "name": "focus"
9088
- }
9089
- ],
9090
- "attributes": [
9091
- {
9092
- "name": "label",
9095
+ "name": "width",
9093
9096
  "type": {
9094
9097
  "text": "string | undefined"
9095
9098
  },
9096
- "description": "Specify the text for the label",
9097
- "fieldName": "label"
9099
+ "description": "Specify the width of TextArea",
9100
+ "fieldName": "width"
9098
9101
  },
9099
9102
  {
9100
- "name": "error",
9103
+ "name": "hideResize",
9101
9104
  "type": {
9102
- "text": "boolean | undefined"
9105
+ "text": "boolean"
9103
9106
  },
9104
- "description": "Specify error text and display error state of a RadioButton",
9105
- "fieldName": "error"
9107
+ "default": "false",
9108
+ "description": "Specify if TextArea can be manually resized",
9109
+ "fieldName": "hideResize"
9106
9110
  },
9107
9111
  {
9108
- "name": "readOnly",
9112
+ "name": "maxCount",
9109
9113
  "type": {
9110
- "text": "boolean | undefined"
9114
+ "text": "number | undefined"
9111
9115
  },
9112
- "description": "Specify if RadioButton displays in a read-only state",
9113
- "fieldName": "readOnly"
9116
+ "description": "Specify the maximum character count for the TextArea",
9117
+ "fieldName": "maxCount"
9114
9118
  },
9115
9119
  {
9116
- "name": "disabled",
9120
+ "name": "autoResize",
9117
9121
  "type": {
9118
- "text": "boolean | undefined"
9122
+ "text": "boolean"
9119
9123
  },
9120
- "description": "Specify if RadioButton displays in a disabled state",
9121
- "fieldName": "disabled"
9124
+ "default": "false",
9125
+ "description": "Specify if the TextArea automatically resizes to fit the text",
9126
+ "fieldName": "autoResize"
9122
9127
  },
9123
9128
  {
9124
9129
  "name": "theme",
9125
9130
  "type": {
9126
9131
  "text": "'light' | 'dark' | undefined"
9127
9132
  },
9128
- "description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
9133
+ "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
9129
9134
  "fieldName": "theme"
9130
9135
  },
9136
+ {
9137
+ "name": "id",
9138
+ "type": {
9139
+ "text": "string"
9140
+ },
9141
+ "default": "''",
9142
+ "fieldName": "id",
9143
+ "inheritedFrom": {
9144
+ "name": "FormField",
9145
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9146
+ }
9147
+ },
9148
+ {
9149
+ "name": "name",
9150
+ "type": {
9151
+ "text": "string"
9152
+ },
9153
+ "default": "''",
9154
+ "fieldName": "name",
9155
+ "inheritedFrom": {
9156
+ "name": "FormField",
9157
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9158
+ }
9159
+ },
9131
9160
  {
9132
9161
  "name": "value",
9133
9162
  "type": {
9134
- "text": "string | undefined"
9163
+ "text": "string"
9135
9164
  },
9136
- "description": "The value attribute for the input element",
9137
- "fieldName": "value"
9165
+ "default": "''",
9166
+ "fieldName": "value",
9167
+ "inheritedFrom": {
9168
+ "name": "FormField",
9169
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9170
+ }
9138
9171
  },
9139
9172
  {
9140
- "name": "checked",
9173
+ "name": "validationRules",
9141
9174
  "type": {
9142
- "text": "boolean"
9175
+ "text": "Array<FormValidator>"
9143
9176
  },
9144
- "default": "false",
9145
- "description": "The checked attribute for the input element",
9146
- "fieldName": "checked"
9177
+ "default": "[]",
9178
+ "fieldName": "validationRules",
9179
+ "inheritedFrom": {
9180
+ "name": "FormField",
9181
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9182
+ }
9147
9183
  },
9148
9184
  {
9149
- "name": "onKeyDown",
9185
+ "name": "input-aria-label",
9150
9186
  "type": {
9151
- "text": "(event: KeyboardEvent) => void | undefined"
9187
+ "text": "string | undefined"
9152
9188
  },
9153
- "description": "A user-defined function to handle keydown events",
9154
- "fieldName": "onKeyDown"
9189
+ "fieldName": "inputAriaLabel",
9190
+ "inheritedFrom": {
9191
+ "name": "FormField",
9192
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9193
+ }
9155
9194
  }
9156
9195
  ],
9157
9196
  "superclass": {
9158
- "name": "LitElement",
9159
- "package": "lit"
9197
+ "name": "FormField",
9198
+ "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
9160
9199
  },
9161
- "tagName": "bm-radio-button",
9200
+ "summary": "`bm-text-area`",
9201
+ "tagName": "bm-text-area",
9162
9202
  "customElement": true
9163
9203
  }
9164
9204
  ],
9165
9205
  "exports": [
9166
9206
  {
9167
9207
  "kind": "js",
9168
- "name": "BmRadioButton",
9208
+ "name": "BmTextArea",
9169
9209
  "declaration": {
9170
- "name": "BmRadioButton",
9171
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9210
+ "name": "BmTextArea",
9211
+ "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
9172
9212
  }
9173
9213
  },
9174
9214
  {
9175
9215
  "kind": "custom-element-definition",
9176
- "name": "bm-radio-button",
9216
+ "name": "bm-text-area",
9177
9217
  "declaration": {
9178
- "name": "BmRadioButton",
9179
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9218
+ "name": "BmTextArea",
9219
+ "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
9180
9220
  }
9181
9221
  }
9182
9222
  ]
9183
9223
  },
9184
9224
  {
9185
9225
  "kind": "javascript-module",
9186
- "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
9226
+ "path": "libs/web-components/src/lib/wip/TextArea/index.ts",
9187
9227
  "declarations": [],
9188
9228
  "exports": [
9189
9229
  {
@@ -9191,63 +9231,45 @@
9191
9231
  "name": "*",
9192
9232
  "declaration": {
9193
9233
  "name": "*",
9194
- "package": "./RadioButton"
9195
- }
9196
- },
9197
- {
9198
- "kind": "js",
9199
- "name": "*",
9200
- "declaration": {
9201
- "name": "*",
9202
- "package": "./RadioButtonGroup/RadioButtonGroup"
9234
+ "package": "./TextArea"
9203
9235
  }
9204
9236
  }
9205
9237
  ]
9206
9238
  },
9207
9239
  {
9208
9240
  "kind": "javascript-module",
9209
- "path": "libs/web-components/src/lib/wip/TextArea/TextArea.ts",
9241
+ "path": "libs/web-components/src/lib/wip/TextField/TextField.ts",
9210
9242
  "declarations": [
9211
9243
  {
9212
9244
  "kind": "class",
9213
- "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",
9214
- "name": "BmTextArea",
9245
+ "description": "### Attributes:\n- **placeholder** - Specify placeholder text for TextField\n- **required** - Specify if TextField is a required input\n- **hideRequiredMarker** - Specify if the TextField displays with an asterisk\n- **error** - Specify error text and display error state of a TextField\n- **readOnly** - Specify if TextField displays in a read-only state\n- **disabled** - Specify if TextField displays in a disabled state\n- **fluid** - Specify if TextField is fluid\n- **width** - Specify the width of TextField\n- **ellipse** - Specify if overflow displays ellipsis\n- **theme** - Specify the theme of the TextField. By default it inherits the theme from the parent\n- **type** \n- **inputMode** ",
9246
+ "name": "BmTextField",
9215
9247
  "slots": [
9216
9248
  {
9217
- "description": "Specify the label for TextArea",
9249
+ "description": "Specify the label for TextField",
9218
9250
  "name": "label"
9219
9251
  },
9220
9252
  {
9221
- "description": "Specify the helper text for TextArea",
9253
+ "description": "Specify the helper text for TextField",
9222
9254
  "name": "helper-text"
9223
- }
9224
- ],
9225
- "members": [
9226
- {
9227
- "kind": "field",
9228
- "name": "rows",
9229
- "type": {
9230
- "text": "number | undefined"
9231
- },
9232
- "description": "Specify the height of TextArea",
9233
- "attribute": "rows"
9234
9255
  },
9235
9256
  {
9236
- "kind": "field",
9237
- "name": "cols",
9238
- "type": {
9239
- "text": "number | undefined"
9240
- },
9241
- "description": "Specify the width of TextArea",
9242
- "attribute": "cols"
9257
+ "description": "Specify content to display after input",
9258
+ "name": "content-after"
9243
9259
  },
9260
+ {
9261
+ "description": "Specify content to display before input",
9262
+ "name": "content-before"
9263
+ }
9264
+ ],
9265
+ "members": [
9244
9266
  {
9245
9267
  "kind": "field",
9246
9268
  "name": "placeholder",
9247
9269
  "type": {
9248
9270
  "text": "string | undefined"
9249
9271
  },
9250
- "description": "Specify placeholder text for TextArea",
9272
+ "description": "Specify placeholder text for TextField",
9251
9273
  "attribute": "placeholder"
9252
9274
  },
9253
9275
  {
@@ -9257,7 +9279,7 @@
9257
9279
  "text": "boolean"
9258
9280
  },
9259
9281
  "default": "false",
9260
- "description": "Specify if TextArea is a required input",
9282
+ "description": "Specify if TextField is a required input",
9261
9283
  "attribute": "required"
9262
9284
  },
9263
9285
  {
@@ -9267,7 +9289,7 @@
9267
9289
  "text": "boolean"
9268
9290
  },
9269
9291
  "default": "false",
9270
- "description": "Specify if the TextArea displays with an asterisk",
9292
+ "description": "Specify if the TextField displays with an asterisk",
9271
9293
  "attribute": "hideRequiredMarker"
9272
9294
  },
9273
9295
  {
@@ -9276,7 +9298,7 @@
9276
9298
  "type": {
9277
9299
  "text": "string | undefined"
9278
9300
  },
9279
- "description": "Specify error text and display error state of a TextArea",
9301
+ "description": "Specify error text and display error state of a TextField",
9280
9302
  "attribute": "error"
9281
9303
  },
9282
9304
  {
@@ -9286,7 +9308,7 @@
9286
9308
  "text": "boolean"
9287
9309
  },
9288
9310
  "default": "false",
9289
- "description": "Specify if TextArea displays in a read-only state",
9311
+ "description": "Specify if TextField displays in a read-only state",
9290
9312
  "attribute": "readOnly"
9291
9313
  },
9292
9314
  {
@@ -9296,7 +9318,7 @@
9296
9318
  "text": "boolean"
9297
9319
  },
9298
9320
  "default": "false",
9299
- "description": "Specify if TextArea displays in a disabled state",
9321
+ "description": "Specify if TextField displays in a disabled state",
9300
9322
  "attribute": "disabled"
9301
9323
  },
9302
9324
  {
@@ -9306,7 +9328,7 @@
9306
9328
  "text": "boolean"
9307
9329
  },
9308
9330
  "default": "false",
9309
- "description": "Specify if TextArea is fluid",
9331
+ "description": "Specify if TextField is fluid",
9310
9332
  "attribute": "fluid"
9311
9333
  },
9312
9334
  {
@@ -9315,71 +9337,45 @@
9315
9337
  "type": {
9316
9338
  "text": "string | undefined"
9317
9339
  },
9318
- "description": "Specify the width of TextArea",
9340
+ "description": "Specify the width of TextField",
9319
9341
  "attribute": "width"
9320
9342
  },
9321
9343
  {
9322
9344
  "kind": "field",
9323
- "name": "hideResize",
9345
+ "name": "ellipse",
9324
9346
  "type": {
9325
9347
  "text": "boolean"
9326
9348
  },
9327
9349
  "default": "false",
9328
- "description": "Specify if TextArea can be manually resized",
9329
- "attribute": "hideResize"
9330
- },
9331
- {
9332
- "kind": "field",
9333
- "name": "maxCount",
9334
- "type": {
9335
- "text": "number | undefined"
9336
- },
9337
- "description": "Specify the maximum character count for the TextArea",
9338
- "attribute": "maxCount"
9350
+ "description": "Specify if overflow displays ellipsis",
9351
+ "attribute": "ellipse"
9339
9352
  },
9340
9353
  {
9341
9354
  "kind": "field",
9342
- "name": "autoResize",
9355
+ "name": "theme",
9343
9356
  "type": {
9344
- "text": "boolean"
9357
+ "text": "'light' | 'dark' | undefined"
9345
9358
  },
9346
- "default": "false",
9347
- "description": "Specify if the TextArea automatically resizes to fit the text",
9348
- "attribute": "autoResize"
9359
+ "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
9360
+ "attribute": "theme"
9349
9361
  },
9350
9362
  {
9351
9363
  "kind": "field",
9352
- "name": "theme",
9364
+ "name": "type",
9353
9365
  "type": {
9354
- "text": "'light' | 'dark' | undefined"
9366
+ "text": "string"
9355
9367
  },
9356
- "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
9357
- "attribute": "theme"
9368
+ "default": "'text'",
9369
+ "attribute": "type"
9358
9370
  },
9359
9371
  {
9360
9372
  "kind": "field",
9361
- "name": "formFieldCounterRef"
9362
- },
9363
- {
9364
- "kind": "method",
9365
- "name": "finalizeAssociatedCallback",
9366
- "return": {
9367
- "type": {
9368
- "text": "FinalizeAssociatedResult"
9369
- }
9373
+ "name": "inputMode",
9374
+ "type": {
9375
+ "text": "string"
9370
9376
  },
9371
- "parameters": [
9372
- {
9373
- "name": "value",
9374
- "type": {
9375
- "text": "string"
9376
- }
9377
- }
9378
- ],
9379
- "inheritedFrom": {
9380
- "name": "FormField",
9381
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9382
- }
9377
+ "default": "'text'",
9378
+ "attribute": "inputMode"
9383
9379
  },
9384
9380
  {
9385
9381
  "kind": "field",
@@ -9494,31 +9490,36 @@
9494
9490
  "name": "FormField",
9495
9491
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9496
9492
  }
9497
- }
9498
- ],
9499
- "attributes": [
9500
- {
9501
- "name": "rows",
9502
- "type": {
9503
- "text": "number | undefined"
9504
- },
9505
- "description": "Specify the height of TextArea",
9506
- "fieldName": "rows"
9507
9493
  },
9508
9494
  {
9509
- "name": "cols",
9510
- "type": {
9511
- "text": "number | undefined"
9495
+ "kind": "method",
9496
+ "name": "finalizeAssociatedCallback",
9497
+ "return": {
9498
+ "type": {
9499
+ "text": "FinalizeAssociatedResult"
9500
+ }
9512
9501
  },
9513
- "description": "Specify the width of TextArea",
9514
- "fieldName": "cols"
9515
- },
9502
+ "parameters": [
9503
+ {
9504
+ "name": "ctxValue",
9505
+ "type": {
9506
+ "text": "string"
9507
+ }
9508
+ }
9509
+ ],
9510
+ "inheritedFrom": {
9511
+ "name": "FormField",
9512
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9513
+ }
9514
+ }
9515
+ ],
9516
+ "attributes": [
9516
9517
  {
9517
9518
  "name": "placeholder",
9518
9519
  "type": {
9519
9520
  "text": "string | undefined"
9520
9521
  },
9521
- "description": "Specify placeholder text for TextArea",
9522
+ "description": "Specify placeholder text for TextField",
9522
9523
  "fieldName": "placeholder"
9523
9524
  },
9524
9525
  {
@@ -9527,7 +9528,7 @@
9527
9528
  "text": "boolean"
9528
9529
  },
9529
9530
  "default": "false",
9530
- "description": "Specify if TextArea is a required input",
9531
+ "description": "Specify if TextField is a required input",
9531
9532
  "fieldName": "required"
9532
9533
  },
9533
9534
  {
@@ -9536,7 +9537,7 @@
9536
9537
  "text": "boolean"
9537
9538
  },
9538
9539
  "default": "false",
9539
- "description": "Specify if the TextArea displays with an asterisk",
9540
+ "description": "Specify if the TextField displays with an asterisk",
9540
9541
  "fieldName": "hideRequiredMarker"
9541
9542
  },
9542
9543
  {
@@ -9544,7 +9545,7 @@
9544
9545
  "type": {
9545
9546
  "text": "string | undefined"
9546
9547
  },
9547
- "description": "Specify error text and display error state of a TextArea",
9548
+ "description": "Specify error text and display error state of a TextField",
9548
9549
  "fieldName": "error"
9549
9550
  },
9550
9551
  {
@@ -9553,7 +9554,7 @@
9553
9554
  "text": "boolean"
9554
9555
  },
9555
9556
  "default": "false",
9556
- "description": "Specify if TextArea displays in a read-only state",
9557
+ "description": "Specify if TextField displays in a read-only state",
9557
9558
  "fieldName": "readOnly"
9558
9559
  },
9559
9560
  {
@@ -9562,7 +9563,7 @@
9562
9563
  "text": "boolean"
9563
9564
  },
9564
9565
  "default": "false",
9565
- "description": "Specify if TextArea displays in a disabled state",
9566
+ "description": "Specify if TextField displays in a disabled state",
9566
9567
  "fieldName": "disabled"
9567
9568
  },
9568
9569
  {
@@ -9571,7 +9572,7 @@
9571
9572
  "text": "boolean"
9572
9573
  },
9573
9574
  "default": "false",
9574
- "description": "Specify if TextArea is fluid",
9575
+ "description": "Specify if TextField is fluid",
9575
9576
  "fieldName": "fluid"
9576
9577
  },
9577
9578
  {
@@ -9579,42 +9580,41 @@
9579
9580
  "type": {
9580
9581
  "text": "string | undefined"
9581
9582
  },
9582
- "description": "Specify the width of TextArea",
9583
+ "description": "Specify the width of TextField",
9583
9584
  "fieldName": "width"
9584
9585
  },
9585
9586
  {
9586
- "name": "hideResize",
9587
+ "name": "ellipse",
9587
9588
  "type": {
9588
9589
  "text": "boolean"
9589
9590
  },
9590
9591
  "default": "false",
9591
- "description": "Specify if TextArea can be manually resized",
9592
- "fieldName": "hideResize"
9592
+ "description": "Specify if overflow displays ellipsis",
9593
+ "fieldName": "ellipse"
9593
9594
  },
9594
9595
  {
9595
- "name": "maxCount",
9596
+ "name": "theme",
9596
9597
  "type": {
9597
- "text": "number | undefined"
9598
+ "text": "'light' | 'dark' | undefined"
9598
9599
  },
9599
- "description": "Specify the maximum character count for the TextArea",
9600
- "fieldName": "maxCount"
9600
+ "description": "Specify the theme of the TextField. By default it inherits the theme from the parent",
9601
+ "fieldName": "theme"
9601
9602
  },
9602
9603
  {
9603
- "name": "autoResize",
9604
+ "name": "type",
9604
9605
  "type": {
9605
- "text": "boolean"
9606
+ "text": "string"
9606
9607
  },
9607
- "default": "false",
9608
- "description": "Specify if the TextArea automatically resizes to fit the text",
9609
- "fieldName": "autoResize"
9608
+ "default": "'text'",
9609
+ "fieldName": "type"
9610
9610
  },
9611
9611
  {
9612
- "name": "theme",
9612
+ "name": "inputMode",
9613
9613
  "type": {
9614
- "text": "'light' | 'dark' | undefined"
9614
+ "text": "string"
9615
9615
  },
9616
- "description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
9617
- "fieldName": "theme"
9616
+ "default": "'text'",
9617
+ "fieldName": "inputMode"
9618
9618
  },
9619
9619
  {
9620
9620
  "name": "id",
@@ -9680,33 +9680,33 @@
9680
9680
  "name": "FormField",
9681
9681
  "module": "/libs/web-components/src/lib/wip/Form/Form.decorator"
9682
9682
  },
9683
- "summary": "`bm-text-area`",
9684
- "tagName": "bm-text-area",
9683
+ "summary": "`bm-text-field`",
9684
+ "tagName": "bm-text-field",
9685
9685
  "customElement": true
9686
9686
  }
9687
9687
  ],
9688
9688
  "exports": [
9689
9689
  {
9690
9690
  "kind": "js",
9691
- "name": "BmTextArea",
9691
+ "name": "BmTextField",
9692
9692
  "declaration": {
9693
- "name": "BmTextArea",
9694
- "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
9693
+ "name": "BmTextField",
9694
+ "module": "libs/web-components/src/lib/wip/TextField/TextField.ts"
9695
9695
  }
9696
9696
  },
9697
9697
  {
9698
9698
  "kind": "custom-element-definition",
9699
- "name": "bm-text-area",
9699
+ "name": "bm-text-field",
9700
9700
  "declaration": {
9701
- "name": "BmTextArea",
9702
- "module": "libs/web-components/src/lib/wip/TextArea/TextArea.ts"
9701
+ "name": "BmTextField",
9702
+ "module": "libs/web-components/src/lib/wip/TextField/TextField.ts"
9703
9703
  }
9704
9704
  }
9705
9705
  ]
9706
9706
  },
9707
9707
  {
9708
9708
  "kind": "javascript-module",
9709
- "path": "libs/web-components/src/lib/wip/TextArea/index.ts",
9709
+ "path": "libs/web-components/src/lib/wip/TextField/index.ts",
9710
9710
  "declarations": [],
9711
9711
  "exports": [
9712
9712
  {
@@ -9714,7 +9714,7 @@
9714
9714
  "name": "*",
9715
9715
  "declaration": {
9716
9716
  "name": "*",
9717
- "package": "./TextArea"
9717
+ "package": "./TextField"
9718
9718
  }
9719
9719
  }
9720
9720
  ]
@@ -9743,28 +9743,207 @@
9743
9743
  }
9744
9744
  },
9745
9745
  {
9746
- "description": "Add helper text to the InputChoiceGroup",
9747
- "name": "helperText",
9746
+ "description": "Add helper text to the InputChoiceGroup",
9747
+ "name": "helperText",
9748
+ "inheritedFrom": {
9749
+ "name": "InputChoiceGroup",
9750
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9751
+ }
9752
+ }
9753
+ ],
9754
+ "attributes": [
9755
+ {
9756
+ "name": "theme",
9757
+ "type": {
9758
+ "text": "'light' | 'dark' | undefined"
9759
+ },
9760
+ "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
9761
+ "fieldName": "theme",
9762
+ "inheritedFrom": {
9763
+ "name": "InputChoiceGroup",
9764
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9765
+ }
9766
+ },
9767
+ {
9768
+ "name": "layout",
9769
+ "type": {
9770
+ "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
9771
+ },
9772
+ "default": "'vertical'",
9773
+ "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
9774
+ "deprecated": "use `orientation` and `fluid` instead",
9775
+ "fieldName": "layout",
9776
+ "inheritedFrom": {
9777
+ "name": "InputChoiceGroup",
9778
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9779
+ }
9780
+ },
9781
+ {
9782
+ "name": "orientation",
9783
+ "type": {
9784
+ "text": "'horizontal' | 'vertical'"
9785
+ },
9786
+ "default": "'vertical'",
9787
+ "description": "Specify InputChoiceGroup orientation",
9788
+ "fieldName": "orientation",
9789
+ "inheritedFrom": {
9790
+ "name": "InputChoiceGroup",
9791
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9792
+ }
9793
+ },
9794
+ {
9795
+ "name": "fluid",
9796
+ "type": {
9797
+ "text": "boolean"
9798
+ },
9799
+ "default": "false",
9800
+ "description": "Specify if InputChoiceGroup should take the full width of its container",
9801
+ "fieldName": "fluid",
9802
+ "inheritedFrom": {
9803
+ "name": "InputChoiceGroup",
9804
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9805
+ }
9806
+ },
9807
+ {
9808
+ "name": "required",
9809
+ "type": {
9810
+ "text": "boolean"
9811
+ },
9812
+ "default": "false",
9813
+ "description": "Specify if InputChoiceGroup is a required input",
9814
+ "fieldName": "required",
9815
+ "inheritedFrom": {
9816
+ "name": "InputChoiceGroup",
9817
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9818
+ }
9819
+ },
9820
+ {
9821
+ "name": "hideRequiredMarker",
9822
+ "type": {
9823
+ "text": "boolean"
9824
+ },
9825
+ "default": "false",
9826
+ "description": "Specify if the InputChoiceGroup displays with an asterisk",
9827
+ "fieldName": "hideRequiredMarker",
9828
+ "inheritedFrom": {
9829
+ "name": "InputChoiceGroup",
9830
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9831
+ }
9832
+ },
9833
+ {
9834
+ "name": "error",
9835
+ "type": {
9836
+ "text": "string | undefined"
9837
+ },
9838
+ "description": "Specify error text and display error state of a InputChoiceGroup",
9839
+ "fieldName": "error",
9840
+ "inheritedFrom": {
9841
+ "name": "InputChoiceGroup",
9842
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9843
+ }
9844
+ },
9845
+ {
9846
+ "name": "readOnly",
9847
+ "type": {
9848
+ "text": "boolean"
9849
+ },
9850
+ "default": "false",
9851
+ "description": "Specify if InputChoiceGroup displays in a read-only state",
9852
+ "fieldName": "readOnly",
9853
+ "inheritedFrom": {
9854
+ "name": "InputChoiceGroup",
9855
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9856
+ }
9857
+ },
9858
+ {
9859
+ "name": "disabled",
9860
+ "type": {
9861
+ "text": "boolean"
9862
+ },
9863
+ "default": "false",
9864
+ "description": "Specify if InputChoiceGroup displays in a disabled state",
9865
+ "fieldName": "disabled",
9866
+ "inheritedFrom": {
9867
+ "name": "InputChoiceGroup",
9868
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9869
+ }
9870
+ },
9871
+ {
9872
+ "name": "id",
9873
+ "type": {
9874
+ "text": "string"
9875
+ },
9876
+ "default": "''",
9877
+ "fieldName": "id",
9748
9878
  "inheritedFrom": {
9749
- "name": "InputChoiceGroup",
9750
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9879
+ "name": "FormField",
9880
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9881
+ }
9882
+ },
9883
+ {
9884
+ "name": "name",
9885
+ "type": {
9886
+ "text": "string"
9887
+ },
9888
+ "default": "''",
9889
+ "fieldName": "name",
9890
+ "inheritedFrom": {
9891
+ "name": "FormField",
9892
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9893
+ }
9894
+ },
9895
+ {
9896
+ "name": "value",
9897
+ "type": {
9898
+ "text": "string"
9899
+ },
9900
+ "default": "''",
9901
+ "fieldName": "value",
9902
+ "inheritedFrom": {
9903
+ "name": "FormField",
9904
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9905
+ }
9906
+ },
9907
+ {
9908
+ "name": "validationRules",
9909
+ "type": {
9910
+ "text": "Array<FormValidator>"
9911
+ },
9912
+ "default": "[]",
9913
+ "fieldName": "validationRules",
9914
+ "inheritedFrom": {
9915
+ "name": "FormField",
9916
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9917
+ }
9918
+ },
9919
+ {
9920
+ "name": "input-aria-label",
9921
+ "type": {
9922
+ "text": "string | undefined"
9923
+ },
9924
+ "fieldName": "inputAriaLabel",
9925
+ "inheritedFrom": {
9926
+ "name": "FormField",
9927
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9751
9928
  }
9752
9929
  }
9753
9930
  ],
9754
- "attributes": [
9931
+ "members": [
9755
9932
  {
9933
+ "kind": "field",
9756
9934
  "name": "theme",
9757
9935
  "type": {
9758
9936
  "text": "'light' | 'dark' | undefined"
9759
9937
  },
9760
9938
  "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
9761
- "fieldName": "theme",
9939
+ "attribute": "theme",
9762
9940
  "inheritedFrom": {
9763
9941
  "name": "InputChoiceGroup",
9764
9942
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9765
9943
  }
9766
9944
  },
9767
9945
  {
9946
+ "kind": "field",
9768
9947
  "name": "layout",
9769
9948
  "type": {
9770
9949
  "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
@@ -9772,162 +9951,320 @@
9772
9951
  "default": "'vertical'",
9773
9952
  "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
9774
9953
  "deprecated": "use `orientation` and `fluid` instead",
9775
- "fieldName": "layout",
9954
+ "attribute": "layout",
9776
9955
  "inheritedFrom": {
9777
9956
  "name": "InputChoiceGroup",
9778
9957
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9779
9958
  }
9780
9959
  },
9781
9960
  {
9961
+ "kind": "field",
9782
9962
  "name": "orientation",
9783
9963
  "type": {
9784
9964
  "text": "'horizontal' | 'vertical'"
9785
9965
  },
9786
9966
  "default": "'vertical'",
9787
9967
  "description": "Specify InputChoiceGroup orientation",
9788
- "fieldName": "orientation",
9968
+ "attribute": "orientation",
9789
9969
  "inheritedFrom": {
9790
9970
  "name": "InputChoiceGroup",
9791
9971
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9792
9972
  }
9793
9973
  },
9794
9974
  {
9975
+ "kind": "field",
9795
9976
  "name": "fluid",
9796
9977
  "type": {
9797
9978
  "text": "boolean"
9798
9979
  },
9799
9980
  "default": "false",
9800
9981
  "description": "Specify if InputChoiceGroup should take the full width of its container",
9801
- "fieldName": "fluid",
9982
+ "attribute": "fluid",
9802
9983
  "inheritedFrom": {
9803
9984
  "name": "InputChoiceGroup",
9804
9985
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9805
9986
  }
9806
9987
  },
9807
9988
  {
9989
+ "kind": "field",
9808
9990
  "name": "required",
9809
9991
  "type": {
9810
9992
  "text": "boolean"
9811
9993
  },
9812
9994
  "default": "false",
9813
9995
  "description": "Specify if InputChoiceGroup is a required input",
9814
- "fieldName": "required",
9996
+ "attribute": "required",
9815
9997
  "inheritedFrom": {
9816
9998
  "name": "InputChoiceGroup",
9817
9999
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9818
10000
  }
9819
10001
  },
9820
10002
  {
10003
+ "kind": "field",
9821
10004
  "name": "hideRequiredMarker",
9822
10005
  "type": {
9823
10006
  "text": "boolean"
9824
10007
  },
9825
10008
  "default": "false",
9826
10009
  "description": "Specify if the InputChoiceGroup displays with an asterisk",
9827
- "fieldName": "hideRequiredMarker",
10010
+ "attribute": "hideRequiredMarker",
9828
10011
  "inheritedFrom": {
9829
10012
  "name": "InputChoiceGroup",
9830
10013
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9831
10014
  }
9832
10015
  },
9833
10016
  {
10017
+ "kind": "field",
9834
10018
  "name": "error",
9835
10019
  "type": {
9836
10020
  "text": "string | undefined"
9837
10021
  },
9838
10022
  "description": "Specify error text and display error state of a InputChoiceGroup",
9839
- "fieldName": "error",
10023
+ "attribute": "error",
9840
10024
  "inheritedFrom": {
9841
10025
  "name": "InputChoiceGroup",
9842
10026
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9843
10027
  }
9844
10028
  },
9845
10029
  {
10030
+ "kind": "field",
9846
10031
  "name": "readOnly",
9847
10032
  "type": {
9848
10033
  "text": "boolean"
9849
10034
  },
9850
10035
  "default": "false",
9851
10036
  "description": "Specify if InputChoiceGroup displays in a read-only state",
9852
- "fieldName": "readOnly",
10037
+ "attribute": "readOnly",
9853
10038
  "inheritedFrom": {
9854
10039
  "name": "InputChoiceGroup",
9855
10040
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9856
10041
  }
9857
10042
  },
9858
10043
  {
10044
+ "kind": "field",
9859
10045
  "name": "disabled",
9860
10046
  "type": {
9861
10047
  "text": "boolean"
9862
10048
  },
9863
10049
  "default": "false",
9864
10050
  "description": "Specify if InputChoiceGroup displays in a disabled state",
9865
- "fieldName": "disabled",
10051
+ "attribute": "disabled",
10052
+ "inheritedFrom": {
10053
+ "name": "InputChoiceGroup",
10054
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10055
+ }
10056
+ },
10057
+ {
10058
+ "kind": "field",
10059
+ "name": "radioButtons",
10060
+ "type": {
10061
+ "text": "NodeListOf<Element>"
10062
+ },
10063
+ "inheritedFrom": {
10064
+ "name": "InputChoiceGroup",
10065
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10066
+ }
10067
+ },
10068
+ {
10069
+ "kind": "field",
10070
+ "name": "checkboxes",
10071
+ "type": {
10072
+ "text": "NodeListOf<Element>"
10073
+ },
10074
+ "inheritedFrom": {
10075
+ "name": "InputChoiceGroup",
10076
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10077
+ }
10078
+ },
10079
+ {
10080
+ "kind": "field",
10081
+ "name": "switches",
10082
+ "type": {
10083
+ "text": "NodeListOf<Element>"
10084
+ },
10085
+ "inheritedFrom": {
10086
+ "name": "InputChoiceGroup",
10087
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10088
+ }
10089
+ },
10090
+ {
10091
+ "kind": "field",
10092
+ "name": "inputGroupContextValue",
10093
+ "type": {
10094
+ "text": "InputChoiceGroupContextProps"
10095
+ },
10096
+ "privacy": "public",
10097
+ "default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
9866
10098
  "inheritedFrom": {
9867
10099
  "name": "InputChoiceGroup",
9868
10100
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
9869
10101
  }
9870
10102
  },
9871
10103
  {
10104
+ "kind": "field",
10105
+ "name": "formAssociated",
10106
+ "type": {
10107
+ "text": "boolean"
10108
+ },
10109
+ "static": true,
10110
+ "default": "true",
10111
+ "inheritedFrom": {
10112
+ "name": "FormField",
10113
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10114
+ }
10115
+ },
10116
+ {
10117
+ "kind": "field",
9872
10118
  "name": "id",
9873
10119
  "type": {
9874
10120
  "text": "string"
9875
10121
  },
9876
10122
  "default": "''",
9877
- "fieldName": "id",
10123
+ "attribute": "id",
9878
10124
  "inheritedFrom": {
9879
10125
  "name": "FormField",
9880
10126
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9881
10127
  }
9882
10128
  },
9883
10129
  {
10130
+ "kind": "field",
9884
10131
  "name": "name",
9885
10132
  "type": {
9886
10133
  "text": "string"
9887
10134
  },
9888
10135
  "default": "''",
9889
- "fieldName": "name",
10136
+ "attribute": "name",
9890
10137
  "inheritedFrom": {
9891
10138
  "name": "FormField",
9892
10139
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9893
10140
  }
9894
10141
  },
9895
10142
  {
10143
+ "kind": "field",
9896
10144
  "name": "value",
9897
10145
  "type": {
9898
10146
  "text": "string"
9899
10147
  },
9900
10148
  "default": "''",
9901
- "fieldName": "value",
10149
+ "attribute": "value",
9902
10150
  "inheritedFrom": {
9903
10151
  "name": "FormField",
9904
10152
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9905
10153
  }
9906
10154
  },
9907
10155
  {
10156
+ "kind": "field",
9908
10157
  "name": "validationRules",
9909
10158
  "type": {
9910
10159
  "text": "Array<FormValidator>"
9911
10160
  },
9912
10161
  "default": "[]",
9913
- "fieldName": "validationRules",
10162
+ "attribute": "validationRules",
9914
10163
  "inheritedFrom": {
9915
10164
  "name": "FormField",
9916
10165
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9917
10166
  }
9918
10167
  },
9919
10168
  {
9920
- "name": "input-aria-label",
10169
+ "kind": "field",
10170
+ "name": "inputAriaLabel",
9921
10171
  "type": {
9922
10172
  "text": "string | undefined"
9923
10173
  },
9924
- "fieldName": "inputAriaLabel",
10174
+ "attribute": "input-aria-label",
10175
+ "inheritedFrom": {
10176
+ "name": "FormField",
10177
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10178
+ }
10179
+ },
10180
+ {
10181
+ "kind": "field",
10182
+ "name": "formContext",
10183
+ "type": {
10184
+ "text": "BmFormContext"
10185
+ },
10186
+ "inheritedFrom": {
10187
+ "name": "FormField",
10188
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10189
+ }
10190
+ },
10191
+ {
10192
+ "kind": "method",
10193
+ "name": "formAssociatedCallback",
10194
+ "return": {
10195
+ "type": {
10196
+ "text": "void"
10197
+ }
10198
+ },
10199
+ "inheritedFrom": {
10200
+ "name": "FormField",
10201
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10202
+ }
10203
+ },
10204
+ {
10205
+ "kind": "method",
10206
+ "name": "formResetCallback",
10207
+ "return": {
10208
+ "type": {
10209
+ "text": "void"
10210
+ }
10211
+ },
10212
+ "inheritedFrom": {
10213
+ "name": "FormField",
10214
+ "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10215
+ }
10216
+ },
10217
+ {
10218
+ "kind": "method",
10219
+ "name": "finalizeAssociatedCallback",
10220
+ "return": {
10221
+ "type": {
10222
+ "text": "FinalizeAssociatedResult"
10223
+ }
10224
+ },
10225
+ "parameters": [
10226
+ {
10227
+ "name": "ctxValue",
10228
+ "type": {
10229
+ "text": "string"
10230
+ }
10231
+ }
10232
+ ],
9925
10233
  "inheritedFrom": {
9926
10234
  "name": "FormField",
9927
10235
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
9928
10236
  }
9929
10237
  }
9930
- ],
10238
+ ]
10239
+ }
10240
+ ],
10241
+ "exports": [
10242
+ {
10243
+ "kind": "js",
10244
+ "name": "BmCheckboxGroup",
10245
+ "declaration": {
10246
+ "name": "BmCheckboxGroup",
10247
+ "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10248
+ }
10249
+ },
10250
+ {
10251
+ "kind": "custom-element-definition",
10252
+ "name": "bm-checkbox-group",
10253
+ "declaration": {
10254
+ "name": "BmCheckboxGroup",
10255
+ "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10256
+ }
10257
+ }
10258
+ ]
10259
+ },
10260
+ {
10261
+ "kind": "javascript-module",
10262
+ "path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
10263
+ "declarations": [
10264
+ {
10265
+ "kind": "class",
10266
+ "description": "",
10267
+ "name": "BmRadioButtonGroup",
9931
10268
  "members": [
9932
10269
  {
9933
10270
  "kind": "field",
@@ -10235,39 +10572,16 @@
10235
10572
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10236
10573
  }
10237
10574
  }
10238
- ]
10239
- }
10240
- ],
10241
- "exports": [
10242
- {
10243
- "kind": "js",
10244
- "name": "BmCheckboxGroup",
10245
- "declaration": {
10246
- "name": "BmCheckboxGroup",
10247
- "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10248
- }
10249
- },
10250
- {
10251
- "kind": "custom-element-definition",
10252
- "name": "bm-checkbox-group",
10253
- "declaration": {
10254
- "name": "BmCheckboxGroup",
10255
- "module": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts"
10256
- }
10257
- }
10258
- ]
10259
- },
10260
- {
10261
- "kind": "javascript-module",
10262
- "path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
10263
- "declarations": [
10264
- {
10265
- "kind": "class",
10266
- "description": "`bm-switch-group`",
10267
- "name": "BmSwitchGroup",
10575
+ ],
10576
+ "superclass": {
10577
+ "name": "InputChoiceGroup",
10578
+ "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
10579
+ },
10580
+ "tagName": "bm-radio-button-group",
10581
+ "customElement": true,
10268
10582
  "slots": [
10269
10583
  {
10270
- "description": "Slot for the label of the SwitchGroup",
10584
+ "description": "Add label text to the InputChoiceGroup",
10271
10585
  "name": "label",
10272
10586
  "inheritedFrom": {
10273
10587
  "name": "InputChoiceGroup",
@@ -10275,7 +10589,7 @@
10275
10589
  }
10276
10590
  },
10277
10591
  {
10278
- "description": "Slot for the helper text of the SwitchGroup",
10592
+ "description": "Add helper text to the InputChoiceGroup",
10279
10593
  "name": "helperText",
10280
10594
  "inheritedFrom": {
10281
10595
  "name": "InputChoiceGroup",
@@ -10283,12 +10597,6 @@
10283
10597
  }
10284
10598
  }
10285
10599
  ],
10286
- "superclass": {
10287
- "name": "InputChoiceGroup",
10288
- "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
10289
- },
10290
- "tagName": "bm-switch-group",
10291
- "customElement": true,
10292
10600
  "attributes": [
10293
10601
  {
10294
10602
  "name": "theme",
@@ -10465,23 +10773,74 @@
10465
10773
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10466
10774
  }
10467
10775
  }
10776
+ ]
10777
+ }
10778
+ ],
10779
+ "exports": [
10780
+ {
10781
+ "kind": "js",
10782
+ "name": "BmRadioButtonGroup",
10783
+ "declaration": {
10784
+ "name": "BmRadioButtonGroup",
10785
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
10786
+ }
10787
+ },
10788
+ {
10789
+ "kind": "custom-element-definition",
10790
+ "name": "bm-radio-button-group",
10791
+ "declaration": {
10792
+ "name": "BmRadioButtonGroup",
10793
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
10794
+ }
10795
+ }
10796
+ ]
10797
+ },
10798
+ {
10799
+ "kind": "javascript-module",
10800
+ "path": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts",
10801
+ "declarations": [
10802
+ {
10803
+ "kind": "class",
10804
+ "description": "`bm-switch-group`",
10805
+ "name": "BmSwitchGroup",
10806
+ "slots": [
10807
+ {
10808
+ "description": "Slot for the label of the SwitchGroup",
10809
+ "name": "label",
10810
+ "inheritedFrom": {
10811
+ "name": "InputChoiceGroup",
10812
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10813
+ }
10814
+ },
10815
+ {
10816
+ "description": "Slot for the helper text of the SwitchGroup",
10817
+ "name": "helperText",
10818
+ "inheritedFrom": {
10819
+ "name": "InputChoiceGroup",
10820
+ "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10821
+ }
10822
+ }
10468
10823
  ],
10469
- "members": [
10824
+ "superclass": {
10825
+ "name": "InputChoiceGroup",
10826
+ "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
10827
+ },
10828
+ "tagName": "bm-switch-group",
10829
+ "customElement": true,
10830
+ "attributes": [
10470
10831
  {
10471
- "kind": "field",
10472
10832
  "name": "theme",
10473
10833
  "type": {
10474
10834
  "text": "'light' | 'dark' | undefined"
10475
10835
  },
10476
10836
  "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
10477
- "attribute": "theme",
10837
+ "fieldName": "theme",
10478
10838
  "inheritedFrom": {
10479
10839
  "name": "InputChoiceGroup",
10480
10840
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10481
10841
  }
10482
10842
  },
10483
10843
  {
10484
- "kind": "field",
10485
10844
  "name": "layout",
10486
10845
  "type": {
10487
10846
  "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
@@ -10489,320 +10848,162 @@
10489
10848
  "default": "'vertical'",
10490
10849
  "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
10491
10850
  "deprecated": "use `orientation` and `fluid` instead",
10492
- "attribute": "layout",
10851
+ "fieldName": "layout",
10493
10852
  "inheritedFrom": {
10494
10853
  "name": "InputChoiceGroup",
10495
10854
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10496
10855
  }
10497
10856
  },
10498
10857
  {
10499
- "kind": "field",
10500
10858
  "name": "orientation",
10501
10859
  "type": {
10502
10860
  "text": "'horizontal' | 'vertical'"
10503
10861
  },
10504
10862
  "default": "'vertical'",
10505
10863
  "description": "Specify InputChoiceGroup orientation",
10506
- "attribute": "orientation",
10864
+ "fieldName": "orientation",
10507
10865
  "inheritedFrom": {
10508
10866
  "name": "InputChoiceGroup",
10509
10867
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10510
10868
  }
10511
10869
  },
10512
10870
  {
10513
- "kind": "field",
10514
10871
  "name": "fluid",
10515
10872
  "type": {
10516
10873
  "text": "boolean"
10517
10874
  },
10518
10875
  "default": "false",
10519
10876
  "description": "Specify if InputChoiceGroup should take the full width of its container",
10520
- "attribute": "fluid",
10877
+ "fieldName": "fluid",
10521
10878
  "inheritedFrom": {
10522
10879
  "name": "InputChoiceGroup",
10523
10880
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10524
10881
  }
10525
10882
  },
10526
10883
  {
10527
- "kind": "field",
10528
10884
  "name": "required",
10529
10885
  "type": {
10530
10886
  "text": "boolean"
10531
10887
  },
10532
10888
  "default": "false",
10533
10889
  "description": "Specify if InputChoiceGroup is a required input",
10534
- "attribute": "required",
10890
+ "fieldName": "required",
10535
10891
  "inheritedFrom": {
10536
10892
  "name": "InputChoiceGroup",
10537
10893
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10538
10894
  }
10539
10895
  },
10540
10896
  {
10541
- "kind": "field",
10542
10897
  "name": "hideRequiredMarker",
10543
10898
  "type": {
10544
10899
  "text": "boolean"
10545
10900
  },
10546
10901
  "default": "false",
10547
10902
  "description": "Specify if the InputChoiceGroup displays with an asterisk",
10548
- "attribute": "hideRequiredMarker",
10903
+ "fieldName": "hideRequiredMarker",
10549
10904
  "inheritedFrom": {
10550
10905
  "name": "InputChoiceGroup",
10551
10906
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10552
10907
  }
10553
10908
  },
10554
10909
  {
10555
- "kind": "field",
10556
10910
  "name": "error",
10557
10911
  "type": {
10558
10912
  "text": "string | undefined"
10559
10913
  },
10560
10914
  "description": "Specify error text and display error state of a InputChoiceGroup",
10561
- "attribute": "error",
10915
+ "fieldName": "error",
10562
10916
  "inheritedFrom": {
10563
10917
  "name": "InputChoiceGroup",
10564
10918
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10565
10919
  }
10566
10920
  },
10567
10921
  {
10568
- "kind": "field",
10569
10922
  "name": "readOnly",
10570
10923
  "type": {
10571
10924
  "text": "boolean"
10572
10925
  },
10573
10926
  "default": "false",
10574
10927
  "description": "Specify if InputChoiceGroup displays in a read-only state",
10575
- "attribute": "readOnly",
10928
+ "fieldName": "readOnly",
10576
10929
  "inheritedFrom": {
10577
10930
  "name": "InputChoiceGroup",
10578
10931
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10579
10932
  }
10580
10933
  },
10581
10934
  {
10582
- "kind": "field",
10583
10935
  "name": "disabled",
10584
10936
  "type": {
10585
10937
  "text": "boolean"
10586
10938
  },
10587
10939
  "default": "false",
10588
10940
  "description": "Specify if InputChoiceGroup displays in a disabled state",
10589
- "attribute": "disabled",
10590
- "inheritedFrom": {
10591
- "name": "InputChoiceGroup",
10592
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10593
- }
10594
- },
10595
- {
10596
- "kind": "field",
10597
- "name": "radioButtons",
10598
- "type": {
10599
- "text": "NodeListOf<Element>"
10600
- },
10601
- "inheritedFrom": {
10602
- "name": "InputChoiceGroup",
10603
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10604
- }
10605
- },
10606
- {
10607
- "kind": "field",
10608
- "name": "checkboxes",
10609
- "type": {
10610
- "text": "NodeListOf<Element>"
10611
- },
10612
- "inheritedFrom": {
10613
- "name": "InputChoiceGroup",
10614
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10615
- }
10616
- },
10617
- {
10618
- "kind": "field",
10619
- "name": "switches",
10620
- "type": {
10621
- "text": "NodeListOf<Element>"
10622
- },
10623
- "inheritedFrom": {
10624
- "name": "InputChoiceGroup",
10625
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10626
- }
10627
- },
10628
- {
10629
- "kind": "field",
10630
- "name": "inputGroupContextValue",
10631
- "type": {
10632
- "text": "InputChoiceGroupContextProps"
10633
- },
10634
- "privacy": "public",
10635
- "default": "{ name: '', required: false, error: undefined, readOnly: false, disabled: false, selectedValue: undefined, updateSelectedValue: this.updateSelectedValue.bind(this), }",
10941
+ "fieldName": "disabled",
10636
10942
  "inheritedFrom": {
10637
10943
  "name": "InputChoiceGroup",
10638
10944
  "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
10639
10945
  }
10640
10946
  },
10641
10947
  {
10642
- "kind": "field",
10643
- "name": "formAssociated",
10644
- "type": {
10645
- "text": "boolean"
10646
- },
10647
- "static": true,
10648
- "default": "true",
10649
- "inheritedFrom": {
10650
- "name": "FormField",
10651
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10652
- }
10653
- },
10654
- {
10655
- "kind": "field",
10656
10948
  "name": "id",
10657
10949
  "type": {
10658
10950
  "text": "string"
10659
10951
  },
10660
10952
  "default": "''",
10661
- "attribute": "id",
10953
+ "fieldName": "id",
10662
10954
  "inheritedFrom": {
10663
10955
  "name": "FormField",
10664
10956
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10665
10957
  }
10666
10958
  },
10667
10959
  {
10668
- "kind": "field",
10669
10960
  "name": "name",
10670
10961
  "type": {
10671
10962
  "text": "string"
10672
10963
  },
10673
10964
  "default": "''",
10674
- "attribute": "name",
10965
+ "fieldName": "name",
10675
10966
  "inheritedFrom": {
10676
10967
  "name": "FormField",
10677
10968
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10678
10969
  }
10679
10970
  },
10680
10971
  {
10681
- "kind": "field",
10682
10972
  "name": "value",
10683
10973
  "type": {
10684
10974
  "text": "string"
10685
10975
  },
10686
10976
  "default": "''",
10687
- "attribute": "value",
10977
+ "fieldName": "value",
10688
10978
  "inheritedFrom": {
10689
10979
  "name": "FormField",
10690
10980
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10691
10981
  }
10692
10982
  },
10693
10983
  {
10694
- "kind": "field",
10695
10984
  "name": "validationRules",
10696
10985
  "type": {
10697
10986
  "text": "Array<FormValidator>"
10698
10987
  },
10699
10988
  "default": "[]",
10700
- "attribute": "validationRules",
10701
- "inheritedFrom": {
10702
- "name": "FormField",
10703
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10704
- }
10705
- },
10706
- {
10707
- "kind": "field",
10708
- "name": "inputAriaLabel",
10709
- "type": {
10710
- "text": "string | undefined"
10711
- },
10712
- "attribute": "input-aria-label",
10713
- "inheritedFrom": {
10714
- "name": "FormField",
10715
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10716
- }
10717
- },
10718
- {
10719
- "kind": "field",
10720
- "name": "formContext",
10721
- "type": {
10722
- "text": "BmFormContext"
10723
- },
10724
- "inheritedFrom": {
10725
- "name": "FormField",
10726
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10727
- }
10728
- },
10729
- {
10730
- "kind": "method",
10731
- "name": "formAssociatedCallback",
10732
- "return": {
10733
- "type": {
10734
- "text": "void"
10735
- }
10736
- },
10737
- "inheritedFrom": {
10738
- "name": "FormField",
10739
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10740
- }
10741
- },
10742
- {
10743
- "kind": "method",
10744
- "name": "formResetCallback",
10745
- "return": {
10746
- "type": {
10747
- "text": "void"
10748
- }
10749
- },
10989
+ "fieldName": "validationRules",
10750
10990
  "inheritedFrom": {
10751
10991
  "name": "FormField",
10752
10992
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10753
10993
  }
10754
10994
  },
10755
10995
  {
10756
- "kind": "method",
10757
- "name": "finalizeAssociatedCallback",
10758
- "return": {
10759
- "type": {
10760
- "text": "FinalizeAssociatedResult"
10761
- }
10996
+ "name": "input-aria-label",
10997
+ "type": {
10998
+ "text": "string | undefined"
10762
10999
  },
10763
- "parameters": [
10764
- {
10765
- "name": "ctxValue",
10766
- "type": {
10767
- "text": "string"
10768
- }
10769
- }
10770
- ],
11000
+ "fieldName": "inputAriaLabel",
10771
11001
  "inheritedFrom": {
10772
11002
  "name": "FormField",
10773
11003
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
10774
11004
  }
10775
11005
  }
10776
- ]
10777
- }
10778
- ],
10779
- "exports": [
10780
- {
10781
- "kind": "js",
10782
- "name": "BmSwitchGroup",
10783
- "declaration": {
10784
- "name": "BmSwitchGroup",
10785
- "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
10786
- }
10787
- },
10788
- {
10789
- "kind": "custom-element-definition",
10790
- "name": "bm-switch-group",
10791
- "declaration": {
10792
- "name": "BmSwitchGroup",
10793
- "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
10794
- }
10795
- }
10796
- ]
10797
- },
10798
- {
10799
- "kind": "javascript-module",
10800
- "path": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts",
10801
- "declarations": [
10802
- {
10803
- "kind": "class",
10804
- "description": "",
10805
- "name": "BmRadioButtonGroup",
11006
+ ],
10806
11007
  "members": [
10807
11008
  {
10808
11009
  "kind": "field",
@@ -11110,225 +11311,24 @@
11110
11311
  "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11111
11312
  }
11112
11313
  }
11113
- ],
11114
- "superclass": {
11115
- "name": "InputChoiceGroup",
11116
- "module": "/libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup"
11117
- },
11118
- "tagName": "bm-radio-button-group",
11119
- "customElement": true,
11120
- "slots": [
11121
- {
11122
- "description": "Add label text to the InputChoiceGroup",
11123
- "name": "label",
11124
- "inheritedFrom": {
11125
- "name": "InputChoiceGroup",
11126
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11127
- }
11128
- },
11129
- {
11130
- "description": "Add helper text to the InputChoiceGroup",
11131
- "name": "helperText",
11132
- "inheritedFrom": {
11133
- "name": "InputChoiceGroup",
11134
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11135
- }
11136
- }
11137
- ],
11138
- "attributes": [
11139
- {
11140
- "name": "theme",
11141
- "type": {
11142
- "text": "'light' | 'dark' | undefined"
11143
- },
11144
- "description": "Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent",
11145
- "fieldName": "theme",
11146
- "inheritedFrom": {
11147
- "name": "InputChoiceGroup",
11148
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11149
- }
11150
- },
11151
- {
11152
- "name": "layout",
11153
- "type": {
11154
- "text": "'horizontal' | 'vertical' | 'horizontalFluid'"
11155
- },
11156
- "default": "'vertical'",
11157
- "description": "Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead",
11158
- "deprecated": "use `orientation` and `fluid` instead",
11159
- "fieldName": "layout",
11160
- "inheritedFrom": {
11161
- "name": "InputChoiceGroup",
11162
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11163
- }
11164
- },
11165
- {
11166
- "name": "orientation",
11167
- "type": {
11168
- "text": "'horizontal' | 'vertical'"
11169
- },
11170
- "default": "'vertical'",
11171
- "description": "Specify InputChoiceGroup orientation",
11172
- "fieldName": "orientation",
11173
- "inheritedFrom": {
11174
- "name": "InputChoiceGroup",
11175
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11176
- }
11177
- },
11178
- {
11179
- "name": "fluid",
11180
- "type": {
11181
- "text": "boolean"
11182
- },
11183
- "default": "false",
11184
- "description": "Specify if InputChoiceGroup should take the full width of its container",
11185
- "fieldName": "fluid",
11186
- "inheritedFrom": {
11187
- "name": "InputChoiceGroup",
11188
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11189
- }
11190
- },
11191
- {
11192
- "name": "required",
11193
- "type": {
11194
- "text": "boolean"
11195
- },
11196
- "default": "false",
11197
- "description": "Specify if InputChoiceGroup is a required input",
11198
- "fieldName": "required",
11199
- "inheritedFrom": {
11200
- "name": "InputChoiceGroup",
11201
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11202
- }
11203
- },
11204
- {
11205
- "name": "hideRequiredMarker",
11206
- "type": {
11207
- "text": "boolean"
11208
- },
11209
- "default": "false",
11210
- "description": "Specify if the InputChoiceGroup displays with an asterisk",
11211
- "fieldName": "hideRequiredMarker",
11212
- "inheritedFrom": {
11213
- "name": "InputChoiceGroup",
11214
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11215
- }
11216
- },
11217
- {
11218
- "name": "error",
11219
- "type": {
11220
- "text": "string | undefined"
11221
- },
11222
- "description": "Specify error text and display error state of a InputChoiceGroup",
11223
- "fieldName": "error",
11224
- "inheritedFrom": {
11225
- "name": "InputChoiceGroup",
11226
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11227
- }
11228
- },
11229
- {
11230
- "name": "readOnly",
11231
- "type": {
11232
- "text": "boolean"
11233
- },
11234
- "default": "false",
11235
- "description": "Specify if InputChoiceGroup displays in a read-only state",
11236
- "fieldName": "readOnly",
11237
- "inheritedFrom": {
11238
- "name": "InputChoiceGroup",
11239
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11240
- }
11241
- },
11242
- {
11243
- "name": "disabled",
11244
- "type": {
11245
- "text": "boolean"
11246
- },
11247
- "default": "false",
11248
- "description": "Specify if InputChoiceGroup displays in a disabled state",
11249
- "fieldName": "disabled",
11250
- "inheritedFrom": {
11251
- "name": "InputChoiceGroup",
11252
- "module": "libs/web-components/src/lib/InputChoiceGroup/InputChoiceGroup.ts"
11253
- }
11254
- },
11255
- {
11256
- "name": "id",
11257
- "type": {
11258
- "text": "string"
11259
- },
11260
- "default": "''",
11261
- "fieldName": "id",
11262
- "inheritedFrom": {
11263
- "name": "FormField",
11264
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11265
- }
11266
- },
11267
- {
11268
- "name": "name",
11269
- "type": {
11270
- "text": "string"
11271
- },
11272
- "default": "''",
11273
- "fieldName": "name",
11274
- "inheritedFrom": {
11275
- "name": "FormField",
11276
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11277
- }
11278
- },
11279
- {
11280
- "name": "value",
11281
- "type": {
11282
- "text": "string"
11283
- },
11284
- "default": "''",
11285
- "fieldName": "value",
11286
- "inheritedFrom": {
11287
- "name": "FormField",
11288
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11289
- }
11290
- },
11291
- {
11292
- "name": "validationRules",
11293
- "type": {
11294
- "text": "Array<FormValidator>"
11295
- },
11296
- "default": "[]",
11297
- "fieldName": "validationRules",
11298
- "inheritedFrom": {
11299
- "name": "FormField",
11300
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11301
- }
11302
- },
11303
- {
11304
- "name": "input-aria-label",
11305
- "type": {
11306
- "text": "string | undefined"
11307
- },
11308
- "fieldName": "inputAriaLabel",
11309
- "inheritedFrom": {
11310
- "name": "FormField",
11311
- "module": "libs/web-components/src/lib/wip/Form/Form.decorator.ts"
11312
- }
11313
- }
11314
11314
  ]
11315
11315
  }
11316
11316
  ],
11317
11317
  "exports": [
11318
11318
  {
11319
11319
  "kind": "js",
11320
- "name": "BmRadioButtonGroup",
11320
+ "name": "BmSwitchGroup",
11321
11321
  "declaration": {
11322
- "name": "BmRadioButtonGroup",
11323
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
11322
+ "name": "BmSwitchGroup",
11323
+ "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
11324
11324
  }
11325
11325
  },
11326
11326
  {
11327
11327
  "kind": "custom-element-definition",
11328
- "name": "bm-radio-button-group",
11328
+ "name": "bm-switch-group",
11329
11329
  "declaration": {
11330
- "name": "BmRadioButtonGroup",
11331
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButtonGroup/RadioButtonGroup.ts"
11330
+ "name": "BmSwitchGroup",
11331
+ "module": "libs/web-components/src/lib/wip/Switch/SwitchGroup/SwitchGroup.ts"
11332
11332
  }
11333
11333
  }
11334
11334
  ]