@viasat/beam-web-components 2.60.0 → 2.61.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,193 +960,227 @@
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/Alert/Alert.ts",
970
+ "path": "libs/web-components/src/lib/Badge/Badge.ts",
845
971
  "declarations": [
846
972
  {
847
973
  "kind": "class",
848
- "description": "`bm-alert`\n\n### Attributes:\n- **heading** - Specify the heading text for Alert\n- **body** - Specify the body text for Alert\n- **size** - Specify the size of the Alert\n- **fullWidth** - Specify if the Alert has no border radius\n- **theme** - Specify the theme of the Alert. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the Alert\n- **hidden** - Specify if the Alert is hidden\n- **hideIcon** - Specify if the icon displays on the Alert\n- **dismissible** - Specify if the Alert can be dismissed\n- **disableAutoFocus** - Prevent autofocus on show\n- **disableCloseOnEscape** - Prevent Escape from closing",
849
- "name": "BmAlert",
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": "Specify a different icon for the Alert",
853
- "name": "icon"
854
- },
855
- {
856
- "description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
857
- "name": "heading"
858
- },
859
- {
860
- "description": "Specify the body text for Alert or pass the `body` attribute to set the body",
861
- "name": "body"
978
+ "description": "Provide text for the Badge",
979
+ "name": "default"
862
980
  },
863
981
  {
864
- "description": "Specify if actions display on the Alert",
865
- "name": "actions"
982
+ "description": "Specify a different icon for the Badge",
983
+ "name": "icon"
866
984
  }
867
985
  ],
868
986
  "members": [
869
987
  {
870
988
  "kind": "field",
871
- "name": "heading",
989
+ "name": "appearance",
872
990
  "type": {
873
- "text": "string | undefined"
991
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
874
992
  },
875
- "description": "Specify the heading text for Alert",
876
- "attribute": "heading"
993
+ "default": "'infoPrimary'",
994
+ "description": "Specify the appearance of the Badge",
995
+ "attribute": "appearance"
877
996
  },
878
997
  {
879
998
  "kind": "field",
880
- "name": "body",
999
+ "name": "theme",
881
1000
  "type": {
882
- "text": "string | undefined"
1001
+ "text": "'light' | 'dark' | undefined"
883
1002
  },
884
- "description": "Specify the body text for Alert",
885
- "attribute": "body"
1003
+ "description": "Theme of the Badge",
1004
+ "attribute": "theme"
886
1005
  },
887
1006
  {
888
1007
  "kind": "field",
889
1008
  "name": "size",
890
1009
  "type": {
891
- "text": "'sm' | 'md'"
1010
+ "text": "'sm' | 'md' | undefined"
892
1011
  },
893
1012
  "default": "'sm'",
894
- "description": "Specify the size of the Alert",
1013
+ "description": "Specify the size of the Badge",
895
1014
  "attribute": "size"
896
1015
  },
897
1016
  {
898
1017
  "kind": "field",
899
- "name": "fullWidth",
1018
+ "name": "emphasis",
900
1019
  "type": {
901
- "text": "boolean"
1020
+ "text": "'strong' | 'medium' | 'subtle'"
902
1021
  },
903
- "default": "false",
904
- "description": "Specify if the Alert has no border radius",
905
- "attribute": "fullWidth"
1022
+ "default": "'strong'",
1023
+ "description": "Specify the emphasis of the Badge",
1024
+ "attribute": "emphasis"
906
1025
  },
907
1026
  {
908
1027
  "kind": "field",
909
- "name": "theme",
1028
+ "name": "hideIcon",
910
1029
  "type": {
911
- "text": "'light' | 'dark' | undefined"
1030
+ "text": "boolean | undefined"
912
1031
  },
913
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
914
- "attribute": "theme"
915
- },
1032
+ "description": "Hides Badge icon",
1033
+ "attribute": "hideIcon"
1034
+ }
1035
+ ],
1036
+ "attributes": [
916
1037
  {
917
- "kind": "field",
918
1038
  "name": "appearance",
919
1039
  "type": {
920
1040
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
921
1041
  },
922
1042
  "default": "'infoPrimary'",
923
- "description": "Specify the appearance of the Alert",
924
- "attribute": "appearance"
925
- },
926
- {
927
- "kind": "field",
928
- "name": "hidden",
929
- "type": {
930
- "text": "boolean"
931
- },
932
- "default": "false",
933
- "description": "Specify if the Alert is hidden",
934
- "attribute": "hidden"
1043
+ "description": "Specify the appearance of the Badge",
1044
+ "fieldName": "appearance"
935
1045
  },
936
1046
  {
937
- "kind": "field",
938
- "name": "hideIcon",
1047
+ "name": "theme",
939
1048
  "type": {
940
- "text": "boolean"
1049
+ "text": "'light' | 'dark' | undefined"
941
1050
  },
942
- "default": "false",
943
- "description": "Specify if the icon displays on the Alert",
944
- "attribute": "hideIcon"
1051
+ "description": "Theme of the Badge",
1052
+ "fieldName": "theme"
945
1053
  },
946
1054
  {
947
- "kind": "field",
948
- "name": "dismissible",
1055
+ "name": "size",
949
1056
  "type": {
950
- "text": "boolean"
1057
+ "text": "'sm' | 'md' | undefined"
951
1058
  },
952
- "default": "false",
953
- "description": "Specify if the Alert can be dismissed",
954
- "attribute": "dismissible"
1059
+ "default": "'sm'",
1060
+ "description": "Specify the size of the Badge",
1061
+ "fieldName": "size"
955
1062
  },
956
1063
  {
957
- "kind": "field",
958
- "name": "disableAutoFocus",
1064
+ "name": "emphasis",
959
1065
  "type": {
960
- "text": "boolean"
1066
+ "text": "'strong' | 'medium' | 'subtle'"
961
1067
  },
962
- "default": "false",
963
- "description": "Prevent autofocus on show",
964
- "attribute": "disableAutoFocus"
1068
+ "default": "'strong'",
1069
+ "description": "Specify the emphasis of the Badge",
1070
+ "fieldName": "emphasis"
965
1071
  },
966
1072
  {
967
- "kind": "field",
968
- "name": "disableCloseOnEscape",
1073
+ "name": "hideIcon",
969
1074
  "type": {
970
- "text": "boolean"
1075
+ "text": "boolean | undefined"
971
1076
  },
972
- "default": "false",
973
- "description": "Prevent Escape from closing",
974
- "attribute": "disableCloseOnEscape"
1077
+ "description": "Hides Badge icon",
1078
+ "fieldName": "hideIcon"
975
1079
  }
976
1080
  ],
