@tactics/lokaal-loket 0.0.506 → 0.0.508

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -362,13 +362,12 @@ declare enum Position {
362
362
  AFTER = "AFTER"
363
363
  }
364
364
 
365
- interface ILink {
365
+ interface ILink extends PropsWithChildren {
366
366
  id?: string;
367
367
  title: string;
368
368
  href: string;
369
369
  onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
370
370
  ariaLabel: string;
371
- children?: string;
372
371
  context?: LinkContext;
373
372
  withIconBefore?: React__default.ReactElement<IIcon>;
374
373
  withIconAfter?: React__default.ReactElement<IIcon>;
@@ -402,19 +401,17 @@ declare enum ButtonType {
402
401
  }
403
402
 
404
403
  type ClickHandler$1 = (event: React__default.MouseEvent<HTMLAnchorElement | HTMLButtonElement> | React__default.KeyboardEvent<HTMLAnchorElement | HTMLButtonElement>) => void;
405
- interface IButtonMinimal {
404
+ interface IButtonMinimal extends PropsWithChildren {
406
405
  id?: string;
407
406
  title: string;
408
407
  ariaLabel: string;
409
408
  onClick?: ClickHandler$1;
410
- children?: string;
411
409
  }
412
- interface IButton {
410
+ interface IButton extends PropsWithChildren {
413
411
  id?: string;
414
412
  title: string;
415
413
  ariaLabel: string;
416
414
  onClick?: ClickHandler$1;
417
- children?: string;
418
415
  withIconBefore?: React__default.ReactElement<IIcon>;
419
416
  withIconAfter?: React__default.ReactElement<IIcon>;
420
417
  type?: ButtonType;
@@ -504,8 +501,7 @@ declare enum TextAlignment {
504
501
  RIGHT = "RIGHT"
505
502
  }
506
503
 
507
- interface IPlainText {
508
- children?: string;
504
+ interface IPlainText extends PropsWithChildren {
509
505
  size?: TypographyFontKey;
510
506
  font?: TypographyFontsKey;
511
507
  fontWeight?: TypographyFontWeightKey;
@@ -1596,7 +1592,7 @@ interface IFormElement {
1596
1592
  declare const FormElement: ({ label, input, description, required }: IFormElement) => react_jsx_runtime.JSX.Element;
1597
1593
 
1598
1594
  interface IFormMessage {
1599
- messages: string[];
1595
+ messages: React__default.ReactNode[];
1600
1596
  type: string;
1601
1597
  icon?: React__default.ReactElement<IIcon>;
1602
1598
  remove?: React__default.ReactElement<IIcon>;
@@ -2170,15 +2166,31 @@ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent
2170
2166
 
2171
2167
  declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
2172
2168
 
2169
+ interface IConfirm {
2170
+ button: React__default.ReactElement<IButton>;
2171
+ modal: React__default.ReactElement<IConfirmModal>;
2172
+ }
2173
+ interface IConfirmModal {
2174
+ title: React__default.ReactNode;
2175
+ description: React__default.ReactNode;
2176
+ cancel?: React__default.ReactElement<IButton>;
2177
+ confirm: React__default.ReactElement<IButton>;
2178
+ }
2179
+
2180
+ declare const ConfirmModal: (props: IConfirmModal) => react_jsx_runtime.JSX.Element;
2181
+
2182
+ declare const Confirm: (props: IConfirm) => react_jsx_runtime.JSX.Element;
2183
+
2173
2184
  interface ICard {
2174
2185
  swipe?: React__default.ReactNode;
2175
2186
  badge: React__default.ReactElement<IBadge>;
2187
+ href: string;
2176
2188
  title: string;
2177
2189
  subtitle?: string;
2178
2190
  info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
2179
2191
  labels?: React__default.ReactElement<ILabel>[];
2180
2192
  features?: React__default.ReactElement<IFeatures>;
2181
- action?: React__default.ReactElement<IButton>;
2193
+ actions?: React__default.ReactNode;
2182
2194
  favorite?: React__default.ReactElement<ICardFavorite>;
2183
2195
  application?: React__default.ReactElement<ICardApplication | IButton>;
2184
2196
  onMouseEnter?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
@@ -2194,12 +2206,11 @@ interface ICardApplication {
2194
2206
  remove: React__default.ReactElement<IButton>;
2195
2207
  add: React__default.ReactElement<IButton>;
2196
2208
  inApp: boolean;
2209
+ modal?: React__default.ReactElement<IConfirm>;
2197
2210
  }
2198
2211
 
2199
2212
  declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
2200
2213
 
2201
- declare const CardApplication: (props: ICardApplication) => react_jsx_runtime.JSX.Element;
2202
-
2203
2214
  declare const Card: (props: ICard) => react_jsx_runtime.JSX.Element;
2204
2215
 
2205
2216
  interface IMinimalCard {
@@ -2210,7 +2221,15 @@ interface IMinimalCard {
2210
2221
 
2211
2222
  declare const MinimalCard: (props: IMinimalCard) => react_jsx_runtime.JSX.Element;
2212
2223
 
2213
- interface IListCard {
2224
+ declare enum ListCardContext {
2225
+ STANDARD = "STANDARD",
2226
+ ALTERNATE = "ALTERNATE"
2227
+ }
2228
+
2229
+ interface IListCard extends IListCardBase {
2230
+ context?: ListCardContext;
2231
+ }
2232
+ interface IListCardBase {
2214
2233
  badge: React__default.ReactElement<IBadge>;
2215
2234
  title: string;
2216
2235
  subtitle?: string;
@@ -2218,9 +2237,19 @@ interface IListCard {
2218
2237
  labels?: React__default.ReactElement<ILabel>[];
2219
2238
  features?: React__default.ReactElement<IFeatures>;
2220
2239
  actions?: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
2240
+ lifted?: boolean;
2241
+ }
2242
+
2243
+ declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, context }: IListCard) => react_jsx_runtime.JSX.Element;
2244
+
2245
+ interface IShoppingCartAction {
2246
+ addToCart: React__default.ReactElement<IButton>;
2247
+ removeFromCart: React__default.ReactElement<IButton>;
2248
+ isAdded: boolean;
2249
+ modal?: React__default.ReactElement<IConfirmModal>;
2221
2250
  }
2222
2251
 
2223
- declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
2252
+ declare const ShoppingCartAction: (props: IShoppingCartAction) => react_jsx_runtime.JSX.Element;
2224
2253
 
2225
2254
  declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
2226
2255
 
@@ -2789,7 +2818,7 @@ declare const Accordeon: {
2789
2818
  };
2790
2819
 
2791
2820
  interface IBackdrop {
2792
- onClick?: () => void;
2821
+ onClick?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2793
2822
  }
2794
2823
 
2795
2824
  declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
@@ -3073,9 +3102,13 @@ interface BackdropContextType {
3073
3102
  }
3074
3103
  declare const BackdropContext: React__default.Context<BackdropContextType>;
3075
3104
  interface IBackdropProvider extends PropsWithChildren {
3076
- onClick?: () => void;
3105
+ onClick?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
3106
+ }
3107
+ interface BackdropProviderHandle {
3108
+ show: () => void;
3109
+ hide: () => void;
3077
3110
  }
3078
- declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => react_jsx_runtime.JSX.Element;
3111
+ declare const BackdropProvider: React__default.ForwardRefExoticComponent<IBackdropProvider & React__default.RefAttributes<BackdropProviderHandle>>;
3079
3112
 
3080
3113
  interface BlurContextType {
3081
3114
  isBlurred: boolean;
@@ -3262,4 +3295,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
3262
3295
 
3263
3296
  declare const useHeader: () => number;
3264
3297
 
3265
- 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 };
3298
+ 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
@@ -362,13 +362,12 @@ declare enum Position {
362
362
  AFTER = "AFTER"
363
363
  }
364
364
 
365
- interface ILink {
365
+ interface ILink extends PropsWithChildren {
366
366
  id?: string;
367
367
  title: string;
368
368
  href: string;
369
369
  onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
370
370
  ariaLabel: string;
371
- children?: string;
372
371
  context?: LinkContext;
373
372
  withIconBefore?: React__default.ReactElement<IIcon>;
374
373
  withIconAfter?: React__default.ReactElement<IIcon>;
@@ -402,19 +401,17 @@ declare enum ButtonType {
402
401
  }
403
402
 
404
403
  type ClickHandler$1 = (event: React__default.MouseEvent<HTMLAnchorElement | HTMLButtonElement> | React__default.KeyboardEvent<HTMLAnchorElement | HTMLButtonElement>) => void;
405
- interface IButtonMinimal {
404
+ interface IButtonMinimal extends PropsWithChildren {
406
405
  id?: string;
407
406
  title: string;
408
407
  ariaLabel: string;
409
408
  onClick?: ClickHandler$1;
410
- children?: string;
411
409
  }
412
- interface IButton {
410
+ interface IButton extends PropsWithChildren {
413
411
  id?: string;
414
412
  title: string;
415
413
  ariaLabel: string;
416
414
  onClick?: ClickHandler$1;
417
- children?: string;
418
415
  withIconBefore?: React__default.ReactElement<IIcon>;
419
416
  withIconAfter?: React__default.ReactElement<IIcon>;
420
417
  type?: ButtonType;
@@ -504,8 +501,7 @@ declare enum TextAlignment {
504
501
  RIGHT = "RIGHT"
505
502
  }
506
503
 
507
- interface IPlainText {
508
- children?: string;
504
+ interface IPlainText extends PropsWithChildren {
509
505
  size?: TypographyFontKey;
510
506
  font?: TypographyFontsKey;
511
507
  fontWeight?: TypographyFontWeightKey;
@@ -1596,7 +1592,7 @@ interface IFormElement {
1596
1592
  declare const FormElement: ({ label, input, description, required }: IFormElement) => react_jsx_runtime.JSX.Element;
1597
1593
 
1598
1594
  interface IFormMessage {
1599
- messages: string[];
1595
+ messages: React__default.ReactNode[];
1600
1596
  type: string;
1601
1597
  icon?: React__default.ReactElement<IIcon>;
1602
1598
  remove?: React__default.ReactElement<IIcon>;
@@ -2170,15 +2166,31 @@ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent
2170
2166
 
2171
2167
  declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
2172
2168
 
2169
+ interface IConfirm {
2170
+ button: React__default.ReactElement<IButton>;
2171
+ modal: React__default.ReactElement<IConfirmModal>;
2172
+ }
2173
+ interface IConfirmModal {
2174
+ title: React__default.ReactNode;
2175
+ description: React__default.ReactNode;
2176
+ cancel?: React__default.ReactElement<IButton>;
2177
+ confirm: React__default.ReactElement<IButton>;
2178
+ }
2179
+
2180
+ declare const ConfirmModal: (props: IConfirmModal) => react_jsx_runtime.JSX.Element;
2181
+
2182
+ declare const Confirm: (props: IConfirm) => react_jsx_runtime.JSX.Element;
2183
+
2173
2184
  interface ICard {
2174
2185
  swipe?: React__default.ReactNode;
2175
2186
  badge: React__default.ReactElement<IBadge>;
2187
+ href: string;
2176
2188
  title: string;
2177
2189
  subtitle?: string;
2178
2190
  info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
2179
2191
  labels?: React__default.ReactElement<ILabel>[];
2180
2192
  features?: React__default.ReactElement<IFeatures>;
2181
- action?: React__default.ReactElement<IButton>;
2193
+ actions?: React__default.ReactNode;
2182
2194
  favorite?: React__default.ReactElement<ICardFavorite>;
2183
2195
  application?: React__default.ReactElement<ICardApplication | IButton>;
2184
2196
  onMouseEnter?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
@@ -2194,12 +2206,11 @@ interface ICardApplication {
2194
2206
  remove: React__default.ReactElement<IButton>;
2195
2207
  add: React__default.ReactElement<IButton>;
2196
2208
  inApp: boolean;
2209
+ modal?: React__default.ReactElement<IConfirm>;
2197
2210
  }
2198
2211
 
2199
2212
  declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
2200
2213
 
2201
- declare const CardApplication: (props: ICardApplication) => react_jsx_runtime.JSX.Element;
2202
-
2203
2214
  declare const Card: (props: ICard) => react_jsx_runtime.JSX.Element;
2204
2215
 
2205
2216
  interface IMinimalCard {
@@ -2210,7 +2221,15 @@ interface IMinimalCard {
2210
2221
 
2211
2222
  declare const MinimalCard: (props: IMinimalCard) => react_jsx_runtime.JSX.Element;
2212
2223
 
2213
- interface IListCard {
2224
+ declare enum ListCardContext {
2225
+ STANDARD = "STANDARD",
2226
+ ALTERNATE = "ALTERNATE"
2227
+ }
2228
+
2229
+ interface IListCard extends IListCardBase {
2230
+ context?: ListCardContext;
2231
+ }
2232
+ interface IListCardBase {
2214
2233
  badge: React__default.ReactElement<IBadge>;
2215
2234
  title: string;
2216
2235
  subtitle?: string;
@@ -2218,9 +2237,19 @@ interface IListCard {
2218
2237
  labels?: React__default.ReactElement<ILabel>[];
2219
2238
  features?: React__default.ReactElement<IFeatures>;
2220
2239
  actions?: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
2240
+ lifted?: boolean;
2241
+ }
2242
+
2243
+ declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, context }: IListCard) => react_jsx_runtime.JSX.Element;
2244
+
2245
+ interface IShoppingCartAction {
2246
+ addToCart: React__default.ReactElement<IButton>;
2247
+ removeFromCart: React__default.ReactElement<IButton>;
2248
+ isAdded: boolean;
2249
+ modal?: React__default.ReactElement<IConfirmModal>;
2221
2250
  }
2222
2251
 
2223
- declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
2252
+ declare const ShoppingCartAction: (props: IShoppingCartAction) => react_jsx_runtime.JSX.Element;
2224
2253
 
2225
2254
  declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
2226
2255
 
@@ -2789,7 +2818,7 @@ declare const Accordeon: {
2789
2818
  };
2790
2819
 
2791
2820
  interface IBackdrop {
2792
- onClick?: () => void;
2821
+ onClick?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2793
2822
  }
2794
2823
 
2795
2824
  declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
@@ -3073,9 +3102,13 @@ interface BackdropContextType {
3073
3102
  }
3074
3103
  declare const BackdropContext: React__default.Context<BackdropContextType>;
3075
3104
  interface IBackdropProvider extends PropsWithChildren {
3076
- onClick?: () => void;
3105
+ onClick?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
3106
+ }
3107
+ interface BackdropProviderHandle {
3108
+ show: () => void;
3109
+ hide: () => void;
3077
3110
  }
3078
- declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => react_jsx_runtime.JSX.Element;
3111
+ declare const BackdropProvider: React__default.ForwardRefExoticComponent<IBackdropProvider & React__default.RefAttributes<BackdropProviderHandle>>;
3079
3112
 
3080
3113
  interface BlurContextType {
3081
3114
  isBlurred: boolean;
@@ -3262,4 +3295,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
3262
3295
 
3263
3296
  declare const useHeader: () => number;
3264
3297
 
3265
- 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 };
3298
+ 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 };