@tactics/lokaal-loket 0.0.142 → 0.0.144
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +739 -615
- package/build/index.d.cts +69 -14
- package/build/index.d.ts +69 -14
- package/build/index.js +549 -434
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -104,6 +104,21 @@ interface IBadge {
|
|
104
104
|
|
105
105
|
declare const Badge: ({ type, screenReaderText, size }: IBadge) => react_jsx_runtime.JSX.Element;
|
106
106
|
|
107
|
+
declare enum LabelSize {
|
108
|
+
DEFAULT = "DEFAULT",
|
109
|
+
LARGE = "LARGE"
|
110
|
+
}
|
111
|
+
|
112
|
+
declare const Icon: ({ size, type, screenReaderText, context }: IIcon) => react_jsx_runtime.JSX.Element;
|
113
|
+
|
114
|
+
interface ILabel {
|
115
|
+
iconType?: IconType;
|
116
|
+
size?: LabelSize;
|
117
|
+
label: string;
|
118
|
+
}
|
119
|
+
|
120
|
+
declare const Label: ({ iconType, label, size }: ILabel) => react_jsx_runtime.JSX.Element;
|
121
|
+
|
107
122
|
declare enum LogoSize {
|
108
123
|
SMALL = "SMALL",
|
109
124
|
MEDIUM = "MEDIUM"
|
@@ -631,8 +646,6 @@ interface InlineSelectI<T> {
|
|
631
646
|
|
632
647
|
declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
|
633
648
|
|
634
|
-
declare const Icon: ({ size, type, screenReaderText, context }: IIcon) => react_jsx_runtime.JSX.Element;
|
635
|
-
|
636
649
|
type SetState<T> = React$1.Dispatch<React$1.SetStateAction<T>>;
|
637
650
|
interface AutoCompleteContextType<T> {
|
638
651
|
input: string;
|
@@ -1231,17 +1244,6 @@ declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => n
|
|
1231
1244
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1232
1245
|
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1233
1246
|
|
1234
|
-
declare enum LabelSize {
|
1235
|
-
DEFAULT = "DEFAULT",
|
1236
|
-
LARGE = "LARGE"
|
1237
|
-
}
|
1238
|
-
|
1239
|
-
interface ILabel {
|
1240
|
-
iconType?: IconType;
|
1241
|
-
size?: LabelSize;
|
1242
|
-
label: string;
|
1243
|
-
}
|
1244
|
-
|
1245
1247
|
interface ICard {
|
1246
1248
|
swipe?: React$1.ReactNode;
|
1247
1249
|
badge: React$1.ReactElement<IBadge>;
|
@@ -1321,6 +1323,57 @@ interface IDetailsSectionHeader {
|
|
1321
1323
|
|
1322
1324
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1323
1325
|
|
1326
|
+
interface IDetailsSectionBack {
|
1327
|
+
link: React$1.ReactElement<ILink>;
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
1331
|
+
|
1332
|
+
interface IDetailsSectionGeneral {
|
1333
|
+
info: React$1.ReactElement<IPlainText>;
|
1334
|
+
contactData: IContactData[];
|
1335
|
+
}
|
1336
|
+
interface IContactData {
|
1337
|
+
title: string;
|
1338
|
+
data: React$1.ReactElement<ILabeledIcon>[];
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
1342
|
+
|
1343
|
+
interface IDetailsSectionFacilities {
|
1344
|
+
title: string;
|
1345
|
+
facilities: React$1.ReactElement<ITerm>[];
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
1349
|
+
|
1350
|
+
interface IDetailsSectionPrice {
|
1351
|
+
title: string;
|
1352
|
+
prices: IPriceData[];
|
1353
|
+
info: React$1.ReactElement<IPlainText>;
|
1354
|
+
}
|
1355
|
+
interface IPriceData {
|
1356
|
+
title: string;
|
1357
|
+
data: React$1.ReactElement<ITable>;
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
1361
|
+
|
1362
|
+
interface IDetailsSectionVacation {
|
1363
|
+
title: string;
|
1364
|
+
vacations: React$1.ReactElement<ITable>;
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
1368
|
+
|
1369
|
+
interface IDetailsSectionHours {
|
1370
|
+
title: string;
|
1371
|
+
hours: React$1.ReactElement<ITable>;
|
1372
|
+
info: React$1.ReactElement<IPlainText>;
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1376
|
+
|
1324
1377
|
interface IOnboardingArrangementIntroduction {
|
1325
1378
|
top: React$1.ReactElement;
|
1326
1379
|
left: React$1.ReactElement;
|
@@ -1591,6 +1644,8 @@ declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx
|
|
1591
1644
|
|
1592
1645
|
declare const useIsProcessing: () => boolean;
|
1593
1646
|
|
1647
|
+
declare const useProcessing: () => ProcessingContextType;
|
1648
|
+
|
1594
1649
|
interface GoogleProcessingProviderProps extends PropsWithChildren {
|
1595
1650
|
apiKey: string;
|
1596
1651
|
mapId: string;
|
@@ -1679,4 +1734,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1679
1734
|
|
1680
1735
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1681
1736
|
|
1682
|
-
export { Accordeon, AccordeonContext, 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, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionHeader, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesLibraryContext, GooglePlacesLibraryProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionHeader, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, 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 IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlacesLibrary, useIsGoogleProcessing, useIsProcessing };
|
1737
|
+
export { Accordeon, AccordeonContext, 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, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesLibraryContext, GooglePlacesLibraryProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, 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 IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlacesLibrary, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -104,6 +104,21 @@ interface IBadge {
|
|
104
104
|
|
105
105
|
declare const Badge: ({ type, screenReaderText, size }: IBadge) => react_jsx_runtime.JSX.Element;
|
106
106
|
|
107
|
+
declare enum LabelSize {
|
108
|
+
DEFAULT = "DEFAULT",
|
109
|
+
LARGE = "LARGE"
|
110
|
+
}
|
111
|
+
|
112
|
+
declare const Icon: ({ size, type, screenReaderText, context }: IIcon) => react_jsx_runtime.JSX.Element;
|
113
|
+
|
114
|
+
interface ILabel {
|
115
|
+
iconType?: IconType;
|
116
|
+
size?: LabelSize;
|
117
|
+
label: string;
|
118
|
+
}
|
119
|
+
|
120
|
+
declare const Label: ({ iconType, label, size }: ILabel) => react_jsx_runtime.JSX.Element;
|
121
|
+
|
107
122
|
declare enum LogoSize {
|
108
123
|
SMALL = "SMALL",
|
109
124
|
MEDIUM = "MEDIUM"
|
@@ -631,8 +646,6 @@ interface InlineSelectI<T> {
|
|
631
646
|
|
632
647
|
declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
|
633
648
|
|
634
|
-
declare const Icon: ({ size, type, screenReaderText, context }: IIcon) => react_jsx_runtime.JSX.Element;
|
635
|
-
|
636
649
|
type SetState<T> = React$1.Dispatch<React$1.SetStateAction<T>>;
|
637
650
|
interface AutoCompleteContextType<T> {
|
638
651
|
input: string;
|
@@ -1231,17 +1244,6 @@ declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => n
|
|
1231
1244
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1232
1245
|
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1233
1246
|
|
1234
|
-
declare enum LabelSize {
|
1235
|
-
DEFAULT = "DEFAULT",
|
1236
|
-
LARGE = "LARGE"
|
1237
|
-
}
|
1238
|
-
|
1239
|
-
interface ILabel {
|
1240
|
-
iconType?: IconType;
|
1241
|
-
size?: LabelSize;
|
1242
|
-
label: string;
|
1243
|
-
}
|
1244
|
-
|
1245
1247
|
interface ICard {
|
1246
1248
|
swipe?: React$1.ReactNode;
|
1247
1249
|
badge: React$1.ReactElement<IBadge>;
|
@@ -1321,6 +1323,57 @@ interface IDetailsSectionHeader {
|
|
1321
1323
|
|
1322
1324
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1323
1325
|
|
1326
|
+
interface IDetailsSectionBack {
|
1327
|
+
link: React$1.ReactElement<ILink>;
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
1331
|
+
|
1332
|
+
interface IDetailsSectionGeneral {
|
1333
|
+
info: React$1.ReactElement<IPlainText>;
|
1334
|
+
contactData: IContactData[];
|
1335
|
+
}
|
1336
|
+
interface IContactData {
|
1337
|
+
title: string;
|
1338
|
+
data: React$1.ReactElement<ILabeledIcon>[];
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
1342
|
+
|
1343
|
+
interface IDetailsSectionFacilities {
|
1344
|
+
title: string;
|
1345
|
+
facilities: React$1.ReactElement<ITerm>[];
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
1349
|
+
|
1350
|
+
interface IDetailsSectionPrice {
|
1351
|
+
title: string;
|
1352
|
+
prices: IPriceData[];
|
1353
|
+
info: React$1.ReactElement<IPlainText>;
|
1354
|
+
}
|
1355
|
+
interface IPriceData {
|
1356
|
+
title: string;
|
1357
|
+
data: React$1.ReactElement<ITable>;
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
1361
|
+
|
1362
|
+
interface IDetailsSectionVacation {
|
1363
|
+
title: string;
|
1364
|
+
vacations: React$1.ReactElement<ITable>;
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
1368
|
+
|
1369
|
+
interface IDetailsSectionHours {
|
1370
|
+
title: string;
|
1371
|
+
hours: React$1.ReactElement<ITable>;
|
1372
|
+
info: React$1.ReactElement<IPlainText>;
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1376
|
+
|
1324
1377
|
interface IOnboardingArrangementIntroduction {
|
1325
1378
|
top: React$1.ReactElement;
|
1326
1379
|
left: React$1.ReactElement;
|
@@ -1591,6 +1644,8 @@ declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx
|
|
1591
1644
|
|
1592
1645
|
declare const useIsProcessing: () => boolean;
|
1593
1646
|
|
1647
|
+
declare const useProcessing: () => ProcessingContextType;
|
1648
|
+
|
1594
1649
|
interface GoogleProcessingProviderProps extends PropsWithChildren {
|
1595
1650
|
apiKey: string;
|
1596
1651
|
mapId: string;
|
@@ -1679,4 +1734,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1679
1734
|
|
1680
1735
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1681
1736
|
|
1682
|
-
export { Accordeon, AccordeonContext, 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, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionHeader, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesLibraryContext, GooglePlacesLibraryProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionHeader, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, 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 IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlacesLibrary, useIsGoogleProcessing, useIsProcessing };
|
1737
|
+
export { Accordeon, AccordeonContext, 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, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesLibraryContext, GooglePlacesLibraryProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, 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 IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlacesLibrary, useIsGoogleProcessing, useIsProcessing, useProcessing };
|