977
- "events": [
1081
+ "superclass": {
1082
+ "name": "LitElement",
1083
+ "package": "lit"
1084
+ },
1085
+ "tagName": "bm-badge",
1086
+ "customElement": true
1087
+ }
1088
+ ],
1089
+ "exports": [
1090
+ {
1091
+ "kind": "js",
1092
+ "name": "BmBadge",
1093
+ "declaration": {
1094
+ "name": "BmBadge",
1095
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
1096
+ }
1097
+ },
1098
+ {
1099
+ "kind": "custom-element-definition",
1100
+ "name": "bm-badge",
1101
+ "declaration": {
1102
+ "name": "BmBadge",
1103
+ "module": "libs/web-components/src/lib/Badge/Badge.ts"
1104
+ }
1105
+ }
1106
+ ]
1107
+ },
1108
+ {
1109
+ "kind": "javascript-module",
1110
+ "path": "libs/web-components/src/lib/Badge/index.ts",
1111
+ "declarations": [],
1112
+ "exports": [
1113
+ {
1114
+ "kind": "js",
1115
+ "name": "*",
1116
+ "declaration": {
1117
+ "name": "*",
1118
+ "package": "./Badge"
1119
+ }
1120
+ }
1121
+ ]
1122
+ },
1123
+ {
1124
+ "kind": "javascript-module",
1125
+ "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
1126
+ "declarations": [
1127
+ {
1128
+ "kind": "class",
1129
+ "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
1130
+ "name": "BmBadgeDot",
1131
+ "slots": [
978
1132
  {
979
- "description": "Dispatched when the Alert has been dismissed",
980
- "name": "bm-dismiss"
1133
+ "description": "Provide text for the BadgeDot",
1134
+ "name": "default"
981
1135
  }
982
1136
  ],
983
- "attributes": [
1137
+ "members": [
984
1138
  {
985
- "name": "heading",
1139
+ "kind": "field",
1140
+ "name": "theme",
986
1141
  "type": {
987
- "text": "string | undefined"
1142
+ "text": "'light' | 'dark' | undefined"
988
1143
  },
989
- "description": "Specify the heading text for Alert",
990
- "fieldName": "heading"
1144
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1145
+ "attribute": "theme"
991
1146
  },
992
1147
  {
993
- "name": "body",
1148
+ "kind": "field",
1149
+ "name": "appearance",
994
1150
  "type": {
995
- "text": "string | undefined"
1151
+ "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
996
1152
  },
997
- "description": "Specify the body text for Alert",
998
- "fieldName": "body"
1153
+ "default": "'infoPrimary'",
1154
+ "description": "Specify the appearance of the BadgeDot",
1155
+ "attribute": "appearance"
999
1156
  },
1000
1157
  {
1001
- "name": "size",
1158
+ "kind": "field",
1159
+ "name": "emphasis",
1002
1160
  "type": {
1003
- "text": "'sm' | 'md'"
1161
+ "text": "'strong' | 'subtle'"
1004
1162
  },
1005
- "default": "'sm'",
1006
- "description": "Specify the size of the Alert",
1007
- "fieldName": "size"
1163
+ "default": "'strong'",
1164
+ "description": "Specify the emphasis of the BadgeDot",
1165
+ "attribute": "emphasis"
1008
1166
  },
1009
1167
  {
1010
- "name": "fullWidth",
1168
+ "kind": "field",
1169
+ "name": "overrideDotColor",
1011
1170
  "type": {
1012
- "text": "boolean"
1171
+ "text": "string | undefined"
1013
1172
  },
1014
- "default": "false",
1015
- "description": "Specify if the Alert has no border radius",
1016
- "fieldName": "fullWidth"
1017
- },
1173
+ "description": "Overrides default dot color",
1174
+ "attribute": "overrideDotColor"
1175
+ }
1176
+ ],
1177
+ "attributes": [
1018
1178
  {
1019
1179
  "name": "theme",
1020
1180
  "type": {
1021
1181
  "text": "'light' | 'dark' | undefined"
1022
1182
  },
1023
- "description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
1183
+ "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1024
1184
  "fieldName": "theme"
1025
1185
  },
1026
1186
  {
@@ -1029,85 +1189,57 @@
1029
1189
  "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1030
1190
  },
1031
1191
  "default": "'infoPrimary'",
1032
- "description": "Specify the appearance of the Alert",
1192
+ "description": "Specify the appearance of the BadgeDot",
1033
1193
  "fieldName": "appearance"
1034
1194
  },
1035
1195
  {
1036
- "name": "hidden",
1037
- "type": {
1038
- "text": "boolean"
1039
- },
1040
- "default": "false",
1041
- "description": "Specify if the Alert is hidden",
1042
- "fieldName": "hidden"
1043
- },
1044
- {
1045
- "name": "hideIcon",
1046
- "type": {
1047
- "text": "boolean"
1048
- },
1049
- "default": "false",
1050
- "description": "Specify if the icon displays on the Alert",
1051
- "fieldName": "hideIcon"
1052
- },
1053
- {
1054
- "name": "dismissible",
1055
- "type": {
1056
- "text": "boolean"
1057
- },
1058
- "default": "false",
1059
- "description": "Specify if the Alert can be dismissed",
1060
- "fieldName": "dismissible"
1061
- },
1062
- {
1063
- "name": "disableAutoFocus",
1196
+ "name": "emphasis",
1064
1197
  "type": {
1065
- "text": "boolean"
1198
+ "text": "'strong' | 'subtle'"
1066
1199
  },
1067
- "default": "false",
1068
- "description": "Prevent autofocus on show",
1069
- "fieldName": "disableAutoFocus"
1200
+ "default": "'strong'",
1201
+ "description": "Specify the emphasis of the BadgeDot",
1202
+ "fieldName": "emphasis"
1070
1203
  },
1071
1204
  {
1072
- "name": "disableCloseOnEscape",
1205
+ "name": "overrideDotColor",
1073
1206
  "type": {
1074
- "text": "boolean"
1207
+ "text": "string | undefined"
1075
1208
  },
1076
- "default": "false",
1077
- "description": "Prevent Escape from closing",
1078
- "fieldName": "disableCloseOnEscape"
1209
+ "description": "Overrides default dot color",
1210
+ "fieldName": "overrideDotColor"
1079
1211
  }
1080
1212
  ],
1081
1213
  "superclass": {
1082
1214
  "name": "LitElement",
1083
1215
  "package": "lit"
1084
1216
  },
1085
- "tagName": "bm-alert",
1217
+ "tagName": "bm-badge-dot",
1086
1218
  "customElement": true
1087
1219
  }
1088
1220
  ],
