@viasat/beam-web-components 2.67.0 → 2.68.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 +1425 -1425
- package/package.json +6 -6
- package/vscode.html-custom-data.json +199 -199
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viasat/beam-web-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.68.0",
|
|
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.
|
|
68
|
-
"@viasat/beam-shared": "2.
|
|
69
|
-
"@viasat/beam-styles": "2.
|
|
70
|
-
"@viasat/beam-tokens": "2.
|
|
71
|
-
"@viasat/beam-icons": "2.
|
|
67
|
+
"@viasat/beam-fonts": "2.68.0",
|
|
68
|
+
"@viasat/beam-shared": "2.68.0",
|
|
69
|
+
"@viasat/beam-styles": "2.68.0",
|
|
70
|
+
"@viasat/beam-tokens": "2.68.0",
|
|
71
|
+
"@viasat/beam-icons": "2.68.0",
|
|
72
72
|
"clsx": "^1.2.1",
|
|
73
73
|
"lit": "^3.1.0",
|
|
74
74
|
"@lit/context": "^1.1.1",
|
|
@@ -545,6 +545,67 @@
|
|
|
545
545
|
}
|
|
546
546
|
]
|
|
547
547
|
},
|
|
548
|
+
{
|
|
549
|
+
"name": "bm-breadcrumb",
|
|
550
|
+
"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",
|
|
551
|
+
"attributes": [
|
|
552
|
+
{
|
|
553
|
+
"name": "wrap",
|
|
554
|
+
"description": "Specify if items wrap or collapse to an ellipsis",
|
|
555
|
+
"values": []
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"name": "itemsBeforeCollapse",
|
|
559
|
+
"description": "Specify how many items show before ellipsis",
|
|
560
|
+
"values": []
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"name": "itemsAfterCollapse",
|
|
564
|
+
"description": "Specify how many items show after ellipsis",
|
|
565
|
+
"values": []
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "theme",
|
|
569
|
+
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
570
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
571
|
+
}
|
|
572
|
+
],
|
|
573
|
+
"references": [
|
|
574
|
+
{
|
|
575
|
+
"name": "Storybook",
|
|
576
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
577
|
+
}
|
|
578
|
+
]
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "bm-breadcrumb-item",
|
|
582
|
+
"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",
|
|
583
|
+
"attributes": [
|
|
584
|
+
{ "name": "href", "description": "Pass href to an item", "values": [] },
|
|
585
|
+
{
|
|
586
|
+
"name": "clickable",
|
|
587
|
+
"description": "Specify if the item is interactive without an href",
|
|
588
|
+
"values": []
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"name": "truncationWidth",
|
|
592
|
+
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
593
|
+
"values": []
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"name": "isCurrent",
|
|
597
|
+
"description": "Specify explicitly if the item is the last one",
|
|
598
|
+
"values": []
|
|
599
|
+
},
|
|
600
|
+
{ "name": "isCollapsed", "values": [] }
|
|
601
|
+
],
|
|
602
|
+
"references": [
|
|
603
|
+
{
|
|
604
|
+
"name": "Storybook",
|
|
605
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
606
|
+
}
|
|
607
|
+
]
|
|
608
|
+
},
|
|
548
609
|
{
|
|
549
610
|
"name": "bm-alert",
|
|
550
611
|
"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",
|
|
@@ -618,6 +679,74 @@
|
|
|
618
679
|
}
|
|
619
680
|
]
|
|
620
681
|
},
|
|
682
|
+
{
|
|
683
|
+
"name": "bm-button",
|
|
684
|
+
"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** \n---\n\n\n### **Slots:**\n - **default** - Provide content 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",
|
|
685
|
+
"attributes": [
|
|
686
|
+
{
|
|
687
|
+
"name": "appearance",
|
|
688
|
+
"description": "Specify the appearance of a Button",
|
|
689
|
+
"values": [
|
|
690
|
+
{ "name": "accent" },
|
|
691
|
+
{ "name": "neutral" },
|
|
692
|
+
{ "name": "neutral-subtle" },
|
|
693
|
+
{ "name": "destructive" }
|
|
694
|
+
]
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "kind",
|
|
698
|
+
"description": "Specify the kind of Button",
|
|
699
|
+
"values": [
|
|
700
|
+
{ "name": "filled" },
|
|
701
|
+
{ "name": "outline" },
|
|
702
|
+
{ "name": "ghost" },
|
|
703
|
+
{ "name": "bare" }
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "size",
|
|
708
|
+
"description": "Specify the size of a Button",
|
|
709
|
+
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"name": "disabled",
|
|
713
|
+
"description": "Specify if the Button is disabled",
|
|
714
|
+
"values": []
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "fluid",
|
|
718
|
+
"description": "Specify if Button is fluid",
|
|
719
|
+
"values": []
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"name": "width",
|
|
723
|
+
"description": "Specify the width of a Button",
|
|
724
|
+
"values": []
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"name": "height",
|
|
728
|
+
"description": "Specify the height of a Button",
|
|
729
|
+
"values": []
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "theme",
|
|
733
|
+
"description": "Specify the theme of the Button",
|
|
734
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"name": "iconOnly",
|
|
738
|
+
"description": "Specify if the icon displays without text",
|
|
739
|
+
"values": []
|
|
740
|
+
},
|
|
741
|
+
{ "name": "type", "values": [] }
|
|
742
|
+
],
|
|
743
|
+
"references": [
|
|
744
|
+
{
|
|
745
|
+
"name": "Storybook",
|
|
746
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
|
|
747
|
+
}
|
|
748
|
+
]
|
|
749
|
+
},
|
|
621
750
|
{
|
|
622
751
|
"name": "bm-avatar",
|
|
623
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",
|
|
@@ -716,135 +845,6 @@
|
|
|
716
845
|
}
|
|
717
846
|
]
|
|
718
847
|
},
|
|
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
|
-
{
|
|
739
|
-
"name": "theme",
|
|
740
|
-
"description": "Specify the theme of the Breadcrumbs. By default, it inherits the theme from the parent",
|
|
741
|
-
"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
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"name": "truncationWidth",
|
|
763
|
-
"description": "Specify truncation width of the items. Sets max-width for all items but the last.",
|
|
764
|
-
"values": []
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
"name": "isCurrent",
|
|
768
|
-
"description": "Specify explicitly if the item is the last one",
|
|
769
|
-
"values": []
|
|
770
|
-
},
|
|
771
|
-
{ "name": "isCollapsed", "values": [] }
|
|
772
|
-
],
|
|
773
|
-
"references": [
|
|
774
|
-
{
|
|
775
|
-
"name": "Storybook",
|
|
776
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-breadcrumb"
|
|
777
|
-
}
|
|
778
|
-
]
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
"name": "bm-button",
|
|
782
|
-
"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** \n---\n\n\n### **Slots:**\n - **default** - Provide content 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",
|
|
783
|
-
"attributes": [
|
|
784
|
-
{
|
|
785
|
-
"name": "appearance",
|
|
786
|
-
"description": "Specify the appearance of a Button",
|
|
787
|
-
"values": [
|
|
788
|
-
{ "name": "accent" },
|
|
789
|
-
{ "name": "neutral" },
|
|
790
|
-
{ "name": "neutral-subtle" },
|
|
791
|
-
{ "name": "destructive" }
|
|
792
|
-
]
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"name": "kind",
|
|
796
|
-
"description": "Specify the kind of Button",
|
|
797
|
-
"values": [
|
|
798
|
-
{ "name": "filled" },
|
|
799
|
-
{ "name": "outline" },
|
|
800
|
-
{ "name": "ghost" },
|
|
801
|
-
{ "name": "bare" }
|
|
802
|
-
]
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"name": "size",
|
|
806
|
-
"description": "Specify the size of a Button",
|
|
807
|
-
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
808
|
-
},
|
|
809
|
-
{
|
|
810
|
-
"name": "disabled",
|
|
811
|
-
"description": "Specify if the Button is disabled",
|
|
812
|
-
"values": []
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
"name": "fluid",
|
|
816
|
-
"description": "Specify if Button is fluid",
|
|
817
|
-
"values": []
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
"name": "width",
|
|
821
|
-
"description": "Specify the width of a Button",
|
|
822
|
-
"values": []
|
|
823
|
-
},
|
|
824
|
-
{
|
|
825
|
-
"name": "height",
|
|
826
|
-
"description": "Specify the height of a Button",
|
|
827
|
-
"values": []
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
"name": "theme",
|
|
831
|
-
"description": "Specify the theme of the Button",
|
|
832
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
"name": "iconOnly",
|
|
836
|
-
"description": "Specify if the icon displays without text",
|
|
837
|
-
"values": []
|
|
838
|
-
},
|
|
839
|
-
{ "name": "type", "values": [] }
|
|
840
|
-
],
|
|
841
|
-
"references": [
|
|
842
|
-
{
|
|
843
|
-
"name": "Storybook",
|
|
844
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/components-button"
|
|
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",
|
|
@@ -2216,76 +2216,6 @@
|
|
|
2216
2216
|
}
|
|
2217
2217
|
]
|
|
2218
2218
|
},
|
|
2219
|
-
{
|
|
2220
|
-
"name": "bm-native-select",
|
|
2221
|
-
"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",
|
|
2222
|
-
"attributes": [
|
|
2223
|
-
{
|
|
2224
|
-
"name": "required",
|
|
2225
|
-
"description": "Specify if NativeSelect is a required input",
|
|
2226
|
-
"values": []
|
|
2227
|
-
},
|
|
2228
|
-
{
|
|
2229
|
-
"name": "readOnly",
|
|
2230
|
-
"description": "Specify if NativeSelect displays in a read-only state",
|
|
2231
|
-
"values": []
|
|
2232
|
-
},
|
|
2233
|
-
{
|
|
2234
|
-
"name": "disabled",
|
|
2235
|
-
"description": "Specify if NativeSelect displays in a disabled state",
|
|
2236
|
-
"values": []
|
|
2237
|
-
},
|
|
2238
|
-
{
|
|
2239
|
-
"name": "error",
|
|
2240
|
-
"description": "Specify error text and display error state of a NativeSelect",
|
|
2241
|
-
"values": []
|
|
2242
|
-
},
|
|
2243
|
-
{
|
|
2244
|
-
"name": "fluid",
|
|
2245
|
-
"description": "Specify if NativeSelect is fluid",
|
|
2246
|
-
"values": []
|
|
2247
|
-
},
|
|
2248
|
-
{
|
|
2249
|
-
"name": "size",
|
|
2250
|
-
"description": "Specify the size of NativeSelect",
|
|
2251
|
-
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
2252
|
-
},
|
|
2253
|
-
{
|
|
2254
|
-
"name": "width",
|
|
2255
|
-
"description": "Specify the width of NativeSelect",
|
|
2256
|
-
"values": []
|
|
2257
|
-
},
|
|
2258
|
-
{
|
|
2259
|
-
"name": "ellipse",
|
|
2260
|
-
"description": "Specify if overflow displays ellipsis",
|
|
2261
|
-
"values": []
|
|
2262
|
-
},
|
|
2263
|
-
{
|
|
2264
|
-
"name": "hideRequiredMarker",
|
|
2265
|
-
"description": "Specify if the NativeSelect displays with an asterisk",
|
|
2266
|
-
"values": []
|
|
2267
|
-
},
|
|
2268
|
-
{
|
|
2269
|
-
"name": "theme",
|
|
2270
|
-
"description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
|
|
2271
|
-
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2272
|
-
},
|
|
2273
|
-
{ "name": "id", "values": [] },
|
|
2274
|
-
{ "name": "name", "values": [] },
|
|
2275
|
-
{ "name": "value", "values": [] },
|
|
2276
|
-
{
|
|
2277
|
-
"name": "validationRules",
|
|
2278
|
-
"values": [{ "name": "Array<FormValidator>" }]
|
|
2279
|
-
},
|
|
2280
|
-
{ "name": "input-aria-label", "values": [] }
|
|
2281
|
-
],
|
|
2282
|
-
"references": [
|
|
2283
|
-
{
|
|
2284
|
-
"name": "Storybook",
|
|
2285
|
-
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
|
|
2286
|
-
}
|
|
2287
|
-
]
|
|
2288
|
-
},
|
|
2289
2219
|
{
|
|
2290
2220
|
"name": "bm-form",
|
|
2291
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",
|
|
@@ -2426,6 +2356,76 @@
|
|
|
2426
2356
|
}
|
|
2427
2357
|
]
|
|
2428
2358
|
},
|
|
2359
|
+
{
|
|
2360
|
+
"name": "bm-native-select",
|
|
2361
|
+
"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",
|
|
2362
|
+
"attributes": [
|
|
2363
|
+
{
|
|
2364
|
+
"name": "required",
|
|
2365
|
+
"description": "Specify if NativeSelect is a required input",
|
|
2366
|
+
"values": []
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
"name": "readOnly",
|
|
2370
|
+
"description": "Specify if NativeSelect displays in a read-only state",
|
|
2371
|
+
"values": []
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"name": "disabled",
|
|
2375
|
+
"description": "Specify if NativeSelect displays in a disabled state",
|
|
2376
|
+
"values": []
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"name": "error",
|
|
2380
|
+
"description": "Specify error text and display error state of a NativeSelect",
|
|
2381
|
+
"values": []
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"name": "fluid",
|
|
2385
|
+
"description": "Specify if NativeSelect is fluid",
|
|
2386
|
+
"values": []
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
"name": "size",
|
|
2390
|
+
"description": "Specify the size of NativeSelect",
|
|
2391
|
+
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"name": "width",
|
|
2395
|
+
"description": "Specify the width of NativeSelect",
|
|
2396
|
+
"values": []
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
"name": "ellipse",
|
|
2400
|
+
"description": "Specify if overflow displays ellipsis",
|
|
2401
|
+
"values": []
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"name": "hideRequiredMarker",
|
|
2405
|
+
"description": "Specify if the NativeSelect displays with an asterisk",
|
|
2406
|
+
"values": []
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
"name": "theme",
|
|
2410
|
+
"description": "Specify the theme of the NativeSelect. By default it inherits the theme from the parent",
|
|
2411
|
+
"values": [{ "name": "light" }, { "name": "dark" }]
|
|
2412
|
+
},
|
|
2413
|
+
{ "name": "id", "values": [] },
|
|
2414
|
+
{ "name": "name", "values": [] },
|
|
2415
|
+
{ "name": "value", "values": [] },
|
|
2416
|
+
{
|
|
2417
|
+
"name": "validationRules",
|
|
2418
|
+
"values": [{ "name": "Array<FormValidator>" }]
|
|
2419
|
+
},
|
|
2420
|
+
{ "name": "input-aria-label", "values": [] }
|
|
2421
|
+
],
|
|
2422
|
+
"references": [
|
|
2423
|
+
{
|
|
2424
|
+
"name": "Storybook",
|
|
2425
|
+
"url": "https://web-components.beam.viasat.com/?path=/docs/forms-nativeselect"
|
|
2426
|
+
}
|
|
2427
|
+
]
|
|
2428
|
+
},
|
|
2429
2429
|
{
|
|
2430
2430
|
"name": "bm-text-area",
|
|
2431
2431
|
"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",
|