@tactics/lokaal-loket 0.0.317 → 0.0.319

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
- import React__default, { PropsWithChildren, Ref, ReactElement, ReactNode, FC } from 'react';
3
+ import React__default, { PropsWithChildren, Ref, ReactNode, FC } from 'react';
4
4
  import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
5
5
  export { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
6
6
  import { Feature as Feature$1, Point, LineString } from 'geojson';
@@ -9,51 +9,6 @@ import { AsyncResult } from '@tactics/js-monad';
9
9
  import { ThemeMode } from '@tactics/tacky';
10
10
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
11
11
 
12
- interface IDaySelect {
13
- onChange: (value: number[]) => void;
14
- monLabel: string;
15
- tueLabel: string;
16
- wedLabel: string;
17
- thuLabel: string;
18
- friLabel: string;
19
- satLabel: string;
20
- sunLabel: string;
21
- selectedDays: number[];
22
- }
23
-
24
- declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, friLabel, satLabel, sunLabel, selectedDays, }: IDaySelect) => react_jsx_runtime.JSX.Element;
25
-
26
- interface OpeningHoursSelectHours {
27
- start: string;
28
- end: string;
29
- }
30
- interface IOpeningHoursSelect {
31
- selected?: OpeningHoursSelectHours;
32
- onChange: (value: OpeningHoursSelectHours) => void;
33
- }
34
-
35
- declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
36
-
37
- interface IToggle {
38
- onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
39
- value: string;
40
- ariaLabel?: string;
41
- label: string;
42
- name: string;
43
- checked?: boolean;
44
- defaultChecked?: boolean;
45
- }
46
-
47
- declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
48
-
49
- interface OpeninghoursI {
50
- hours: React__default.ReactElement<IOpeningHoursSelect>;
51
- days: React__default.ReactElement<IDaySelect>;
52
- toggle?: React__default.ReactElement<IToggle>;
53
- }
54
-
55
- declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
56
-
57
12
  declare enum IconContext {
58
13
  STANDARD = "STANDARD",
59
14
  SUPPORTING = "SUPPORTING",
@@ -859,26 +814,6 @@ interface IBigPick extends IBigPickBase {
859
814
 
860
815
  declare const BigPick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IBigPick) => react_jsx_runtime.JSX.Element;
861
816
 
862
- interface SelectEvent<T> {
863
- selected: T;
864
- }
865
- interface SelectChangeEvent<T> extends SelectEvent<T> {
866
- }
867
- interface SelectBlurEvent<T> extends SelectEvent<T> {
868
- }
869
- interface SelectFocusEvent<T> extends SelectEvent<T> {
870
- }
871
-
872
- interface InlineSelectI<T> {
873
- options: T[];
874
- defaultIndex: number;
875
- optionToDisplay: (option: T) => React__default.ReactNode;
876
- optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
877
- onChange?: (e: SelectChangeEvent<T>) => void;
878
- }
879
-
880
- declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
881
-
882
817
  type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
883
818
  interface AutoCompleteContextType<T> {
884
819
  input: string;
@@ -1154,6 +1089,18 @@ interface IColoredBox {
1154
1089
 
1155
1090
  declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
1156
1091
 
1092
+ interface IToggle {
1093
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
1094
+ value: string;
1095
+ ariaLabel?: string;
1096
+ label: string;
1097
+ name: string;
1098
+ checked?: boolean;
1099
+ defaultChecked?: boolean;
1100
+ }
1101
+
1102
+ declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
1103
+
1157
1104
  interface INoResults {
1158
1105
  title: string;
1159
1106
  subtitle?: string;
@@ -1253,20 +1200,23 @@ declare const BlockRadio: {
1253
1200
  Group: ({ direction, children }: IBlockRadioGroup) => react_jsx_runtime.JSX.Element;
1254
1201
  };
1255
1202
 
1256
- declare enum CompactNavigationContext {
1257
- OPEN = "OPEN",
1258
- CLOSED = "CLOSED"
1203
+ interface IOverlayNavigation extends IOverlayNavigationBase {
1259
1204
  }
1260
-
1261
- interface ICompactNavigation extends ICompactNavigationBase {
1262
- context?: CompactNavigationContext;
1205
+ interface IOverlayNavigationHeader {
1206
+ branding: React__default.ReactNode;
1207
+ contextualArea?: React__default.ReactNode;
1263
1208
  }
1264
- interface ICompactNavigationBase {
1265
- toggleLabel: string;
1209
+ interface IOverlayNavigationFooter {
1266
1210
  children?: React__default.ReactNode;
1267
- footer?: React__default.ReactNode;
1211
+ title?: string;
1212
+ description?: string;
1268
1213
  }
1269
- interface ICompactNavigationItem {
1214
+ interface IOverlayNavigationBase {
1215
+ header: React__default.ReactElement<IOverlayNavigationHeader>;
1216
+ children?: React__default.ReactNode;
1217
+ footer?: React__default.ReactElement<IOverlayNavigationFooter>;
1218
+ }
1219
+ interface IOverlayNavigationItem {
1270
1220
  label: string;
1271
1221
  href: string;
1272
1222
  onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
@@ -1274,20 +1224,12 @@ interface ICompactNavigationItem {
1274
1224
  icon: React__default.ReactElement<IIcon>;
1275
1225
  }
1276
1226
 
1277
- declare const CompactNavigation: {
1278
- ({ children, context, toggleLabel, footer }: ICompactNavigation): react_jsx_runtime.JSX.Element;
1279
- Item: ({ label, onClick, isActive, href, icon }: ICompactNavigationItem) => react_jsx_runtime.JSX.Element;
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;
1280
1230
  };
1281
-
1282
- interface ICompactFooter extends ICompactFooterBase {
1283
- }
1284
- interface ICompactFooterBase {
1285
- children?: React__default.ReactNode;
1286
- title?: string;
1287
- description?: string;
1288
- }
1289
-
1290
- 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;
1291
1233
 
1292
1234
  interface IDetailsBase {
1293
1235
  children?: React__default.ReactNode;
@@ -1393,22 +1335,46 @@ interface IPlaceholderPhoto {
1393
1335
 
1394
1336
  declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
1395
1337
 
1338
+ interface OpeningHoursSelectHours {
1339
+ start: string;
1340
+ end: string;
1341
+ }
1342
+ interface IOpeningHoursSelect {
1343
+ selected?: OpeningHoursSelectHours;
1344
+ onChange: (value: OpeningHoursSelectHours) => void;
1345
+ }
1346
+
1347
+ declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
1348
+
1349
+ interface IDaySelect {
1350
+ onChange: (value: number[]) => void;
1351
+ monLabel: string;
1352
+ tueLabel: string;
1353
+ wedLabel: string;
1354
+ thuLabel: string;
1355
+ friLabel: string;
1356
+ satLabel: string;
1357
+ sunLabel: string;
1358
+ selectedDays: number[];
1359
+ }
1360
+
1361
+ declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, friLabel, satLabel, sunLabel, selectedDays, }: IDaySelect) => react_jsx_runtime.JSX.Element;
1362
+
1396
1363
  interface INavigation extends INavigationBase {
1397
1364
  }
1398
1365
  interface INavigationBase {
1399
1366
  children?: React__default.ReactNode;
1400
- logo: React__default.ReactNode;
1401
1367
  }
1402
1368
  interface INavigationItem {
1403
1369
  label: string;
1404
1370
  href: string;
1405
1371
  onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
1406
1372
  isActive?: boolean;
1407
- icon: React__default.ReactElement<IIcon>;
1373
+ icon?: React__default.ReactElement<IIcon>;
1408
1374
  }
1409
1375
 
1410
1376
  declare const Navigation: {
1411
- ({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
1377
+ ({ children }: INavigation): react_jsx_runtime.JSX.Element;
1412
1378
  Item: ({ label, onClick, isActive, href, icon }: INavigationItem) => react_jsx_runtime.JSX.Element;
1413
1379
  };
1414
1380
 
@@ -1446,13 +1412,6 @@ interface IRecords {
1446
1412
 
1447
1413
  declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
1448
1414
 
1449
- interface IStatusList {
1450
- children?: ReactElement<IStatusCompact> | ReactElement<IStatusCompact>[];
1451
- withCount: boolean;
1452
- }
1453
-
1454
- declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_runtime.JSX.Element;
1455
-
1456
1415
  interface ITopNavigation extends ITopNavigationBase {
1457
1416
  }
1458
1417
  interface ITopNavigationBase {
@@ -1483,14 +1442,6 @@ interface IOnboardingButton extends IButtonMinimal {
1483
1442
  declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
1484
1443
  declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
1485
1444
 
1486
- interface IQuickSearch {
1487
- heading: string;
1488
- content: React__default.ReactNode;
1489
- action: React__default.ReactNode;
1490
- }
1491
-
1492
- declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
1493
-
1494
1445
  interface IGallery {
1495
1446
  images: string[];
1496
1447
  }
@@ -1647,36 +1598,6 @@ interface IStatBlock {
1647
1598
 
1648
1599
  declare const StatBlock: (props: IStatBlock) => react_jsx_runtime.JSX.Element;
1649
1600
 
1650
- interface IHeaderMobile {
1651
- profileNavigation: React__default.ReactNode;
1652
- compactNavigation: React__default.ReactNode;
1653
- }
1654
- interface IHeaderTop {
1655
- brand: React__default.ReactNode;
1656
- topNavigation: React__default.ReactNode;
1657
- }
1658
- interface IHeaderBottom extends IHeaderMobile {
1659
- navigation: React__default.ReactNode;
1660
- brand: React__default.ReactNode;
1661
- stickOnScroll: boolean;
1662
- }
1663
- interface IHeaderAlternate extends IHeaderMobile {
1664
- navigation: React__default.ReactNode;
1665
- brand: React__default.ReactNode;
1666
- }
1667
-
1668
- interface HeaderContextType {
1669
- isSticky: boolean;
1670
- setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
1671
- showLogo: boolean;
1672
- setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
1673
- }
1674
- declare const HeaderContext: React__default.Context<HeaderContextType>;
1675
-
1676
- declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
1677
- declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
1678
- declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
1679
-
1680
1601
  interface IFooter {
1681
1602
  top: React__default.ReactNode;
1682
1603
  left: React__default.ReactNode;
@@ -1869,6 +1790,14 @@ declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
1869
1790
 
1870
1791
  declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
1871
1792
 
1793
+ interface OpeninghoursI {
1794
+ hours: React__default.ReactElement<IOpeningHoursSelect>;
1795
+ days: React__default.ReactElement<IDaySelect>;
1796
+ toggle?: React__default.ReactElement<IToggle>;
1797
+ }
1798
+
1799
+ declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
1800
+
1872
1801
  interface IFlyoutArrangementSplit {
1873
1802
  top?: React__default.ReactElement;
1874
1803
  left: React__default.ReactElement;
@@ -2127,15 +2056,6 @@ interface IHomeSectionLeftSplit {
2127
2056
 
2128
2057
  declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
2129
2058
 
2130
- interface ISharedSectionHeader {
2131
- top?: React__default.ReactElement;
2132
- bottom: React__default.ReactElement;
2133
- filters?: React__default.ReactElement;
2134
- }
2135
-
2136
- declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
2137
- declare const SharedSectionHeaderAlternate: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
2138
-
2139
2059
  interface ISharedSectionFooter {
2140
2060
  content: React__default.ReactElement;
2141
2061
  }
@@ -2293,9 +2213,10 @@ declare enum OverlaySize {
2293
2213
  interface IOverlay {
2294
2214
  children: React__default.ReactNode;
2295
2215
  size: OverlaySize;
2216
+ transition: boolean;
2296
2217
  }
2297
2218
 
2298
- declare const Overlay: ({ children, size }: IOverlay) => React__default.ReactPortal;
2219
+ declare const Overlay: ({ children, size, transition }: IOverlay) => React__default.ReactPortal;
2299
2220
 
2300
2221
  declare enum WaveType {
2301
2222
  ONE = "ONE",
@@ -2462,8 +2383,9 @@ declare const OverlayContext: React__default.Context<OverlayContextType>;
2462
2383
  interface IOverlayProvider extends PropsWithChildren {
2463
2384
  overlay: React__default.ReactNode;
2464
2385
  size?: OverlaySize;
2386
+ transition?: boolean;
2465
2387
  }
2466
- 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;
2467
2389
 
2468
2390
  interface ProcessingContextType {
2469
2391
  isDone: boolean;
@@ -2568,9 +2490,19 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
2568
2490
  declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
2569
2491
  declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
2570
2492
 
2493
+ interface SelectEvent<T> {
2494
+ selected: T;
2495
+ }
2496
+ interface SelectChangeEvent<T> extends SelectEvent<T> {
2497
+ }
2498
+ interface SelectBlurEvent<T> extends SelectEvent<T> {
2499
+ }
2500
+ interface SelectFocusEvent<T> extends SelectEvent<T> {
2501
+ }
2502
+
2571
2503
  declare const CardDaycareExample: () => react_jsx_runtime.JSX.Element;
2572
2504
  declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
2573
2505
 
2574
2506
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
2575
2507
 
2576
- 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, 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, 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 IForm, 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 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 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 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, 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, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, 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, 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, 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 };
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 };