@viasat/beam-web-components 2.69.0 → 2.70.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/Alert/Alert.d.ts +1 -1
- package/Breadcrumbs/Breadcrumbs.js +1 -1
- package/Breadcrumbs/BreadcrumbsItem.js +2 -2
- package/Breadcrumbs/index.js +1 -1
- package/SegmentedControl/SegmentedControlItem.js +1 -1
- package/{wip/TextArea → TextArea}/TextArea.d.ts +37 -6
- package/{wip/TextArea → TextArea}/TextArea.js +185 -131
- package/TextField/TextField.d.ts +10 -4
- package/TextField/TextField.js +71 -65
- package/Tooltip/Tooltip.js +1 -1
- package/chunks/{BreadcrumbsItem.xWwSJgcO.js → BreadcrumbsItem.kovG2GHz.js} +1 -1
- package/chunks/{helpers.C43UgSdK.js → helpers.Ds5YZETV.js} +4 -4
- package/custom-elements.json +3963 -3205
- package/local/{wip/TextArea → TextArea}/TextArea.js +183 -128
- package/local/TextField/TextField.js +71 -65
- package/local/wip/Form/Form.decorator.js +119 -63
- package/local/wip/NativeSelect/NativeSelect.js +79 -82
- package/package.json +6 -6
- package/vscode.html-custom-data.json +361 -316
- package/wip/Form/Form.decorator.d.ts +19 -2
- package/wip/Form/Form.decorator.js +119 -63
- package/wip/NativeSelect/NativeSelect.d.ts +0 -4
- package/wip/NativeSelect/NativeSelect.js +75 -78
- /package/{wip/TextArea → TextArea}/index.d.ts +0 -0
- /package/{local/wip/TextArea → TextArea}/index.js +0 -0
- /package/{wip → local}/TextArea/index.js +0 -0
|
@@ -674,6 +674,79 @@
|
|
|
674
674
|
}
|
|
675
675
|
]
|
|
676
676
|
},
|
|
677
|
+
{
|
|
678
|
+
"name": "bm-alert",
|
|
679
|
+
"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\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the Alert has been dismissed\n\n### **Slots:**\n - **icon** - Specify a different icon for the Alert\n- **heading** - Specify the heading text for Alert or pass the `heading` attribute to set the heading\n- **body** - Specify the body text for Alert or pass the `body` attribute to set the body\n- **actions** - Specify if actions display on the Alert",
|
|
680
|
+
"attributes": [
|
|
681
|
+
{
|
|
682
|
+
"name": "heading",
|
|
683
|
+
"description": "Specify the heading text for Alert",
|
|
684
|
+
"values": []
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"name": "body",
|
|
688
|
+
"description": "Specify the body text for Alert",
|
|
689
|
+
"values": []
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"name": "size",
|
|
693
|
+
"description": "Specify the size of the Alert",
|
|
694
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "fullWidth",
|
|
698
|
+
"description": "Specify if the Alert has no border radius",
|
|
699
|
+
"values": []
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"name": "theme",
|
|
703
|
+
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
704
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "appearance",
|
|
708
|
+
"description": "Specify the appearance of the Alert",
|
|
709
|
+
"values": [
|
|
710
|
+
{ "name": "infoPrimary" },
|
|
711
|
+
{ "name": "infoSecondary" },
|
|
712
|
+
{ "name": "positive" },
|
|
713
|
+
{ "name": "warning" },
|
|
714
|
+
{ "name": "negative" }
|
|
715
|
+
]
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"name": "hidden",
|
|
719
|
+
"description": "Specify if the Alert is hidden",
|
|
720
|
+
"values": []
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"name": "hideIcon",
|
|
724
|
+
"description": "Specify if the icon displays on the Alert",
|
|
725
|
+
"values": []
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"name": "dismissible",
|
|
729
|
+
"description": "Specify if the Alert can be dismissed",
|
|
730
|
+
"values": []
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"name": "disableAutoFocus",
|
|
734
|
+
"description": "Prevent autofocus on show",
|
|
735
|
+
"values": []
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"name": "disableCloseOnEscape",
|
|
739
|
+
"description": "Prevent Escape from closing",
|
|
740
|
+
"values": []
|
|
741
|
+
}
|
|
742
|
+
],
|
|
743
|
+
"references": [
|
|
744
|
+
{
|
|
745
|
+
"name": "Storybook",
|
|
746
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
747
|
+
}
|
|
748
|
+
]
|
|
749
|
+
},
|
|
677
750
|
{
|
|
678
751
|
"name": "bm-avatar",
|
|
679
752
|
"description": "`bm-avatar`\n\n### Attributes:\n- **appearance** - Specify the appearance of the Avatar\n- **name** - Specify a name to display initials in the Avatar\n- **src** - Pass an image to the Avatar\n- **alt** - Specify alt for image\n- **size** - Specify the size of the Avatar\n- **disabled** - Specify if the Avatar is disabled\n- **shape** - Specify the shape of the Avatar\n- **isInteractive** - If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer\n- **isFocusable** - If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable\n- **withBorder** \n---\n\n\n### **Slots:**\n - **icon** - Customize the default icon",
|
|
@@ -772,79 +845,6 @@
|
|
|
772
845
|
}
|
|
773
846
|
]
|
|
774
847
|
},
|
|
775
|
-
{
|
|
776
|
-
"name": "bm-alert",
|
|
777
|
-
"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\n---\n\n\n### **Events:**\n - **bm-dismiss** - Dispatched when the Alert has been dismissed\n\n### **Slots:**\n - **icon** - Specify a different icon for the Alert\n- **heading** - Specify the heading text for Alert or pass the `heading` attribute to set the heading\n- **body** - Specify the body text for Alert or pass the `body` attribute to set the body\n- **actions** - Specify if actions display on the Alert",
|
|
778
|
-
"attributes": [
|
|
779
|
-
{
|
|
780
|
-
"name": "heading",
|
|
781
|
-
"description": "Specify the heading text for Alert",
|
|
782
|
-
"values": []
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
"name": "body",
|
|
786
|
-
"description": "Specify the body text for Alert",
|
|
787
|
-
"values": []
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
"name": "size",
|
|
791
|
-
"description": "Specify the size of the Alert",
|
|
792
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"name": "fullWidth",
|
|
796
|
-
"description": "Specify if the Alert has no border radius",
|
|
797
|
-
"values": []
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"name": "theme",
|
|
801
|
-
"description": "Specify the theme of the Alert. By default it inherits the theme from the parent",
|
|
802
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"name": "appearance",
|
|
806
|
-
"description": "Specify the appearance of the Alert",
|
|
807
|
-
"values": [
|
|
808
|
-
{ "name": "infoPrimary" },
|
|
809
|
-
{ "name": "infoSecondary" },
|
|
810
|
-
{ "name": "positive" },
|
|
811
|
-
{ "name": "warning" },
|
|
812
|
-
{ "name": "negative" }
|
|
813
|
-
]
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"name": "hidden",
|
|
817
|
-
"description": "Specify if the Alert is hidden",
|
|
818
|
-
"values": []
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"name": "hideIcon",
|
|
822
|
-
"description": "Specify if the icon displays on the Alert",
|
|
823
|
-
"values": []
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
"name": "dismissible",
|
|
827
|
-
"description": "Specify if the Alert can be dismissed",
|
|
828
|
-
"values": []
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
"name": "disableAutoFocus",
|
|
832
|
-
"description": "Prevent autofocus on show",
|
|
833
|
-
"values": []
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"name": "disableCloseOnEscape",
|
|
837
|
-
"description": "Prevent Escape from closing",
|
|
838
|
-
"values": []
|
|
839
|
-
}
|
|
840
|
-
],
|
|
841
|
-
"references": [
|
|
842
|
-
{
|
|
843
|
-
"name": "Storybook",
|
|
844
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-alert"
|
|
845
|
-
}
|
|
846
|
-
]
|
|
847
|
-
},
|
|
848
848
|
{
|
|
849
849
|
"name": "bm-close-button",
|
|
850
850
|
"description": "`bm-close-button`\n\n### Attributes:\n- **size** - Specify the size of the CloseButton\n- **disabled** - Specify if the CloseButton is disabled\n---\n",
|
|
@@ -989,53 +989,6 @@
|
|
|
989
989
|
}
|
|
990
990
|
]
|
|
991
991
|
},
|
|
992
|
-
{
|
|
993
|
-
"name": "bm-helper-text",
|
|
994
|
-
"description": "### Attributes:\n- **appearance** - Specify the appearance of the HelperText\n- **size** - Specify the size of the HelperText\n- **disabled** - Specify if the message is disabled for HelpText\n- **hideIcon** - Specify if the icon displays on the HelperText\n- **text** - Add or customize content in the HelperText\n- **theme** - Specify the theme of the HelperText. By default it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Add or customize content in the HelperText\n- **icon** - Specify a different icon for the HelperText",
|
|
995
|
-
"attributes": [
|
|
996
|
-
{
|
|
997
|
-
"name": "appearance",
|
|
998
|
-
"description": "Specify the appearance of the HelperText",
|
|
999
|
-
"values": [
|
|
1000
|
-
{ "name": "positive" },
|
|
1001
|
-
{ "name": "warning" },
|
|
1002
|
-
{ "name": "negative" },
|
|
1003
|
-
{ "name": "info" }
|
|
1004
|
-
]
|
|
1005
|
-
},
|
|
1006
|
-
{
|
|
1007
|
-
"name": "size",
|
|
1008
|
-
"description": "Specify the size of the HelperText",
|
|
1009
|
-
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
1010
|
-
},
|
|
1011
|
-
{
|
|
1012
|
-
"name": "disabled",
|
|
1013
|
-
"description": "Specify if the message is disabled for HelpText",
|
|
1014
|
-
"values": []
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
"name": "hideIcon",
|
|
1018
|
-
"description": "Specify if the icon displays on the HelperText",
|
|
1019
|
-
"values": []
|
|
1020
|
-
},
|
|
1021
|
-
{
|
|
1022
|
-
"name": "text",
|
|
1023
|
-
"description": "Add or customize content in the HelperText",
|
|
1024
|
-
"values": []
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"name": "theme",
|
|
1028
|
-
"description": "Specify the theme of the HelperText. By default it inherits the theme from the parent",
|
|
1029
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
1030
|
-
}
|
|
1031
|
-
],
|
|
1032
|
-
"references": [
|
|
1033
|
-
{
|
|
1034
|
-
"name": "Storybook",
|
|
1035
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-helpertext"
|
|
1036
|
-
}
|
|
1037
|
-
]
|
|
1038
|
-
},
|
|
1039
992
|
{
|
|
1040
993
|
"name": "bm-icon",
|
|
1041
994
|
"description": "`bm-icon`\n\n### Attributes:\n- **color** - Specify the color of Icon\n- **size** - Specify the size of Icon\n- **customIconSize** - Specify a custom size for the Icon\n- **customIconColor** - Specify a custom color for the Icon\n---\n\n\n### **Slots:**\n - **default** - Specify which Icon to display",
|
|
@@ -1089,6 +1042,53 @@
|
|
|
1089
1042
|
}
|
|
1090
1043
|
]
|
|
1091
1044
|
},
|
|
1045
|
+
{
|
|
1046
|
+
"name": "bm-helper-text",
|
|
1047
|
+
"description": "### Attributes:\n- **appearance** - Specify the appearance of the HelperText\n- **size** - Specify the size of the HelperText\n- **disabled** - Specify if the message is disabled for HelpText\n- **hideIcon** - Specify if the icon displays on the HelperText\n- **text** - Add or customize content in the HelperText\n- **theme** - Specify the theme of the HelperText. By default it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Add or customize content in the HelperText\n- **icon** - Specify a different icon for the HelperText",
|
|
1048
|
+
"attributes": [
|
|
1049
|
+
{
|
|
1050
|
+
"name": "appearance",
|
|
1051
|
+
"description": "Specify the appearance of the HelperText",
|
|
1052
|
+
"values": [
|
|
1053
|
+
{ "name": "positive" },
|
|
1054
|
+
{ "name": "warning" },
|
|
1055
|
+
{ "name": "negative" },
|
|
1056
|
+
{ "name": "info" }
|
|
1057
|
+
]
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"name": "size",
|
|
1061
|
+
"description": "Specify the size of the HelperText",
|
|
1062
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"name": "disabled",
|
|
1066
|
+
"description": "Specify if the message is disabled for HelpText",
|
|
1067
|
+
"values": []
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"name": "hideIcon",
|
|
1071
|
+
"description": "Specify if the icon displays on the HelperText",
|
|
1072
|
+
"values": []
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"name": "text",
|
|
1076
|
+
"description": "Add or customize content in the HelperText",
|
|
1077
|
+
"values": []
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"name": "theme",
|
|
1081
|
+
"description": "Specify the theme of the HelperText. By default it inherits the theme from the parent",
|
|
1082
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
1083
|
+
}
|
|
1084
|
+
],
|
|
1085
|
+
"references": [
|
|
1086
|
+
{
|
|
1087
|
+
"name": "Storybook",
|
|
1088
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-helpertext"
|
|
1089
|
+
}
|
|
1090
|
+
]
|
|
1091
|
+
},
|
|
1092
1092
|
{
|
|
1093
1093
|
"name": "bm-input-choice-group",
|
|
1094
1094
|
"description": "`bm-input-choice-group`\n\n### Attributes:\n- **theme** - Specify the theme of the InputChoiceGroup. By default it inherits the theme from the parent\n- **layout** - Specify InputChoiceGroup orientation\n\n**Deprecated**: use `orientation` and `fluid` instead\n- **orientation** - Specify InputChoiceGroup orientation\n- **fluid** - Specify if InputChoiceGroup should take the full width of its container\n- **required** - Specify if InputChoiceGroup is a required input\n- **hideRequiredMarker** - Specify if the InputChoiceGroup displays with an asterisk\n- **error** - Specify error text and display error state of a InputChoiceGroup\n- **readOnly** - Specify if InputChoiceGroup displays in a read-only state\n- **disabled** - Specify if InputChoiceGroup displays in a disabled state\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
|
|
@@ -1130,7 +1130,7 @@
|
|
|
1130
1130
|
{
|
|
1131
1131
|
"name": "error",
|
|
1132
1132
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
1133
|
-
"values": []
|
|
1133
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
1134
1134
|
},
|
|
1135
1135
|
{
|
|
1136
1136
|
"name": "readOnly",
|
|
@@ -1627,27 +1627,147 @@
|
|
|
1627
1627
|
]
|
|
1628
1628
|
},
|
|
1629
1629
|
{
|
|
1630
|
-
"name": "bm-text-
|
|
1631
|
-
"description": "`bm-text-
|
|
1630
|
+
"name": "bm-text-area",
|
|
1631
|
+
"description": "`bm-text-area`\n---\n\n\n### **Slots:**\n - **label** - Specify the label for TextArea\n- **helper-text** - Specify the helper text for TextArea",
|
|
1632
1632
|
"attributes": [
|
|
1633
1633
|
{
|
|
1634
|
-
"name": "
|
|
1635
|
-
"description": "Specify
|
|
1634
|
+
"name": "rows",
|
|
1635
|
+
"description": "Specify the height of TextArea",
|
|
1636
1636
|
"values": []
|
|
1637
1637
|
},
|
|
1638
1638
|
{
|
|
1639
|
-
"name": "
|
|
1640
|
-
"description": "Specify
|
|
1639
|
+
"name": "cols",
|
|
1640
|
+
"description": "Specify the width of TextArea",
|
|
1641
1641
|
"values": []
|
|
1642
1642
|
},
|
|
1643
1643
|
{
|
|
1644
|
-
"name": "
|
|
1645
|
-
"description": "Specify
|
|
1646
|
-
"values": []
|
|
1644
|
+
"name": "placeholder",
|
|
1645
|
+
"description": "Specify placeholder text for TextArea",
|
|
1646
|
+
"values": []
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"name": "required",
|
|
1650
|
+
"description": "Specify if TextArea is a required input",
|
|
1651
|
+
"values": []
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"name": "hideRequiredMarker",
|
|
1655
|
+
"description": "Specify if the TextArea displays with an asterisk",
|
|
1656
|
+
"values": []
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"name": "readOnly",
|
|
1660
|
+
"description": "Specify if TextArea displays in a read-only state",
|
|
1661
|
+
"values": []
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"name": "disabled",
|
|
1665
|
+
"description": "Specify if TextArea displays in a disabled state",
|
|
1666
|
+
"values": []
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"name": "fluid",
|
|
1670
|
+
"description": "Specify if TextArea is fluid",
|
|
1671
|
+
"values": []
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"name": "width",
|
|
1675
|
+
"description": "Specify the width of TextArea",
|
|
1676
|
+
"values": []
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"name": "hideResize",
|
|
1680
|
+
"description": "Specify if TextArea can be manually resized",
|
|
1681
|
+
"values": []
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"name": "maxCount",
|
|
1685
|
+
"description": "Specify the maximum character count for the TextArea",
|
|
1686
|
+
"values": []
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"name": "autoResize",
|
|
1690
|
+
"description": "Specify if the TextArea automatically resizes to fit the text",
|
|
1691
|
+
"values": []
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"name": "theme",
|
|
1695
|
+
"description": "Specify the theme of the TextArea. By default it inherits the theme from the parent",
|
|
1696
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"name": "maxLength",
|
|
1700
|
+
"description": "Specify the maximum number of characters allowed by the native\n`<textarea>`. Takes precedence over `maxCount` for the `maxlength`\nattribute; use `maxCount` to also display the character counter.",
|
|
1701
|
+
"values": []
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"name": "minLength",
|
|
1705
|
+
"description": "Specify the minimum number of characters required by the `<textarea>`",
|
|
1706
|
+
"values": []
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"name": "wrap",
|
|
1710
|
+
"description": "Specify how the `<textarea>` wraps text on form submission (`soft` or `hard`)",
|
|
1711
|
+
"values": []
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"name": "autocomplete",
|
|
1715
|
+
"description": "Specify the autocomplete hint for the `<textarea>`",
|
|
1716
|
+
"values": []
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"name": "inputMode",
|
|
1720
|
+
"description": "Specify the virtual keyboard type for mobile browsers (e.g. numeric, tel, url)",
|
|
1721
|
+
"values": []
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"name": "autofocus",
|
|
1725
|
+
"description": "Specify if the `<textarea>` should receive focus on connect",
|
|
1726
|
+
"values": []
|
|
1647
1727
|
},
|
|
1728
|
+
{
|
|
1729
|
+
"name": "spellcheck",
|
|
1730
|
+
"description": "Specify whether the browser checks spelling in the `<textarea>`",
|
|
1731
|
+
"values": []
|
|
1732
|
+
},
|
|
1733
|
+
{ "name": "id", "values": [] },
|
|
1734
|
+
{ "name": "name", "values": [] },
|
|
1735
|
+
{ "name": "value", "values": [] },
|
|
1736
|
+
{
|
|
1737
|
+
"name": "validationRules",
|
|
1738
|
+
"values": [{ "name": "Array<FormValidator>" }]
|
|
1739
|
+
},
|
|
1740
|
+
{ "name": "input-aria-label", "values": [] },
|
|
1648
1741
|
{
|
|
1649
1742
|
"name": "error",
|
|
1650
|
-
"description": "Specify error text and display error state
|
|
1743
|
+
"description": "Specify error text and display error state.\nPass a string to show an error message, or `true` to show the error\nstate without a message.",
|
|
1744
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
1745
|
+
}
|
|
1746
|
+
],
|
|
1747
|
+
"references": [
|
|
1748
|
+
{
|
|
1749
|
+
"name": "Storybook",
|
|
1750
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-textarea"
|
|
1751
|
+
}
|
|
1752
|
+
]
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"name": "bm-text-field",
|
|
1756
|
+
"description": "`bm-text-field`\n---\n\n\n### **Slots:**\n - **label** - Specify the label for TextField\n- **helper-text** - Specify the helper text for TextField\n- **content-after** - Specify content to display after input\n- **content-before** - Specify content to display before input",
|
|
1757
|
+
"attributes": [
|
|
1758
|
+
{
|
|
1759
|
+
"name": "placeholder",
|
|
1760
|
+
"description": "Specify placeholder text for TextField",
|
|
1761
|
+
"values": []
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"name": "required",
|
|
1765
|
+
"description": "Specify if TextField is a required input",
|
|
1766
|
+
"values": []
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"name": "hideRequiredMarker",
|
|
1770
|
+
"description": "Specify if the TextField displays with an asterisk",
|
|
1651
1771
|
"values": []
|
|
1652
1772
|
},
|
|
1653
1773
|
{
|
|
@@ -1695,6 +1815,16 @@
|
|
|
1695
1815
|
"description": "Specify the virtual keyboard type for mobile browsers (e.g. numeric, tel, url)",
|
|
1696
1816
|
"values": []
|
|
1697
1817
|
},
|
|
1818
|
+
{
|
|
1819
|
+
"name": "autofocus",
|
|
1820
|
+
"description": "Specify if the `<input>` should receive focus on connect",
|
|
1821
|
+
"values": []
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
"name": "spellcheck",
|
|
1825
|
+
"description": "Specify whether the browser checks spelling in the `<input>`",
|
|
1826
|
+
"values": []
|
|
1827
|
+
},
|
|
1698
1828
|
{ "name": "id", "values": [] },
|
|
1699
1829
|
{ "name": "name", "values": [] },
|
|
1700
1830
|
{ "name": "value", "values": [] },
|
|
@@ -1702,7 +1832,12 @@
|
|
|
1702
1832
|
"name": "validationRules",
|
|
1703
1833
|
"values": [{ "name": "Array<FormValidator>" }]
|
|
1704
1834
|
},
|
|
1705
|
-
{ "name": "input-aria-label", "values": [] }
|
|
1835
|
+
{ "name": "input-aria-label", "values": [] },
|
|
1836
|
+
{
|
|
1837
|
+
"name": "error",
|
|
1838
|
+
"description": "Specify error text and display error state.\nPass a string to show an error message, or `true` to show the error\nstate without a message.",
|
|
1839
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
1840
|
+
}
|
|
1706
1841
|
],
|
|
1707
1842
|
"references": [
|
|
1708
1843
|
{
|
|
@@ -1909,51 +2044,6 @@
|
|
|
1909
2044
|
}
|
|
1910
2045
|
]
|
|
1911
2046
|
},
|
|
1912
|
-
{
|
|
1913
|
-
"name": "bm-form",
|
|
1914
|
-
"description": "`bm-form`\n---\n\n\n### **Events:**\n - **submit** - Validates the inputs and submits the form\n\n### **Slots:**\n - **slot** - Add controls to the Form",
|
|
1915
|
-
"attributes": [
|
|
1916
|
-
{
|
|
1917
|
-
"name": "validationMode",
|
|
1918
|
-
"description": "Specify if validation runs on change or when loosing focus",
|
|
1919
|
-
"values": [
|
|
1920
|
-
{ "name": "onChange" },
|
|
1921
|
-
{ "name": "onBlur" },
|
|
1922
|
-
{ "name": "onSubmit" }
|
|
1923
|
-
]
|
|
1924
|
-
},
|
|
1925
|
-
{
|
|
1926
|
-
"name": "initialValues",
|
|
1927
|
-
"description": "Specify initial values on Form controls based on their names",
|
|
1928
|
-
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
1929
|
-
},
|
|
1930
|
-
{
|
|
1931
|
-
"name": "required",
|
|
1932
|
-
"description": "Specify if input is a required",
|
|
1933
|
-
"values": []
|
|
1934
|
-
},
|
|
1935
|
-
{
|
|
1936
|
-
"name": "disabled",
|
|
1937
|
-
"description": "Specify if input is a disabled",
|
|
1938
|
-
"values": []
|
|
1939
|
-
},
|
|
1940
|
-
{
|
|
1941
|
-
"name": "readOnly",
|
|
1942
|
-
"description": "Specify if input is a read only",
|
|
1943
|
-
"values": []
|
|
1944
|
-
},
|
|
1945
|
-
{ "name": "action", "values": [] },
|
|
1946
|
-
{ "name": "method", "values": [] },
|
|
1947
|
-
{ "name": "target", "values": [] },
|
|
1948
|
-
{ "name": "enctype", "values": [] }
|
|
1949
|
-
],
|
|
1950
|
-
"references": [
|
|
1951
|
-
{
|
|
1952
|
-
"name": "Storybook",
|
|
1953
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
1954
|
-
}
|
|
1955
|
-
]
|
|
1956
|
-
},
|
|
1957
2047
|
{
|
|
1958
2048
|
"name": "bm-file-upload-button",
|
|
1959
2049
|
"description": "`bm-file-upload-button`\n\n### Attributes:\n- **error** - Specify if FileUpload is in error state\n- **accept** - Specify the accepted file types\n- **multiple** - Specify if multiple files can be uploaded\n---\n\n\n### **Slots:**\n - **default** - Specify text for the Button\n- **iconBefore** - Specify if the Button displays icon before the text\n- **iconAfter** - Specify if the Button displays icon after the text",
|
|
@@ -2192,7 +2282,7 @@
|
|
|
2192
2282
|
{
|
|
2193
2283
|
"name": "error",
|
|
2194
2284
|
"description": "Specify error text and display error state of FileUpload",
|
|
2195
|
-
"values": []
|
|
2285
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
2196
2286
|
},
|
|
2197
2287
|
{
|
|
2198
2288
|
"name": "disabled",
|
|
@@ -2261,6 +2351,51 @@
|
|
|
2261
2351
|
}
|
|
2262
2352
|
]
|
|
2263
2353
|
},
|
|
2354
|
+
{
|
|
2355
|
+
"name": "bm-form",
|
|
2356
|
+
"description": "`bm-form`\n---\n\n\n### **Events:**\n - **submit** - Validates the inputs and submits the form\n\n### **Slots:**\n - **slot** - Add controls to the Form",
|
|
2357
|
+
"attributes": [
|
|
2358
|
+
{
|
|
2359
|
+
"name": "validationMode",
|
|
2360
|
+
"description": "Specify if validation runs on change or when loosing focus",
|
|
2361
|
+
"values": [
|
|
2362
|
+
{ "name": "onChange" },
|
|
2363
|
+
{ "name": "onBlur" },
|
|
2364
|
+
{ "name": "onSubmit" }
|
|
2365
|
+
]
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
"name": "initialValues",
|
|
2369
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
2370
|
+
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
2371
|
+
},
|
|
2372
|
+
{
|
|
2373
|
+
"name": "required",
|
|
2374
|
+
"description": "Specify if input is a required",
|
|
2375
|
+
"values": []
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
"name": "disabled",
|
|
2379
|
+
"description": "Specify if input is a disabled",
|
|
2380
|
+
"values": []
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
"name": "readOnly",
|
|
2384
|
+
"description": "Specify if input is a read only",
|
|
2385
|
+
"values": []
|
|
2386
|
+
},
|
|
2387
|
+
{ "name": "action", "values": [] },
|
|
2388
|
+
{ "name": "method", "values": [] },
|
|
2389
|
+
{ "name": "target", "values": [] },
|
|
2390
|
+
{ "name": "enctype", "values": [] }
|
|
2391
|
+
],
|
|
2392
|
+
"references": [
|
|
2393
|
+
{
|
|
2394
|
+
"name": "Storybook",
|
|
2395
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
2396
|
+
}
|
|
2397
|
+
]
|
|
2398
|
+
},
|
|
2264
2399
|
{
|
|
2265
2400
|
"name": "bm-native-select",
|
|
2266
2401
|
"description": "`bm-native-select`\n---\n\n\n### **Slots:**\n - **slot** - Specify Options for NativeSelect\n- **label** - Specify Label for NativeSelect\n- **helper-text** - Specify HelperText for NativeSelect",
|
|
@@ -2280,11 +2415,6 @@
|
|
|
2280
2415
|
"description": "Specify if NativeSelect displays in a disabled state",
|
|
2281
2416
|
"values": []
|
|
2282
2417
|
},
|
|
2283
|
-
{
|
|
2284
|
-
"name": "error",
|
|
2285
|
-
"description": "Specify error text and display error state of a NativeSelect",
|
|
2286
|
-
"values": []
|
|
2287
|
-
},
|
|
2288
2418
|
{
|
|
2289
2419
|
"name": "fluid",
|
|
2290
2420
|
"description": "Specify if NativeSelect is fluid",
|
|
@@ -2322,197 +2452,112 @@
|
|
|
2322
2452
|
"name": "validationRules",
|
|
2323
2453
|
"values": [{ "name": "Array<FormValidator>" }]
|
|
2324
2454
|
},
|
|
2325
|
-
{ "name": "input-aria-label", "values": [] }
|
|
2326
|
-
],
|
|
2327
|
-
"references": [
|
|
2455
|
+
{ "name": "input-aria-label", "values": [] },
|
|
2328
2456
|
{
|
|
2329
|
-
"name": "
|
|
2330
|
-
"
|
|
2331
|
-
|
|
2332
|
-
]
|
|
2333
|
-
},
|
|
2334
|
-
{
|
|
2335
|
-
"name": "bm-switch",
|
|
2336
|
-
"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\n---\n\n\n### **Slots:**\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.",
|
|
2337
|
-
"attributes": [
|
|
2338
|
-
{
|
|
2339
|
-
"name": "onText",
|
|
2340
|
-
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
2341
|
-
"values": []
|
|
2342
|
-
},
|
|
2343
|
-
{
|
|
2344
|
-
"name": "offText",
|
|
2345
|
-
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2346
|
-
"values": []
|
|
2347
|
-
},
|
|
2348
|
-
{
|
|
2349
|
-
"name": "textPosition",
|
|
2350
|
-
"description": "Specify the position of the side label",
|
|
2351
|
-
"values": [{ "name": "before" }, { "name": "after" }]
|
|
2352
|
-
},
|
|
2353
|
-
{
|
|
2354
|
-
"name": "readOnly",
|
|
2355
|
-
"description": "Specify if Switch displays in a read-only state",
|
|
2356
|
-
"values": []
|
|
2357
|
-
},
|
|
2358
|
-
{
|
|
2359
|
-
"name": "disabled",
|
|
2360
|
-
"description": "Specify if Switch displays in a disabled state",
|
|
2361
|
-
"values": []
|
|
2362
|
-
},
|
|
2363
|
-
{ "name": "checked", "values": [] },
|
|
2364
|
-
{
|
|
2365
|
-
"name": "value",
|
|
2366
|
-
"description": "The value attribute for the input element",
|
|
2367
|
-
"values": []
|
|
2457
|
+
"name": "error",
|
|
2458
|
+
"description": "Specify error text and display error state.\nPass a string to show an error message, or `true` to show the error\nstate without a message.",
|
|
2459
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
2368
2460
|
}
|
|
2369
2461
|
],
|
|
2370
2462
|
"references": [
|
|
2371
2463
|
{
|
|
2372
2464
|
"name": "Storybook",
|
|
2373
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2465
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
|
|
2374
2466
|
}
|
|
2375
2467
|
]
|
|
2376
2468
|
},
|
|
2377
2469
|
{
|
|
2378
|
-
"name": "bm-
|
|
2379
|
-
"description": "`bm-
|
|
2470
|
+
"name": "bm-radio-button",
|
|
2471
|
+
"description": "`bm-radio-button`\n\n### Attributes:\n- **label** - Specify the text for the label\n- **error** - Specify error text and display error state of a RadioButton\n- **readOnly** - Specify if RadioButton displays in a read-only state\n- **disabled** - Specify if RadioButton displays in a disabled state\n- **theme** - Specify the theme of the RadioButton. By default it inherits the theme from the parent\n- **value** - The value attribute for the input element\n- **checked** - The checked attribute for the input element\n- **onKeyDown** - A user-defined function to handle keydown events\n---\n",
|
|
2380
2472
|
"attributes": [
|
|
2381
2473
|
{
|
|
2382
|
-
"name": "
|
|
2383
|
-
"description": "Specify the
|
|
2384
|
-
"values": []
|
|
2385
|
-
},
|
|
2386
|
-
{
|
|
2387
|
-
"name": "cols",
|
|
2388
|
-
"description": "Specify the width of TextArea",
|
|
2389
|
-
"values": []
|
|
2390
|
-
},
|
|
2391
|
-
{
|
|
2392
|
-
"name": "placeholder",
|
|
2393
|
-
"description": "Specify placeholder text for TextArea",
|
|
2394
|
-
"values": []
|
|
2395
|
-
},
|
|
2396
|
-
{
|
|
2397
|
-
"name": "required",
|
|
2398
|
-
"description": "Specify if TextArea is a required input",
|
|
2399
|
-
"values": []
|
|
2400
|
-
},
|
|
2401
|
-
{
|
|
2402
|
-
"name": "hideRequiredMarker",
|
|
2403
|
-
"description": "Specify if the TextArea displays with an asterisk",
|
|
2474
|
+
"name": "label",
|
|
2475
|
+
"description": "Specify the text for the label",
|
|
2404
2476
|
"values": []
|
|
2405
2477
|
},
|
|
2406
2478
|
{
|
|
2407
2479
|
"name": "error",
|
|
2408
|
-
"description": "Specify error text and display error state of a
|
|
2480
|
+
"description": "Specify error text and display error state of a RadioButton",
|
|
2409
2481
|
"values": []
|
|
2410
2482
|
},
|
|
2411
2483
|
{
|
|
2412
2484
|
"name": "readOnly",
|
|
2413
|
-
"description": "Specify if
|
|
2485
|
+
"description": "Specify if RadioButton displays in a read-only state",
|
|
2414
2486
|
"values": []
|
|
2415
2487
|
},
|
|
2416
2488
|
{
|
|
2417
2489
|
"name": "disabled",
|
|
2418
|
-
"description": "Specify if
|
|
2419
|
-
"values": []
|
|
2420
|
-
},
|
|
2421
|
-
{
|
|
2422
|
-
"name": "fluid",
|
|
2423
|
-
"description": "Specify if TextArea is fluid",
|
|
2424
|
-
"values": []
|
|
2425
|
-
},
|
|
2426
|
-
{
|
|
2427
|
-
"name": "width",
|
|
2428
|
-
"description": "Specify the width of TextArea",
|
|
2490
|
+
"description": "Specify if RadioButton displays in a disabled state",
|
|
2429
2491
|
"values": []
|
|
2430
2492
|
},
|
|
2431
2493
|
{
|
|
2432
|
-
"name": "
|
|
2433
|
-
"description": "Specify
|
|
2434
|
-
"values": []
|
|
2494
|
+
"name": "theme",
|
|
2495
|
+
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2496
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2435
2497
|
},
|
|
2436
2498
|
{
|
|
2437
|
-
"name": "
|
|
2438
|
-
"description": "
|
|
2499
|
+
"name": "value",
|
|
2500
|
+
"description": "The value attribute for the input element",
|
|
2439
2501
|
"values": []
|
|
2440
2502
|
},
|
|
2441
2503
|
{
|
|
2442
|
-
"name": "
|
|
2443
|
-
"description": "
|
|
2504
|
+
"name": "checked",
|
|
2505
|
+
"description": "The checked attribute for the input element",
|
|
2444
2506
|
"values": []
|
|
2445
2507
|
},
|
|
2446
2508
|
{
|
|
2447
|
-
"name": "
|
|
2448
|
-
"description": "
|
|
2449
|
-
"values": [{ "name": "
|
|
2450
|
-
}
|
|
2451
|
-
{ "name": "id", "values": [] },
|
|
2452
|
-
{ "name": "name", "values": [] },
|
|
2453
|
-
{ "name": "value", "values": [] },
|
|
2454
|
-
{
|
|
2455
|
-
"name": "validationRules",
|
|
2456
|
-
"values": [{ "name": "Array<FormValidator>" }]
|
|
2457
|
-
},
|
|
2458
|
-
{ "name": "input-aria-label", "values": [] }
|
|
2509
|
+
"name": "onKeyDown",
|
|
2510
|
+
"description": "A user-defined function to handle keydown events",
|
|
2511
|
+
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2512
|
+
}
|
|
2459
2513
|
],
|
|
2460
2514
|
"references": [
|
|
2461
2515
|
{
|
|
2462
2516
|
"name": "Storybook",
|
|
2463
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2517
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2464
2518
|
}
|
|
2465
2519
|
]
|
|
2466
2520
|
},
|
|
2467
2521
|
{
|
|
2468
|
-
"name": "bm-
|
|
2469
|
-
"description": "`bm-
|
|
2522
|
+
"name": "bm-switch",
|
|
2523
|
+
"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\n---\n\n\n### **Slots:**\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.",
|
|
2470
2524
|
"attributes": [
|
|
2471
2525
|
{
|
|
2472
|
-
"name": "
|
|
2473
|
-
"description": "Specify
|
|
2526
|
+
"name": "onText",
|
|
2527
|
+
"description": "Specify a side label for the “on” position. If onText is not specified, side label defaults to offText value.",
|
|
2474
2528
|
"values": []
|
|
2475
2529
|
},
|
|
2476
2530
|
{
|
|
2477
|
-
"name": "
|
|
2478
|
-
"description": "Specify
|
|
2531
|
+
"name": "offText",
|
|
2532
|
+
"description": "Specify a side label for the “off” position. If offText is not specified, side label defaults to onText value.",
|
|
2479
2533
|
"values": []
|
|
2480
2534
|
},
|
|
2535
|
+
{
|
|
2536
|
+
"name": "textPosition",
|
|
2537
|
+
"description": "Specify the position of the side label",
|
|
2538
|
+
"values": [{ "name": "before" }, { "name": "after" }]
|
|
2539
|
+
},
|
|
2481
2540
|
{
|
|
2482
2541
|
"name": "readOnly",
|
|
2483
|
-
"description": "Specify if
|
|
2542
|
+
"description": "Specify if Switch displays in a read-only state",
|
|
2484
2543
|
"values": []
|
|
2485
2544
|
},
|
|
2486
2545
|
{
|
|
2487
2546
|
"name": "disabled",
|
|
2488
|
-
"description": "Specify if
|
|
2547
|
+
"description": "Specify if Switch displays in a disabled state",
|
|
2489
2548
|
"values": []
|
|
2490
2549
|
},
|
|
2491
|
-
{
|
|
2492
|
-
"name": "theme",
|
|
2493
|
-
"description": "Specify the theme of the RadioButton. By default it inherits the theme from the parent",
|
|
2494
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2495
|
-
},
|
|
2550
|
+
{ "name": "checked", "values": [] },
|
|
2496
2551
|
{
|
|
2497
2552
|
"name": "value",
|
|
2498
2553
|
"description": "The value attribute for the input element",
|
|
2499
2554
|
"values": []
|
|
2500
|
-
},
|
|
2501
|
-
{
|
|
2502
|
-
"name": "checked",
|
|
2503
|
-
"description": "The checked attribute for the input element",
|
|
2504
|
-
"values": []
|
|
2505
|
-
},
|
|
2506
|
-
{
|
|
2507
|
-
"name": "onKeyDown",
|
|
2508
|
-
"description": "A user-defined function to handle keydown events",
|
|
2509
|
-
"values": [{ "name": "(event: KeyboardEvent) => void" }]
|
|
2510
2555
|
}
|
|
2511
2556
|
],
|
|
2512
2557
|
"references": [
|
|
2513
2558
|
{
|
|
2514
2559
|
"name": "Storybook",
|
|
2515
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2560
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
|
|
2516
2561
|
}
|
|
2517
2562
|
]
|
|
2518
2563
|
},
|
|
@@ -2557,7 +2602,7 @@
|
|
|
2557
2602
|
{
|
|
2558
2603
|
"name": "error",
|
|
2559
2604
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
2560
|
-
"values": []
|
|
2605
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
2561
2606
|
},
|
|
2562
2607
|
{
|
|
2563
2608
|
"name": "readOnly",
|
|
@@ -2586,8 +2631,8 @@
|
|
|
2586
2631
|
]
|
|
2587
2632
|
},
|
|
2588
2633
|
{
|
|
2589
|
-
"name": "bm-
|
|
2590
|
-
"description": "
|
|
2634
|
+
"name": "bm-radio-button-group",
|
|
2635
|
+
"description": "\n---\n\n\n### **Slots:**\n - **label** - Add label text to the InputChoiceGroup\n- **helperText** - Add helper text to the InputChoiceGroup",
|
|
2591
2636
|
"attributes": [
|
|
2592
2637
|
{
|
|
2593
2638
|
"name": "theme",
|
|
@@ -2626,7 +2671,7 @@
|
|
|
2626
2671
|
{
|
|
2627
2672
|
"name": "error",
|
|
2628
2673
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
2629
|
-
"values": []
|
|
2674
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
2630
2675
|
},
|
|
2631
2676
|
{
|
|
2632
2677
|
"name": "readOnly",
|
|
@@ -2650,13 +2695,13 @@
|
|
|
2650
2695
|
"references": [
|
|
2651
2696
|
{
|
|
2652
2697
|
"name": "Storybook",
|
|
2653
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2698
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-radiobutton"
|
|
2654
2699
|
}
|
|
2655
2700
|
]
|
|
2656
2701
|
},
|
|
2657
2702
|
{
|
|
2658
|
-
"name": "bm-
|
|
2659
|
-
"description": "
|
|
2703
|
+
"name": "bm-switch-group",
|
|
2704
|
+
"description": "`bm-switch-group`\n---\n\n\n### **Slots:**\n - **label** - Slot for the label of the SwitchGroup\n- **helperText** - Slot for the helper text of the SwitchGroup",
|
|
2660
2705
|
"attributes": [
|
|
2661
2706
|
{
|
|
2662
2707
|
"name": "theme",
|
|
@@ -2695,7 +2740,7 @@
|
|
|
2695
2740
|
{
|
|
2696
2741
|
"name": "error",
|
|
2697
2742
|
"description": "Specify error text and display error state of a InputChoiceGroup",
|
|
2698
|
-
"values": []
|
|
2743
|
+
"values": [{ "name": "Optional<boolean" }, { "name": "string>" }]
|
|
2699
2744
|
},
|
|
2700
2745
|
{
|
|
2701
2746
|
"name": "readOnly",
|
|
@@ -2719,7 +2764,7 @@
|
|
|
2719
2764
|
"references": [
|
|
2720
2765
|
{
|
|
2721
2766
|
"name": "Storybook",
|
|
2722
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-
|
|
2767
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-switch"
|
|
2723
2768
|
}
|
|
2724
2769
|
]
|
|
2725
2770
|
}
|