@tactics/lokaal-loket 0.0.240 → 0.0.241
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +957 -1058
- package/build/index.d.cts +33 -53
- package/build/index.d.ts +33 -53
- package/build/index.js +671 -769
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1489,50 +1489,6 @@ declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_run
|
|
1489
1489
|
|
1490
1490
|
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1491
1491
|
|
1492
|
-
interface ISearchBase {
|
1493
|
-
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1494
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1495
|
-
}
|
1496
|
-
interface ISearch extends ISearchBase {
|
1497
|
-
mobileLabel: string;
|
1498
|
-
mobileSubline: string;
|
1499
|
-
}
|
1500
|
-
interface ISearchStep {
|
1501
|
-
label: string;
|
1502
|
-
subline: string;
|
1503
|
-
flyout: ReactElement;
|
1504
|
-
withFigure: ReactElement<IFigure>;
|
1505
|
-
}
|
1506
|
-
interface ISearchAutocomplete<T> {
|
1507
|
-
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1508
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1509
|
-
}
|
1510
|
-
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1511
|
-
withFigure: ReactElement<IFigure>;
|
1512
|
-
label: string;
|
1513
|
-
subline: string;
|
1514
|
-
}
|
1515
|
-
interface ISearchStepAutocomplete<T> {
|
1516
|
-
options: T[];
|
1517
|
-
optionToDisplay: (option: T) => ReactNode;
|
1518
|
-
optionToRawValue: (option: T) => string;
|
1519
|
-
optionToLabel: (option: T) => string;
|
1520
|
-
label: string;
|
1521
|
-
withFigure: ReactElement<IFigure>;
|
1522
|
-
defaultValue?: string;
|
1523
|
-
onChange?: (e: AutocompleteChangeEvent) => void;
|
1524
|
-
onFocus?: (e: AutocompleteFocusEvent) => void;
|
1525
|
-
onBlur?: (e: AutocompleteBlurEvent) => void;
|
1526
|
-
debounceTime: number;
|
1527
|
-
}
|
1528
|
-
|
1529
|
-
declare const SearchStep: (props: ISearchStep) => null;
|
1530
|
-
|
1531
|
-
declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => null;
|
1532
|
-
|
1533
|
-
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1534
|
-
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1535
|
-
|
1536
1492
|
declare enum HeadingType {
|
1537
1493
|
PAGE = "PAGE",
|
1538
1494
|
FLYOUT = "FLYOUT",
|
@@ -1566,6 +1522,7 @@ interface ISearchFiltersCompact {
|
|
1566
1522
|
interface ISearchFiltersFull {
|
1567
1523
|
heading: string;
|
1568
1524
|
label?: string;
|
1525
|
+
description?: string;
|
1569
1526
|
icon: React__default.ReactElement<IIcon>;
|
1570
1527
|
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1571
1528
|
activeFilters: number;
|
@@ -1589,7 +1546,7 @@ interface ISearchFiltersCompactActionClear {
|
|
1589
1546
|
|
1590
1547
|
declare const SearchFiltersMobile: ({ icon, label, heading, filters, activeFilters, close, clear, submit, }: ISearchFiltersCompact) => react_jsx_runtime.JSX.Element;
|
1591
1548
|
|
1592
|
-
declare const SearchFiltersFull: ({ label, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1549
|
+
declare const SearchFiltersFull: ({ label, description, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1593
1550
|
|
1594
1551
|
declare const SearchFiltersMobileOverlayItem: ({ label, filter, }: ISearchFiltersCompactOverlayItem) => null;
|
1595
1552
|
|
@@ -1605,20 +1562,35 @@ interface ISearchInputs {
|
|
1605
1562
|
}
|
1606
1563
|
interface ISearchInputsFull {
|
1607
1564
|
searchOn: "location" | "route" | "name";
|
1565
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1566
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1567
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1608
1568
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1569
|
+
onChanged: (active: "location" | "route" | "name") => void;
|
1609
1570
|
}
|
1610
1571
|
interface ISearchInputsCompact {
|
1611
1572
|
searchOn: "location" | "route" | "name";
|
1612
1573
|
searchOnLabel: string;
|
1613
1574
|
searchOnDescription: string;
|
1614
|
-
location: React__default.
|
1615
|
-
route: React__default.
|
1616
|
-
name: React__default.
|
1575
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1576
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1577
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1617
1578
|
close: React__default.ReactElement<CloseI>;
|
1618
1579
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1619
1580
|
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1620
1581
|
onChanged: (active: "location" | "route" | "name") => void;
|
1621
1582
|
}
|
1583
|
+
interface ISearchInputsElement {
|
1584
|
+
selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1585
|
+
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1586
|
+
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1587
|
+
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1588
|
+
input: React__default.ReactElement<ISearchInputsItem>;
|
1589
|
+
}
|
1590
|
+
interface ISearchInputsItem {
|
1591
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1592
|
+
input: React__default.ReactNode;
|
1593
|
+
}
|
1622
1594
|
interface ISearchInputsCompactActionSubmit {
|
1623
1595
|
label: string;
|
1624
1596
|
icon: React__default.ReactElement<IIcon>;
|
@@ -1629,18 +1601,25 @@ interface ISearchInputsCompactActionClear {
|
|
1629
1601
|
icon: React__default.ReactElement<IIcon>;
|
1630
1602
|
onClear: () => void;
|
1631
1603
|
}
|
1632
|
-
interface
|
1604
|
+
interface ISearchInputsLabel {
|
1633
1605
|
label: string;
|
1634
1606
|
description?: string;
|
1635
1607
|
figure: React__default.ReactElement<IFigure>;
|
1636
|
-
|
1608
|
+
}
|
1609
|
+
interface ISearchInputsLabelWithIcon {
|
1610
|
+
label: string;
|
1611
|
+
description?: string;
|
1612
|
+
icon: React__default.ReactElement<IIcon>;
|
1613
|
+
prominent: boolean;
|
1637
1614
|
}
|
1638
1615
|
|
1639
1616
|
declare const SearchInputsMobile: ({ location, route, name, clear, submit, close, searchOn, searchOnLabel, searchOnDescription, onChanged, }: ISearchInputsCompact) => react_jsx_runtime.JSX.Element;
|
1640
1617
|
|
1641
|
-
declare const SearchInputsFull: ({ submit, searchOn }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1618
|
+
declare const SearchInputsFull: ({ location, route, name, submit, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1619
|
+
|
1620
|
+
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
1642
1621
|
|
1643
|
-
declare const
|
1622
|
+
declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
|
1644
1623
|
|
1645
1624
|
declare const SearchInputsMobileActionSubmit: ({}: ISearchInputsCompactActionSubmit) => null;
|
1646
1625
|
|
@@ -1887,6 +1866,7 @@ declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_
|
|
1887
1866
|
interface ISharedSectionHeader {
|
1888
1867
|
top?: React__default.ReactElement;
|
1889
1868
|
bottom: React__default.ReactElement;
|
1869
|
+
filters?: React__default.ReactElement;
|
1890
1870
|
}
|
1891
1871
|
|
1892
1872
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
@@ -2284,4 +2264,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2284
2264
|
|
2285
2265
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2286
2266
|
|
2287
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, 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, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 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 IGallery, 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 IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type
|
2267
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, 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, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 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 IGallery, 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 IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersCompact, type ISearchFiltersCompactOverlayItem, type ISearchInputs, type ISearchInputsCompact, type ISearchInputsCompactActionClear, type ISearchInputsCompactActionSubmit, type ISearchInputsElement, type ISearchInputsLabel, 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 IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type 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, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, SearchContext, SearchFilters, SearchFiltersFull, SearchFiltersMobile, SearchFiltersMobileActionClear, SearchFiltersMobileActionSubmit, SearchFiltersMobileOverlayItem, SearchInputs, SearchInputsElement, SearchInputsFull, SearchInputsLabel, SearchInputsMobile, SearchInputsMobileActionClear, SearchInputsMobileActionSubmit, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -1489,50 +1489,6 @@ declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_run
|
|
1489
1489
|
|
1490
1490
|
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1491
1491
|
|
1492
|
-
interface ISearchBase {
|
1493
|
-
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1494
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1495
|
-
}
|
1496
|
-
interface ISearch extends ISearchBase {
|
1497
|
-
mobileLabel: string;
|
1498
|
-
mobileSubline: string;
|
1499
|
-
}
|
1500
|
-
interface ISearchStep {
|
1501
|
-
label: string;
|
1502
|
-
subline: string;
|
1503
|
-
flyout: ReactElement;
|
1504
|
-
withFigure: ReactElement<IFigure>;
|
1505
|
-
}
|
1506
|
-
interface ISearchAutocomplete<T> {
|
1507
|
-
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1508
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1509
|
-
}
|
1510
|
-
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1511
|
-
withFigure: ReactElement<IFigure>;
|
1512
|
-
label: string;
|
1513
|
-
subline: string;
|
1514
|
-
}
|
1515
|
-
interface ISearchStepAutocomplete<T> {
|
1516
|
-
options: T[];
|
1517
|
-
optionToDisplay: (option: T) => ReactNode;
|
1518
|
-
optionToRawValue: (option: T) => string;
|
1519
|
-
optionToLabel: (option: T) => string;
|
1520
|
-
label: string;
|
1521
|
-
withFigure: ReactElement<IFigure>;
|
1522
|
-
defaultValue?: string;
|
1523
|
-
onChange?: (e: AutocompleteChangeEvent) => void;
|
1524
|
-
onFocus?: (e: AutocompleteFocusEvent) => void;
|
1525
|
-
onBlur?: (e: AutocompleteBlurEvent) => void;
|
1526
|
-
debounceTime: number;
|
1527
|
-
}
|
1528
|
-
|
1529
|
-
declare const SearchStep: (props: ISearchStep) => null;
|
1530
|
-
|
1531
|
-
declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => null;
|
1532
|
-
|
1533
|
-
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1534
|
-
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1535
|
-
|
1536
1492
|
declare enum HeadingType {
|
1537
1493
|
PAGE = "PAGE",
|
1538
1494
|
FLYOUT = "FLYOUT",
|
@@ -1566,6 +1522,7 @@ interface ISearchFiltersCompact {
|
|
1566
1522
|
interface ISearchFiltersFull {
|
1567
1523
|
heading: string;
|
1568
1524
|
label?: string;
|
1525
|
+
description?: string;
|
1569
1526
|
icon: React__default.ReactElement<IIcon>;
|
1570
1527
|
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1571
1528
|
activeFilters: number;
|
@@ -1589,7 +1546,7 @@ interface ISearchFiltersCompactActionClear {
|
|
1589
1546
|
|
1590
1547
|
declare const SearchFiltersMobile: ({ icon, label, heading, filters, activeFilters, close, clear, submit, }: ISearchFiltersCompact) => react_jsx_runtime.JSX.Element;
|
1591
1548
|
|
1592
|
-
declare const SearchFiltersFull: ({ label, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1549
|
+
declare const SearchFiltersFull: ({ label, description, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1593
1550
|
|
1594
1551
|
declare const SearchFiltersMobileOverlayItem: ({ label, filter, }: ISearchFiltersCompactOverlayItem) => null;
|
1595
1552
|
|
@@ -1605,20 +1562,35 @@ interface ISearchInputs {
|
|
1605
1562
|
}
|
1606
1563
|
interface ISearchInputsFull {
|
1607
1564
|
searchOn: "location" | "route" | "name";
|
1565
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1566
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1567
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1608
1568
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1569
|
+
onChanged: (active: "location" | "route" | "name") => void;
|
1609
1570
|
}
|
1610
1571
|
interface ISearchInputsCompact {
|
1611
1572
|
searchOn: "location" | "route" | "name";
|
1612
1573
|
searchOnLabel: string;
|
1613
1574
|
searchOnDescription: string;
|
1614
|
-
location: React__default.
|
1615
|
-
route: React__default.
|
1616
|
-
name: React__default.
|
1575
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1576
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1577
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1617
1578
|
close: React__default.ReactElement<CloseI>;
|
1618
1579
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1619
1580
|
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1620
1581
|
onChanged: (active: "location" | "route" | "name") => void;
|
1621
1582
|
}
|
1583
|
+
interface ISearchInputsElement {
|
1584
|
+
selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1585
|
+
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1586
|
+
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1587
|
+
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1588
|
+
input: React__default.ReactElement<ISearchInputsItem>;
|
1589
|
+
}
|
1590
|
+
interface ISearchInputsItem {
|
1591
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1592
|
+
input: React__default.ReactNode;
|
1593
|
+
}
|
1622
1594
|
interface ISearchInputsCompactActionSubmit {
|
1623
1595
|
label: string;
|
1624
1596
|
icon: React__default.ReactElement<IIcon>;
|
@@ -1629,18 +1601,25 @@ interface ISearchInputsCompactActionClear {
|
|
1629
1601
|
icon: React__default.ReactElement<IIcon>;
|
1630
1602
|
onClear: () => void;
|
1631
1603
|
}
|
1632
|
-
interface
|
1604
|
+
interface ISearchInputsLabel {
|
1633
1605
|
label: string;
|
1634
1606
|
description?: string;
|
1635
1607
|
figure: React__default.ReactElement<IFigure>;
|
1636
|
-
|
1608
|
+
}
|
1609
|
+
interface ISearchInputsLabelWithIcon {
|
1610
|
+
label: string;
|
1611
|
+
description?: string;
|
1612
|
+
icon: React__default.ReactElement<IIcon>;
|
1613
|
+
prominent: boolean;
|
1637
1614
|
}
|
1638
1615
|
|
1639
1616
|
declare const SearchInputsMobile: ({ location, route, name, clear, submit, close, searchOn, searchOnLabel, searchOnDescription, onChanged, }: ISearchInputsCompact) => react_jsx_runtime.JSX.Element;
|
1640
1617
|
|
1641
|
-
declare const SearchInputsFull: ({ submit, searchOn }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1618
|
+
declare const SearchInputsFull: ({ location, route, name, submit, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1619
|
+
|
1620
|
+
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
1642
1621
|
|
1643
|
-
declare const
|
1622
|
+
declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
|
1644
1623
|
|
1645
1624
|
declare const SearchInputsMobileActionSubmit: ({}: ISearchInputsCompactActionSubmit) => null;
|
1646
1625
|
|
@@ -1887,6 +1866,7 @@ declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_
|
|
1887
1866
|
interface ISharedSectionHeader {
|
1888
1867
|
top?: React__default.ReactElement;
|
1889
1868
|
bottom: React__default.ReactElement;
|
1869
|
+
filters?: React__default.ReactElement;
|
1890
1870
|
}
|
1891
1871
|
|
1892
1872
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
@@ -2284,4 +2264,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2284
2264
|
|
2285
2265
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2286
2266
|
|
2287
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, 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, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 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 IGallery, 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 IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type
|
2267
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, 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, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 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 IGallery, 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 IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersCompact, type ISearchFiltersCompactOverlayItem, type ISearchInputs, type ISearchInputsCompact, type ISearchInputsCompactActionClear, type ISearchInputsCompactActionSubmit, type ISearchInputsElement, type ISearchInputsLabel, 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 IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type 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, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, SearchContext, SearchFilters, SearchFiltersFull, SearchFiltersMobile, SearchFiltersMobileActionClear, SearchFiltersMobileActionSubmit, SearchFiltersMobileOverlayItem, SearchInputs, SearchInputsElement, SearchInputsFull, SearchInputsLabel, SearchInputsMobile, SearchInputsMobileActionClear, SearchInputsMobileActionSubmit, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|