1089
1221
  "exports": [
1090
1222
  {
1091
1223
  "kind": "js",
1092
- "name": "BmAlert",
1224
+ "name": "BmBadgeDot",
1093
1225
  "declaration": {
1094
- "name": "BmAlert",
1095
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1226
+ "name": "BmBadgeDot",
1227
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1096
1228
  }
1097
1229
  },
1098
1230
  {
1099
1231
  "kind": "custom-element-definition",
1100
- "name": "bm-alert",
1232
+ "name": "bm-badge-dot",
1101
1233
  "declaration": {
1102
- "name": "BmAlert",
1103
- "module": "libs/web-components/src/lib/Alert/Alert.ts"
1234
+ "name": "BmBadgeDot",
1235
+ "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1104
1236
  }
1105
1237
  }
1106
1238
  ]
1107
1239
  },
1108
1240
  {
1109
1241
  "kind": "javascript-module",
1110
- "path": "libs/web-components/src/lib/Alert/index.ts",
1242
+ "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1111
1243
  "declarations": [],
1112
1244
  "exports": [
1113
1245
  {
@@ -1115,7 +1247,7 @@
1115
1247
  "name": "*",
1116
1248
  "declaration": {
1117
1249
  "name": "*",
1118
- "package": "./Alert"
1250
+ "package": "./BadgeDot"
1119
1251
  }
1120
1252
  }
1121
1253
  ]
@@ -1462,184 +1594,52 @@
1462
1594
  "fieldName": "p"
1463
1595
  },
1464
1596
  {
1465
- "name": "gap",
1466
- "type": {
1467
- "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1468
- },
1469
- "description": "Specify gap between child elements",
1470
- "fieldName": "gap"
1471
- },
1472
- {
1473
- "name": "shadow",
1474
- "type": {
1475
- "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1476
- },
1477
- "description": "Specify if a Box has a shadow",
1478
- "fieldName": "shadow"
1479
- }
1480
- ],
1481
- "superclass": {
1482
- "name": "LitElement",
1483
- "package": "lit"
1484
- },
1485
- "tagName": "bm-box",
1486
- "customElement": true
1487
- }
1488
- ],
1489
- "exports": [
1490
- {
1491
- "kind": "js",
1492
- "name": "BmBox",
1493
- "declaration": {
1494
- "name": "BmBox",
1495
- "module": "libs/web-components/src/lib/Box/Box.ts"
1496
- }
1497
- },
1498
- {
1499
- "kind": "custom-element-definition",
1500
- "name": "bm-box",
1501
- "declaration": {
1502
- "name": "BmBox",
1503
- "module": "libs/web-components/src/lib/Box/Box.ts"
1504
- }
1505
- }
1506
- ]
1507
- },
1508
- {
1509
- "kind": "javascript-module",
1510
- "path": "libs/web-components/src/lib/Box/index.ts",
1511
- "declarations": [],
1512
- "exports": [
1513
- {
1514
- "kind": "js",
1515
- "name": "*",
1516
- "declaration": {
1517
- "name": "*",
1518
- "package": "./Box"
1519
- }
1520
- }
1521
- ]
1522
- },
1523
- {
1524
- "kind": "javascript-module",
1525
- "path": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts",
1526
- "declarations": [
1527
- {
1528
- "kind": "class",
1529
- "description": "`bm-badge-dot`\n\n### Attributes:\n- **theme** - Specify the theme of the BadgeDot. By default it inherits the theme from the parent\n- **appearance** - Specify the appearance of the BadgeDot\n- **emphasis** - Specify the emphasis of the BadgeDot\n- **overrideDotColor** - Overrides default dot color",
1530
- "name": "BmBadgeDot",
1531
- "slots": [
1532
- {
1533
- "description": "Provide text for the BadgeDot",
1534
- "name": "default"
1535
- }
1536
- ],
1537
- "members": [
1538
- {
1539
- "kind": "field",
1540
- "name": "theme",
1541
- "type": {
1542
- "text": "'light' | 'dark' | undefined"
1543
- },
1544
- "description": "Specify the theme of the BadgeDot. By default it inherits the theme from the parent",
1545
- "attribute": "theme"
1546
- },
1547
- {
1548
- "kind": "field",
1549
- "name": "appearance",
1550
- "type": {
1551
- "text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
1552
- },
1553
- "default": "'infoPrimary'",
1554
- "description": "Specify the appearance of the BadgeDot",
1555
- "attribute": "appearance"
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
+ "name": "gap",
1597
1598
  "type": {
1598
- "text": "'strong' | 'subtle'"
1599
+ "text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
1599
1600
  },
1600
- "default": "'strong'",
1601
- "description": "Specify the emphasis of the BadgeDot",
1602
- "fieldName": "emphasis"
1601
+ "description": "Specify gap between child elements",
1602
+ "fieldName": "gap"
1603
1603
  },
1604
1604
  {
1605
- "name": "overrideDotColor",
1605
+ "name": "shadow",
1606
1606
  "type": {
1607
- "text": "string | undefined"
1607
+ "text": "'sm' | 'md' | 'lg' | 'none' | 'overlay' | undefined"
1608
1608
  },
1609
- "description": "Overrides default dot color",
1610
- "fieldName": "overrideDotColor"
1609
+ "description": "Specify if a Box has a shadow",
1610
+ "fieldName": "shadow"
1611
1611
  }
1612
1612
  ],
1613
1613
  "superclass": {
1614
1614
  "name": "LitElement",
1615
1615
  "package": "lit"
1616
1616
  },
1617
- "tagName": "bm-badge-dot",
1617
+ "tagName": "bm-box",
1618
1618
  "customElement": true
1619
1619
  }
1620
1620
  ],
1621
1621
  "exports": [
1622
1622
  {
1623
1623
  "kind": "js",
1624
- "name": "BmBadgeDot",
1624
+ "name": "BmBox",
1625
1625
  "declaration": {
1626
- "name": "BmBadgeDot",
1627
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1626
+ "name": "BmBox",
1627
+ "module": "libs/web-components/src/lib/Box/Box.ts"
1628
1628
  }
1629
1629
  },
1630
1630
  {
1631
1631
  "kind": "custom-element-definition",
1632
- "name": "bm-badge-dot",
1632
+ "name": "bm-box",
1633
1633
  "declaration": {
1634
- "name": "BmBadgeDot",
1635
- "module": "libs/web-components/src/lib/BadgeDot/BadgeDot.ts"
1634
+ "name": "BmBox",
1635
+ "module": "libs/web-components/src/lib/Box/Box.ts"
1636
1636
  }
1637
1637
  }
1638
1638
  ]
1639
1639
  },
