@viasat/beam-web-components 2.67.0 → 2.67.1
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 +1275 -1275
- package/package.json +6 -6
- package/vscode.html-custom-data.json +203 -203
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.67.
|
|
3
|
+
"version": "2.67.1",
|
|
4
4
|
"description": "Framework-agnostic web components for the Beam Design System built with Lit, compatible with Angular, Vue, Svelte, and vanilla JavaScript",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Viasat",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@viasat/beam-fonts": "2.67.
|
|
68
|
-
"@viasat/beam-shared": "2.67.
|
|
69
|
-
"@viasat/beam-styles": "2.67.
|
|
70
|
-
"@viasat/beam-tokens": "2.67.
|
|
71
|
-
"@viasat/beam-icons": "2.67.
|
|
67
|
+
"@viasat/beam-fonts": "2.67.1",
|
|
68
|
+
"@viasat/beam-shared": "2.67.1",
|
|
69
|
+
"@viasat/beam-styles": "2.67.1",
|
|
70
|
+
"@viasat/beam-tokens": "2.67.1",
|
|
71
|
+
"@viasat/beam-icons": "2.67.1",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -62,45 +62,100 @@
|
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
|
-
"name": "bm-
|
|
66
|
-
"description": "`bm-
|
|
65
|
+
"name": "bm-avatar",
|
|
66
|
+
"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",
|
|
67
67
|
"attributes": [
|
|
68
68
|
{
|
|
69
69
|
"name": "appearance",
|
|
70
|
-
"description": "Specify the appearance of the
|
|
70
|
+
"description": "Specify the appearance of the Avatar",
|
|
71
|
+
"values": [{ "name": "accent" }, { "name": "neutral" }]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "name",
|
|
75
|
+
"description": "Specify a name to display initials in the Avatar",
|
|
76
|
+
"values": []
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "src",
|
|
80
|
+
"description": "Pass an image to the Avatar",
|
|
81
|
+
"values": []
|
|
82
|
+
},
|
|
83
|
+
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
84
|
+
{
|
|
85
|
+
"name": "size",
|
|
86
|
+
"description": "Specify the size of the Avatar",
|
|
71
87
|
"values": [
|
|
72
|
-
{ "name": "
|
|
73
|
-
{ "name": "
|
|
74
|
-
{ "name": "
|
|
75
|
-
{ "name": "
|
|
76
|
-
{ "name": "
|
|
88
|
+
{ "name": "xs" },
|
|
89
|
+
{ "name": "sm" },
|
|
90
|
+
{ "name": "md" },
|
|
91
|
+
{ "name": "lg" },
|
|
92
|
+
{ "name": "xl" }
|
|
77
93
|
]
|
|
78
94
|
},
|
|
79
95
|
{
|
|
80
|
-
"name": "
|
|
81
|
-
"description": "
|
|
82
|
-
"values": [
|
|
96
|
+
"name": "disabled",
|
|
97
|
+
"description": "Specify if the Avatar is disabled",
|
|
98
|
+
"values": []
|
|
83
99
|
},
|
|
84
100
|
{
|
|
85
|
-
"name": "
|
|
86
|
-
"description": "Specify the
|
|
87
|
-
"values": [{ "name": "
|
|
101
|
+
"name": "shape",
|
|
102
|
+
"description": "Specify the shape of the Avatar",
|
|
103
|
+
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
88
104
|
},
|
|
89
105
|
{
|
|
90
|
-
"name": "
|
|
91
|
-
"description": "
|
|
106
|
+
"name": "isInteractive",
|
|
107
|
+
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
108
|
+
"values": []
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "isFocusable",
|
|
112
|
+
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
113
|
+
"values": []
|
|
114
|
+
},
|
|
115
|
+
{ "name": "withBorder", "values": [] }
|
|
116
|
+
],
|
|
117
|
+
"references": [
|
|
118
|
+
{
|
|
119
|
+
"name": "Storybook",
|
|
120
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "bm-avatar-group",
|
|
126
|
+
"description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.\n---\n\n\n### **Slots:**\n - **default** - Add Avatars to create a group",
|
|
127
|
+
"attributes": [
|
|
128
|
+
{
|
|
129
|
+
"name": "wrapping",
|
|
130
|
+
"description": "Specify if the AvatarGroup wraps",
|
|
131
|
+
"values": []
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "maxCount",
|
|
135
|
+
"description": "Specify the max number of avatars displayed in the group.",
|
|
136
|
+
"values": []
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "size",
|
|
140
|
+
"description": "Specify the size of all Avatars",
|
|
92
141
|
"values": [
|
|
93
|
-
{ "name": "
|
|
94
|
-
{ "name": "
|
|
95
|
-
{ "name": "
|
|
142
|
+
{ "name": "xs" },
|
|
143
|
+
{ "name": "sm" },
|
|
144
|
+
{ "name": "md" },
|
|
145
|
+
{ "name": "lg" },
|
|
146
|
+
{ "name": "xl" }
|
|
96
147
|
]
|
|
97
148
|
},
|
|
98
|
-
{
|
|
149
|
+
{
|
|
150
|
+
"name": "layout",
|
|
151
|
+
"description": "Specify the kind of the group.",
|
|
152
|
+
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
153
|
+
}
|
|
99
154
|
],
|
|
100
155
|
"references": [
|
|
101
156
|
{
|
|
102
157
|
"name": "Storybook",
|
|
103
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
158
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
104
159
|
}
|
|
105
160
|
]
|
|
106
161
|
},
|
|
@@ -545,6 +600,67 @@
|
|
|
545
600
|
}
|
|
546
601
|
]
|
|
547
602
|
},
|
|
603
|
+
{
|
|
604
|
+
"name": "bm-breadcrumb",
|
|
605
|
+
"description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Pass items to the Breadcrumb",
|
|
606
|
+
"attributes": [
|
|
607
|
+
{
|
|
608
|
+
"name": "wrap",
|
|
609
|
+
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
610
|
+
"values": []
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"name": "itemsBeforeCollapse",
|
|
614
|
+
"description": "Specify how many items show before ellipsis",
|
|
615
|
+
"values": []
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"name": "itemsAfterCollapse",
|
|
619
|
+
"description": "Specify how many items show after ellipsis",
|
|
620
|
+
"values": []
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"name": "theme",
|
|
624
|
+
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
625
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
626
|
+
}
|
|
627
|
+
],
|
|
628
|
+
"references": [
|
|
629
|
+
{
|
|
630
|
+
"name": "Storybook",
|
|
631
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
632
|
+
}
|
|
633
|
+
]
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "bm-breadcrumb-item",
|
|
637
|
+
"description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** \n---\n\n\n### **Slots:**\n - **default** - Pass text to an item\n- **icon** - Pass icon to an item",
|
|
638
|
+
"attributes": [
|
|
639
|
+
{ "name": "href", "description": "Pass href to an item", "values": [] },
|
|
640
|
+
{
|
|
641
|
+
"name": "clickable",
|
|
642
|
+
"description": "Specify if the item is interactive without an href",
|
|
643
|
+
"values": []
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"name": "truncationWidth",
|
|
647
|
+
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
648
|
+
"values": []
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "isCurrent",
|
|
652
|
+
"description": "Specify explicitly if the item is the last one",
|
|
653
|
+
"values": []
|
|
654
|
+
},
|
|
655
|
+
{ "name": "isCollapsed", "values": [] }
|
|
656
|
+
],
|
|
657
|
+
"references": [
|
|
658
|
+
{
|
|
659
|
+
"name": "Storybook",
|
|
660
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
661
|
+
}
|
|
662
|
+
]
|
|
663
|
+
},
|
|
548
664
|
{
|
|
549
665
|
"name": "bm-alert",
|
|
550
666
|
"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",
|
|
@@ -619,161 +735,45 @@
|
|
|
619
735
|
]
|
|
620
736
|
},
|
|
621
737
|
{
|
|
622
|
-
"name": "bm-
|
|
623
|
-
"description": "`bm-
|
|
738
|
+
"name": "bm-badge",
|
|
739
|
+
"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\n---\n\n\n### **Slots:**\n - **default** - Provide text for the Badge\n- **icon** - Specify a different icon for the Badge",
|
|
624
740
|
"attributes": [
|
|
625
741
|
{
|
|
626
742
|
"name": "appearance",
|
|
627
|
-
"description": "Specify the appearance of the
|
|
628
|
-
"values": [{ "name": "accent" }, { "name": "neutral" }]
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"name": "name",
|
|
632
|
-
"description": "Specify a name to display initials in the Avatar",
|
|
633
|
-
"values": []
|
|
634
|
-
},
|
|
635
|
-
{
|
|
636
|
-
"name": "src",
|
|
637
|
-
"description": "Pass an image to the Avatar",
|
|
638
|
-
"values": []
|
|
639
|
-
},
|
|
640
|
-
{ "name": "alt", "description": "Specify alt for image", "values": [] },
|
|
641
|
-
{
|
|
642
|
-
"name": "size",
|
|
643
|
-
"description": "Specify the size of the Avatar",
|
|
644
|
-
"values": [
|
|
645
|
-
{ "name": "xs" },
|
|
646
|
-
{ "name": "sm" },
|
|
647
|
-
{ "name": "md" },
|
|
648
|
-
{ "name": "lg" },
|
|
649
|
-
{ "name": "xl" }
|
|
650
|
-
]
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"name": "disabled",
|
|
654
|
-
"description": "Specify if the Avatar is disabled",
|
|
655
|
-
"values": []
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"name": "shape",
|
|
659
|
-
"description": "Specify the shape of the Avatar",
|
|
660
|
-
"values": [{ "name": "circle" }, { "name": "square" }]
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"name": "isInteractive",
|
|
664
|
-
"description": "If Avatar is interactive, use `isInteractive` to make the Avatar focusable and show state layer",
|
|
665
|
-
"values": []
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"name": "isFocusable",
|
|
669
|
-
"description": "If Avatar is not interactive and Tooltip is provided, use `isFocusable` to make the Avatar focusable",
|
|
670
|
-
"values": []
|
|
671
|
-
},
|
|
672
|
-
{ "name": "withBorder", "values": [] }
|
|
673
|
-
],
|
|
674
|
-
"references": [
|
|
675
|
-
{
|
|
676
|
-
"name": "Storybook",
|
|
677
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
678
|
-
}
|
|
679
|
-
]
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"name": "bm-avatar-group",
|
|
683
|
-
"description": "`bm-avatar-group`\n\n### Attributes:\n- **wrapping** - Specify if the AvatarGroup wraps\n- **maxCount** - Specify the max number of avatars displayed in the group.\n- **size** - Specify the size of all Avatars\n- **layout** - Specify the kind of the group.\n---\n\n\n### **Slots:**\n - **default** - Add Avatars to create a group",
|
|
684
|
-
"attributes": [
|
|
685
|
-
{
|
|
686
|
-
"name": "wrapping",
|
|
687
|
-
"description": "Specify if the AvatarGroup wraps",
|
|
688
|
-
"values": []
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"name": "maxCount",
|
|
692
|
-
"description": "Specify the max number of avatars displayed in the group.",
|
|
693
|
-
"values": []
|
|
694
|
-
},
|
|
695
|
-
{
|
|
696
|
-
"name": "size",
|
|
697
|
-
"description": "Specify the size of all Avatars",
|
|
743
|
+
"description": "Specify the appearance of the Badge",
|
|
698
744
|
"values": [
|
|
699
|
-
{ "name": "
|
|
700
|
-
{ "name": "
|
|
701
|
-
{ "name": "
|
|
702
|
-
{ "name": "
|
|
703
|
-
{ "name": "
|
|
745
|
+
{ "name": "infoPrimary" },
|
|
746
|
+
{ "name": "infoSecondary" },
|
|
747
|
+
{ "name": "positive" },
|
|
748
|
+
{ "name": "warning" },
|
|
749
|
+
{ "name": "negative" }
|
|
704
750
|
]
|
|
705
751
|
},
|
|
706
|
-
{
|
|
707
|
-
"name": "layout",
|
|
708
|
-
"description": "Specify the kind of the group.",
|
|
709
|
-
"values": [{ "name": "stacked" }, { "name": "spaced" }]
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"references": [
|
|
713
|
-
{
|
|
714
|
-
"name": "Storybook",
|
|
715
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-avatar"
|
|
716
|
-
}
|
|
717
|
-
]
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"name": "bm-breadcrumb",
|
|
721
|
-
"description": "`bm-breadcrumb`\n\n### Attributes:\n- **wrap** - Specify if items wrap or collapse to an ellipsis\n- **itemsBeforeCollapse** - Specify how many items show before ellipsis\n- **itemsAfterCollapse** - Specify how many items show after ellipsis\n- **theme** - Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent\n---\n\n\n### **Slots:**\n - **default** - Pass items to the Breadcrumb",
|
|
722
|
-
"attributes": [
|
|
723
|
-
{
|
|
724
|
-
"name": "wrap",
|
|
725
|
-
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
726
|
-
"values": []
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
"name": "itemsBeforeCollapse",
|
|
730
|
-
"description": "Specify how many items show before ellipsis",
|
|
731
|
-
"values": []
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"name": "itemsAfterCollapse",
|
|
735
|
-
"description": "Specify how many items show after ellipsis",
|
|
736
|
-
"values": []
|
|
737
|
-
},
|
|
738
752
|
{
|
|
739
753
|
"name": "theme",
|
|
740
|
-
"description": "
|
|
754
|
+
"description": "Theme of the Badge",
|
|
741
755
|
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
742
|
-
}
|
|
743
|
-
],
|
|
744
|
-
"references": [
|
|
745
|
-
{
|
|
746
|
-
"name": "Storybook",
|
|
747
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
748
|
-
}
|
|
749
|
-
]
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"name": "bm-breadcrumb-item",
|
|
753
|
-
"description": "`bm-breadcrumb-item`\n\n### Attributes:\n- **href** - Pass href to an item\n- **clickable** - Specify if the item is interactive without an href\n- **truncationWidth** - Specify truncation width of the items. Sets max-width for all items but the last.\n- **isCurrent** - Specify explicitly if the item is the last one\n- **isCollapsed** \n---\n\n\n### **Slots:**\n - **default** - Pass text to an item\n- **icon** - Pass icon to an item",
|
|
754
|
-
"attributes": [
|
|
755
|
-
{ "name": "href", "description": "Pass href to an item", "values": [] },
|
|
756
|
-
{
|
|
757
|
-
"name": "clickable",
|
|
758
|
-
"description": "Specify if the item is interactive without an href",
|
|
759
|
-
"values": []
|
|
760
756
|
},
|
|
761
757
|
{
|
|
762
|
-
"name": "
|
|
763
|
-
"description": "Specify
|
|
764
|
-
"values": []
|
|
758
|
+
"name": "size",
|
|
759
|
+
"description": "Specify the size of the Badge",
|
|
760
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
|
765
761
|
},
|
|
766
762
|
{
|
|
767
|
-
"name": "
|
|
768
|
-
"description": "Specify
|
|
769
|
-
"values": [
|
|
763
|
+
"name": "emphasis",
|
|
764
|
+
"description": "Specify the emphasis of the Badge",
|
|
765
|
+
"values": [
|
|
766
|
+
{ "name": "strong" },
|
|
767
|
+
{ "name": "medium" },
|
|
768
|
+
{ "name": "subtle" }
|
|
769
|
+
]
|
|
770
770
|
},
|
|
771
|
-
{ "name": "
|
|
771
|
+
{ "name": "hideIcon", "description": "Hides Badge icon", "values": [] }
|
|
772
772
|
],
|
|
773
773
|
"references": [
|
|
774
774
|
{
|
|
775
775
|
"name": "Storybook",
|
|
776
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-
|
|
776
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-badge"
|
|
777
777
|
}
|
|
778
778
|
]
|
|
779
779
|
},
|
|
@@ -2216,6 +2216,51 @@
|
|
|
2216
2216
|
}
|
|
2217
2217
|
]
|
|
2218
2218
|
},
|
|
2219
|
+
{
|
|
2220
|
+
"name": "bm-form",
|
|
2221
|
+
"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",
|
|
2222
|
+
"attributes": [
|
|
2223
|
+
{
|
|
2224
|
+
"name": "validationMode",
|
|
2225
|
+
"description": "Specify if validation runs on change or when loosing focus",
|
|
2226
|
+
"values": [
|
|
2227
|
+
{ "name": "onChange" },
|
|
2228
|
+
{ "name": "onBlur" },
|
|
2229
|
+
{ "name": "onSubmit" }
|
|
2230
|
+
]
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"name": "initialValues",
|
|
2234
|
+
"description": "Specify initial values on Form controls based on their names",
|
|
2235
|
+
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"name": "required",
|
|
2239
|
+
"description": "Specify if input is a required",
|
|
2240
|
+
"values": []
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
"name": "disabled",
|
|
2244
|
+
"description": "Specify if input is a disabled",
|
|
2245
|
+
"values": []
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"name": "readOnly",
|
|
2249
|
+
"description": "Specify if input is a read only",
|
|
2250
|
+
"values": []
|
|
2251
|
+
},
|
|
2252
|
+
{ "name": "action", "values": [] },
|
|
2253
|
+
{ "name": "method", "values": [] },
|
|
2254
|
+
{ "name": "target", "values": [] },
|
|
2255
|
+
{ "name": "enctype", "values": [] }
|
|
2256
|
+
],
|
|
2257
|
+
"references": [
|
|
2258
|
+
{
|
|
2259
|
+
"name": "Storybook",
|
|
2260
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
2261
|
+
}
|
|
2262
|
+
]
|
|
2263
|
+
},
|
|
2219
2264
|
{
|
|
2220
2265
|
"name": "bm-native-select",
|
|
2221
2266
|
"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",
|
|
@@ -2286,51 +2331,6 @@
|
|
|
2286
2331
|
}
|
|
2287
2332
|
]
|
|
2288
2333
|
},
|
|
2289
|
-
{
|
|
2290
|
-
"name": "bm-form",
|
|
2291
|
-
"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",
|
|
2292
|
-
"attributes": [
|
|
2293
|
-
{
|
|
2294
|
-
"name": "validationMode",
|
|
2295
|
-
"description": "Specify if validation runs on change or when loosing focus",
|
|
2296
|
-
"values": [
|
|
2297
|
-
{ "name": "onChange" },
|
|
2298
|
-
{ "name": "onBlur" },
|
|
2299
|
-
{ "name": "onSubmit" }
|
|
2300
|
-
]
|
|
2301
|
-
},
|
|
2302
|
-
{
|
|
2303
|
-
"name": "initialValues",
|
|
2304
|
-
"description": "Specify initial values on Form controls based on their names",
|
|
2305
|
-
"values": [{ "name": "Record<string" }, { "name": "FormValue>" }]
|
|
2306
|
-
},
|
|
2307
|
-
{
|
|
2308
|
-
"name": "required",
|
|
2309
|
-
"description": "Specify if input is a required",
|
|
2310
|
-
"values": []
|
|
2311
|
-
},
|
|
2312
|
-
{
|
|
2313
|
-
"name": "disabled",
|
|
2314
|
-
"description": "Specify if input is a disabled",
|
|
2315
|
-
"values": []
|
|
2316
|
-
},
|
|
2317
|
-
{
|
|
2318
|
-
"name": "readOnly",
|
|
2319
|
-
"description": "Specify if input is a read only",
|
|
2320
|
-
"values": []
|
|
2321
|
-
},
|
|
2322
|
-
{ "name": "action", "values": [] },
|
|
2323
|
-
{ "name": "method", "values": [] },
|
|
2324
|
-
{ "name": "target", "values": [] },
|
|
2325
|
-
{ "name": "enctype", "values": [] }
|
|
2326
|
-
],
|
|
2327
|
-
"references": [
|
|
2328
|
-
{
|
|
2329
|
-
"name": "Storybook",
|
|
2330
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-form"
|
|
2331
|
-
}
|
|
2332
|
-
]
|
|
2333
|
-
},
|
|
2334
2334
|
{
|
|
2335
2335
|
"name": "bm-radio-button",
|
|
2336
2336
|
"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",
|