@tactics/lokaal-loket 0.0.318 → 0.0.319
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +703 -761
- package/build/index.d.cts +25 -68
- package/build/index.d.ts +25 -68
- package/build/index.js +655 -713
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1200,20 +1200,23 @@ declare const BlockRadio: {
|
|
1200
1200
|
Group: ({ direction, children }: IBlockRadioGroup) => react_jsx_runtime.JSX.Element;
|
1201
1201
|
};
|
1202
1202
|
|
1203
|
-
|
1204
|
-
OPEN = "OPEN",
|
1205
|
-
CLOSED = "CLOSED"
|
1203
|
+
interface IOverlayNavigation extends IOverlayNavigationBase {
|
1206
1204
|
}
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1205
|
+
interface IOverlayNavigationHeader {
|
1206
|
+
branding: React__default.ReactNode;
|
1207
|
+
contextualArea?: React__default.ReactNode;
|
1208
|
+
}
|
1209
|
+
interface IOverlayNavigationFooter {
|
1210
|
+
children?: React__default.ReactNode;
|
1211
|
+
title?: string;
|
1212
|
+
description?: string;
|
1210
1213
|
}
|
1211
|
-
interface
|
1212
|
-
|
1214
|
+
interface IOverlayNavigationBase {
|
1215
|
+
header: React__default.ReactElement<IOverlayNavigationHeader>;
|
1213
1216
|
children?: React__default.ReactNode;
|
1214
|
-
footer?: React__default.
|
1217
|
+
footer?: React__default.ReactElement<IOverlayNavigationFooter>;
|
1215
1218
|
}
|
1216
|
-
interface
|
1219
|
+
interface IOverlayNavigationItem {
|
1217
1220
|
label: string;
|
1218
1221
|
href: string;
|
1219
1222
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
@@ -1221,20 +1224,12 @@ interface ICompactNavigationItem {
|
|
1221
1224
|
icon: React__default.ReactElement<IIcon>;
|
1222
1225
|
}
|
1223
1226
|
|
1224
|
-
declare const
|
1225
|
-
({
|
1226
|
-
Item: ({ label, onClick, isActive, href, icon }:
|
1227
|
+
declare const OverlayNavigation: {
|
1228
|
+
({ header, children, footer }: IOverlayNavigation): react_jsx_runtime.JSX.Element;
|
1229
|
+
Item: ({ label, onClick, isActive, href, icon }: IOverlayNavigationItem) => react_jsx_runtime.JSX.Element;
|
1227
1230
|
};
|
1228
|
-
|
1229
|
-
|
1230
|
-
}
|
1231
|
-
interface ICompactFooterBase {
|
1232
|
-
children?: React__default.ReactNode;
|
1233
|
-
title?: string;
|
1234
|
-
description?: string;
|
1235
|
-
}
|
1236
|
-
|
1237
|
-
declare const CompactFooter: ({ children, title, description }: ICompactFooter) => react_jsx_runtime.JSX.Element;
|
1231
|
+
declare const OverlayNavigationHeader: ({ branding, contextualArea }: IOverlayNavigationHeader) => react_jsx_runtime.JSX.Element;
|
1232
|
+
declare const OverlayNavigationFooter: ({ children, title, description }: IOverlayNavigationFooter) => react_jsx_runtime.JSX.Element;
|
1238
1233
|
|
1239
1234
|
interface IDetailsBase {
|
1240
1235
|
children?: React__default.ReactNode;
|
@@ -1369,18 +1364,17 @@ interface INavigation extends INavigationBase {
|
|
1369
1364
|
}
|
1370
1365
|
interface INavigationBase {
|
1371
1366
|
children?: React__default.ReactNode;
|
1372
|
-
logo: React__default.ReactNode;
|
1373
1367
|
}
|
1374
1368
|
interface INavigationItem {
|
1375
1369
|
label: string;
|
1376
1370
|
href: string;
|
1377
1371
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1378
1372
|
isActive?: boolean;
|
1379
|
-
icon
|
1373
|
+
icon?: React__default.ReactElement<IIcon>;
|
1380
1374
|
}
|
1381
1375
|
|
1382
1376
|
declare const Navigation: {
|
1383
|
-
({ children
|
1377
|
+
({ children }: INavigation): react_jsx_runtime.JSX.Element;
|
1384
1378
|
Item: ({ label, onClick, isActive, href, icon }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
1385
1379
|
};
|
1386
1380
|
|
@@ -1604,36 +1598,6 @@ interface IStatBlock {
|
|
1604
1598
|
|
1605
1599
|
declare const StatBlock: (props: IStatBlock) => react_jsx_runtime.JSX.Element;
|
1606
1600
|
|
1607
|
-
interface IHeaderMobile {
|
1608
|
-
profileNavigation: React__default.ReactNode;
|
1609
|
-
compactNavigation: React__default.ReactNode;
|
1610
|
-
}
|
1611
|
-
interface IHeaderTop {
|
1612
|
-
brand: React__default.ReactNode;
|
1613
|
-
topNavigation: React__default.ReactNode;
|
1614
|
-
}
|
1615
|
-
interface IHeaderBottom extends IHeaderMobile {
|
1616
|
-
navigation: React__default.ReactNode;
|
1617
|
-
brand: React__default.ReactNode;
|
1618
|
-
stickOnScroll: boolean;
|
1619
|
-
}
|
1620
|
-
interface IHeaderAlternate extends IHeaderMobile {
|
1621
|
-
navigation: React__default.ReactNode;
|
1622
|
-
brand: React__default.ReactNode;
|
1623
|
-
}
|
1624
|
-
|
1625
|
-
interface HeaderContextType {
|
1626
|
-
isSticky: boolean;
|
1627
|
-
setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1628
|
-
showLogo: boolean;
|
1629
|
-
setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1630
|
-
}
|
1631
|
-
declare const HeaderContext: React__default.Context<HeaderContextType>;
|
1632
|
-
|
1633
|
-
declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
|
1634
|
-
declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
|
1635
|
-
declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
|
1636
|
-
|
1637
1601
|
interface IFooter {
|
1638
1602
|
top: React__default.ReactNode;
|
1639
1603
|
left: React__default.ReactNode;
|
@@ -2092,15 +2056,6 @@ interface IHomeSectionLeftSplit {
|
|
2092
2056
|
|
2093
2057
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
2094
2058
|
|
2095
|
-
interface ISharedSectionHeader {
|
2096
|
-
top?: React__default.ReactElement;
|
2097
|
-
bottom: React__default.ReactElement;
|
2098
|
-
filters?: React__default.ReactElement;
|
2099
|
-
}
|
2100
|
-
|
2101
|
-
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
2102
|
-
declare const SharedSectionHeaderAlternate: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
2103
|
-
|
2104
2059
|
interface ISharedSectionFooter {
|
2105
2060
|
content: React__default.ReactElement;
|
2106
2061
|
}
|
@@ -2258,9 +2213,10 @@ declare enum OverlaySize {
|
|
2258
2213
|
interface IOverlay {
|
2259
2214
|
children: React__default.ReactNode;
|
2260
2215
|
size: OverlaySize;
|
2216
|
+
transition: boolean;
|
2261
2217
|
}
|
2262
2218
|
|
2263
|
-
declare const Overlay: ({ children, size }: IOverlay) => React__default.ReactPortal;
|
2219
|
+
declare const Overlay: ({ children, size, transition }: IOverlay) => React__default.ReactPortal;
|
2264
2220
|
|
2265
2221
|
declare enum WaveType {
|
2266
2222
|
ONE = "ONE",
|
@@ -2427,8 +2383,9 @@ declare const OverlayContext: React__default.Context<OverlayContextType>;
|
|
2427
2383
|
interface IOverlayProvider extends PropsWithChildren {
|
2428
2384
|
overlay: React__default.ReactNode;
|
2429
2385
|
size?: OverlaySize;
|
2386
|
+
transition?: boolean;
|
2430
2387
|
}
|
2431
|
-
declare const OverlayProvider: ({ children, overlay, size }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2388
|
+
declare const OverlayProvider: ({ children, overlay, size, transition }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2432
2389
|
|
2433
2390
|
interface ProcessingContextType {
|
2434
2391
|
isDone: boolean;
|
@@ -2548,4 +2505,4 @@ declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
|
2548
2505
|
|
2549
2506
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2550
2507
|
|
2551
|
-
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,
|
2508
|
+
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, 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, 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, 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 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 IForm, type IFormElement, type IFormMessage, type IGallery, 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 IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, 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 IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, 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 IToggle, type ITopNavigation, type ITopNavigationItemBase, 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, Information, InformationBackground, InformationTooltip, InformationVariant, 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, 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, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, 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, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, 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
@@ -1200,20 +1200,23 @@ declare const BlockRadio: {
|
|
1200
1200
|
Group: ({ direction, children }: IBlockRadioGroup) => react_jsx_runtime.JSX.Element;
|
1201
1201
|
};
|
1202
1202
|
|
1203
|
-
|
1204
|
-
OPEN = "OPEN",
|
1205
|
-
CLOSED = "CLOSED"
|
1203
|
+
interface IOverlayNavigation extends IOverlayNavigationBase {
|
1206
1204
|
}
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1205
|
+
interface IOverlayNavigationHeader {
|
1206
|
+
branding: React__default.ReactNode;
|
1207
|
+
contextualArea?: React__default.ReactNode;
|
1208
|
+
}
|
1209
|
+
interface IOverlayNavigationFooter {
|
1210
|
+
children?: React__default.ReactNode;
|
1211
|
+
title?: string;
|
1212
|
+
description?: string;
|
1210
1213
|
}
|
1211
|
-
interface
|
1212
|
-
|
1214
|
+
interface IOverlayNavigationBase {
|
1215
|
+
header: React__default.ReactElement<IOverlayNavigationHeader>;
|
1213
1216
|
children?: React__default.ReactNode;
|
1214
|
-
footer?: React__default.
|
1217
|
+
footer?: React__default.ReactElement<IOverlayNavigationFooter>;
|
1215
1218
|
}
|
1216
|
-
interface
|
1219
|
+
interface IOverlayNavigationItem {
|
1217
1220
|
label: string;
|
1218
1221
|
href: string;
|
1219
1222
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
@@ -1221,20 +1224,12 @@ interface ICompactNavigationItem {
|
|
1221
1224
|
icon: React__default.ReactElement<IIcon>;
|
1222
1225
|
}
|
1223
1226
|
|
1224
|
-
declare const
|
1225
|
-
({
|
1226
|
-
Item: ({ label, onClick, isActive, href, icon }:
|
1227
|
+
declare const OverlayNavigation: {
|
1228
|
+
({ header, children, footer }: IOverlayNavigation): react_jsx_runtime.JSX.Element;
|
1229
|
+
Item: ({ label, onClick, isActive, href, icon }: IOverlayNavigationItem) => react_jsx_runtime.JSX.Element;
|
1227
1230
|
};
|
1228
|
-
|
1229
|
-
|
1230
|
-
}
|
1231
|
-
interface ICompactFooterBase {
|
1232
|
-
children?: React__default.ReactNode;
|
1233
|
-
title?: string;
|
1234
|
-
description?: string;
|
1235
|
-
}
|
1236
|
-
|
1237
|
-
declare const CompactFooter: ({ children, title, description }: ICompactFooter) => react_jsx_runtime.JSX.Element;
|
1231
|
+
declare const OverlayNavigationHeader: ({ branding, contextualArea }: IOverlayNavigationHeader) => react_jsx_runtime.JSX.Element;
|
1232
|
+
declare const OverlayNavigationFooter: ({ children, title, description }: IOverlayNavigationFooter) => react_jsx_runtime.JSX.Element;
|
1238
1233
|
|
1239
1234
|
interface IDetailsBase {
|
1240
1235
|
children?: React__default.ReactNode;
|
@@ -1369,18 +1364,17 @@ interface INavigation extends INavigationBase {
|
|
1369
1364
|
}
|
1370
1365
|
interface INavigationBase {
|
1371
1366
|
children?: React__default.ReactNode;
|
1372
|
-
logo: React__default.ReactNode;
|
1373
1367
|
}
|
1374
1368
|
interface INavigationItem {
|
1375
1369
|
label: string;
|
1376
1370
|
href: string;
|
1377
1371
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1378
1372
|
isActive?: boolean;
|
1379
|
-
icon
|
1373
|
+
icon?: React__default.ReactElement<IIcon>;
|
1380
1374
|
}
|
1381
1375
|
|
1382
1376
|
declare const Navigation: {
|
1383
|
-
({ children
|
1377
|
+
({ children }: INavigation): react_jsx_runtime.JSX.Element;
|
1384
1378
|
Item: ({ label, onClick, isActive, href, icon }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
1385
1379
|
};
|
1386
1380
|
|
@@ -1604,36 +1598,6 @@ interface IStatBlock {
|
|
1604
1598
|
|
1605
1599
|
declare const StatBlock: (props: IStatBlock) => react_jsx_runtime.JSX.Element;
|
1606
1600
|
|
1607
|
-
interface IHeaderMobile {
|
1608
|
-
profileNavigation: React__default.ReactNode;
|
1609
|
-
compactNavigation: React__default.ReactNode;
|
1610
|
-
}
|
1611
|
-
interface IHeaderTop {
|
1612
|
-
brand: React__default.ReactNode;
|
1613
|
-
topNavigation: React__default.ReactNode;
|
1614
|
-
}
|
1615
|
-
interface IHeaderBottom extends IHeaderMobile {
|
1616
|
-
navigation: React__default.ReactNode;
|
1617
|
-
brand: React__default.ReactNode;
|
1618
|
-
stickOnScroll: boolean;
|
1619
|
-
}
|
1620
|
-
interface IHeaderAlternate extends IHeaderMobile {
|
1621
|
-
navigation: React__default.ReactNode;
|
1622
|
-
brand: React__default.ReactNode;
|
1623
|
-
}
|
1624
|
-
|
1625
|
-
interface HeaderContextType {
|
1626
|
-
isSticky: boolean;
|
1627
|
-
setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1628
|
-
showLogo: boolean;
|
1629
|
-
setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1630
|
-
}
|
1631
|
-
declare const HeaderContext: React__default.Context<HeaderContextType>;
|
1632
|
-
|
1633
|
-
declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
|
1634
|
-
declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
|
1635
|
-
declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
|
1636
|
-
|
1637
1601
|
interface IFooter {
|
1638
1602
|
top: React__default.ReactNode;
|
1639
1603
|
left: React__default.ReactNode;
|
@@ -2092,15 +2056,6 @@ interface IHomeSectionLeftSplit {
|
|
2092
2056
|
|
2093
2057
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
2094
2058
|
|
2095
|
-
interface ISharedSectionHeader {
|
2096
|
-
top?: React__default.ReactElement;
|
2097
|
-
bottom: React__default.ReactElement;
|
2098
|
-
filters?: React__default.ReactElement;
|
2099
|
-
}
|
2100
|
-
|
2101
|
-
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
2102
|
-
declare const SharedSectionHeaderAlternate: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
2103
|
-
|
2104
2059
|
interface ISharedSectionFooter {
|
2105
2060
|
content: React__default.ReactElement;
|
2106
2061
|
}
|
@@ -2258,9 +2213,10 @@ declare enum OverlaySize {
|
|
2258
2213
|
interface IOverlay {
|
2259
2214
|
children: React__default.ReactNode;
|
2260
2215
|
size: OverlaySize;
|
2216
|
+
transition: boolean;
|
2261
2217
|
}
|
2262
2218
|
|
2263
|
-
declare const Overlay: ({ children, size }: IOverlay) => React__default.ReactPortal;
|
2219
|
+
declare const Overlay: ({ children, size, transition }: IOverlay) => React__default.ReactPortal;
|
2264
2220
|
|
2265
2221
|
declare enum WaveType {
|
2266
2222
|
ONE = "ONE",
|
@@ -2427,8 +2383,9 @@ declare const OverlayContext: React__default.Context<OverlayContextType>;
|
|
2427
2383
|
interface IOverlayProvider extends PropsWithChildren {
|
2428
2384
|
overlay: React__default.ReactNode;
|
2429
2385
|
size?: OverlaySize;
|
2386
|
+
transition?: boolean;
|
2430
2387
|
}
|
2431
|
-
declare const OverlayProvider: ({ children, overlay, size }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2388
|
+
declare const OverlayProvider: ({ children, overlay, size, transition }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2432
2389
|
|
2433
2390
|
interface ProcessingContextType {
|
2434
2391
|
isDone: boolean;
|
@@ -2548,4 +2505,4 @@ declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
|
2548
2505
|
|
2549
2506
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2550
2507
|
|
2551
|
-
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,
|
2508
|
+
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, 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, 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, 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 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 IForm, type IFormElement, type IFormMessage, type IGallery, 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 IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, 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 IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, 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 IToggle, type ITopNavigation, type ITopNavigationItemBase, 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, Information, InformationBackground, InformationTooltip, InformationVariant, 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, 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, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, 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, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|