@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
178 lines (162 loc) • 7.64 kB
Flow
// @flow
import * as React from "react";
import type { GetTokens, FromPlainObject } from "@kiwicom/orbit-design-tokens/lib/index";
import typeof AlertType from "./Alert";
import typeof BadgeType from "./Badge";
import typeof NotificationBadgeType from "./NotificationBadge";
import typeof BreadcrumbsType from "./Breadcrumbs";
import typeof ButtonType from "./Button";
import typeof ButtonLinkType from "./ButtonLink";
import typeof ButtonGroupType from "./ButtonGroup";
import typeof CallOutBannerType from "./CallOutBanner";
import typeof CheckboxType from "./Checkbox";
import typeof ChoiceGroupType from "./ChoiceGroup";
import typeof CountryFlagType from "./CountryFlag";
import typeof CarrierLogoType from "./CarrierLogo";
import typeof DestinationHeaderType from "./DestinationHeader";
import typeof DestinationCardType from "./DestinationCard";
import typeof HeadingType from "./Heading";
import typeof HideType from "./Hide";
import typeof InputFieldType from "./InputField";
import typeof InputGroupType from "./InputGroup";
import typeof InputStepperType from "./InputStepper";
import typeof InputStepperStatelessType from "./InputStepper/InputStepperStateless";
import typeof IllustrationType from "./Illustration";
import typeof ListType from "./List";
import typeof ListItemType from "./List/ListItem";
import typeof ListChoiceType from "./ListChoice";
import typeof InputFileType from "./InputFile";
import typeof LoadingType from "./Loading";
import typeof PopoverType from "./Popover";
import typeof PricingTableType from "./PricingTable";
import typeof PricingTableItemType from "./PricingTable/PricingTableItem";
import typeof TextType from "./Text";
import typeof TextLinkType from "./TextLink";
import typeof TileType from "./Tile";
import typeof TooltipType from "./Tooltip";
import typeof TripSegmentType from "./TripSegment";
import typeof TripSectorType from "./TripSector";
import typeof TripDateType from "./TripSector/TripDate";
import typeof TripLayoverType from "./TripSector/TripLayover";
import typeof TruncateType from "./Truncate";
import typeof RadioType from "./Radio";
import typeof RatingStarsType from "./RatingStars";
import typeof SelectType from "./Select";
import typeof StackType from "./Stack";
import typeof StickyType from "./Sticky";
import typeof SeparatorType from "./Separator";
import typeof SkipNavigationType from "./SkipNavigation";
import typeof ServiceLogoType from "./ServiceLogo";
import typeof TextareaType from "./Textarea";
import typeof CardType from "./Card";
import typeof CardHeaderType from "./Card/CardHeader";
import typeof CardSectionType from "./Card/CardSection";
import typeof mediaQueriesType from "./utils/mediaQuery";
import typeof PortalType from "./Portal";
import typeof PaginationType from "./Pagination";
import typeof ModalType from "./Modal";
import typeof ModalHeaderType from "./Modal/ModalHeader";
import typeof ModalSectionType from "./Modal/ModalSection";
import typeof ModalFooterType from "./Modal/ModalFooter";
import typeof SliderType from "./Slider";
import typeof ClickOutsideType from "./ClickOutside";
import typeof TagType from "./Tag";
import typeof TableType from "./Table";
import typeof TableBodyType from "./Table/TableBody";
import typeof TableCellType from "./Table/TableCell";
import typeof TableHeadType from "./Table/TableHead";
import typeof TableRowType from "./Table/TableRow";
import typeof LayoutType from "./Layout";
import typeof LayoutColumnType from "./Layout/LayoutColumn";
import typeof GridType from "./utils/Grid";
import typeof StepperType from "./Stepper";
import typeof StepperStatelessType from "./Stepper/StepperStateless";
import typeof StopoverArrowType from "./StopoverArrow";
import typeof ThemeProviderType from "./ThemeProvider";
import typeof TranslateType from "./Translate";
import type { Theme } from "./defaultTheme";
declare export var InputText: any;
declare export var InputTextarea: any;
declare export var Header: any;
declare export var Section: any;
declare export var SystemMessage: any;
declare export var FieldFeedback: any;
declare export var Typography: any;
declare export var Alert: AlertType;
declare export var Badge: BadgeType;
declare export var NotificationBadge: NotificationBadgeType;
declare export var Breadcrumbs: BreadcrumbsType;
declare export var Button: ButtonType;
declare export var ButtonLink: ButtonLinkType;
declare export var ButtonGroup: ButtonGroupType;
declare export var CallOutBanner: CallOutBannerType;
declare export var CarrierLogo: CarrierLogoType;
declare export var Checkbox: CheckboxType;
declare export var ChoiceGroup: ChoiceGroupType;
declare export var CountryFlag: CountryFlagType;
declare export var DestinationHeader: DestinationHeaderType;
declare export var DestinationCard: DestinationCardType;
declare export var List: ListType;
declare export var ListItem: ListItemType;
declare export var ListChoice: ListChoiceType;
declare export var Card: CardType;
declare export var CardHeader: CardHeaderType;
declare export var CardSection: CardSectionType;
declare export var Sticky: StickyType;
declare export var Portal: PortalType;
declare export var ClickOutside: ClickOutsideType;
declare export var Modal: ModalType;
declare export var ModalHeader: ModalHeaderType;
declare export var ModalSection: ModalSectionType;
declare export var ModalFooter: ModalFooterType;
declare export var Slider: SliderType;
declare export var Tag: TagType;
declare export var Table: TableType;
declare export var TableBody: TableBodyType;
declare export var TableCell: TableCellType;
declare export var TableHead: TableHeadType;
declare export var TableRow: TableRowType;
declare export var Layout: LayoutType;
declare export var LayoutColumn: LayoutColumnType;
declare export var Grid: GridType;
declare export var Heading: HeadingType;
declare export var Hide: HideType;
declare export var Text: TextType;
declare export var Icons: any;
declare export var Icon: any;
declare export var InputField: InputFieldType;
declare export var Illustration: IllustrationType;
declare export var InputGroup: InputGroupType;
declare export var InputFile: InputFileType;
declare export var InputStepper: InputStepperType;
declare export var InputStepperStateless: InputStepperStatelessType;
declare export var TextLink: TextLinkType;
declare export var Loading: LoadingType;
declare export var Pagination: PaginationType;
declare export var Radio: RadioType;
declare export var RatingStars: RatingStarsType;
declare export var Select: SelectType;
declare export var Stack: StackType;
declare export var Separator: SeparatorType;
declare export var SkipNavigation: SkipNavigationType;
declare export var ServiceLogo: ServiceLogoType;
declare export var Stepper: StepperType;
declare export var StepperStateless: StepperStatelessType;
declare export var StopoverArrow: StopoverArrowType;
declare export var Popover: PopoverType;
declare export var PricingTable: PricingTableType;
declare export var PricingTableItem: PricingTableItemType;
declare export var Textarea: TextareaType;
declare export var Tile: TileType;
declare export var Tooltip: TooltipType;
declare export var TripSegment: TripSegmentType;
declare export var TripSector: TripSectorType;
declare export var TripDate: TripDateType;
declare export var TripLayover: TripLayoverType;
declare export var Truncate: TruncateType;
declare export var ThemeProvider: ThemeProviderType;
declare export var Translate: TranslateType;
declare export var defaultTheme: Theme;
declare export var geTokens: GetTokens;
declare export var fromPlainObject: FromPlainObject;
declare export var mediaQueries: mediaQueriesType;