@tactics/lokaal-loket 0.1.12 → 0.1.13
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/build/index.cjs +931 -820
- package/build/index.d.cts +47 -10
- package/build/index.d.ts +47 -10
- package/build/index.js +931 -820
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
|
@@ -2389,12 +2389,6 @@ interface IRequestDetailsCard {
|
|
|
2389
2389
|
|
|
2390
2390
|
declare const RequestDetailsCard: ({ title, subtitle, actions, children, detailsAction, label, figure, }: IRequestDetailsCard) => react_jsx_runtime.JSX.Element;
|
|
2391
2391
|
|
|
2392
|
-
interface IRequestNoneAvailable {
|
|
2393
|
-
message: React__default.ReactNode;
|
|
2394
|
-
}
|
|
2395
|
-
|
|
2396
|
-
declare const RequestNoneAvailable: ({ message }: IRequestNoneAvailable) => react_jsx_runtime.JSX.Element;
|
|
2397
|
-
|
|
2398
2392
|
interface IThread {
|
|
2399
2393
|
badge?: React.ReactElement<IBadge>;
|
|
2400
2394
|
label: string;
|
|
@@ -2918,6 +2912,23 @@ interface IContainerArrangement {
|
|
|
2918
2912
|
|
|
2919
2913
|
declare const Container: ({ children, padding, withBorder }: IContainerArrangement) => react_jsx_runtime.JSX.Element;
|
|
2920
2914
|
|
|
2915
|
+
interface INoneAvailable {
|
|
2916
|
+
message: React__default.ReactElement<IPlainText>;
|
|
2917
|
+
actions?: React__default.ReactElement;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
declare const NoneAvailable: (props: INoneAvailable) => react_jsx_runtime.JSX.Element;
|
|
2921
|
+
|
|
2922
|
+
interface IEmpty {
|
|
2923
|
+
figure?: React__default.ReactElement<IFigure>;
|
|
2924
|
+
heading: React__default.ReactElement<IHeading>;
|
|
2925
|
+
description: React__default.ReactElement<IPlainText>;
|
|
2926
|
+
content?: React__default.ReactElement;
|
|
2927
|
+
actions?: React__default.ReactElement;
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
declare const Empty: (props: IEmpty) => react_jsx_runtime.JSX.Element;
|
|
2931
|
+
|
|
2921
2932
|
interface IScreen extends PropsWithChildren {
|
|
2922
2933
|
}
|
|
2923
2934
|
|
|
@@ -2986,6 +2997,14 @@ declare enum DrawerSize {
|
|
|
2986
2997
|
FULL = "FULL"
|
|
2987
2998
|
}
|
|
2988
2999
|
|
|
3000
|
+
interface IDrawerScreen extends PropsWithChildren {
|
|
3001
|
+
}
|
|
3002
|
+
interface IDrawerHeader extends PropsWithChildren {
|
|
3003
|
+
}
|
|
3004
|
+
interface IDrawerContent extends PropsWithChildren {
|
|
3005
|
+
}
|
|
3006
|
+
interface IDrawerFooter extends PropsWithChildren {
|
|
3007
|
+
}
|
|
2989
3008
|
interface IDrawer {
|
|
2990
3009
|
children?: React__default.ReactNode;
|
|
2991
3010
|
size?: DrawerSize;
|
|
@@ -2993,7 +3012,10 @@ interface IDrawer {
|
|
|
2993
3012
|
|
|
2994
3013
|
declare const Drawer: {
|
|
2995
3014
|
({ children, size }: IDrawer): React$1.ReactPortal;
|
|
2996
|
-
|
|
3015
|
+
Screen: (props: IDrawerScreen) => react_jsx_runtime.JSX.Element;
|
|
3016
|
+
Header: (props: IDrawerHeader) => react_jsx_runtime.JSX.Element;
|
|
3017
|
+
Content: (props: IDrawerContent) => react_jsx_runtime.JSX.Element;
|
|
3018
|
+
Footer: (props: IDrawerFooter) => react_jsx_runtime.JSX.Element;
|
|
2997
3019
|
};
|
|
2998
3020
|
|
|
2999
3021
|
interface GridProps {
|
|
@@ -3084,8 +3106,22 @@ interface IOverlay {
|
|
|
3084
3106
|
size: OverlaySize;
|
|
3085
3107
|
transition: boolean;
|
|
3086
3108
|
}
|
|
3109
|
+
interface IOverlayScreen extends PropsWithChildren {
|
|
3110
|
+
}
|
|
3111
|
+
interface IOverlayHeader extends PropsWithChildren {
|
|
3112
|
+
}
|
|
3113
|
+
interface IOverlayContent extends PropsWithChildren {
|
|
3114
|
+
}
|
|
3115
|
+
interface IOverlayFooter extends PropsWithChildren {
|
|
3116
|
+
}
|
|
3087
3117
|
|
|
3088
|
-
declare const Overlay:
|
|
3118
|
+
declare const Overlay: {
|
|
3119
|
+
({ children, size, transition }: IOverlay): React__default.ReactPortal;
|
|
3120
|
+
Screen: (props: IOverlayScreen) => react_jsx_runtime.JSX.Element;
|
|
3121
|
+
Header: (props: IOverlayHeader) => react_jsx_runtime.JSX.Element;
|
|
3122
|
+
Content: (props: IOverlayContent) => react_jsx_runtime.JSX.Element;
|
|
3123
|
+
Footer: (props: IOverlayFooter) => react_jsx_runtime.JSX.Element;
|
|
3124
|
+
};
|
|
3089
3125
|
|
|
3090
3126
|
interface IHorizontalScrollContainer {
|
|
3091
3127
|
gap?: SpacingKey;
|
|
@@ -3158,8 +3194,9 @@ declare const TabsProvider: ({ defaultTab, children }: {
|
|
|
3158
3194
|
interface TabBodyProps {
|
|
3159
3195
|
children: React__default.ReactNode;
|
|
3160
3196
|
tabKey: string;
|
|
3197
|
+
padded?: boolean;
|
|
3161
3198
|
}
|
|
3162
|
-
declare const TabBody: ({ children, tabKey }: TabBodyProps) => react_jsx_runtime.JSX.Element | null;
|
|
3199
|
+
declare const TabBody: ({ children, tabKey, padded }: TabBodyProps) => react_jsx_runtime.JSX.Element | null;
|
|
3163
3200
|
|
|
3164
3201
|
interface ISearchPage {
|
|
3165
3202
|
header: React__default.ReactElement;
|
|
@@ -3399,4 +3436,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
|
3399
3436
|
|
|
3400
3437
|
declare const useHeader: () => number;
|
|
3401
3438
|
|
|
3402
|
-
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, DateInput, type DateInputLanguage, DateInputValueToIso, 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, FullScreen, 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, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, HtmlHeading, 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 IDateInput, type IDateInputDate, 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 IFullScreen, type IGallery, type IHeader, type IHeading, 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 IObjectHeader, 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 IScreen, type IScrollContainer, 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 ISelectionHeader, 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 IWizardProvider, type IWizardSplit, 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, IsoToDateInputValue, 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, ModalSize, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, ObjectHeader, 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, Screen, ScrollContainer, 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, SelectionHeader, 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, WizardProvider, WizardSplit, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
|
3439
|
+
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, DateInput, type DateInputLanguage, DateInputValueToIso, DaySelect, Details, DetailsBody, DetailsHeader, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, Empty, 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, FullScreen, 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, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, HtmlHeading, 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 IDateInput, type IDateInputDate, 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 IEmpty, 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 IFullScreen, type IGallery, type IHeader, type IHeading, 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 INoneAvailable, type INotification, type INotificationIcon, type IObjectHeader, 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 IRequestSummary, type IRequestSummaryContainer, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IRequestsSectionMessage, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScreen, type IScrollContainer, 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 ISelectionHeader, 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 IWizardProvider, type IWizardSplit, 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, IsoToDateInputValue, 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, ModalSize, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, NoneAvailable, Notification, NotificationIcon, ObjectHeader, 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, RequestSummary, RequestSummaryContainer, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, RequestsSectionMessage, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, Screen, ScrollContainer, 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, SelectionHeader, 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, WizardProvider, WizardSplit, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
|
@@ -2389,12 +2389,6 @@ interface IRequestDetailsCard {
|
|
|
2389
2389
|
|
|
2390
2390
|
declare const RequestDetailsCard: ({ title, subtitle, actions, children, detailsAction, label, figure, }: IRequestDetailsCard) => react_jsx_runtime.JSX.Element;
|
|
2391
2391
|
|
|
2392
|
-
interface IRequestNoneAvailable {
|
|
2393
|
-
message: React__default.ReactNode;
|
|
2394
|
-
}
|
|
2395
|
-
|
|
2396
|
-
declare const RequestNoneAvailable: ({ message }: IRequestNoneAvailable) => react_jsx_runtime.JSX.Element;
|
|
2397
|
-
|
|
2398
2392
|
interface IThread {
|
|
2399
2393
|
badge?: React.ReactElement<IBadge>;
|
|
2400
2394
|
label: string;
|
|
@@ -2918,6 +2912,23 @@ interface IContainerArrangement {
|
|
|
2918
2912
|
|
|
2919
2913
|
declare const Container: ({ children, padding, withBorder }: IContainerArrangement) => react_jsx_runtime.JSX.Element;
|
|
2920
2914
|
|
|
2915
|
+
interface INoneAvailable {
|
|
2916
|
+
message: React__default.ReactElement<IPlainText>;
|
|
2917
|
+
actions?: React__default.ReactElement;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
declare const NoneAvailable: (props: INoneAvailable) => react_jsx_runtime.JSX.Element;
|
|
2921
|
+
|
|
2922
|
+
interface IEmpty {
|
|
2923
|
+
figure?: React__default.ReactElement<IFigure>;
|
|
2924
|
+
heading: React__default.ReactElement<IHeading>;
|
|
2925
|
+
description: React__default.ReactElement<IPlainText>;
|
|
2926
|
+
content?: React__default.ReactElement;
|
|
2927
|
+
actions?: React__default.ReactElement;
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
declare const Empty: (props: IEmpty) => react_jsx_runtime.JSX.Element;
|
|
2931
|
+
|
|
2921
2932
|
interface IScreen extends PropsWithChildren {
|
|
2922
2933
|
}
|
|
2923
2934
|
|
|
@@ -2986,6 +2997,14 @@ declare enum DrawerSize {
|
|
|
2986
2997
|
FULL = "FULL"
|
|
2987
2998
|
}
|
|
2988
2999
|
|
|
3000
|
+
interface IDrawerScreen extends PropsWithChildren {
|
|
3001
|
+
}
|
|
3002
|
+
interface IDrawerHeader extends PropsWithChildren {
|
|
3003
|
+
}
|
|
3004
|
+
interface IDrawerContent extends PropsWithChildren {
|
|
3005
|
+
}
|
|
3006
|
+
interface IDrawerFooter extends PropsWithChildren {
|
|
3007
|
+
}
|
|
2989
3008
|
interface IDrawer {
|
|
2990
3009
|
children?: React__default.ReactNode;
|
|
2991
3010
|
size?: DrawerSize;
|
|
@@ -2993,7 +3012,10 @@ interface IDrawer {
|
|
|
2993
3012
|
|
|
2994
3013
|
declare const Drawer: {
|
|
2995
3014
|
({ children, size }: IDrawer): React$1.ReactPortal;
|
|
2996
|
-
|
|
3015
|
+
Screen: (props: IDrawerScreen) => react_jsx_runtime.JSX.Element;
|
|
3016
|
+
Header: (props: IDrawerHeader) => react_jsx_runtime.JSX.Element;
|
|
3017
|
+
Content: (props: IDrawerContent) => react_jsx_runtime.JSX.Element;
|
|
3018
|
+
Footer: (props: IDrawerFooter) => react_jsx_runtime.JSX.Element;
|
|
2997
3019
|
};
|
|
2998
3020
|
|
|
2999
3021
|
interface GridProps {
|
|
@@ -3084,8 +3106,22 @@ interface IOverlay {
|
|
|
3084
3106
|
size: OverlaySize;
|
|
3085
3107
|
transition: boolean;
|
|
3086
3108
|
}
|
|
3109
|
+
interface IOverlayScreen extends PropsWithChildren {
|
|
3110
|
+
}
|
|
3111
|
+
interface IOverlayHeader extends PropsWithChildren {
|
|
3112
|
+
}
|
|
3113
|
+
interface IOverlayContent extends PropsWithChildren {
|
|
3114
|
+
}
|
|
3115
|
+
interface IOverlayFooter extends PropsWithChildren {
|
|
3116
|
+
}
|
|
3087
3117
|
|
|
3088
|
-
declare const Overlay:
|
|
3118
|
+
declare const Overlay: {
|
|
3119
|
+
({ children, size, transition }: IOverlay): React__default.ReactPortal;
|
|
3120
|
+
Screen: (props: IOverlayScreen) => react_jsx_runtime.JSX.Element;
|
|
3121
|
+
Header: (props: IOverlayHeader) => react_jsx_runtime.JSX.Element;
|
|
3122
|
+
Content: (props: IOverlayContent) => react_jsx_runtime.JSX.Element;
|
|
3123
|
+
Footer: (props: IOverlayFooter) => react_jsx_runtime.JSX.Element;
|
|
3124
|
+
};
|
|
3089
3125
|
|
|
3090
3126
|
interface IHorizontalScrollContainer {
|
|
3091
3127
|
gap?: SpacingKey;
|
|
@@ -3158,8 +3194,9 @@ declare const TabsProvider: ({ defaultTab, children }: {
|
|
|
3158
3194
|
interface TabBodyProps {
|
|
3159
3195
|
children: React__default.ReactNode;
|
|
3160
3196
|
tabKey: string;
|
|
3197
|
+
padded?: boolean;
|
|
3161
3198
|
}
|
|
3162
|
-
declare const TabBody: ({ children, tabKey }: TabBodyProps) => react_jsx_runtime.JSX.Element | null;
|
|
3199
|
+
declare const TabBody: ({ children, tabKey, padded }: TabBodyProps) => react_jsx_runtime.JSX.Element | null;
|
|
3163
3200
|
|
|
3164
3201
|
interface ISearchPage {
|
|
3165
3202
|
header: React__default.ReactElement;
|
|
@@ -3399,4 +3436,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
|
3399
3436
|
|
|
3400
3437
|
declare const useHeader: () => number;
|
|
3401
3438
|
|
|
3402
|
-
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, DateInput, type DateInputLanguage, DateInputValueToIso, 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, FullScreen, 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, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, HtmlHeading, 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 IDateInput, type IDateInputDate, 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 IFullScreen, type IGallery, type IHeader, type IHeading, 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 IObjectHeader, 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 IScreen, type IScrollContainer, 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 ISelectionHeader, 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 IWizardProvider, type IWizardSplit, 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, IsoToDateInputValue, 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, ModalSize, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, ObjectHeader, 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, Screen, ScrollContainer, 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, SelectionHeader, 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, WizardProvider, WizardSplit, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
|
3439
|
+
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, DateInput, type DateInputLanguage, DateInputValueToIso, DaySelect, Details, DetailsBody, DetailsHeader, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, Empty, 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, FullScreen, 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, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, HorizontalTabs, HtmlHeading, 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 IDateInput, type IDateInputDate, 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 IEmpty, 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 IFullScreen, type IGallery, type IHeader, type IHeading, 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 INoneAvailable, type INotification, type INotificationIcon, type IObjectHeader, 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 IRequestSummary, type IRequestSummaryContainer, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IRequestsSectionMessage, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScreen, type IScrollContainer, 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 ISelectionHeader, 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 IWizardProvider, type IWizardSplit, 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, IsoToDateInputValue, 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, ModalSize, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, NoneAvailable, Notification, NotificationIcon, ObjectHeader, 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, RequestSummary, RequestSummaryContainer, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, RequestsSectionMessage, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, Screen, ScrollContainer, 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, SelectionHeader, 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, WizardProvider, WizardSplit, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|