@tactics/lokaal-loket 0.0.300 → 0.0.303
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +705 -773
- package/build/index.d.cts +24 -22
- package/build/index.d.ts +24 -22
- package/build/index.js +660 -728
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1685,19 +1685,28 @@ declare const Map: {
|
|
1685
1685
|
}) => react_jsx_runtime.JSX.Element | null;
|
1686
1686
|
};
|
1687
1687
|
|
1688
|
+
interface IProgress {
|
1689
|
+
steps: number;
|
1690
|
+
activeStep: number;
|
1691
|
+
}
|
1692
|
+
|
1688
1693
|
interface IWizard {
|
1689
1694
|
children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
|
1690
1695
|
}
|
1691
1696
|
interface IWizardStep extends PropsWithChildren {
|
1692
|
-
|
1697
|
+
header?: React__default.ReactElement<IWizardHeader>;
|
1693
1698
|
controls?: React__default.ReactElement<IWizardControls>;
|
1694
1699
|
}
|
1700
|
+
interface IWizardHeader {
|
1701
|
+
top?: React__default.ReactNode;
|
1702
|
+
progress: React__default.ReactElement<IProgress>;
|
1703
|
+
}
|
1695
1704
|
interface IWizardControls {
|
1696
1705
|
back?: React__default.ReactElement<IButton>;
|
1697
1706
|
next?: React__default.ReactElement<IButton>;
|
1698
1707
|
}
|
1699
1708
|
|
1700
|
-
declare const WizardStep: ({ children,
|
1709
|
+
declare const WizardStep: ({ children, controls, header }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
1701
1710
|
|
1702
1711
|
declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_runtime.JSX.Element;
|
1703
1712
|
|
@@ -1734,7 +1743,6 @@ interface ISearchFilters extends ISearchFiltersShared {
|
|
1734
1743
|
}
|
1735
1744
|
interface ISearchFiltersOverlay {
|
1736
1745
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1737
|
-
close: React__default.ReactElement<CloseI>;
|
1738
1746
|
}
|
1739
1747
|
interface ISearchFiltersModal {
|
1740
1748
|
heading: string;
|
@@ -1775,7 +1783,6 @@ interface ISearchInputs extends ISearchInputsShared {
|
|
1775
1783
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1776
1784
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1777
1785
|
input: React__default.ReactElement<ISearchInputsOverlayInput>;
|
1778
|
-
close: React__default.ReactElement<CloseI>;
|
1779
1786
|
}
|
1780
1787
|
interface ISearchInputsOverlayContentActions {
|
1781
1788
|
clear?: React__default.ReactElement<IButton>;
|
@@ -2080,12 +2087,6 @@ interface IOnboardingArrangementIntroduction {
|
|
2080
2087
|
action?: React__default.ReactElement;
|
2081
2088
|
image?: React__default.ReactElement;
|
2082
2089
|
}
|
2083
|
-
interface IOnboardingArrangementStep {
|
2084
|
-
top: React__default.ReactElement;
|
2085
|
-
left: React__default.ReactElement;
|
2086
|
-
right?: React__default.ReactElement;
|
2087
|
-
image?: React__default.ReactElement;
|
2088
|
-
}
|
2089
2090
|
interface IOnboardingArrangementInformation {
|
2090
2091
|
top: React__default.ReactElement;
|
2091
2092
|
left: React__default.ReactElement;
|
@@ -2093,8 +2094,6 @@ interface IOnboardingArrangementInformation {
|
|
2093
2094
|
}
|
2094
2095
|
|
2095
2096
|
declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
|
2096
|
-
declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) => react_jsx_runtime.JSX.Element;
|
2097
|
-
declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
|
2098
2097
|
|
2099
2098
|
interface ISearchSectionFilters {
|
2100
2099
|
primary: React__default.ReactElement;
|
@@ -2262,15 +2261,19 @@ interface IModal {
|
|
2262
2261
|
size: ModalSize;
|
2263
2262
|
}
|
2264
2263
|
|
2265
|
-
declare const Modal: ({ children, size
|
2264
|
+
declare const Modal: ({ children, size }: IModal) => React__default.ReactPortal;
|
2265
|
+
|
2266
|
+
declare enum OverlaySize {
|
2267
|
+
FULL = "FULL",
|
2268
|
+
MEDIUM = "MEDIUM"
|
2269
|
+
}
|
2266
2270
|
|
2267
2271
|
interface IOverlay {
|
2268
|
-
children
|
2269
|
-
|
2270
|
-
close: React__default.ReactNode;
|
2272
|
+
children: React__default.ReactNode;
|
2273
|
+
size: OverlaySize;
|
2271
2274
|
}
|
2272
2275
|
|
2273
|
-
declare const Overlay: ({ children,
|
2276
|
+
declare const Overlay: ({ children, size }: IOverlay) => React__default.ReactPortal;
|
2274
2277
|
|
2275
2278
|
declare enum WaveType {
|
2276
2279
|
ONE = "ONE",
|
@@ -2435,11 +2438,10 @@ interface OverlayContextType {
|
|
2435
2438
|
}
|
2436
2439
|
declare const OverlayContext: React__default.Context<OverlayContextType>;
|
2437
2440
|
interface IOverlayProvider extends PropsWithChildren {
|
2438
|
-
overlay
|
2439
|
-
|
2440
|
-
close?: React__default.ReactNode;
|
2441
|
+
overlay: React__default.ReactNode;
|
2442
|
+
size?: OverlaySize;
|
2441
2443
|
}
|
2442
|
-
declare const OverlayProvider: ({ children,
|
2444
|
+
declare const OverlayProvider: ({ children, overlay, size }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2443
2445
|
|
2444
2446
|
interface ProcessingContextType {
|
2445
2447
|
isDone: boolean;
|
@@ -2554,4 +2556,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2554
2556
|
|
2555
2557
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2556
2558
|
|
2557
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, 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 IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type
|
2559
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, 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 IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteLocation, 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 ISharedSectionHeader, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusList, 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 IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementIntroduction, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, 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, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusList, StatusSectionBasic, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -1685,19 +1685,28 @@ declare const Map: {
|
|
1685
1685
|
}) => react_jsx_runtime.JSX.Element | null;
|
1686
1686
|
};
|
1687
1687
|
|
1688
|
+
interface IProgress {
|
1689
|
+
steps: number;
|
1690
|
+
activeStep: number;
|
1691
|
+
}
|
1692
|
+
|
1688
1693
|
interface IWizard {
|
1689
1694
|
children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
|
1690
1695
|
}
|
1691
1696
|
interface IWizardStep extends PropsWithChildren {
|
1692
|
-
|
1697
|
+
header?: React__default.ReactElement<IWizardHeader>;
|
1693
1698
|
controls?: React__default.ReactElement<IWizardControls>;
|
1694
1699
|
}
|
1700
|
+
interface IWizardHeader {
|
1701
|
+
top?: React__default.ReactNode;
|
1702
|
+
progress: React__default.ReactElement<IProgress>;
|
1703
|
+
}
|
1695
1704
|
interface IWizardControls {
|
1696
1705
|
back?: React__default.ReactElement<IButton>;
|
1697
1706
|
next?: React__default.ReactElement<IButton>;
|
1698
1707
|
}
|
1699
1708
|
|
1700
|
-
declare const WizardStep: ({ children,
|
1709
|
+
declare const WizardStep: ({ children, controls, header }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
1701
1710
|
|
1702
1711
|
declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_runtime.JSX.Element;
|
1703
1712
|
|
@@ -1734,7 +1743,6 @@ interface ISearchFilters extends ISearchFiltersShared {
|
|
1734
1743
|
}
|
1735
1744
|
interface ISearchFiltersOverlay {
|
1736
1745
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1737
|
-
close: React__default.ReactElement<CloseI>;
|
1738
1746
|
}
|
1739
1747
|
interface ISearchFiltersModal {
|
1740
1748
|
heading: string;
|
@@ -1775,7 +1783,6 @@ interface ISearchInputs extends ISearchInputsShared {
|
|
1775
1783
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1776
1784
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1777
1785
|
input: React__default.ReactElement<ISearchInputsOverlayInput>;
|
1778
|
-
close: React__default.ReactElement<CloseI>;
|
1779
1786
|
}
|
1780
1787
|
interface ISearchInputsOverlayContentActions {
|
1781
1788
|
clear?: React__default.ReactElement<IButton>;
|
@@ -2080,12 +2087,6 @@ interface IOnboardingArrangementIntroduction {
|
|
2080
2087
|
action?: React__default.ReactElement;
|
2081
2088
|
image?: React__default.ReactElement;
|
2082
2089
|
}
|
2083
|
-
interface IOnboardingArrangementStep {
|
2084
|
-
top: React__default.ReactElement;
|
2085
|
-
left: React__default.ReactElement;
|
2086
|
-
right?: React__default.ReactElement;
|
2087
|
-
image?: React__default.ReactElement;
|
2088
|
-
}
|
2089
2090
|
interface IOnboardingArrangementInformation {
|
2090
2091
|
top: React__default.ReactElement;
|
2091
2092
|
left: React__default.ReactElement;
|
@@ -2093,8 +2094,6 @@ interface IOnboardingArrangementInformation {
|
|
2093
2094
|
}
|
2094
2095
|
|
2095
2096
|
declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
|
2096
|
-
declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) => react_jsx_runtime.JSX.Element;
|
2097
|
-
declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
|
2098
2097
|
|
2099
2098
|
interface ISearchSectionFilters {
|
2100
2099
|
primary: React__default.ReactElement;
|
@@ -2262,15 +2261,19 @@ interface IModal {
|
|
2262
2261
|
size: ModalSize;
|
2263
2262
|
}
|
2264
2263
|
|
2265
|
-
declare const Modal: ({ children, size
|
2264
|
+
declare const Modal: ({ children, size }: IModal) => React__default.ReactPortal;
|
2265
|
+
|
2266
|
+
declare enum OverlaySize {
|
2267
|
+
FULL = "FULL",
|
2268
|
+
MEDIUM = "MEDIUM"
|
2269
|
+
}
|
2266
2270
|
|
2267
2271
|
interface IOverlay {
|
2268
|
-
children
|
2269
|
-
|
2270
|
-
close: React__default.ReactNode;
|
2272
|
+
children: React__default.ReactNode;
|
2273
|
+
size: OverlaySize;
|
2271
2274
|
}
|
2272
2275
|
|
2273
|
-
declare const Overlay: ({ children,
|
2276
|
+
declare const Overlay: ({ children, size }: IOverlay) => React__default.ReactPortal;
|
2274
2277
|
|
2275
2278
|
declare enum WaveType {
|
2276
2279
|
ONE = "ONE",
|
@@ -2435,11 +2438,10 @@ interface OverlayContextType {
|
|
2435
2438
|
}
|
2436
2439
|
declare const OverlayContext: React__default.Context<OverlayContextType>;
|
2437
2440
|
interface IOverlayProvider extends PropsWithChildren {
|
2438
|
-
overlay
|
2439
|
-
|
2440
|
-
close?: React__default.ReactNode;
|
2441
|
+
overlay: React__default.ReactNode;
|
2442
|
+
size?: OverlaySize;
|
2441
2443
|
}
|
2442
|
-
declare const OverlayProvider: ({ children,
|
2444
|
+
declare const OverlayProvider: ({ children, overlay, size }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2443
2445
|
|
2444
2446
|
interface ProcessingContextType {
|
2445
2447
|
isDone: boolean;
|
@@ -2554,4 +2556,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2554
2556
|
|
2555
2557
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2556
2558
|
|
2557
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, 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 IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type
|
2559
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, 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 IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteLocation, 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 ISharedSectionHeader, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusList, 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 IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementIntroduction, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, 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, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusList, StatusSectionBasic, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|