1640
1640
  {
1641
1641
  "kind": "javascript-module",
1642
- "path": "libs/web-components/src/lib/BadgeDot/index.ts",
1642
+ "path": "libs/web-components/src/lib/Box/index.ts",
1643
1643
  "declarations": [],
1644
1644
  "exports": [
1645
1645
  {
@@ -1647,7 +1647,7 @@
1647
1647
  "name": "*",
1648
1648
  "declaration": {
1649
1649
  "name": "*",
1650
- "package": "./BadgeDot"
1650
+ "package": "./Box"
1651
1651
  }
1652
1652
  }
1653
1653
  ]
@@ -8969,232 +8969,10 @@
8969
8969
  {
8970
8970
  "name": "value",
8971
8971
  "type": {
8972
- "text": "string | undefined"
8973
- },
8974
- "description": "The value attribute for the input element",
8975
- "fieldName": "value"
8976
- },
8977
- {
8978
- "name": "checked",
8979
- "type": {
8980
- "text": "boolean"
8981
- },
8982
- "default": "false",
8983
- "description": "The checked attribute for the input element",
8984
- "fieldName": "checked"
8985
- },
8986
- {
8987
- "name": "onKeyDown",
8988
- "type": {
8989
- "text": "(event: KeyboardEvent) => void | undefined"
8990
- },
8991
- "description": "A user-defined function to handle keydown events",
8992
- "fieldName": "onKeyDown"
8993
- }
8994
- ],
8995
- "superclass": {
8996
- "name": "LitElement",
8997
- "package": "lit"
8998
- },
8999
- "tagName": "bm-radio-button",
9000
- "customElement": true
9001
- }
9002
- ],
9003
- "exports": [
9004
- {
9005
- "kind": "js",
9006
- "name": "BmRadioButton",
9007
- "declaration": {
9008
- "name": "BmRadioButton",
9009
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9010
- }
9011
- },
9012
- {
9013
- "kind": "custom-element-definition",
9014
- "name": "bm-radio-button",
9015
- "declaration": {
9016
- "name": "BmRadioButton",
9017
- "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9018
- }
9019
- }
9020
- ]
9021
- },
9022
- {
9023
- "kind": "javascript-module",
9024
- "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
9025
- "declarations": [],
9026
- "exports": [
9027
- {
9028
- "kind": "js",
9029
- "name": "*",
9030
- "declaration": {
9031
- "name": "*",
9032
- "package": "./RadioButton"
9033
- }
9034
- },
9035
- {
9036
- "kind": "js",
9037
- "name": "*",
9038
- "declaration": {
9039
- "name": "*",
9040
- "package": "./RadioButtonGroup/RadioButtonGroup"
9041
- }
9042
- }
9043
- ]
9044
- },
9045
- {
9046
- "kind": "javascript-module",
9047
- "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
9048
- "declarations": [
9049
- {
9050
- "kind": "class",
9051
- "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",
9052
- "name": "BmSwitch",
9053
- "slots": [
9054
- {
9055
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9056
- "name": "onText"
9057
- },
9058
- {
9059
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9060
- "name": "offText"
9061
- }
9062
- ],
9063
- "members": [
9064
- {
9065
- "kind": "field",
9066
- "name": "inputChoiceGroupContext",
9067
- "type": {
9068
- "text": "InputChoiceGroupContextProps"
9069
- }
9070
- },
9071
- {
9072
- "kind": "field",
9073
- "name": "onText",
9074
- "type": {
9075
- "text": "string | undefined"
9076
- },
9077
- "default": "undefined",
9078
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9079
- "attribute": "onText"
9080
- },
9081
- {
9082
- "kind": "field",
9083
- "name": "offText",
9084
- "type": {
9085
- "text": "string | undefined"
9086
- },
9087
- "default": "undefined",
9088
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9089
- "attribute": "offText"
9090
- },
9091
- {
9092
- "kind": "field",
9093
- "name": "theme",
9094
- "type": {
9095
- "text": "ThemeTypes | undefined"
9096
- },
9097
- "default": "undefined",
9098
- "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
9099
- },
9100
- {
9101
- "kind": "field",
9102
- "name": "textPosition",
9103
- "type": {
9104
- "text": "'before' | 'after'"
9105
- },
9106
- "default": "'after'",
9107
- "description": "Specify the position of the side label",
9108
- "attribute": "textPosition"
9109
- },
9110
- {
9111
- "kind": "field",
9112
- "name": "readOnly",
9113
- "type": {
9114
- "text": "boolean"
9115
- },
9116
- "default": "false",
9117
- "description": "Specify if Switch displays in a read-only state",
9118
- "attribute": "readOnly"
9119
- },
9120
- {
9121
- "kind": "field",
9122
- "name": "disabled",
9123
- "type": {
9124
- "text": "boolean"
9125
- },
9126
- "default": "false",
9127
- "description": "Specify if Switch displays in a disabled state",
9128
- "attribute": "disabled"
9129
- },
9130
- {
9131
- "kind": "field",
9132
- "name": "checked",
9133
- "type": {
9134
- "text": "boolean"
9135
- },
9136
- "default": "false",
9137
- "attribute": "checked"
9138
- },
9139
- {
9140
- "kind": "field",
9141
- "name": "value",
9142
- "type": {
9143
- "text": "string | undefined"
9144
- },
9145
- "description": "The value attribute for the input element",
9146
- "attribute": "value"
9147
- },
9148
- {
9149
- "kind": "field",
9150
- "name": "switchRef"
9151
- }
9152
- ],
9153
- "attributes": [
9154
- {
9155
- "name": "onText",
9156
- "type": {
9157
- "text": "string | undefined"
9158
- },
9159
- "default": "undefined",
9160
- "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9161
- "fieldName": "onText"
9162
- },
9163
- {
9164
- "name": "offText",
9165
- "type": {
9166
- "text": "string | undefined"
9167
- },
9168
- "default": "undefined",
9169
- "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9170
- "fieldName": "offText"
9171
- },
9172
- {
9173
- "name": "textPosition",
9174
- "type": {
9175
- "text": "'before' | 'after'"
9176
- },
9177
- "default": "'after'",
9178
- "description": "Specify the position of the side label",
9179
- "fieldName": "textPosition"
9180
- },
9181
- {
9182
- "name": "readOnly",
9183
- "type": {
9184
- "text": "boolean"
9185
- },
9186
- "default": "false",
9187
- "description": "Specify if Switch displays in a read-only state",
9188
- "fieldName": "readOnly"
9189
- },
9190
- {
9191
- "name": "disabled",
9192
- "type": {
9193
- "text": "boolean"
8972
+ "text": "string | undefined"
9194
8973
  },
9195
- "default": "false",
9196
- "description": "Specify if Switch displays in a disabled state",
9197
- "fieldName": "disabled"
8974
+ "description": "The value attribute for the input element",
8975
+ "fieldName": "value"
9198
8976
  },
9199
8977
  {
9200
8978
  "name": "checked",
@@ -9202,47 +8980,48 @@
9202
8980
  "text": "boolean"
9203
8981
  },
9204
8982
  "default": "false",
8983
+ "description": "The checked attribute for the input element",
9205
8984
  "fieldName": "checked"
9206
8985
  },
9207
8986
  {
9208
- "name": "value",
8987
+ "name": "onKeyDown",
9209
8988
  "type": {
9210
- "text": "string | undefined"
8989
+ "text": "(event: KeyboardEvent) => void | undefined"
9211
8990
  },
9212
- "description": "The value attribute for the input element",
9213
- "fieldName": "value"
8991
+ "description": "A user-defined function to handle keydown events",
8992
+ "fieldName": "onKeyDown"
9214
8993
  }
9215
8994
  ],
9216
8995
  "superclass": {
9217
8996
  "name": "LitElement",
9218
8997
  "package": "lit"
9219
8998
  },
9220
- "tagName": "bm-switch",
8999
+ "tagName": "bm-radio-button",
9221
9000
  "customElement": true
9222
9001
  }
9223
9002
  ],
