@tactics/lokaal-loket 0.0.389 → 0.0.391

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.cts CHANGED
@@ -282,6 +282,24 @@ declare enum FramePadding {
282
282
  SMALL = "SMALL"
283
283
  }
284
284
 
285
+ interface IExpand {
286
+ onClick?: () => void;
287
+ }
288
+
289
+ declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
290
+
291
+ interface IToggle {
292
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
293
+ value: string;
294
+ ariaLabel?: string;
295
+ label: string;
296
+ name: string;
297
+ checked?: boolean;
298
+ defaultChecked?: boolean;
299
+ }
300
+
301
+ declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
302
+
285
303
  type TerminalType = "ORIGIN" | "DESTINATION" | "VIEW_ONLY";
286
304
  type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE" | "VIEW_ONLY";
287
305
  interface ITerminal {
@@ -332,6 +350,8 @@ interface IStaticBasedMap {
332
350
  point: IPoint;
333
351
  }
334
352
  interface ILocationBasedMap {
353
+ controlAreaTopLeft?: React__default.ReactNode[];
354
+ controlAreaBottomCenter?: React__default.ReactNode[];
335
355
  updateOriginOnAreaChange: boolean;
336
356
  viewOnly?: boolean;
337
357
  points?: IPoints;
@@ -344,6 +364,8 @@ interface ILocationBasedMap {
344
364
  onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
345
365
  }
346
366
  interface IDirectionBasedMapBase {
367
+ controlAreaTopLeft?: React__default.ReactNode[];
368
+ controlAreaBottomCenter?: React__default.ReactNode[];
347
369
  routes?: IRoutes;
348
370
  viewOnly?: boolean;
349
371
  activeRoute: string;
@@ -579,12 +601,6 @@ interface ICollapse {
579
601
 
580
602
  declare const Collapse: ({ onClick }: ICollapse) => react_jsx_runtime.JSX.Element;
581
603
 
582
- interface IExpand {
583
- onClick?: () => void;
584
- }
585
-
586
- declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
587
-
588
604
  declare enum TextDecoration {
589
605
  NONE = "NONE",
590
606
  UNDERLINE = "UNDERLINE",
@@ -697,7 +713,7 @@ declare const List: {
697
713
  declare const Logo: ({ alt, ariaLabel, size }: ILogo) => react_jsx_runtime.JSX.Element;
698
714
 
699
715
  interface INotification {
700
- number: number;
716
+ number?: number;
701
717
  }
702
718
 
703
719
  declare const Notification: ({ number }: INotification) => react_jsx_runtime.JSX.Element;
@@ -1127,18 +1143,6 @@ interface IColoredBox {
1127
1143
 
1128
1144
  declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
1129
1145
 
1130
- interface IToggle {
1131
- onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
1132
- value: string;
1133
- ariaLabel?: string;
1134
- label: string;
1135
- name: string;
1136
- checked?: boolean;
1137
- defaultChecked?: boolean;
1138
- }
1139
-
1140
- declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
1141
-
1142
1146
  interface INoResults {
1143
1147
  title: string;
1144
1148
  subtitle?: string;
@@ -2033,7 +2037,7 @@ interface IListCard {
2033
2037
  title: string;
2034
2038
  subtitle?: string;
2035
2039
  info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
2036
- labels: React__default.ReactElement<ILabel>[];
2040
+ labels?: React__default.ReactElement<ILabel>[];
2037
2041
  features?: React__default.ReactElement<IFeatures>;
2038
2042
  actions: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
2039
2043
  }
@@ -2373,6 +2377,7 @@ declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_ru
2373
2377
  interface ISearchSectionResults {
2374
2378
  header?: React__default.ReactElement;
2375
2379
  content: React__default.ReactElement;
2380
+ floating?: React__default.ReactElement;
2376
2381
  }
2377
2382
 
2378
2383
  declare const SearchSectionResults: React__default.ForwardRefExoticComponent<ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>>;
@@ -2392,20 +2397,6 @@ interface IStatusSectionBasic {
2392
2397
 
2393
2398
  declare const StatusSectionBasic: (props: IStatusSectionBasic) => react_jsx_runtime.JSX.Element;
2394
2399
 
2395
- interface IScrollableContentProps {
2396
- scrollToTop?: () => void;
2397
- }
2398
- interface ISearchSectionResultsWithMap {
2399
- content: React__default.ReactElement<IScrollableContentProps>;
2400
- map?: React__default.ReactElement;
2401
- viewMapLabel: string;
2402
- viewListLabel: string;
2403
- viewMapIcon?: React__default.ReactElement<IIcon>;
2404
- viewListIcon?: React__default.ReactElement<IIcon>;
2405
- }
2406
-
2407
- declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>>;
2408
-
2409
2400
  interface IProfileSectionHeader {
2410
2401
  title: string;
2411
2402
  subtitle?: string;
@@ -2454,6 +2445,31 @@ type IProfileRequestsSectionConfirmModal = {
2454
2445
 
2455
2446
  declare const ProfileRequestsSectionConfirmModal: (props: IProfileRequestsSectionConfirmModal) => react_jsx_runtime.JSX.Element;
2456
2447
 
2448
+ interface ICompactDetailsSectionGeneral {
2449
+ info: React__default.ReactNode;
2450
+ }
2451
+
2452
+ declare const CompactDetailsSectionGeneral: (props: ICompactDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
2453
+
2454
+ interface ICompactDetailsSectionHeader {
2455
+ title: string;
2456
+ subtitle?: string;
2457
+ badge: React__default.ReactNode;
2458
+ labels: React__default.ReactNode;
2459
+ features?: React__default.ReactElement<IFeatures>;
2460
+ actions: React__default.ReactNode;
2461
+ }
2462
+
2463
+ declare const CompactDetailsSectionHeader: (props: ICompactDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
2464
+
2465
+ interface ICompactDetailsSectionHours {
2466
+ title: string;
2467
+ hours: React__default.ReactElement<ITable>;
2468
+ info?: string;
2469
+ }
2470
+
2471
+ declare const CompactDetailsSectionHours: (props: ICompactDetailsSectionHours) => react_jsx_runtime.JSX.Element;
2472
+
2457
2473
  declare enum AccordeonContext {
2458
2474
  OPEN = "OPEN",
2459
2475
  CLOSED = "CLOSED"
@@ -2493,11 +2509,10 @@ declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
2493
2509
  interface ICollapsable {
2494
2510
  content: React__default.ReactNode;
2495
2511
  additional: React__default.ReactNode;
2496
- withContentExpand: React__default.ReactNode;
2497
- withContentCollapse?: React__default.ReactNode;
2512
+ maxHeight?: string;
2498
2513
  }
2499
2514
 
2500
- declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
2515
+ declare const Collapsable: ({ content, additional, maxHeight }: ICollapsable) => react_jsx_runtime.JSX.Element;
2501
2516
 
2502
2517
  declare enum DrawerSize {
2503
2518
  SMALL = "SMALL",
@@ -2869,4 +2884,4 @@ interface ILayoutSwitch extends PropsWithChildren {
2869
2884
 
2870
2885
  declare const LayoutSwitch: (props: ILayoutSwitch) => React$1.ReactNode;
2871
2886
 
2872
- 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, BadgeType, BasicPage, BigChoice, BigPick, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, 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 IDirectionBasedMapBase, 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 IFilterTag, 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, 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 ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, 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, type LocationMapHandle, Logo, LogoSize, Map, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, 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, ProfileSectionRequests, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
2887
+ 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, BadgeType, BasicPage, BigChoice, BigPick, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, 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 IDirectionBasedMapBase, 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 IFilterTag, 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, 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 ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, 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, type LocationMapHandle, Logo, LogoSize, Map, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, 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, ProfileSectionRequests, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
package/build/index.d.ts CHANGED
@@ -282,6 +282,24 @@ declare enum FramePadding {
282
282
  SMALL = "SMALL"
283
283
  }
284
284
 
285
+ interface IExpand {
286
+ onClick?: () => void;
287
+ }
288
+
289
+ declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
290
+
291
+ interface IToggle {
292
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
293
+ value: string;
294
+ ariaLabel?: string;
295
+ label: string;
296
+ name: string;
297
+ checked?: boolean;
298
+ defaultChecked?: boolean;
299
+ }
300
+
301
+ declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
302
+
285
303
  type TerminalType = "ORIGIN" | "DESTINATION" | "VIEW_ONLY";
286
304
  type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE" | "VIEW_ONLY";
287
305
  interface ITerminal {
@@ -332,6 +350,8 @@ interface IStaticBasedMap {
332
350
  point: IPoint;
333
351
  }
334
352
  interface ILocationBasedMap {
353
+ controlAreaTopLeft?: React__default.ReactNode[];
354
+ controlAreaBottomCenter?: React__default.ReactNode[];
335
355
  updateOriginOnAreaChange: boolean;
336
356
  viewOnly?: boolean;
337
357
  points?: IPoints;
@@ -344,6 +364,8 @@ interface ILocationBasedMap {
344
364
  onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
345
365
  }
346
366
  interface IDirectionBasedMapBase {
367
+ controlAreaTopLeft?: React__default.ReactNode[];
368
+ controlAreaBottomCenter?: React__default.ReactNode[];
347
369
  routes?: IRoutes;
348
370
  viewOnly?: boolean;
349
371
  activeRoute: string;
@@ -579,12 +601,6 @@ interface ICollapse {
579
601
 
580
602
  declare const Collapse: ({ onClick }: ICollapse) => react_jsx_runtime.JSX.Element;
581
603
 
582
- interface IExpand {
583
- onClick?: () => void;
584
- }
585
-
586
- declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
587
-
588
604
  declare enum TextDecoration {
589
605
  NONE = "NONE",
590
606
  UNDERLINE = "UNDERLINE",
@@ -697,7 +713,7 @@ declare const List: {
697
713
  declare const Logo: ({ alt, ariaLabel, size }: ILogo) => react_jsx_runtime.JSX.Element;
698
714
 
699
715
  interface INotification {
700
- number: number;
716
+ number?: number;
701
717
  }
702
718
 
703
719
  declare const Notification: ({ number }: INotification) => react_jsx_runtime.JSX.Element;
@@ -1127,18 +1143,6 @@ interface IColoredBox {
1127
1143
 
1128
1144
  declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
1129
1145
 
1130
- interface IToggle {
1131
- onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
1132
- value: string;
1133
- ariaLabel?: string;
1134
- label: string;
1135
- name: string;
1136
- checked?: boolean;
1137
- defaultChecked?: boolean;
1138
- }
1139
-
1140
- declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
1141
-
1142
1146
  interface INoResults {
1143
1147
  title: string;
1144
1148
  subtitle?: string;
@@ -2033,7 +2037,7 @@ interface IListCard {
2033
2037
  title: string;
2034
2038
  subtitle?: string;
2035
2039
  info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
2036
- labels: React__default.ReactElement<ILabel>[];
2040
+ labels?: React__default.ReactElement<ILabel>[];
2037
2041
  features?: React__default.ReactElement<IFeatures>;
2038
2042
  actions: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
2039
2043
  }
@@ -2373,6 +2377,7 @@ declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_ru
2373
2377
  interface ISearchSectionResults {
2374
2378
  header?: React__default.ReactElement;
2375
2379
  content: React__default.ReactElement;
2380
+ floating?: React__default.ReactElement;
2376
2381
  }
2377
2382
 
2378
2383
  declare const SearchSectionResults: React__default.ForwardRefExoticComponent<ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>>;
@@ -2392,20 +2397,6 @@ interface IStatusSectionBasic {
2392
2397
 
2393
2398
  declare const StatusSectionBasic: (props: IStatusSectionBasic) => react_jsx_runtime.JSX.Element;
2394
2399
 
2395
- interface IScrollableContentProps {
2396
- scrollToTop?: () => void;
2397
- }
2398
- interface ISearchSectionResultsWithMap {
2399
- content: React__default.ReactElement<IScrollableContentProps>;
2400
- map?: React__default.ReactElement;
2401
- viewMapLabel: string;
2402
- viewListLabel: string;
2403
- viewMapIcon?: React__default.ReactElement<IIcon>;
2404
- viewListIcon?: React__default.ReactElement<IIcon>;
2405
- }
2406
-
2407
- declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>>;
2408
-
2409
2400
  interface IProfileSectionHeader {
2410
2401
  title: string;
2411
2402
  subtitle?: string;
@@ -2454,6 +2445,31 @@ type IProfileRequestsSectionConfirmModal = {
2454
2445
 
2455
2446
  declare const ProfileRequestsSectionConfirmModal: (props: IProfileRequestsSectionConfirmModal) => react_jsx_runtime.JSX.Element;
2456
2447
 
2448
+ interface ICompactDetailsSectionGeneral {
2449
+ info: React__default.ReactNode;
2450
+ }
2451
+
2452
+ declare const CompactDetailsSectionGeneral: (props: ICompactDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
2453
+
2454
+ interface ICompactDetailsSectionHeader {
2455
+ title: string;
2456
+ subtitle?: string;
2457
+ badge: React__default.ReactNode;
2458
+ labels: React__default.ReactNode;
2459
+ features?: React__default.ReactElement<IFeatures>;
2460
+ actions: React__default.ReactNode;
2461
+ }
2462
+
2463
+ declare const CompactDetailsSectionHeader: (props: ICompactDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
2464
+
2465
+ interface ICompactDetailsSectionHours {
2466
+ title: string;
2467
+ hours: React__default.ReactElement<ITable>;
2468
+ info?: string;
2469
+ }
2470
+
2471
+ declare const CompactDetailsSectionHours: (props: ICompactDetailsSectionHours) => react_jsx_runtime.JSX.Element;
2472
+
2457
2473
  declare enum AccordeonContext {
2458
2474
  OPEN = "OPEN",
2459
2475
  CLOSED = "CLOSED"
@@ -2493,11 +2509,10 @@ declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
2493
2509
  interface ICollapsable {
2494
2510
  content: React__default.ReactNode;
2495
2511
  additional: React__default.ReactNode;
2496
- withContentExpand: React__default.ReactNode;
2497
- withContentCollapse?: React__default.ReactNode;
2512
+ maxHeight?: string;
2498
2513
  }
2499
2514
 
2500
- declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
2515
+ declare const Collapsable: ({ content, additional, maxHeight }: ICollapsable) => react_jsx_runtime.JSX.Element;
2501
2516
 
2502
2517
  declare enum DrawerSize {
2503
2518
  SMALL = "SMALL",
@@ -2869,4 +2884,4 @@ interface ILayoutSwitch extends PropsWithChildren {
2869
2884
 
2870
2885
  declare const LayoutSwitch: (props: ILayoutSwitch) => React$1.ReactNode;
2871
2886
 
2872
- 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, BadgeType, BasicPage, BigChoice, BigPick, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, 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 IDirectionBasedMapBase, 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 IFilterTag, 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, 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 ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, 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, type LocationMapHandle, Logo, LogoSize, Map, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, 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, ProfileSectionRequests, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
2887
+ 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, BadgeType, BasicPage, BigChoice, BigPick, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, 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 IDirectionBasedMapBase, 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 IFilterTag, 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, 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 ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, 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, type LocationMapHandle, Logo, LogoSize, Map, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, 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, ProfileSectionRequests, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };