@tactics/lokaal-loket 0.0.518 → 0.0.520
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +835 -784
- package/build/index.d.cts +67 -56
- package/build/index.d.ts +67 -56
- package/build/index.js +835 -784
- package/package.json +30 -30
package/build/index.d.cts
CHANGED
@@ -214,7 +214,8 @@ declare enum FigureSize {
|
|
214
214
|
SMALL = "SMALL",
|
215
215
|
MEDIUM = "MEDIUM",
|
216
216
|
LARGE = "LARGE",
|
217
|
-
XLARGE = "XLARGE"
|
217
|
+
XLARGE = "XLARGE",
|
218
|
+
HUGE = "HUGE"
|
218
219
|
}
|
219
220
|
declare enum FigureType {
|
220
221
|
CHILD = "CHILD",
|
@@ -541,7 +542,10 @@ declare enum HTMLInputType {
|
|
541
542
|
TEXT = "text",
|
542
543
|
PASSWORD = "password",
|
543
544
|
URL = "url",
|
544
|
-
EMAIL = "email"
|
545
|
+
EMAIL = "email",
|
546
|
+
NUMBER = "number",
|
547
|
+
SEARCH = "search",
|
548
|
+
TEL = "tel"
|
545
549
|
}
|
546
550
|
|
547
551
|
interface InputChangeEvent {
|
@@ -1662,6 +1666,14 @@ interface IButtonGroup {
|
|
1662
1666
|
|
1663
1667
|
declare const ButtonGroup: ({ direction, alignment, children }: IButtonGroup) => react_jsx_runtime.JSX.Element;
|
1664
1668
|
|
1669
|
+
interface ILinkGroup {
|
1670
|
+
direction?: "row" | "column";
|
1671
|
+
alignment?: "flex-start" | "center" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
1672
|
+
children: React__default.ReactNode;
|
1673
|
+
}
|
1674
|
+
|
1675
|
+
declare const LinkGroup: ({ direction, alignment, children }: ILinkGroup) => react_jsx_runtime.JSX.Element;
|
1676
|
+
|
1665
1677
|
interface IDock {
|
1666
1678
|
children: React__default.ReactNode;
|
1667
1679
|
}
|
@@ -1723,19 +1735,19 @@ interface IMessage {
|
|
1723
1735
|
|
1724
1736
|
declare const Message: ({ sender, date, message, content, invert }: IMessage) => react_jsx_runtime.JSX.Element;
|
1725
1737
|
|
1726
|
-
interface
|
1738
|
+
interface ITabGroup {
|
1727
1739
|
children: React.ReactNode;
|
1728
1740
|
}
|
1729
|
-
interface
|
1741
|
+
interface ITabGroupItem {
|
1730
1742
|
onClick?: React.MouseEventHandler<HTMLAnchorElement>;
|
1731
1743
|
href?: string;
|
1732
1744
|
label: string;
|
1733
1745
|
active: boolean;
|
1734
1746
|
}
|
1735
1747
|
|
1736
|
-
declare const
|
1737
|
-
({ children }:
|
1738
|
-
Item: ({ active, label, onClick, href }:
|
1748
|
+
declare const TabGroup: {
|
1749
|
+
({ children }: ITabGroup): react_jsx_runtime.JSX.Element;
|
1750
|
+
Item: ({ active, label, onClick, href }: ITabGroupItem) => react_jsx_runtime.JSX.Element;
|
1739
1751
|
};
|
1740
1752
|
|
1741
1753
|
interface IPillStatusLegend {
|
@@ -1932,6 +1944,7 @@ interface IStaticMap {
|
|
1932
1944
|
areaOffset?: number;
|
1933
1945
|
thresholdBounds?: google.maps.LatLngBounds;
|
1934
1946
|
isInitialized?: boolean;
|
1947
|
+
origin?: Feature$1<Point, IMapTerminalProperties>;
|
1935
1948
|
}
|
1936
1949
|
interface StaticMapHandle {
|
1937
1950
|
focusPoint: (point: IMapPoint, overlay?: React__default.ReactElement) => void;
|
@@ -2258,7 +2271,10 @@ interface IShoppingCartAction {
|
|
2258
2271
|
|
2259
2272
|
declare const ShoppingCartAction: React__default.MemoExoticComponent<(props: IShoppingCartAction) => react_jsx_runtime.JSX.Element>;
|
2260
2273
|
|
2261
|
-
|
2274
|
+
interface IStyleVarsMbp {
|
2275
|
+
fixed?: boolean;
|
2276
|
+
}
|
2277
|
+
declare const StyleVarsMbp: (props: IStyleVarsMbp) => react_jsx_runtime.JSX.Element;
|
2262
2278
|
|
2263
2279
|
declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
2264
2280
|
|
@@ -2587,12 +2603,26 @@ interface IWizardArrangementLeftOnly {
|
|
2587
2603
|
declare const WizardArrangementLeftOnly: (props: IWizardArrangementLeftOnly) => react_jsx_runtime.JSX.Element;
|
2588
2604
|
|
2589
2605
|
interface IAppHeader {
|
2590
|
-
top?: React__default.
|
2591
|
-
main: React__default.
|
2592
|
-
bottom?: React__default.
|
2593
|
-
|
2606
|
+
top?: React__default.ReactElement<IAppHeaderRegionTop>;
|
2607
|
+
main: React__default.ReactElement<IAppHeaderRegionMain>;
|
2608
|
+
bottom?: React__default.ReactElement<IAppHeaderRegionBottom>;
|
2609
|
+
}
|
2610
|
+
interface IAppHeaderRegionTop extends PropsWithChildren {
|
2611
|
+
contained: boolean;
|
2612
|
+
}
|
2613
|
+
interface IAppHeaderRegionMain extends PropsWithChildren {
|
2614
|
+
contained: boolean;
|
2615
|
+
}
|
2616
|
+
interface IAppHeaderRegionBottom extends PropsWithChildren {
|
2617
|
+
contained: boolean;
|
2594
2618
|
}
|
2595
2619
|
|
2620
|
+
declare const AppHeaderRegionTop: (props: IAppHeaderRegionTop) => react_jsx_runtime.JSX.Element;
|
2621
|
+
|
2622
|
+
declare const AppHeaderRegionMain: (props: IAppHeaderRegionMain) => react_jsx_runtime.JSX.Element;
|
2623
|
+
|
2624
|
+
declare const AppHeaderRegionBottom: (props: IAppHeaderRegionBottom) => react_jsx_runtime.JSX.Element;
|
2625
|
+
|
2596
2626
|
declare const AppHeader: (props: IAppHeader) => react_jsx_runtime.JSX.Element;
|
2597
2627
|
|
2598
2628
|
interface IMonitorSectionDashboard {
|
@@ -2642,6 +2672,23 @@ interface IRequestsSectionMessage extends PropsWithChildren {
|
|
2642
2672
|
}
|
2643
2673
|
declare const RequestsSectionMessage: (props: IRequestsSectionMessage) => react_jsx_runtime.JSX.Element;
|
2644
2674
|
|
2675
|
+
interface IOops {
|
2676
|
+
logo: React__default.ReactElement<ILogo>;
|
2677
|
+
title: string;
|
2678
|
+
description: string;
|
2679
|
+
figure: React__default.ReactElement<IFigure>;
|
2680
|
+
help?: React__default.ReactNode;
|
2681
|
+
error?: React__default.ReactElement<IOopsError>;
|
2682
|
+
}
|
2683
|
+
interface IOopsError {
|
2684
|
+
label: React__default.ReactNode;
|
2685
|
+
description?: React__default.ReactNode;
|
2686
|
+
code: string;
|
2687
|
+
}
|
2688
|
+
|
2689
|
+
declare const OopsError: (props: IOopsError) => react_jsx_runtime.JSX.Element;
|
2690
|
+
declare const Oops: (props: IOops) => react_jsx_runtime.JSX.Element;
|
2691
|
+
|
2645
2692
|
interface ISearchSectionFilters {
|
2646
2693
|
primary: React__default.ReactElement;
|
2647
2694
|
secondary: React__default.ReactElement | false;
|
@@ -3032,31 +3079,8 @@ interface TabBodyProps {
|
|
3032
3079
|
}
|
3033
3080
|
declare const TabBody: ({ children, tabKey }: TabBodyProps) => react_jsx_runtime.JSX.Element | null;
|
3034
3081
|
|
3035
|
-
interface IBasicPage {
|
3036
|
-
header: React__default.ReactElement;
|
3037
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3038
|
-
footer: React__default.ReactElement;
|
3039
|
-
}
|
3040
|
-
|
3041
|
-
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
3042
|
-
|
3043
|
-
interface IAccountPage {
|
3044
|
-
header: React__default.ReactElement;
|
3045
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3046
|
-
footer: React__default.ReactElement;
|
3047
|
-
}
|
3048
|
-
|
3049
|
-
declare const AccountPage: (props: IAccountPage) => react_jsx_runtime.JSX.Element;
|
3050
|
-
|
3051
|
-
interface IDetailsPage {
|
3052
|
-
header: React__default.ReactElement;
|
3053
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3054
|
-
footer: React__default.ReactElement;
|
3055
|
-
}
|
3056
|
-
|
3057
|
-
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
3058
|
-
|
3059
3082
|
interface ISearchPage {
|
3083
|
+
stickyHeader: React__default.ReactElement;
|
3060
3084
|
header: React__default.ReactElement;
|
3061
3085
|
content: React__default.ReactElement | React__default.ReactElement[];
|
3062
3086
|
footer: React__default.ReactElement;
|
@@ -3064,14 +3088,6 @@ interface ISearchPage {
|
|
3064
3088
|
|
3065
3089
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
3066
3090
|
|
3067
|
-
interface IEmptySearchPage {
|
3068
|
-
header: React__default.ReactElement;
|
3069
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3070
|
-
footer: React__default.ReactElement;
|
3071
|
-
}
|
3072
|
-
|
3073
|
-
declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
|
3074
|
-
|
3075
3091
|
interface ISearchWithMapPage {
|
3076
3092
|
header: React__default.ReactElement;
|
3077
3093
|
content: React__default.ReactElement | React__default.ReactElement[];
|
@@ -3087,25 +3103,20 @@ interface IShoppingCartPage {
|
|
3087
3103
|
|
3088
3104
|
declare const ShoppingCartPage: (props: IShoppingCartPage) => react_jsx_runtime.JSX.Element;
|
3089
3105
|
|
3090
|
-
interface IHeaderlessPage {
|
3091
|
-
header: React__default.ReactElement;
|
3092
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3093
|
-
}
|
3094
|
-
|
3095
|
-
declare const HeaderlessPage: (props: IHeaderlessPage) => react_jsx_runtime.JSX.Element;
|
3096
|
-
|
3097
3106
|
interface IWizardPage {
|
3098
3107
|
content: React__default.ReactElement | React__default.ReactElement[];
|
3099
3108
|
}
|
3100
3109
|
|
3101
3110
|
declare const WizardPage: (props: IWizardPage) => react_jsx_runtime.JSX.Element;
|
3102
3111
|
|
3103
|
-
interface
|
3104
|
-
|
3105
|
-
|
3112
|
+
interface IPage {
|
3113
|
+
sticky?: boolean;
|
3114
|
+
header?: React__default.ReactNode;
|
3115
|
+
content: React__default.ReactNode | React__default.ReactNode[];
|
3116
|
+
footer?: React__default.ReactNode;
|
3106
3117
|
}
|
3107
3118
|
|
3108
|
-
declare const
|
3119
|
+
declare const Page: (props: IPage) => react_jsx_runtime.JSX.Element;
|
3109
3120
|
|
3110
3121
|
interface BackdropContextType {
|
3111
3122
|
isBackdropVisible: boolean;
|
@@ -3306,4 +3317,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3306
3317
|
|
3307
3318
|
declare const useHeader: () => number;
|
3308
3319
|
|
3309
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, AppHeader, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeTitle, BadgeType, BasicMonitorPage, BasicPage, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Confirm, ConfirmModal, Container, ContainerPaddingType, Count, Cover, CoverRatio, Cta, DataTable, DataTableCellType, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicMonitorPage, type IBasicPage, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IConfirm, type IConfirmModal, type IContactData, type IContainerArrangement, type ICount, type ICover, type ICta, type IDataTable, type IDataTableBody, type IDataTableCell, type IDataTableHead, type IDataTableRow, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalCard, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOnboardingButton, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequestContent, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestNoneAvailable, type IRequestSummary, type IRequestSummaryContainer, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IRequestsSectionMessage, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartAction, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStatusSummary, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalCard, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequestContent, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestNoneAvailable, RequestSummary, RequestSummaryContainer, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, RequestsSectionMessage, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartAction, ShoppingCartPage, StatBlock, StatBlockSize, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StatusSummary, StatusSummaryType, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, TabBody, Table, TableCellType, TabsContext, TabsProvider, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
3320
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, AppHeader, AppHeaderRegionBottom, AppHeaderRegionMain, AppHeaderRegionTop, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeTitle, BadgeType, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Confirm, ConfirmModal, Container, ContainerPaddingType, Count, Cover, CoverRatio, Cta, DataTable, DataTableCellType, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, type IAccordeon, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IConfirm, type IConfirmModal, type IContactData, type IContainerArrangement, type ICount, type ICover, type ICta, type IDataTable, type IDataTableBody, type IDataTableCell, type IDataTableHead, type IDataTableRow, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalCard, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOnboardingButton, type IOops, type IOopsError, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPage, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequestContent, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestNoneAvailable, type IRequestSummary, type IRequestSummaryContainer, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IRequestsSectionMessage, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartAction, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStatusSummary, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITabGroup, type ITabGroupItem, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalCard, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, Oops, OopsError, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, Page, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequestContent, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestNoneAvailable, RequestSummary, RequestSummaryContainer, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, RequestsSectionMessage, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartAction, ShoppingCartPage, StatBlock, StatBlockSize, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StatusSummary, StatusSummaryType, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, TabBody, TabGroup, Table, TableCellType, TabsContext, TabsProvider, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -214,7 +214,8 @@ declare enum FigureSize {
|
|
214
214
|
SMALL = "SMALL",
|
215
215
|
MEDIUM = "MEDIUM",
|
216
216
|
LARGE = "LARGE",
|
217
|
-
XLARGE = "XLARGE"
|
217
|
+
XLARGE = "XLARGE",
|
218
|
+
HUGE = "HUGE"
|
218
219
|
}
|
219
220
|
declare enum FigureType {
|
220
221
|
CHILD = "CHILD",
|
@@ -541,7 +542,10 @@ declare enum HTMLInputType {
|
|
541
542
|
TEXT = "text",
|
542
543
|
PASSWORD = "password",
|
543
544
|
URL = "url",
|
544
|
-
EMAIL = "email"
|
545
|
+
EMAIL = "email",
|
546
|
+
NUMBER = "number",
|
547
|
+
SEARCH = "search",
|
548
|
+
TEL = "tel"
|
545
549
|
}
|
546
550
|
|
547
551
|
interface InputChangeEvent {
|
@@ -1662,6 +1666,14 @@ interface IButtonGroup {
|
|
1662
1666
|
|
1663
1667
|
declare const ButtonGroup: ({ direction, alignment, children }: IButtonGroup) => react_jsx_runtime.JSX.Element;
|
1664
1668
|
|
1669
|
+
interface ILinkGroup {
|
1670
|
+
direction?: "row" | "column";
|
1671
|
+
alignment?: "flex-start" | "center" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
1672
|
+
children: React__default.ReactNode;
|
1673
|
+
}
|
1674
|
+
|
1675
|
+
declare const LinkGroup: ({ direction, alignment, children }: ILinkGroup) => react_jsx_runtime.JSX.Element;
|
1676
|
+
|
1665
1677
|
interface IDock {
|
1666
1678
|
children: React__default.ReactNode;
|
1667
1679
|
}
|
@@ -1723,19 +1735,19 @@ interface IMessage {
|
|
1723
1735
|
|
1724
1736
|
declare const Message: ({ sender, date, message, content, invert }: IMessage) => react_jsx_runtime.JSX.Element;
|
1725
1737
|
|
1726
|
-
interface
|
1738
|
+
interface ITabGroup {
|
1727
1739
|
children: React.ReactNode;
|
1728
1740
|
}
|
1729
|
-
interface
|
1741
|
+
interface ITabGroupItem {
|
1730
1742
|
onClick?: React.MouseEventHandler<HTMLAnchorElement>;
|
1731
1743
|
href?: string;
|
1732
1744
|
label: string;
|
1733
1745
|
active: boolean;
|
1734
1746
|
}
|
1735
1747
|
|
1736
|
-
declare const
|
1737
|
-
({ children }:
|
1738
|
-
Item: ({ active, label, onClick, href }:
|
1748
|
+
declare const TabGroup: {
|
1749
|
+
({ children }: ITabGroup): react_jsx_runtime.JSX.Element;
|
1750
|
+
Item: ({ active, label, onClick, href }: ITabGroupItem) => react_jsx_runtime.JSX.Element;
|
1739
1751
|
};
|
1740
1752
|
|
1741
1753
|
interface IPillStatusLegend {
|
@@ -1932,6 +1944,7 @@ interface IStaticMap {
|
|
1932
1944
|
areaOffset?: number;
|
1933
1945
|
thresholdBounds?: google.maps.LatLngBounds;
|
1934
1946
|
isInitialized?: boolean;
|
1947
|
+
origin?: Feature$1<Point, IMapTerminalProperties>;
|
1935
1948
|
}
|
1936
1949
|
interface StaticMapHandle {
|
1937
1950
|
focusPoint: (point: IMapPoint, overlay?: React__default.ReactElement) => void;
|
@@ -2258,7 +2271,10 @@ interface IShoppingCartAction {
|
|
2258
2271
|
|
2259
2272
|
declare const ShoppingCartAction: React__default.MemoExoticComponent<(props: IShoppingCartAction) => react_jsx_runtime.JSX.Element>;
|
2260
2273
|
|
2261
|
-
|
2274
|
+
interface IStyleVarsMbp {
|
2275
|
+
fixed?: boolean;
|
2276
|
+
}
|
2277
|
+
declare const StyleVarsMbp: (props: IStyleVarsMbp) => react_jsx_runtime.JSX.Element;
|
2262
2278
|
|
2263
2279
|
declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
2264
2280
|
|
@@ -2587,12 +2603,26 @@ interface IWizardArrangementLeftOnly {
|
|
2587
2603
|
declare const WizardArrangementLeftOnly: (props: IWizardArrangementLeftOnly) => react_jsx_runtime.JSX.Element;
|
2588
2604
|
|
2589
2605
|
interface IAppHeader {
|
2590
|
-
top?: React__default.
|
2591
|
-
main: React__default.
|
2592
|
-
bottom?: React__default.
|
2593
|
-
|
2606
|
+
top?: React__default.ReactElement<IAppHeaderRegionTop>;
|
2607
|
+
main: React__default.ReactElement<IAppHeaderRegionMain>;
|
2608
|
+
bottom?: React__default.ReactElement<IAppHeaderRegionBottom>;
|
2609
|
+
}
|
2610
|
+
interface IAppHeaderRegionTop extends PropsWithChildren {
|
2611
|
+
contained: boolean;
|
2612
|
+
}
|
2613
|
+
interface IAppHeaderRegionMain extends PropsWithChildren {
|
2614
|
+
contained: boolean;
|
2615
|
+
}
|
2616
|
+
interface IAppHeaderRegionBottom extends PropsWithChildren {
|
2617
|
+
contained: boolean;
|
2594
2618
|
}
|
2595
2619
|
|
2620
|
+
declare const AppHeaderRegionTop: (props: IAppHeaderRegionTop) => react_jsx_runtime.JSX.Element;
|
2621
|
+
|
2622
|
+
declare const AppHeaderRegionMain: (props: IAppHeaderRegionMain) => react_jsx_runtime.JSX.Element;
|
2623
|
+
|
2624
|
+
declare const AppHeaderRegionBottom: (props: IAppHeaderRegionBottom) => react_jsx_runtime.JSX.Element;
|
2625
|
+
|
2596
2626
|
declare const AppHeader: (props: IAppHeader) => react_jsx_runtime.JSX.Element;
|
2597
2627
|
|
2598
2628
|
interface IMonitorSectionDashboard {
|
@@ -2642,6 +2672,23 @@ interface IRequestsSectionMessage extends PropsWithChildren {
|
|
2642
2672
|
}
|
2643
2673
|
declare const RequestsSectionMessage: (props: IRequestsSectionMessage) => react_jsx_runtime.JSX.Element;
|
2644
2674
|
|
2675
|
+
interface IOops {
|
2676
|
+
logo: React__default.ReactElement<ILogo>;
|
2677
|
+
title: string;
|
2678
|
+
description: string;
|
2679
|
+
figure: React__default.ReactElement<IFigure>;
|
2680
|
+
help?: React__default.ReactNode;
|
2681
|
+
error?: React__default.ReactElement<IOopsError>;
|
2682
|
+
}
|
2683
|
+
interface IOopsError {
|
2684
|
+
label: React__default.ReactNode;
|
2685
|
+
description?: React__default.ReactNode;
|
2686
|
+
code: string;
|
2687
|
+
}
|
2688
|
+
|
2689
|
+
declare const OopsError: (props: IOopsError) => react_jsx_runtime.JSX.Element;
|
2690
|
+
declare const Oops: (props: IOops) => react_jsx_runtime.JSX.Element;
|
2691
|
+
|
2645
2692
|
interface ISearchSectionFilters {
|
2646
2693
|
primary: React__default.ReactElement;
|
2647
2694
|
secondary: React__default.ReactElement | false;
|
@@ -3032,31 +3079,8 @@ interface TabBodyProps {
|
|
3032
3079
|
}
|
3033
3080
|
declare const TabBody: ({ children, tabKey }: TabBodyProps) => react_jsx_runtime.JSX.Element | null;
|
3034
3081
|
|
3035
|
-
interface IBasicPage {
|
3036
|
-
header: React__default.ReactElement;
|
3037
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3038
|
-
footer: React__default.ReactElement;
|
3039
|
-
}
|
3040
|
-
|
3041
|
-
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
3042
|
-
|
3043
|
-
interface IAccountPage {
|
3044
|
-
header: React__default.ReactElement;
|
3045
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3046
|
-
footer: React__default.ReactElement;
|
3047
|
-
}
|
3048
|
-
|
3049
|
-
declare const AccountPage: (props: IAccountPage) => react_jsx_runtime.JSX.Element;
|
3050
|
-
|
3051
|
-
interface IDetailsPage {
|
3052
|
-
header: React__default.ReactElement;
|
3053
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3054
|
-
footer: React__default.ReactElement;
|
3055
|
-
}
|
3056
|
-
|
3057
|
-
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
3058
|
-
|
3059
3082
|
interface ISearchPage {
|
3083
|
+
stickyHeader: React__default.ReactElement;
|
3060
3084
|
header: React__default.ReactElement;
|
3061
3085
|
content: React__default.ReactElement | React__default.ReactElement[];
|
3062
3086
|
footer: React__default.ReactElement;
|
@@ -3064,14 +3088,6 @@ interface ISearchPage {
|
|
3064
3088
|
|
3065
3089
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
3066
3090
|
|
3067
|
-
interface IEmptySearchPage {
|
3068
|
-
header: React__default.ReactElement;
|
3069
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3070
|
-
footer: React__default.ReactElement;
|
3071
|
-
}
|
3072
|
-
|
3073
|
-
declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
|
3074
|
-
|
3075
3091
|
interface ISearchWithMapPage {
|
3076
3092
|
header: React__default.ReactElement;
|
3077
3093
|
content: React__default.ReactElement | React__default.ReactElement[];
|
@@ -3087,25 +3103,20 @@ interface IShoppingCartPage {
|
|
3087
3103
|
|
3088
3104
|
declare const ShoppingCartPage: (props: IShoppingCartPage) => react_jsx_runtime.JSX.Element;
|
3089
3105
|
|
3090
|
-
interface IHeaderlessPage {
|
3091
|
-
header: React__default.ReactElement;
|
3092
|
-
content: React__default.ReactElement | React__default.ReactElement[];
|
3093
|
-
}
|
3094
|
-
|
3095
|
-
declare const HeaderlessPage: (props: IHeaderlessPage) => react_jsx_runtime.JSX.Element;
|
3096
|
-
|
3097
3106
|
interface IWizardPage {
|
3098
3107
|
content: React__default.ReactElement | React__default.ReactElement[];
|
3099
3108
|
}
|
3100
3109
|
|
3101
3110
|
declare const WizardPage: (props: IWizardPage) => react_jsx_runtime.JSX.Element;
|
3102
3111
|
|
3103
|
-
interface
|
3104
|
-
|
3105
|
-
|
3112
|
+
interface IPage {
|
3113
|
+
sticky?: boolean;
|
3114
|
+
header?: React__default.ReactNode;
|
3115
|
+
content: React__default.ReactNode | React__default.ReactNode[];
|
3116
|
+
footer?: React__default.ReactNode;
|
3106
3117
|
}
|
3107
3118
|
|
3108
|
-
declare const
|
3119
|
+
declare const Page: (props: IPage) => react_jsx_runtime.JSX.Element;
|
3109
3120
|
|
3110
3121
|
interface BackdropContextType {
|
3111
3122
|
isBackdropVisible: boolean;
|
@@ -3306,4 +3317,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3306
3317
|
|
3307
3318
|
declare const useHeader: () => number;
|
3308
3319
|
|
3309
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, AppHeader, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeTitle, BadgeType, BasicMonitorPage, BasicPage, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Confirm, ConfirmModal, Container, ContainerPaddingType, Count, Cover, CoverRatio, Cta, DataTable, DataTableCellType, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicMonitorPage, type IBasicPage, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IConfirm, type IConfirmModal, type IContactData, type IContainerArrangement, type ICount, type ICover, type ICta, type IDataTable, type IDataTableBody, type IDataTableCell, type IDataTableHead, type IDataTableRow, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalCard, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOnboardingButton, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequestContent, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestNoneAvailable, type IRequestSummary, type IRequestSummaryContainer, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IRequestsSectionMessage, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartAction, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStatusSummary, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalCard, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequestContent, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestNoneAvailable, RequestSummary, RequestSummaryContainer, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, RequestsSectionMessage, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartAction, ShoppingCartPage, StatBlock, StatBlockSize, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StatusSummary, StatusSummaryType, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, TabBody, Table, TableCellType, TabsContext, TabsProvider, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
3320
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, AppHeader, AppHeaderRegionBottom, AppHeaderRegionMain, AppHeaderRegionTop, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeTitle, BadgeType, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Confirm, ConfirmModal, Container, ContainerPaddingType, Count, Cover, CoverRatio, Cta, DataTable, DataTableCellType, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, type IAccordeon, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IConfirm, type IConfirmModal, type IContactData, type IContainerArrangement, type ICount, type ICover, type ICta, type IDataTable, type IDataTableBody, type IDataTableCell, type IDataTableHead, type IDataTableRow, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalCard, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOnboardingButton, type IOops, type IOopsError, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPage, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequestContent, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestNoneAvailable, type IRequestSummary, type IRequestSummaryContainer, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IRequestsSectionMessage, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartAction, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStatusSummary, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITabGroup, type ITabGroupItem, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalCard, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, Oops, OopsError, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, Page, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequestContent, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestNoneAvailable, RequestSummary, RequestSummaryContainer, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, RequestsSectionMessage, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartAction, ShoppingCartPage, StatBlock, StatBlockSize, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StatusSummary, StatusSummaryType, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, TabBody, TabGroup, Table, TableCellType, TabsContext, TabsProvider, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|