1pub mod assets;
2pub mod components;
3pub mod interop;
4pub use components::{
5 Alert, AlertProps, Breakpoint, Button, ButtonProps, Card, CardBody, CardBodyProps,
6 CardFooter, CardFooterProps, CardHeader, CardHeaderProps, CardImg, CardImgProps,
7 CardProps, CardText, CardTextProps, CardTitle, CardTitleProps, Col, ColProps,
8 Container, ContainerProps, Dropdown, DropdownDirection, DropdownDivider,
9 DropdownDividerProps, DropdownHeader, DropdownHeaderProps, DropdownItem,
10 DropdownItemProps, DropdownProps, FormCheck, FormCheckInput, FormCheckInputProps,
11 FormCheckLabel, FormCheckLabelProps, FormCheckProps, FormControl, FormControlProps,
12 FormGroup, FormGroupProps, FormLabel, FormLabelProps, FormRange, FormRangeProps,
13 FormSelect, FormSelectProps, FormText, FormTextProps, Modal, ModalBody,
14 ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps,
15 ModalProps, ModalTitle, ModalTitleProps, Row, RowProps, Size, Variant,
16};
17pub mod prelude {
18 pub use crate::components::{
19 Alert, AlignItems, AlignSelf, Breakpoint, Button, Card, CardBody, CardFooter,
20 CardHeader, CardImg, CardText, CardTitle, Clearfix, ClearfixProps, Col,
21 ColorOpacity, Container, Display, DisplayProps, DisplayValue, Dropdown,
22 DropdownDirection, DropdownDivider, DropdownHeader, DropdownItem, FlexContainer,
23 FlexContainerProps, FlexDirection, FlexFill, FlexItem, FlexItemProps, FlexOrder,
24 FlexWrap, Float, FloatDirection, FloatProps, FormCheck, FormCheckInput,
25 FormCheckLabel, FormGroup, FormProcess, FormRange, FormSelect, FormText,
26 FormControl, FormLabel, JustifyContent, Modal, ModalBody, ModalFooter,
27 ModalHeader, ModalTitle, Order, OrderProps, PrintDisplay, PrintDisplayProps, Row,
28 Size, Stack, StackDirection, StackGap, StackProps, StretchedLink,
29 StretchedLinkProps, TextColor, TextColorProps, TextTruncation,
30 TextTruncationProps, Variant, VerticalRule, VerticalRuleProps, VisuallyHidden,
31 VisuallyHiddenProps,
32 };
33 pub use crate::init;
34}
35pub fn init() {
36 assets::init_bootstrap();
37}