9224
9003
  "exports": [
9225
9004
  {
9226
9005
  "kind": "js",
9227
- "name": "BmSwitch",
9006
+ "name": "BmRadioButton",
9228
9007
  "declaration": {
9229
- "name": "BmSwitch",
9230
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9008
+ "name": "BmRadioButton",
9009
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9231
9010
  }
9232
9011
  },
9233
9012
  {
9234
9013
  "kind": "custom-element-definition",
9235
- "name": "bm-switch",
9014
+ "name": "bm-radio-button",
9236
9015
  "declaration": {
9237
- "name": "BmSwitch",
9238
- "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9016
+ "name": "BmRadioButton",
9017
+ "module": "libs/web-components/src/lib/wip/RadioButton/RadioButton.ts"
9239
9018
  }
9240
9019
  }
9241
9020
  ]
9242
9021
  },
9243
9022
  {
9244
9023
  "kind": "javascript-module",
9245
- "path": "libs/web-components/src/lib/wip/Switch/index.ts",
9024
+ "path": "libs/web-components/src/lib/wip/RadioButton/index.ts",
9246
9025
  "declarations": [],
9247
9026
  "exports": [
9248
9027
  {
@@ -9250,7 +9029,7 @@
9250
9029
  "name": "*",
9251
9030
  "declaration": {
9252
9031
  "name": "*",
9253
- "package": "./Switch"
9032
+ "package": "./RadioButton"
9254
9033
  }
9255
9034
  },
9256
9035
  {
@@ -9258,7 +9037,7 @@
9258
9037
  "name": "*",
9259
9038
  "declaration": {
9260
9039
  "name": "*",
9261
- "package": "./SwitchGroup/SwitchGroup"
9040
+ "package": "./RadioButtonGroup/RadioButtonGroup"
9262
9041
  }
9263
9042
  }
9264
9043
  ]
@@ -9778,6 +9557,227 @@
9778
9557
  }
