@tactics/lokaal-loket 0.0.507 → 0.0.510
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +828 -768
- package/build/index.d.cts +25 -8
- package/build/index.d.ts +25 -8
- package/build/index.js +828 -768
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -372,9 +372,10 @@ interface ILink extends PropsWithChildren {
|
|
372
372
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
373
373
|
withIconAfter?: React__default.ReactElement<IIcon>;
|
374
374
|
target?: React__default.HTMLAttributeAnchorTarget;
|
375
|
+
inline?: boolean;
|
375
376
|
}
|
376
377
|
|
377
|
-
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
|
378
|
+
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, inline, }: ILink) => react_jsx_runtime.JSX.Element;
|
378
379
|
|
379
380
|
interface IBreadcrumb {
|
380
381
|
crumbs: React__default.ReactElement<ILink>[];
|
@@ -1755,6 +1756,7 @@ interface IActionMenuItem {
|
|
1755
1756
|
icon: React.ReactElement<IIcon>;
|
1756
1757
|
label: string;
|
1757
1758
|
onClick: () => void;
|
1759
|
+
href?: string;
|
1758
1760
|
}
|
1759
1761
|
interface IActionMenuToggleItem {
|
1760
1762
|
toggle: React.ReactElement<IToggle>;
|
@@ -1762,7 +1764,7 @@ interface IActionMenuToggleItem {
|
|
1762
1764
|
|
1763
1765
|
declare const ActionMenu: {
|
1764
1766
|
({ children }: IActionMenu): react_jsx_runtime.JSX.Element;
|
1765
|
-
Item: ({ icon, label, onClick }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
|
1767
|
+
Item: ({ icon, label, onClick, href }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
|
1766
1768
|
ToggleItem: ({ toggle }: IActionMenuToggleItem) => react_jsx_runtime.JSX.Element;
|
1767
1769
|
};
|
1768
1770
|
|
@@ -2167,12 +2169,20 @@ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent
|
|
2167
2169
|
declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
|
2168
2170
|
|
2169
2171
|
interface IConfirm {
|
2172
|
+
button: React__default.ReactElement<IButton>;
|
2173
|
+
modal: React__default.ReactElement<IConfirmModal>;
|
2174
|
+
}
|
2175
|
+
interface IConfirmModal {
|
2170
2176
|
title: React__default.ReactNode;
|
2171
2177
|
description: React__default.ReactNode;
|
2172
2178
|
cancel?: React__default.ReactElement<IButton>;
|
2173
2179
|
confirm: React__default.ReactElement<IButton>;
|
2174
2180
|
}
|
2175
2181
|
|
2182
|
+
declare const ConfirmModal: (props: IConfirmModal) => react_jsx_runtime.JSX.Element;
|
2183
|
+
|
2184
|
+
declare const Confirm: (props: IConfirm) => react_jsx_runtime.JSX.Element;
|
2185
|
+
|
2176
2186
|
interface ICard {
|
2177
2187
|
swipe?: React__default.ReactNode;
|
2178
2188
|
badge: React__default.ReactElement<IBadge>;
|
@@ -2187,7 +2197,7 @@ interface ICard {
|
|
2187
2197
|
application?: React__default.ReactElement<ICardApplication | IButton>;
|
2188
2198
|
onMouseEnter?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
2189
2199
|
onMouseLeave?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
2190
|
-
onClick?: (event: React__default.MouseEvent<
|
2200
|
+
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement, MouseEvent>) => void;
|
2191
2201
|
}
|
2192
2202
|
interface ICardFavorite {
|
2193
2203
|
remove: React__default.ReactElement<IFavoured>;
|
@@ -2201,11 +2211,9 @@ interface ICardApplication {
|
|
2201
2211
|
modal?: React__default.ReactElement<IConfirm>;
|
2202
2212
|
}
|
2203
2213
|
|
2204
|
-
declare const
|
2205
|
-
|
2206
|
-
declare const CardApplication: ({ inApp, add, remove, modal }: ICardApplication) => react_jsx_runtime.JSX.Element;
|
2214
|
+
declare const Card: React__default.MemoExoticComponent<(props: ICard) => react_jsx_runtime.JSX.Element>;
|
2207
2215
|
|
2208
|
-
declare const
|
2216
|
+
declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
|
2209
2217
|
|
2210
2218
|
interface IMinimalCard {
|
2211
2219
|
badge: React__default.ReactElement<IBadge>;
|
@@ -2236,6 +2244,15 @@ interface IListCardBase {
|
|
2236
2244
|
|
2237
2245
|
declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, context }: IListCard) => react_jsx_runtime.JSX.Element;
|
2238
2246
|
|
2247
|
+
interface IShoppingCartAction {
|
2248
|
+
addToCart: React__default.ReactElement<IButton>;
|
2249
|
+
removeFromCart: React__default.ReactElement<IButton>;
|
2250
|
+
isAdded: boolean;
|
2251
|
+
modal?: React__default.ReactElement<IConfirmModal>;
|
2252
|
+
}
|
2253
|
+
|
2254
|
+
declare const ShoppingCartAction: React__default.MemoExoticComponent<(props: IShoppingCartAction) => react_jsx_runtime.JSX.Element>;
|
2255
|
+
|
2239
2256
|
declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
|
2240
2257
|
|
2241
2258
|
declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
@@ -3280,4 +3297,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3280
3297
|
|
3281
3298
|
declare const useHeader: () => number;
|
3282
3299
|
|
3283
|
-
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, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, 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 ICardApplication, 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 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 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 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, 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, 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 };
|
3300
|
+
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 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, 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 };
|
package/build/index.d.ts
CHANGED
@@ -372,9 +372,10 @@ interface ILink extends PropsWithChildren {
|
|
372
372
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
373
373
|
withIconAfter?: React__default.ReactElement<IIcon>;
|
374
374
|
target?: React__default.HTMLAttributeAnchorTarget;
|
375
|
+
inline?: boolean;
|
375
376
|
}
|
376
377
|
|
377
|
-
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
|
378
|
+
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, inline, }: ILink) => react_jsx_runtime.JSX.Element;
|
378
379
|
|
379
380
|
interface IBreadcrumb {
|
380
381
|
crumbs: React__default.ReactElement<ILink>[];
|
@@ -1755,6 +1756,7 @@ interface IActionMenuItem {
|
|
1755
1756
|
icon: React.ReactElement<IIcon>;
|
1756
1757
|
label: string;
|
1757
1758
|
onClick: () => void;
|
1759
|
+
href?: string;
|
1758
1760
|
}
|
1759
1761
|
interface IActionMenuToggleItem {
|
1760
1762
|
toggle: React.ReactElement<IToggle>;
|
@@ -1762,7 +1764,7 @@ interface IActionMenuToggleItem {
|
|
1762
1764
|
|
1763
1765
|
declare const ActionMenu: {
|
1764
1766
|
({ children }: IActionMenu): react_jsx_runtime.JSX.Element;
|
1765
|
-
Item: ({ icon, label, onClick }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
|
1767
|
+
Item: ({ icon, label, onClick, href }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
|
1766
1768
|
ToggleItem: ({ toggle }: IActionMenuToggleItem) => react_jsx_runtime.JSX.Element;
|
1767
1769
|
};
|
1768
1770
|
|
@@ -2167,12 +2169,20 @@ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent
|
|
2167
2169
|
declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
|
2168
2170
|
|
2169
2171
|
interface IConfirm {
|
2172
|
+
button: React__default.ReactElement<IButton>;
|
2173
|
+
modal: React__default.ReactElement<IConfirmModal>;
|
2174
|
+
}
|
2175
|
+
interface IConfirmModal {
|
2170
2176
|
title: React__default.ReactNode;
|
2171
2177
|
description: React__default.ReactNode;
|
2172
2178
|
cancel?: React__default.ReactElement<IButton>;
|
2173
2179
|
confirm: React__default.ReactElement<IButton>;
|
2174
2180
|
}
|
2175
2181
|
|
2182
|
+
declare const ConfirmModal: (props: IConfirmModal) => react_jsx_runtime.JSX.Element;
|
2183
|
+
|
2184
|
+
declare const Confirm: (props: IConfirm) => react_jsx_runtime.JSX.Element;
|
2185
|
+
|
2176
2186
|
interface ICard {
|
2177
2187
|
swipe?: React__default.ReactNode;
|
2178
2188
|
badge: React__default.ReactElement<IBadge>;
|
@@ -2187,7 +2197,7 @@ interface ICard {
|
|
2187
2197
|
application?: React__default.ReactElement<ICardApplication | IButton>;
|
2188
2198
|
onMouseEnter?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
2189
2199
|
onMouseLeave?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
2190
|
-
onClick?: (event: React__default.MouseEvent<
|
2200
|
+
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement, MouseEvent>) => void;
|
2191
2201
|
}
|
2192
2202
|
interface ICardFavorite {
|
2193
2203
|
remove: React__default.ReactElement<IFavoured>;
|
@@ -2201,11 +2211,9 @@ interface ICardApplication {
|
|
2201
2211
|
modal?: React__default.ReactElement<IConfirm>;
|
2202
2212
|
}
|
2203
2213
|
|
2204
|
-
declare const
|
2205
|
-
|
2206
|
-
declare const CardApplication: ({ inApp, add, remove, modal }: ICardApplication) => react_jsx_runtime.JSX.Element;
|
2214
|
+
declare const Card: React__default.MemoExoticComponent<(props: ICard) => react_jsx_runtime.JSX.Element>;
|
2207
2215
|
|
2208
|
-
declare const
|
2216
|
+
declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
|
2209
2217
|
|
2210
2218
|
interface IMinimalCard {
|
2211
2219
|
badge: React__default.ReactElement<IBadge>;
|
@@ -2236,6 +2244,15 @@ interface IListCardBase {
|
|
2236
2244
|
|
2237
2245
|
declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, context }: IListCard) => react_jsx_runtime.JSX.Element;
|
2238
2246
|
|
2247
|
+
interface IShoppingCartAction {
|
2248
|
+
addToCart: React__default.ReactElement<IButton>;
|
2249
|
+
removeFromCart: React__default.ReactElement<IButton>;
|
2250
|
+
isAdded: boolean;
|
2251
|
+
modal?: React__default.ReactElement<IConfirmModal>;
|
2252
|
+
}
|
2253
|
+
|
2254
|
+
declare const ShoppingCartAction: React__default.MemoExoticComponent<(props: IShoppingCartAction) => react_jsx_runtime.JSX.Element>;
|
2255
|
+
|
2239
2256
|
declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
|
2240
2257
|
|
2241
2258
|
declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
@@ -3280,4 +3297,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3280
3297
|
|
3281
3298
|
declare const useHeader: () => number;
|
3282
3299
|
|
3283
|
-
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, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, 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 ICardApplication, 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 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 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 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, 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, 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 };
|
3300
|
+
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 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, 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 };
|