@viasat/beam-web-components 2.47.1 → 2.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +612 -612
- package/package.json +6 -6
- package/vscode.html-custom-data.json +126 -126
package/custom-elements.json
CHANGED
|
@@ -686,124 +686,147 @@
|
|
|
686
686
|
},
|
|
687
687
|
{
|
|
688
688
|
"kind": "javascript-module",
|
|
689
|
-
"path": "libs/web-components/src/lib/
|
|
689
|
+
"path": "libs/web-components/src/lib/Badge/Badge.ts",
|
|
690
690
|
"declarations": [
|
|
691
691
|
{
|
|
692
692
|
"kind": "class",
|
|
693
|
-
"description": "`bm-badge
|
|
694
|
-
"name": "
|
|
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",
|
|
695
695
|
"slots": [
|
|
696
696
|
{
|
|
697
|
-
"description": "Provide text for the
|
|
697
|
+
"description": "Provide text for the Badge",
|
|
698
698
|
"name": "default"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"description": "Specify a different icon for the Badge",
|
|
702
|
+
"name": "icon"
|
|
699
703
|
}
|
|
700
704
|
],
|
|
701
705
|
"members": [
|
|
706
|
+
{
|
|
707
|
+
"kind": "field",
|
|
708
|
+
"name": "appearance",
|
|
709
|
+
"type": {
|
|
710
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
711
|
+
},
|
|
712
|
+
"default": "'infoPrimary'",
|
|
713
|
+
"description": "Specify the appearance of the Badge",
|
|
714
|
+
"attribute": "appearance"
|
|
715
|
+
},
|
|
702
716
|
{
|
|
703
717
|
"kind": "field",
|
|
704
718
|
"name": "theme",
|
|
705
719
|
"type": {
|
|
706
720
|
"text": "'light' | 'dark' | undefined"
|
|
707
721
|
},
|
|
708
|
-
"description": "
|
|
722
|
+
"description": "Theme of the Badge",
|
|
709
723
|
"attribute": "theme"
|
|
710
724
|
},
|
|
711
725
|
{
|
|
712
726
|
"kind": "field",
|
|
713
|
-
"name": "
|
|
727
|
+
"name": "size",
|
|
714
728
|
"type": {
|
|
715
|
-
"text": "'
|
|
729
|
+
"text": "'sm' | 'md' | undefined"
|
|
716
730
|
},
|
|
717
|
-
"default": "'
|
|
718
|
-
"description": "Specify the
|
|
719
|
-
"attribute": "
|
|
731
|
+
"default": "'sm'",
|
|
732
|
+
"description": "Specify the size of the Badge",
|
|
733
|
+
"attribute": "size"
|
|
720
734
|
},
|
|
721
735
|
{
|
|
722
736
|
"kind": "field",
|
|
723
737
|
"name": "emphasis",
|
|
724
738
|
"type": {
|
|
725
|
-
"text": "'strong' | 'subtle'"
|
|
739
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
726
740
|
},
|
|
727
741
|
"default": "'strong'",
|
|
728
|
-
"description": "Specify the emphasis of the
|
|
742
|
+
"description": "Specify the emphasis of the Badge",
|
|
729
743
|
"attribute": "emphasis"
|
|
730
744
|
},
|
|
731
745
|
{
|
|
732
746
|
"kind": "field",
|
|
733
|
-
"name": "
|
|
747
|
+
"name": "hideIcon",
|
|
734
748
|
"type": {
|
|
735
|
-
"text": "
|
|
749
|
+
"text": "boolean | undefined"
|
|
736
750
|
},
|
|
737
|
-
"description": "
|
|
738
|
-
"attribute": "
|
|
751
|
+
"description": "Hides Badge icon",
|
|
752
|
+
"attribute": "hideIcon"
|
|
739
753
|
}
|
|
740
754
|
],
|
|
741
755
|
"attributes": [
|
|
756
|
+
{
|
|
757
|
+
"name": "appearance",
|
|
758
|
+
"type": {
|
|
759
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
760
|
+
},
|
|
761
|
+
"default": "'infoPrimary'",
|
|
762
|
+
"description": "Specify the appearance of the Badge",
|
|
763
|
+
"fieldName": "appearance"
|
|
764
|
+
},
|
|
742
765
|
{
|
|
743
766
|
"name": "theme",
|
|
744
767
|
"type": {
|
|
745
768
|
"text": "'light' | 'dark' | undefined"
|
|
746
769
|
},
|
|
747
|
-
"description": "
|
|
770
|
+
"description": "Theme of the Badge",
|
|
748
771
|
"fieldName": "theme"
|
|
749
772
|
},
|
|
750
773
|
{
|
|
751
|
-
"name": "
|
|
774
|
+
"name": "size",
|
|
752
775
|
"type": {
|
|
753
|
-
"text": "'
|
|
776
|
+
"text": "'sm' | 'md' | undefined"
|
|
754
777
|
},
|
|
755
|
-
"default": "'
|
|
756
|
-
"description": "Specify the
|
|
757
|
-
"fieldName": "
|
|
778
|
+
"default": "'sm'",
|
|
779
|
+
"description": "Specify the size of the Badge",
|
|
780
|
+
"fieldName": "size"
|
|
758
781
|
},
|
|
759
782
|
{
|
|
760
783
|
"name": "emphasis",
|
|
761
784
|
"type": {
|
|
762
|
-
"text": "'strong' | 'subtle'"
|
|
785
|
+
"text": "'strong' | 'medium' | 'subtle'"
|
|
763
786
|
},
|
|
764
787
|
"default": "'strong'",
|
|
765
|
-
"description": "Specify the emphasis of the
|
|
788
|
+
"description": "Specify the emphasis of the Badge",
|
|
766
789
|
"fieldName": "emphasis"
|
|
767
790
|
},
|
|
768
791
|
{
|
|
769
|
-
"name": "
|
|
792
|
+
"name": "hideIcon",
|
|
770
793
|
"type": {
|
|
771
|
-
"text": "
|
|
794
|
+
"text": "boolean | undefined"
|
|
772
795
|
},
|
|
773
|
-
"description": "
|
|
774
|
-
"fieldName": "
|
|
796
|
+
"description": "Hides Badge icon",
|
|
797
|
+
"fieldName": "hideIcon"
|
|
775
798
|
}
|
|
776
799
|
],
|
|
777
800
|
"superclass": {
|
|
778
801
|
"name": "LitElement",
|
|
779
802
|
"package": "lit"
|
|
780
803
|
},
|
|
781
|
-
"tagName": "bm-badge
|
|
804
|
+
"tagName": "bm-badge",
|
|
782
805
|
"customElement": true
|
|
783
806
|
}
|
|
784
807
|
],
|
|
785
808
|
"exports": [
|
|
786
809
|
{
|
|
787
810
|
"kind": "js",
|
|
788
|
-
"name": "
|
|
811
|
+
"name": "BmBadge",
|
|
789
812
|
"declaration": {
|
|
790
|
-
"name": "
|
|
791
|
-
"module": "libs/web-components/src/lib/
|
|
813
|
+
"name": "BmBadge",
|
|
814
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
792
815
|
}
|
|
793
816
|
},
|
|
794
817
|
{
|
|
795
818
|
"kind": "custom-element-definition",
|
|
796
|
-
"name": "bm-badge
|
|
819
|
+
"name": "bm-badge",
|
|
797
820
|
"declaration": {
|
|
798
|
-
"name": "
|
|
799
|
-
"module": "libs/web-components/src/lib/
|
|
821
|
+
"name": "BmBadge",
|
|
822
|
+
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
800
823
|
}
|
|
801
824
|
}
|
|
802
825
|
]
|
|
803
826
|
},
|
|
804
827
|
{
|
|
805
828
|
"kind": "javascript-module",
|
|
806
|
-
"path": "libs/web-components/src/lib/
|
|
829
|
+
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
807
830
|
"declarations": [],
|
|
808
831
|
"exports": [
|
|
809
832
|
{
|
|
@@ -811,155 +834,436 @@
|
|
|
811
834
|
"name": "*",
|
|
812
835
|
"declaration": {
|
|
813
836
|
"name": "*",
|
|
814
|
-
"package": "./
|
|
837
|
+
"package": "./Badge"
|
|
815
838
|
}
|
|
816
839
|
}
|
|
817
840
|
]
|
|
818
841
|
},
|
|
819
842
|
{
|
|
820
843
|
"kind": "javascript-module",
|
|
821
|
-
"path": "libs/web-components/src/lib/
|
|
844
|
+
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
822
845
|
"declarations": [
|
|
823
846
|
{
|
|
824
847
|
"kind": "class",
|
|
825
|
-
"description": "`bm-
|
|
826
|
-
"name": "
|
|
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",
|
|
827
850
|
"slots": [
|
|
828
851
|
{
|
|
829
|
-
"description": "
|
|
830
|
-
"name": "
|
|
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"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"description": "Specify if actions display on the Alert",
|
|
865
|
+
"name": "actions"
|
|
831
866
|
}
|
|
832
867
|
],
|
|
833
868
|
"members": [
|
|
834
869
|
{
|
|
835
870
|
"kind": "field",
|
|
836
|
-
"name": "
|
|
871
|
+
"name": "heading",
|
|
837
872
|
"type": {
|
|
838
|
-
"text": "
|
|
873
|
+
"text": "string | undefined"
|
|
839
874
|
},
|
|
840
|
-
"description": "Specify the
|
|
841
|
-
"attribute": "
|
|
875
|
+
"description": "Specify the heading text for Alert",
|
|
876
|
+
"attribute": "heading"
|
|
842
877
|
},
|
|
843
878
|
{
|
|
844
879
|
"kind": "field",
|
|
845
|
-
"name": "
|
|
880
|
+
"name": "body",
|
|
846
881
|
"type": {
|
|
847
|
-
"text": "
|
|
882
|
+
"text": "string | undefined"
|
|
848
883
|
},
|
|
849
|
-
"description": "Specify the
|
|
850
|
-
"attribute": "
|
|
884
|
+
"description": "Specify the body text for Alert",
|
|
885
|
+
"attribute": "body"
|
|
851
886
|
},
|
|
852
887
|
{
|
|
853
888
|
"kind": "field",
|
|
854
|
-
"name": "
|
|
889
|
+
"name": "size",
|
|
855
890
|
"type": {
|
|
856
|
-
"text": "'
|
|
891
|
+
"text": "'sm' | 'md'"
|
|
857
892
|
},
|
|
858
|
-
"
|
|
859
|
-
"
|
|
893
|
+
"default": "'sm'",
|
|
894
|
+
"description": "Specify the size of the Alert",
|
|
895
|
+
"attribute": "size"
|
|
860
896
|
},
|
|
861
897
|
{
|
|
862
898
|
"kind": "field",
|
|
863
|
-
"name": "
|
|
899
|
+
"name": "fullWidth",
|
|
864
900
|
"type": {
|
|
865
|
-
"text": "
|
|
901
|
+
"text": "boolean"
|
|
866
902
|
},
|
|
867
|
-
"
|
|
868
|
-
"
|
|
903
|
+
"default": "false",
|
|
904
|
+
"description": "Specify if the Alert has no border radius",
|
|
905
|
+
"attribute": "fullWidth"
|
|
869
906
|
},
|
|
870
907
|
{
|
|
871
908
|
"kind": "field",
|
|
872
|
-
"name": "
|
|
909
|
+
"name": "theme",
|
|
873
910
|
"type": {
|
|
874
|
-
"text": "'
|
|
911
|
+
"text": "'light' | 'dark' | undefined"
|
|
875
912
|
},
|
|
876
|
-
"description": "Specify
|
|
877
|
-
"attribute": "
|
|
913
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
914
|
+
"attribute": "theme"
|
|
878
915
|
},
|
|
879
916
|
{
|
|
880
917
|
"kind": "field",
|
|
881
|
-
"name": "
|
|
918
|
+
"name": "appearance",
|
|
882
919
|
"type": {
|
|
883
|
-
"text": "'
|
|
920
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
884
921
|
},
|
|
885
|
-
"
|
|
886
|
-
"
|
|
922
|
+
"default": "'infoPrimary'",
|
|
923
|
+
"description": "Specify the appearance of the Alert",
|
|
924
|
+
"attribute": "appearance"
|
|
887
925
|
},
|
|
888
926
|
{
|
|
889
927
|
"kind": "field",
|
|
890
|
-
"name": "
|
|
928
|
+
"name": "hidden",
|
|
891
929
|
"type": {
|
|
892
|
-
"text": "
|
|
930
|
+
"text": "boolean"
|
|
893
931
|
},
|
|
894
|
-
"
|
|
895
|
-
"
|
|
932
|
+
"default": "false",
|
|
933
|
+
"description": "Specify if the Alert is hidden",
|
|
934
|
+
"attribute": "hidden"
|
|
896
935
|
},
|
|
897
936
|
{
|
|
898
937
|
"kind": "field",
|
|
899
|
-
"name": "
|
|
938
|
+
"name": "hideIcon",
|
|
900
939
|
"type": {
|
|
901
|
-
"text": "
|
|
940
|
+
"text": "boolean"
|
|
902
941
|
},
|
|
903
|
-
"
|
|
904
|
-
"
|
|
942
|
+
"default": "false",
|
|
943
|
+
"description": "Specify if the icon displays on the Alert",
|
|
944
|
+
"attribute": "hideIcon"
|
|
905
945
|
},
|
|
906
946
|
{
|
|
907
947
|
"kind": "field",
|
|
908
|
-
"name": "
|
|
948
|
+
"name": "dismissible",
|
|
909
949
|
"type": {
|
|
910
|
-
"text": "
|
|
950
|
+
"text": "boolean"
|
|
911
951
|
},
|
|
912
|
-
"
|
|
913
|
-
"
|
|
952
|
+
"default": "false",
|
|
953
|
+
"description": "Specify if the Alert can be dismissed",
|
|
954
|
+
"attribute": "dismissible"
|
|
914
955
|
},
|
|
915
956
|
{
|
|
916
957
|
"kind": "field",
|
|
917
|
-
"name": "
|
|
958
|
+
"name": "disableAutoFocus",
|
|
918
959
|
"type": {
|
|
919
|
-
"text": "
|
|
960
|
+
"text": "boolean"
|
|
920
961
|
},
|
|
921
|
-
"
|
|
922
|
-
"
|
|
962
|
+
"default": "false",
|
|
963
|
+
"description": "Prevent autofocus on show",
|
|
964
|
+
"attribute": "disableAutoFocus"
|
|
923
965
|
},
|
|
924
966
|
{
|
|
925
967
|
"kind": "field",
|
|
926
|
-
"name": "
|
|
968
|
+
"name": "disableCloseOnEscape",
|
|
927
969
|
"type": {
|
|
928
|
-
"text": "
|
|
970
|
+
"text": "boolean"
|
|
929
971
|
},
|
|
930
|
-
"
|
|
931
|
-
"
|
|
932
|
-
|
|
972
|
+
"default": "false",
|
|
973
|
+
"description": "Prevent Escape from closing",
|
|
974
|
+
"attribute": "disableCloseOnEscape"
|
|
975
|
+
}
|
|
976
|
+
],
|
|
977
|
+
"events": [
|
|
933
978
|
{
|
|
934
|
-
"
|
|
935
|
-
"name": "
|
|
979
|
+
"description": "Dispatched when the Alert has been dismissed",
|
|
980
|
+
"name": "bm-dismiss"
|
|
981
|
+
}
|
|
982
|
+
],
|
|
983
|
+
"attributes": [
|
|
984
|
+
{
|
|
985
|
+
"name": "heading",
|
|
936
986
|
"type": {
|
|
937
|
-
"text": "
|
|
987
|
+
"text": "string | undefined"
|
|
938
988
|
},
|
|
939
|
-
"description": "Specify
|
|
940
|
-
"
|
|
989
|
+
"description": "Specify the heading text for Alert",
|
|
990
|
+
"fieldName": "heading"
|
|
941
991
|
},
|
|
942
992
|
{
|
|
943
|
-
"
|
|
944
|
-
"name": "mTop",
|
|
993
|
+
"name": "body",
|
|
945
994
|
"type": {
|
|
946
|
-
"text": "
|
|
995
|
+
"text": "string | undefined"
|
|
947
996
|
},
|
|
948
|
-
"description": "Specify
|
|
949
|
-
"
|
|
997
|
+
"description": "Specify the body text for Alert",
|
|
998
|
+
"fieldName": "body"
|
|
950
999
|
},
|
|
951
1000
|
{
|
|
952
|
-
"
|
|
953
|
-
"name": "mBottom",
|
|
1001
|
+
"name": "size",
|
|
954
1002
|
"type": {
|
|
955
|
-
"text": "'
|
|
1003
|
+
"text": "'sm' | 'md'"
|
|
956
1004
|
},
|
|
957
|
-
"
|
|
958
|
-
"
|
|
1005
|
+
"default": "'sm'",
|
|
1006
|
+
"description": "Specify the size of the Alert",
|
|
1007
|
+
"fieldName": "size"
|
|
959
1008
|
},
|
|
960
1009
|
{
|
|
961
|
-
"
|
|
962
|
-
"
|
|
1010
|
+
"name": "fullWidth",
|
|
1011
|
+
"type": {
|
|
1012
|
+
"text": "boolean"
|
|
1013
|
+
},
|
|
1014
|
+
"default": "false",
|
|
1015
|
+
"description": "Specify if the Alert has no border radius",
|
|
1016
|
+
"fieldName": "fullWidth"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"name": "theme",
|
|
1020
|
+
"type": {
|
|
1021
|
+
"text": "'light' | 'dark' | undefined"
|
|
1022
|
+
},
|
|
1023
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
1024
|
+
"fieldName": "theme"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"name": "appearance",
|
|
1028
|
+
"type": {
|
|
1029
|
+
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
1030
|
+
},
|
|
1031
|
+
"default": "'infoPrimary'",
|
|
1032
|
+
"description": "Specify the appearance of the Alert",
|
|
1033
|
+
"fieldName": "appearance"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
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",
|
|
1064
|
+
"type": {
|
|
1065
|
+
"text": "boolean"
|
|
1066
|
+
},
|
|
1067
|
+
"default": "false",
|
|
1068
|
+
"description": "Prevent autofocus on show",
|
|
1069
|
+
"fieldName": "disableAutoFocus"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"name": "disableCloseOnEscape",
|
|
1073
|
+
"type": {
|
|
1074
|
+
"text": "boolean"
|
|
1075
|
+
},
|
|
1076
|
+
"default": "false",
|
|
1077
|
+
"description": "Prevent Escape from closing",
|
|
1078
|
+
"fieldName": "disableCloseOnEscape"
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
"superclass": {
|
|
1082
|
+
"name": "LitElement",
|
|
1083
|
+
"package": "lit"
|
|
1084
|
+
},
|
|
1085
|
+
"tagName": "bm-alert",
|
|
1086
|
+
"customElement": true
|
|
1087
|
+
}
|
|
1088
|
+
],
|
|
1089
|
+
"exports": [
|
|
1090
|
+
{
|
|
1091
|
+
"kind": "js",
|
|
1092
|
+
"name": "BmAlert",
|
|
1093
|
+
"declaration": {
|
|
1094
|
+
"name": "BmAlert",
|
|
1095
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"kind": "custom-element-definition",
|
|
1100
|
+
"name": "bm-alert",
|
|
1101
|
+
"declaration": {
|
|
1102
|
+
"name": "BmAlert",
|
|
1103
|
+
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
]
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"kind": "javascript-module",
|
|
1110
|
+
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
1111
|
+
"declarations": [],
|
|
1112
|
+
"exports": [
|
|
1113
|
+
{
|
|
1114
|
+
"kind": "js",
|
|
1115
|
+
"name": "*",
|
|
1116
|
+
"declaration": {
|
|
1117
|
+
"name": "*",
|
|
1118
|
+
"package": "./Alert"
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
]
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"kind": "javascript-module",
|
|
1125
|
+
"path": "libs/web-components/src/lib/Box/Box.ts",
|
|
1126
|
+
"declarations": [
|
|
1127
|
+
{
|
|
1128
|
+
"kind": "class",
|
|
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",
|
|
1131
|
+
"slots": [
|
|
1132
|
+
{
|
|
1133
|
+
"description": "Provide content for the Box",
|
|
1134
|
+
"name": "default"
|
|
1135
|
+
}
|
|
1136
|
+
],
|
|
1137
|
+
"members": [
|
|
1138
|
+
{
|
|
1139
|
+
"kind": "field",
|
|
1140
|
+
"name": "backgroundColor",
|
|
1141
|
+
"type": {
|
|
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"
|
|
1143
|
+
},
|
|
1144
|
+
"description": "Specify the background color of a Box",
|
|
1145
|
+
"attribute": "backgroundColor"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"kind": "field",
|
|
1149
|
+
"name": "borderColor",
|
|
1150
|
+
"type": {
|
|
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"
|
|
1152
|
+
},
|
|
1153
|
+
"description": "Specify the border color of a Box",
|
|
1154
|
+
"attribute": "borderColor"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"kind": "field",
|
|
1158
|
+
"name": "borderWidth",
|
|
1159
|
+
"type": {
|
|
1160
|
+
"text": "'md' | 'lg' | 'xl' | 'none' | 'divider' | undefined"
|
|
1161
|
+
},
|
|
1162
|
+
"description": "Specify the border width of a Box",
|
|
1163
|
+
"attribute": "borderWidth"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"kind": "field",
|
|
1167
|
+
"name": "borderRadius",
|
|
1168
|
+
"type": {
|
|
1169
|
+
"text": "'xs' | 'sm' | 'md' | 'lg' | 'none' | 'round' | undefined"
|
|
1170
|
+
},
|
|
1171
|
+
"description": "Specify the border radius of a Box",
|
|
1172
|
+
"attribute": "borderRadius"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"kind": "field",
|
|
1176
|
+
"name": "px",
|
|
1177
|
+
"type": {
|
|
1178
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1179
|
+
},
|
|
1180
|
+
"description": "Specify before and after padding of a Box",
|
|
1181
|
+
"attribute": "px"
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"kind": "field",
|
|
1185
|
+
"name": "py",
|
|
1186
|
+
"type": {
|
|
1187
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1188
|
+
},
|
|
1189
|
+
"description": "Specify top and bottom padding of a Box",
|
|
1190
|
+
"attribute": "py"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"kind": "field",
|
|
1194
|
+
"name": "pTop",
|
|
1195
|
+
"type": {
|
|
1196
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1197
|
+
},
|
|
1198
|
+
"description": "Specify top padding of a Box",
|
|
1199
|
+
"attribute": "pTop"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"kind": "field",
|
|
1203
|
+
"name": "pBottom",
|
|
1204
|
+
"type": {
|
|
1205
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1206
|
+
},
|
|
1207
|
+
"description": "Specify bottom padding of a Box",
|
|
1208
|
+
"attribute": "pBottom"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"kind": "field",
|
|
1212
|
+
"name": "pBefore",
|
|
1213
|
+
"type": {
|
|
1214
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1215
|
+
},
|
|
1216
|
+
"description": "Specify before padding of a Box",
|
|
1217
|
+
"attribute": "pBefore"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"kind": "field",
|
|
1221
|
+
"name": "pAfter",
|
|
1222
|
+
"type": {
|
|
1223
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1224
|
+
},
|
|
1225
|
+
"description": "Specify after padding of a Box",
|
|
1226
|
+
"attribute": "pAfter"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"kind": "field",
|
|
1230
|
+
"name": "mx",
|
|
1231
|
+
"type": {
|
|
1232
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1233
|
+
},
|
|
1234
|
+
"description": "Specify before and after margin of a Box",
|
|
1235
|
+
"attribute": "mx"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"kind": "field",
|
|
1239
|
+
"name": "my",
|
|
1240
|
+
"type": {
|
|
1241
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1242
|
+
},
|
|
1243
|
+
"description": "Specify top and bottom margin of a Box",
|
|
1244
|
+
"attribute": "my"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"kind": "field",
|
|
1248
|
+
"name": "mTop",
|
|
1249
|
+
"type": {
|
|
1250
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1251
|
+
},
|
|
1252
|
+
"description": "Specify top margin of a Box",
|
|
1253
|
+
"attribute": "mTop"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"kind": "field",
|
|
1257
|
+
"name": "mBottom",
|
|
1258
|
+
"type": {
|
|
1259
|
+
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
1260
|
+
},
|
|
1261
|
+
"description": "Specify bottom margin of a Box",
|
|
1262
|
+
"attribute": "mBottom"
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"kind": "field",
|
|
1266
|
+
"name": "mBefore",
|
|
963
1267
|
"type": {
|
|
964
1268
|
"text": "'0' | '12' | '25' | '50' | '75' | '100' | '125' | '150' | '200' | '300' | '400' | '500' | '700' | '800' | undefined"
|
|
965
1269
|
},
|
|
@@ -1216,6 +1520,138 @@
|
|
|
1216
1520
|
}
|
|
1217
1521
|
]
|
|
1218
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
|
+
},
|
|
1219
1655
|
{
|
|
1220
1656
|
"kind": "javascript-module",
|
|
1221
1657
|
"path": "libs/web-components/src/lib/Breadcrumbs/Breadcrumbs.context.ts",
|
|
@@ -1520,292 +1956,137 @@
|
|
|
1520
1956
|
},
|
|
1521
1957
|
{
|
|
1522
1958
|
"kind": "javascript-module",
|
|
1523
|
-
"path": "libs/web-components/src/lib/
|
|
1959
|
+
"path": "libs/web-components/src/lib/Button/Button.ts",
|
|
1524
1960
|
"declarations": [
|
|
1525
1961
|
{
|
|
1526
1962
|
"kind": "class",
|
|
1527
|
-
"description": "`bm-
|
|
1528
|
-
"name": "
|
|
1963
|
+
"description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** ",
|
|
1964
|
+
"name": "BmButton",
|
|
1529
1965
|
"slots": [
|
|
1530
1966
|
{
|
|
1531
|
-
"description": "Provide
|
|
1967
|
+
"description": "Provide content for the Button",
|
|
1532
1968
|
"name": "default"
|
|
1533
1969
|
},
|
|
1534
1970
|
{
|
|
1535
|
-
"description": "Specify
|
|
1536
|
-
"name": "
|
|
1971
|
+
"description": "Specify if the Button displays icon before the text",
|
|
1972
|
+
"name": "iconBefore"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"description": "Specify if the Button displays icon after the text",
|
|
1976
|
+
"name": "iconAfter"
|
|
1537
1977
|
}
|
|
1538
1978
|
],
|
|
1539
1979
|
"members": [
|
|
1980
|
+
{
|
|
1981
|
+
"kind": "field",
|
|
1982
|
+
"name": "formAssociated",
|
|
1983
|
+
"type": {
|
|
1984
|
+
"text": "boolean"
|
|
1985
|
+
},
|
|
1986
|
+
"static": true,
|
|
1987
|
+
"default": "true"
|
|
1988
|
+
},
|
|
1540
1989
|
{
|
|
1541
1990
|
"kind": "field",
|
|
1542
1991
|
"name": "appearance",
|
|
1543
1992
|
"type": {
|
|
1544
|
-
"text": "'
|
|
1993
|
+
"text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
|
|
1545
1994
|
},
|
|
1546
|
-
"default": "'
|
|
1547
|
-
"description": "Specify the appearance of
|
|
1995
|
+
"default": "'accent'",
|
|
1996
|
+
"description": "Specify the appearance of a Button",
|
|
1548
1997
|
"attribute": "appearance"
|
|
1549
1998
|
},
|
|
1550
1999
|
{
|
|
1551
2000
|
"kind": "field",
|
|
1552
|
-
"name": "
|
|
2001
|
+
"name": "kind",
|
|
1553
2002
|
"type": {
|
|
1554
|
-
"text": "'
|
|
2003
|
+
"text": "'filled' | 'outline' | 'ghost' | 'bare'"
|
|
1555
2004
|
},
|
|
1556
|
-
"
|
|
1557
|
-
"
|
|
2005
|
+
"default": "'filled'",
|
|
2006
|
+
"description": "Specify the kind of Button",
|
|
2007
|
+
"attribute": "kind"
|
|
1558
2008
|
},
|
|
1559
2009
|
{
|
|
1560
2010
|
"kind": "field",
|
|
1561
2011
|
"name": "size",
|
|
1562
2012
|
"type": {
|
|
1563
|
-
"text": "'sm' | 'md' |
|
|
2013
|
+
"text": "'sm' | 'md' | 'lg'"
|
|
1564
2014
|
},
|
|
1565
|
-
"default": "'
|
|
1566
|
-
"description": "Specify the size of
|
|
2015
|
+
"default": "'md'",
|
|
2016
|
+
"description": "Specify the size of a Button",
|
|
1567
2017
|
"attribute": "size"
|
|
1568
2018
|
},
|
|
1569
2019
|
{
|
|
1570
2020
|
"kind": "field",
|
|
1571
|
-
"name": "
|
|
2021
|
+
"name": "disabled",
|
|
1572
2022
|
"type": {
|
|
1573
|
-
"text": "
|
|
2023
|
+
"text": "boolean"
|
|
1574
2024
|
},
|
|
1575
|
-
"default": "
|
|
1576
|
-
"description": "Specify the
|
|
1577
|
-
"attribute": "
|
|
2025
|
+
"default": "false",
|
|
2026
|
+
"description": "Specify if the Button is disabled",
|
|
2027
|
+
"attribute": "disabled"
|
|
1578
2028
|
},
|
|
1579
2029
|
{
|
|
1580
2030
|
"kind": "field",
|
|
1581
|
-
"name": "
|
|
2031
|
+
"name": "fluid",
|
|
1582
2032
|
"type": {
|
|
1583
|
-
"text": "boolean
|
|
2033
|
+
"text": "boolean"
|
|
1584
2034
|
},
|
|
1585
|
-
"
|
|
1586
|
-
"
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
"attributes": [
|
|
2035
|
+
"default": "false",
|
|
2036
|
+
"description": "Specify if Button is fluid",
|
|
2037
|
+
"attribute": "fluid"
|
|
2038
|
+
},
|
|
1590
2039
|
{
|
|
1591
|
-
"
|
|
2040
|
+
"kind": "field",
|
|
2041
|
+
"name": "width",
|
|
1592
2042
|
"type": {
|
|
1593
|
-
"text": "
|
|
2043
|
+
"text": "string | undefined"
|
|
1594
2044
|
},
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1597
|
-
|
|
2045
|
+
"description": "Specify the width of a Button",
|
|
2046
|
+
"attribute": "width"
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
"kind": "field",
|
|
2050
|
+
"name": "height",
|
|
2051
|
+
"type": {
|
|
2052
|
+
"text": "string | undefined"
|
|
2053
|
+
},
|
|
2054
|
+
"description": "Specify the height of a Button",
|
|
2055
|
+
"attribute": "height"
|
|
1598
2056
|
},
|
|
1599
2057
|
{
|
|
2058
|
+
"kind": "field",
|
|
1600
2059
|
"name": "theme",
|
|
1601
2060
|
"type": {
|
|
1602
2061
|
"text": "'light' | 'dark' | undefined"
|
|
1603
2062
|
},
|
|
1604
|
-
"description": "
|
|
1605
|
-
"
|
|
2063
|
+
"description": "Specify the theme of the Button",
|
|
2064
|
+
"attribute": "theme"
|
|
1606
2065
|
},
|
|
1607
2066
|
{
|
|
1608
|
-
"
|
|
2067
|
+
"kind": "field",
|
|
2068
|
+
"name": "iconOnly",
|
|
1609
2069
|
"type": {
|
|
1610
|
-
"text": "
|
|
2070
|
+
"text": "boolean | undefined"
|
|
1611
2071
|
},
|
|
1612
|
-
"
|
|
1613
|
-
"
|
|
1614
|
-
"fieldName": "size"
|
|
2072
|
+
"description": "Specify if the icon displays without text",
|
|
2073
|
+
"attribute": "iconOnly"
|
|
1615
2074
|
},
|
|
1616
2075
|
{
|
|
1617
|
-
"
|
|
2076
|
+
"kind": "field",
|
|
2077
|
+
"name": "type",
|
|
1618
2078
|
"type": {
|
|
1619
|
-
"text": "
|
|
2079
|
+
"text": "string"
|
|
1620
2080
|
},
|
|
1621
|
-
"default": "'
|
|
1622
|
-
"
|
|
1623
|
-
"fieldName": "emphasis"
|
|
2081
|
+
"default": "'button'",
|
|
2082
|
+
"attribute": "type"
|
|
1624
2083
|
},
|
|
1625
2084
|
{
|
|
1626
|
-
"
|
|
2085
|
+
"kind": "field",
|
|
2086
|
+
"name": "formContext",
|
|
1627
2087
|
"type": {
|
|
1628
|
-
"text": "
|
|
1629
|
-
}
|
|
1630
|
-
"description": "Hides Badge icon",
|
|
1631
|
-
"fieldName": "hideIcon"
|
|
1632
|
-
}
|
|
1633
|
-
],
|
|
1634
|
-
"superclass": {
|
|
1635
|
-
"name": "LitElement",
|
|
1636
|
-
"package": "lit"
|
|
1637
|
-
},
|
|
1638
|
-
"tagName": "bm-badge",
|
|
1639
|
-
"customElement": true
|
|
1640
|
-
}
|
|
1641
|
-
],
|
|
1642
|
-
"exports": [
|
|
1643
|
-
{
|
|
1644
|
-
"kind": "js",
|
|
1645
|
-
"name": "BmBadge",
|
|
1646
|
-
"declaration": {
|
|
1647
|
-
"name": "BmBadge",
|
|
1648
|
-
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1649
|
-
}
|
|
1650
|
-
},
|
|
1651
|
-
{
|
|
1652
|
-
"kind": "custom-element-definition",
|
|
1653
|
-
"name": "bm-badge",
|
|
1654
|
-
"declaration": {
|
|
1655
|
-
"name": "BmBadge",
|
|
1656
|
-
"module": "libs/web-components/src/lib/Badge/Badge.ts"
|
|
1657
|
-
}
|
|
1658
|
-
}
|
|
1659
|
-
]
|
|
1660
|
-
},
|
|
1661
|
-
{
|
|
1662
|
-
"kind": "javascript-module",
|
|
1663
|
-
"path": "libs/web-components/src/lib/Badge/index.ts",
|
|
1664
|
-
"declarations": [],
|
|
1665
|
-
"exports": [
|
|
1666
|
-
{
|
|
1667
|
-
"kind": "js",
|
|
1668
|
-
"name": "*",
|
|
1669
|
-
"declaration": {
|
|
1670
|
-
"name": "*",
|
|
1671
|
-
"package": "./Badge"
|
|
1672
|
-
}
|
|
1673
|
-
}
|
|
1674
|
-
]
|
|
1675
|
-
},
|
|
1676
|
-
{
|
|
1677
|
-
"kind": "javascript-module",
|
|
1678
|
-
"path": "libs/web-components/src/lib/Button/Button.ts",
|
|
1679
|
-
"declarations": [
|
|
1680
|
-
{
|
|
1681
|
-
"kind": "class",
|
|
1682
|
-
"description": "`bm-button`\n\n### Attributes:\n- **appearance** - Specify the appearance of a Button\n- **kind** - Specify the kind of Button\n- **size** - Specify the size of a Button\n- **disabled** - Specify if the Button is disabled\n- **fluid** - Specify if Button is fluid\n- **width** - Specify the width of a Button\n- **height** - Specify the height of a Button\n- **theme** - Specify the theme of the Button\n- **iconOnly** - Specify if the icon displays without text\n- **type** ",
|
|
1683
|
-
"name": "BmButton",
|
|
1684
|
-
"slots": [
|
|
1685
|
-
{
|
|
1686
|
-
"description": "Provide content for the Button",
|
|
1687
|
-
"name": "default"
|
|
1688
|
-
},
|
|
1689
|
-
{
|
|
1690
|
-
"description": "Specify if the Button displays icon before the text",
|
|
1691
|
-
"name": "iconBefore"
|
|
1692
|
-
},
|
|
1693
|
-
{
|
|
1694
|
-
"description": "Specify if the Button displays icon after the text",
|
|
1695
|
-
"name": "iconAfter"
|
|
1696
|
-
}
|
|
1697
|
-
],
|
|
1698
|
-
"members": [
|
|
1699
|
-
{
|
|
1700
|
-
"kind": "field",
|
|
1701
|
-
"name": "formAssociated",
|
|
1702
|
-
"type": {
|
|
1703
|
-
"text": "boolean"
|
|
1704
|
-
},
|
|
1705
|
-
"static": true,
|
|
1706
|
-
"default": "true"
|
|
1707
|
-
},
|
|
1708
|
-
{
|
|
1709
|
-
"kind": "field",
|
|
1710
|
-
"name": "appearance",
|
|
1711
|
-
"type": {
|
|
1712
|
-
"text": "'accent' | 'neutral' | 'neutral-subtle' | 'destructive'"
|
|
1713
|
-
},
|
|
1714
|
-
"default": "'accent'",
|
|
1715
|
-
"description": "Specify the appearance of a Button",
|
|
1716
|
-
"attribute": "appearance"
|
|
1717
|
-
},
|
|
1718
|
-
{
|
|
1719
|
-
"kind": "field",
|
|
1720
|
-
"name": "kind",
|
|
1721
|
-
"type": {
|
|
1722
|
-
"text": "'filled' | 'outline' | 'ghost' | 'bare'"
|
|
1723
|
-
},
|
|
1724
|
-
"default": "'filled'",
|
|
1725
|
-
"description": "Specify the kind of Button",
|
|
1726
|
-
"attribute": "kind"
|
|
1727
|
-
},
|
|
1728
|
-
{
|
|
1729
|
-
"kind": "field",
|
|
1730
|
-
"name": "size",
|
|
1731
|
-
"type": {
|
|
1732
|
-
"text": "'sm' | 'md' | 'lg'"
|
|
1733
|
-
},
|
|
1734
|
-
"default": "'md'",
|
|
1735
|
-
"description": "Specify the size of a Button",
|
|
1736
|
-
"attribute": "size"
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
"kind": "field",
|
|
1740
|
-
"name": "disabled",
|
|
1741
|
-
"type": {
|
|
1742
|
-
"text": "boolean"
|
|
1743
|
-
},
|
|
1744
|
-
"default": "false",
|
|
1745
|
-
"description": "Specify if the Button is disabled",
|
|
1746
|
-
"attribute": "disabled"
|
|
1747
|
-
},
|
|
1748
|
-
{
|
|
1749
|
-
"kind": "field",
|
|
1750
|
-
"name": "fluid",
|
|
1751
|
-
"type": {
|
|
1752
|
-
"text": "boolean"
|
|
1753
|
-
},
|
|
1754
|
-
"default": "false",
|
|
1755
|
-
"description": "Specify if Button is fluid",
|
|
1756
|
-
"attribute": "fluid"
|
|
1757
|
-
},
|
|
1758
|
-
{
|
|
1759
|
-
"kind": "field",
|
|
1760
|
-
"name": "width",
|
|
1761
|
-
"type": {
|
|
1762
|
-
"text": "string | undefined"
|
|
1763
|
-
},
|
|
1764
|
-
"description": "Specify the width of a Button",
|
|
1765
|
-
"attribute": "width"
|
|
1766
|
-
},
|
|
1767
|
-
{
|
|
1768
|
-
"kind": "field",
|
|
1769
|
-
"name": "height",
|
|
1770
|
-
"type": {
|
|
1771
|
-
"text": "string | undefined"
|
|
1772
|
-
},
|
|
1773
|
-
"description": "Specify the height of a Button",
|
|
1774
|
-
"attribute": "height"
|
|
1775
|
-
},
|
|
1776
|
-
{
|
|
1777
|
-
"kind": "field",
|
|
1778
|
-
"name": "theme",
|
|
1779
|
-
"type": {
|
|
1780
|
-
"text": "'light' | 'dark' | undefined"
|
|
1781
|
-
},
|
|
1782
|
-
"description": "Specify the theme of the Button",
|
|
1783
|
-
"attribute": "theme"
|
|
1784
|
-
},
|
|
1785
|
-
{
|
|
1786
|
-
"kind": "field",
|
|
1787
|
-
"name": "iconOnly",
|
|
1788
|
-
"type": {
|
|
1789
|
-
"text": "boolean | undefined"
|
|
1790
|
-
},
|
|
1791
|
-
"description": "Specify if the icon displays without text",
|
|
1792
|
-
"attribute": "iconOnly"
|
|
1793
|
-
},
|
|
1794
|
-
{
|
|
1795
|
-
"kind": "field",
|
|
1796
|
-
"name": "type",
|
|
1797
|
-
"type": {
|
|
1798
|
-
"text": "string"
|
|
1799
|
-
},
|
|
1800
|
-
"default": "'button'",
|
|
1801
|
-
"attribute": "type"
|
|
1802
|
-
},
|
|
1803
|
-
{
|
|
1804
|
-
"kind": "field",
|
|
1805
|
-
"name": "formContext",
|
|
1806
|
-
"type": {
|
|
1807
|
-
"text": "BmFormContext"
|
|
1808
|
-
}
|
|
2088
|
+
"text": "BmFormContext"
|
|
2089
|
+
}
|
|
1809
2090
|
}
|
|
1810
2091
|
],
|
|
1811
2092
|
"attributes": [
|
|
@@ -1937,287 +2218,6 @@
|
|
|
1937
2218
|
}
|
|
1938
2219
|
]
|
|
1939
2220
|
},
|
|
1940
|
-
{
|
|
1941
|
-
"kind": "javascript-module",
|
|
1942
|
-
"path": "libs/web-components/src/lib/Alert/Alert.ts",
|
|
1943
|
-
"declarations": [
|
|
1944
|
-
{
|
|
1945
|
-
"kind": "class",
|
|
1946
|
-
"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",
|
|
1947
|
-
"name": "BmAlert",
|
|
1948
|
-
"slots": [
|
|
1949
|
-
{
|
|
1950
|
-
"description": "Specify a different icon for the Alert",
|
|
1951
|
-
"name": "icon"
|
|
1952
|
-
},
|
|
1953
|
-
{
|
|
1954
|
-
"description": "Specify the heading text for Alert or pass the `heading` attribute to set the heading",
|
|
1955
|
-
"name": "heading"
|
|
1956
|
-
},
|
|
1957
|
-
{
|
|
1958
|
-
"description": "Specify the body text for Alert or pass the `body` attribute to set the body",
|
|
1959
|
-
"name": "body"
|
|
1960
|
-
},
|
|
1961
|
-
{
|
|
1962
|
-
"description": "Specify if actions display on the Alert",
|
|
1963
|
-
"name": "actions"
|
|
1964
|
-
}
|
|
1965
|
-
],
|
|
1966
|
-
"members": [
|
|
1967
|
-
{
|
|
1968
|
-
"kind": "field",
|
|
1969
|
-
"name": "heading",
|
|
1970
|
-
"type": {
|
|
1971
|
-
"text": "string | undefined"
|
|
1972
|
-
},
|
|
1973
|
-
"description": "Specify the heading text for Alert",
|
|
1974
|
-
"attribute": "heading"
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
"kind": "field",
|
|
1978
|
-
"name": "body",
|
|
1979
|
-
"type": {
|
|
1980
|
-
"text": "string | undefined"
|
|
1981
|
-
},
|
|
1982
|
-
"description": "Specify the body text for Alert",
|
|
1983
|
-
"attribute": "body"
|
|
1984
|
-
},
|
|
1985
|
-
{
|
|
1986
|
-
"kind": "field",
|
|
1987
|
-
"name": "size",
|
|
1988
|
-
"type": {
|
|
1989
|
-
"text": "'sm' | 'md'"
|
|
1990
|
-
},
|
|
1991
|
-
"default": "'sm'",
|
|
1992
|
-
"description": "Specify the size of the Alert",
|
|
1993
|
-
"attribute": "size"
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
"kind": "field",
|
|
1997
|
-
"name": "fullWidth",
|
|
1998
|
-
"type": {
|
|
1999
|
-
"text": "boolean"
|
|
2000
|
-
},
|
|
2001
|
-
"default": "false",
|
|
2002
|
-
"description": "Specify if the Alert has no border radius",
|
|
2003
|
-
"attribute": "fullWidth"
|
|
2004
|
-
},
|
|
2005
|
-
{
|
|
2006
|
-
"kind": "field",
|
|
2007
|
-
"name": "theme",
|
|
2008
|
-
"type": {
|
|
2009
|
-
"text": "'light' | 'dark' | undefined"
|
|
2010
|
-
},
|
|
2011
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
2012
|
-
"attribute": "theme"
|
|
2013
|
-
},
|
|
2014
|
-
{
|
|
2015
|
-
"kind": "field",
|
|
2016
|
-
"name": "appearance",
|
|
2017
|
-
"type": {
|
|
2018
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
2019
|
-
},
|
|
2020
|
-
"default": "'infoPrimary'",
|
|
2021
|
-
"description": "Specify the appearance of the Alert",
|
|
2022
|
-
"attribute": "appearance"
|
|
2023
|
-
},
|
|
2024
|
-
{
|
|
2025
|
-
"kind": "field",
|
|
2026
|
-
"name": "hidden",
|
|
2027
|
-
"type": {
|
|
2028
|
-
"text": "boolean"
|
|
2029
|
-
},
|
|
2030
|
-
"default": "false",
|
|
2031
|
-
"description": "Specify if the Alert is hidden",
|
|
2032
|
-
"attribute": "hidden"
|
|
2033
|
-
},
|
|
2034
|
-
{
|
|
2035
|
-
"kind": "field",
|
|
2036
|
-
"name": "hideIcon",
|
|
2037
|
-
"type": {
|
|
2038
|
-
"text": "boolean"
|
|
2039
|
-
},
|
|
2040
|
-
"default": "false",
|
|
2041
|
-
"description": "Specify if the icon displays on the Alert",
|
|
2042
|
-
"attribute": "hideIcon"
|
|
2043
|
-
},
|
|
2044
|
-
{
|
|
2045
|
-
"kind": "field",
|
|
2046
|
-
"name": "dismissible",
|
|
2047
|
-
"type": {
|
|
2048
|
-
"text": "boolean"
|
|
2049
|
-
},
|
|
2050
|
-
"default": "false",
|
|
2051
|
-
"description": "Specify if the Alert can be dismissed",
|
|
2052
|
-
"attribute": "dismissible"
|
|
2053
|
-
},
|
|
2054
|
-
{
|
|
2055
|
-
"kind": "field",
|
|
2056
|
-
"name": "disableAutoFocus",
|
|
2057
|
-
"type": {
|
|
2058
|
-
"text": "boolean"
|
|
2059
|
-
},
|
|
2060
|
-
"default": "false",
|
|
2061
|
-
"description": "Prevent autofocus on show",
|
|
2062
|
-
"attribute": "disableAutoFocus"
|
|
2063
|
-
},
|
|
2064
|
-
{
|
|
2065
|
-
"kind": "field",
|
|
2066
|
-
"name": "disableCloseOnEscape",
|
|
2067
|
-
"type": {
|
|
2068
|
-
"text": "boolean"
|
|
2069
|
-
},
|
|
2070
|
-
"default": "false",
|
|
2071
|
-
"description": "Prevent Escape from closing",
|
|
2072
|
-
"attribute": "disableCloseOnEscape"
|
|
2073
|
-
}
|
|
2074
|
-
],
|
|
2075
|
-
"events": [
|
|
2076
|
-
{
|
|
2077
|
-
"description": "Dispatched when the Alert has been dismissed",
|
|
2078
|
-
"name": "bm-dismiss"
|
|
2079
|
-
}
|
|
2080
|
-
],
|
|
2081
|
-
"attributes": [
|
|
2082
|
-
{
|
|
2083
|
-
"name": "heading",
|
|
2084
|
-
"type": {
|
|
2085
|
-
"text": "string | undefined"
|
|
2086
|
-
},
|
|
2087
|
-
"description": "Specify the heading text for Alert",
|
|
2088
|
-
"fieldName": "heading"
|
|
2089
|
-
},
|
|
2090
|
-
{
|
|
2091
|
-
"name": "body",
|
|
2092
|
-
"type": {
|
|
2093
|
-
"text": "string | undefined"
|
|
2094
|
-
},
|
|
2095
|
-
"description": "Specify the body text for Alert",
|
|
2096
|
-
"fieldName": "body"
|
|
2097
|
-
},
|
|
2098
|
-
{
|
|
2099
|
-
"name": "size",
|
|
2100
|
-
"type": {
|
|
2101
|
-
"text": "'sm' | 'md'"
|
|
2102
|
-
},
|
|
2103
|
-
"default": "'sm'",
|
|
2104
|
-
"description": "Specify the size of the Alert",
|
|
2105
|
-
"fieldName": "size"
|
|
2106
|
-
},
|
|
2107
|
-
{
|
|
2108
|
-
"name": "fullWidth",
|
|
2109
|
-
"type": {
|
|
2110
|
-
"text": "boolean"
|
|
2111
|
-
},
|
|
2112
|
-
"default": "false",
|
|
2113
|
-
"description": "Specify if the Alert has no border radius",
|
|
2114
|
-
"fieldName": "fullWidth"
|
|
2115
|
-
},
|
|
2116
|
-
{
|
|
2117
|
-
"name": "theme",
|
|
2118
|
-
"type": {
|
|
2119
|
-
"text": "'light' | 'dark' | undefined"
|
|
2120
|
-
},
|
|
2121
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
2122
|
-
"fieldName": "theme"
|
|
2123
|
-
},
|
|
2124
|
-
{
|
|
2125
|
-
"name": "appearance",
|
|
2126
|
-
"type": {
|
|
2127
|
-
"text": "'infoPrimary' | 'infoSecondary' | 'positive' | 'warning' | 'negative'"
|
|
2128
|
-
},
|
|
2129
|
-
"default": "'infoPrimary'",
|
|
2130
|
-
"description": "Specify the appearance of the Alert",
|
|
2131
|
-
"fieldName": "appearance"
|
|
2132
|
-
},
|
|
2133
|
-
{
|
|
2134
|
-
"name": "hidden",
|
|
2135
|
-
"type": {
|
|
2136
|
-
"text": "boolean"
|
|
2137
|
-
},
|
|
2138
|
-
"default": "false",
|
|
2139
|
-
"description": "Specify if the Alert is hidden",
|
|
2140
|
-
"fieldName": "hidden"
|
|
2141
|
-
},
|
|
2142
|
-
{
|
|
2143
|
-
"name": "hideIcon",
|
|
2144
|
-
"type": {
|
|
2145
|
-
"text": "boolean"
|
|
2146
|
-
},
|
|
2147
|
-
"default": "false",
|
|
2148
|
-
"description": "Specify if the icon displays on the Alert",
|
|
2149
|
-
"fieldName": "hideIcon"
|
|
2150
|
-
},
|
|
2151
|
-
{
|
|
2152
|
-
"name": "dismissible",
|
|
2153
|
-
"type": {
|
|
2154
|
-
"text": "boolean"
|
|
2155
|
-
},
|
|
2156
|
-
"default": "false",
|
|
2157
|
-
"description": "Specify if the Alert can be dismissed",
|
|
2158
|
-
"fieldName": "dismissible"
|
|
2159
|
-
},
|
|
2160
|
-
{
|
|
2161
|
-
"name": "disableAutoFocus",
|
|
2162
|
-
"type": {
|
|
2163
|
-
"text": "boolean"
|
|
2164
|
-
},
|
|
2165
|
-
"default": "false",
|
|
2166
|
-
"description": "Prevent autofocus on show",
|
|
2167
|
-
"fieldName": "disableAutoFocus"
|
|
2168
|
-
},
|
|
2169
|
-
{
|
|
2170
|
-
"name": "disableCloseOnEscape",
|
|
2171
|
-
"type": {
|
|
2172
|
-
"text": "boolean"
|
|
2173
|
-
},
|
|
2174
|
-
"default": "false",
|
|
2175
|
-
"description": "Prevent Escape from closing",
|
|
2176
|
-
"fieldName": "disableCloseOnEscape"
|
|
2177
|
-
}
|
|
2178
|
-
],
|
|
2179
|
-
"superclass": {
|
|
2180
|
-
"name": "LitElement",
|
|
2181
|
-
"package": "lit"
|
|
2182
|
-
},
|
|
2183
|
-
"tagName": "bm-alert",
|
|
2184
|
-
"customElement": true
|
|
2185
|
-
}
|
|
2186
|
-
],
|
|
2187
|
-
"exports": [
|
|
2188
|
-
{
|
|
2189
|
-
"kind": "js",
|
|
2190
|
-
"name": "BmAlert",
|
|
2191
|
-
"declaration": {
|
|
2192
|
-
"name": "BmAlert",
|
|
2193
|
-
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
2194
|
-
}
|
|
2195
|
-
},
|
|
2196
|
-
{
|
|
2197
|
-
"kind": "custom-element-definition",
|
|
2198
|
-
"name": "bm-alert",
|
|
2199
|
-
"declaration": {
|
|
2200
|
-
"name": "BmAlert",
|
|
2201
|
-
"module": "libs/web-components/src/lib/Alert/Alert.ts"
|
|
2202
|
-
}
|
|
2203
|
-
}
|
|
2204
|
-
]
|
|
2205
|
-
},
|
|
2206
|
-
{
|
|
2207
|
-
"kind": "javascript-module",
|
|
2208
|
-
"path": "libs/web-components/src/lib/Alert/index.ts",
|
|
2209
|
-
"declarations": [],
|
|
2210
|
-
"exports": [
|
|
2211
|
-
{
|
|
2212
|
-
"kind": "js",
|
|
2213
|
-
"name": "*",
|
|
2214
|
-
"declaration": {
|
|
2215
|
-
"name": "*",
|
|
2216
|
-
"package": "./Alert"
|
|
2217
|
-
}
|
|
2218
|
-
}
|
|
2219
|
-
]
|
|
2220
|
-
},
|
|
2221
2221
|
{
|
|
2222
2222
|
"kind": "javascript-module",
|
|
2223
2223
|
"path": "libs/web-components/src/lib/CloseButton/CloseButton.ts",
|