9779
9558
  ]
9780
9559
  },
9560
+ {
9561
+ "kind": "javascript-module",
9562
+ "path": "libs/web-components/src/lib/wip/Switch/Switch.ts",
9563
+ "declarations": [
9564
+ {
9565
+ "kind": "class",
9566
+ "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",
9567
+ "name": "BmSwitch",
9568
+ "slots": [
9569
+ {
9570
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9571
+ "name": "onText"
9572
+ },
9573
+ {
9574
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9575
+ "name": "offText"
9576
+ }
9577
+ ],
9578
+ "members": [
9579
+ {
9580
+ "kind": "field",
9581
+ "name": "inputChoiceGroupContext",
9582
+ "type": {
9583
+ "text": "InputChoiceGroupContextProps"
9584
+ }
9585
+ },
9586
+ {
9587
+ "kind": "field",
9588
+ "name": "onText",
9589
+ "type": {
9590
+ "text": "string | undefined"
9591
+ },
9592
+ "default": "undefined",
9593
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9594
+ "attribute": "onText"
9595
+ },
9596
+ {
9597
+ "kind": "field",
9598
+ "name": "offText",
9599
+ "type": {
9600
+ "text": "string | undefined"
9601
+ },
9602
+ "default": "undefined",
9603
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9604
+ "attribute": "offText"
9605
+ },
9606
+ {
9607
+ "kind": "field",
9608
+ "name": "theme",
9609
+ "type": {
9610
+ "text": "ThemeTypes | undefined"
9611
+ },
9612
+ "default": "undefined",
9613
+ "description": "Specify the theme of the Switch. By default it inherits the theme from the parent"
9614
+ },
9615
+ {
9616
+ "kind": "field",
9617
+ "name": "textPosition",
9618
+ "type": {
9619
+ "text": "'before' | 'after'"
9620
+ },
9621
+ "default": "'after'",
9622
+ "description": "Specify the position of the side label",
9623
+ "attribute": "textPosition"
9624
+ },
9625
+ {
9626
+ "kind": "field",
9627
+ "name": "readOnly",
9628
+ "type": {
9629
+ "text": "boolean"
9630
+ },
9631
+ "default": "false",
9632
+ "description": "Specify if Switch displays in a read-only state",
9633
+ "attribute": "readOnly"
9634
+ },
9635
+ {
9636
+ "kind": "field",
9637
+ "name": "disabled",
9638
+ "type": {
9639
+ "text": "boolean"
9640
+ },
9641
+ "default": "false",
9642
+ "description": "Specify if Switch displays in a disabled state",
9643
+ "attribute": "disabled"
9644
+ },
9645
+ {
9646
+ "kind": "field",
9647
+ "name": "checked",
9648
+ "type": {
9649
+ "text": "boolean"
9650
+ },
9651
+ "default": "false",
9652
+ "attribute": "checked"
9653
+ },
9654
+ {
9655
+ "kind": "field",
9656
+ "name": "value",
9657
+ "type": {
9658
+ "text": "string | undefined"
9659
+ },
9660
+ "description": "The value attribute for the input element",
9661
+ "attribute": "value"
9662
+ },
9663
+ {
9664
+ "kind": "field",
9665
+ "name": "switchRef"
9666
+ }
9667
+ ],
9668
+ "attributes": [
9669
+ {
9670
+ "name": "onText",
9671
+ "type": {
9672
+ "text": "string | undefined"
9673
+ },
9674
+ "default": "undefined",
9675
+ "description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
9676
+ "fieldName": "onText"
9677
+ },
9678
+ {
9679
+ "name": "offText",
9680
+ "type": {
9681
+ "text": "string | undefined"
9682
+ },
9683
+ "default": "undefined",
9684
+ "description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
9685
+ "fieldName": "offText"
9686
+ },
9687
+ {
9688
+ "name": "textPosition",
9689
+ "type": {
9690
+ "text": "'before' | 'after'"
9691
+ },
9692
+ "default": "'after'",
9693
+ "description": "Specify the position of the side label",
9694
+ "fieldName": "textPosition"
9695
+ },
9696
+ {
9697
+ "name": "readOnly",
9698
+ "type": {
9699
+ "text": "boolean"
9700
+ },
9701
+ "default": "false",
9702
+ "description": "Specify if Switch displays in a read-only state",
9703
+ "fieldName": "readOnly"
9704
+ },
9705
+ {
9706
+ "name": "disabled",
9707
+ "type": {
9708
+ "text": "boolean"
9709
+ },
9710
+ "default": "false",
9711
+ "description": "Specify if Switch displays in a disabled state",
9712
+ "fieldName": "disabled"
9713
+ },
9714
+ {
9715
+ "name": "checked",
9716
+ "type": {
9717
+ "text": "boolean"
9718
+ },
9719
+ "default": "false",
9720
+ "fieldName": "checked"
9721
+ },
9722
+ {
9723
+ "name": "value",
9724
+ "type": {
9725
+ "text": "string | undefined"
9726
+ },
9727
+ "description": "The value attribute for the input element",
9728
+ "fieldName": "value"
9729
+ }
9730
+ ],
9731
+ "superclass": {
9732
+ "name": "LitElement",
9733
+ "package": "lit"
9734
+ },
9735
+ "tagName": "bm-switch",
9736
+ "customElement": true
9737
+ }
9738
+ ],
9739
+ "exports": [
9740
+ {
9741
+ "kind": "js",
9742
+ "name": "BmSwitch",
9743
+ "declaration": {
9744
+ "name": "BmSwitch",
9745
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9746
+ }
9747
+ },
9748
+ {
9749
+ "kind": "custom-element-definition",
9750
+ "name": "bm-switch",
9751
+ "declaration": {
9752
+ "name": "BmSwitch",
9753
+ "module": "libs/web-components/src/lib/wip/Switch/Switch.ts"
9754
+ }
9755
+ }
9756
+ ]
9757
+ },
9758
+ {
9759
+ "kind": "javascript-module",
9760
+ "path": "libs/web-components/src/lib/wip/Switch/index.ts",
9761
+ "declarations": [],
9762
+ "exports": [
9763
+ {
9764
+ "kind": "js",
9765
+ "name": "*",
9766
+ "declaration": {
9767
+ "name": "*",
9768
+ "package": "./Switch"
9769
+ }
9770
+ },
9771
+ {
9772
+ "kind": "js",
9773
+ "name": "*",
9774
+ "declaration": {
9775
+ "name": "*",
9776
+ "package": "./SwitchGroup/SwitchGroup"
9777
+ }
9778
+ }
9779
+ ]
9780
+ },
9781
9781
  {
9782
9782
  "kind": "javascript-module",
9783
9783
  "path": "libs/web-components/src/lib/wip/Checkbox/CheckboxGroup/CheckboxGroup.ts",