@tactics/lokaal-loket 0.0.67 → 0.0.68
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +440 -411
- package/build/index.d.cts +26 -10
- package/build/index.d.ts +26 -10
- package/build/index.js +303 -276
- package/package.json +2 -1
package/build/index.d.cts
CHANGED
@@ -114,6 +114,11 @@ interface IBadge {
|
|
114
114
|
|
115
115
|
declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
|
116
116
|
|
117
|
+
declare enum LogoSize {
|
118
|
+
SMALL = "SMALL",
|
119
|
+
MEDIUM = "MEDIUM"
|
120
|
+
}
|
121
|
+
|
117
122
|
interface ILogoSrc {
|
118
123
|
srcset: string;
|
119
124
|
src: string;
|
@@ -121,6 +126,7 @@ interface ILogoSrc {
|
|
121
126
|
interface ILogoBase {
|
122
127
|
ariaLabel: string;
|
123
128
|
alt: string;
|
129
|
+
size: LogoSize;
|
124
130
|
children?: React$1.ReactNode | React$1.ReactNode[];
|
125
131
|
}
|
126
132
|
interface ILogoLoad extends ILogoBase {
|
@@ -433,7 +439,7 @@ declare const List: {
|
|
433
439
|
Item: ({ children }: ListItemThemeableProps) => react_jsx_runtime.JSX.Element;
|
434
440
|
};
|
435
441
|
|
436
|
-
declare const Logo: ({ srcset, alt, ariaLabel }: ILogo) => react_jsx_runtime.JSX.Element;
|
442
|
+
declare const Logo: ({ srcset, alt, ariaLabel, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
437
443
|
|
438
444
|
interface INotification {
|
439
445
|
number: number;
|
@@ -628,6 +634,7 @@ interface INavigation extends INavigationBase {
|
|
628
634
|
}
|
629
635
|
interface INavigationBase {
|
630
636
|
children?: React$1.ReactNode;
|
637
|
+
logo: React$1.ReactNode;
|
631
638
|
}
|
632
639
|
interface INavigationItem {
|
633
640
|
label: string;
|
@@ -638,7 +645,7 @@ interface INavigationItem {
|
|
638
645
|
}
|
639
646
|
|
640
647
|
declare const Navigation: {
|
641
|
-
({ children }: INavigation): react_jsx_runtime.JSX.Element;
|
648
|
+
({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
|
642
649
|
Item: ({ label, icon, onClick, isActive, href, }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
643
650
|
};
|
644
651
|
|
@@ -711,14 +718,22 @@ interface IOnboarding {
|
|
711
718
|
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
712
719
|
|
713
720
|
interface IHeader {
|
714
|
-
profileNavigation: React.ReactNode;
|
715
|
-
topNavigation: React.ReactNode;
|
716
|
-
navigation: React.ReactNode;
|
717
|
-
compactNavigation: React.ReactNode;
|
718
|
-
brand: React.ReactNode;
|
721
|
+
profileNavigation: React$1.ReactNode;
|
722
|
+
topNavigation: React$1.ReactNode;
|
723
|
+
navigation: React$1.ReactNode;
|
724
|
+
compactNavigation: React$1.ReactNode;
|
725
|
+
brand: React$1.ReactNode;
|
726
|
+
}
|
727
|
+
|
728
|
+
interface HeaderContextType {
|
729
|
+
offset: number;
|
730
|
+
setOffset: React$1.Dispatch<React$1.SetStateAction<number>>;
|
731
|
+
isSticky: boolean;
|
732
|
+
setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
719
733
|
}
|
734
|
+
declare const HeaderContext: React$1.Context<HeaderContextType>;
|
720
735
|
|
721
|
-
declare const Header: (
|
736
|
+
declare const Header: (props: IHeader) => react_jsx_runtime.JSX.Element;
|
722
737
|
|
723
738
|
type IPointOnMap = {
|
724
739
|
key: string;
|
@@ -769,9 +784,10 @@ interface ISearch {
|
|
769
784
|
}
|
770
785
|
interface ISearchStep extends PropsWithChildren {
|
771
786
|
flyout: React$1.ReactElement;
|
787
|
+
withFigure: React$1.ReactElement<IFigure>;
|
772
788
|
}
|
773
789
|
|
774
|
-
declare const SearchStep: ({ children }: ISearchStep) =>
|
790
|
+
declare const SearchStep: ({ children, withFigure }: ISearchStep) => null;
|
775
791
|
|
776
792
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
777
793
|
|
@@ -1086,4 +1102,4 @@ interface IWizardStepProvider extends PropsWithChildren {
|
|
1086
1102
|
}
|
1087
1103
|
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
1088
1104
|
|
1089
|
-
export { Accordeon, AccordeonContext, AutoComplete, type AutoCompleteBlurEvent, type AutoCompleteChangeEvent, AutoCompleteContext, type AutoCompleteFocusEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, Blur, BlurContext, BlurProvider, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Checkbox, CheckboxContext, Choice, ChoiceContext, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, Header, Heading, HtmlHeading, type IAccordeon, type IAutoComplete, type IBackdrop, type IBackdropProvider, type IBadge, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFrame, type IHeader, type IHeading, type IIcon, type IInformation, type IInput, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOverlay, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IRadio, type IRecord, type IRecords, type ISearch, type ISearchProvider, type ISearchStep, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, Information, Input, InputContext, ItemType, Link, LinkContext, List, ListType, Logo, Map, Margin, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, Overlay, OverlayContext, OverlayProvider, Padding, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, Radio, RadioContext, Record, Records, Search, SearchContext, SearchProvider, SearchStep, Status, StatusCompact, StatusContext, StatusList, Surface, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
|
1105
|
+
export { Accordeon, AccordeonContext, AutoComplete, type AutoCompleteBlurEvent, type AutoCompleteChangeEvent, AutoCompleteContext, type AutoCompleteFocusEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, Blur, BlurContext, BlurProvider, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Checkbox, CheckboxContext, Choice, ChoiceContext, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, Header, HeaderContext, Heading, HtmlHeading, type IAccordeon, type IAutoComplete, type IBackdrop, type IBackdropProvider, type IBadge, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFrame, type IHeader, type IHeading, type IIcon, type IInformation, type IInput, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOverlay, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IRadio, type IRecord, type IRecords, type ISearch, type ISearchProvider, type ISearchStep, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, Information, Input, InputContext, ItemType, Link, LinkContext, List, ListType, Logo, LogoSize, Map, Margin, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, Overlay, OverlayContext, OverlayProvider, Padding, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, Radio, RadioContext, Record, Records, Search, SearchContext, SearchProvider, SearchStep, Status, StatusCompact, StatusContext, StatusList, Surface, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
|
package/build/index.d.ts
CHANGED
@@ -114,6 +114,11 @@ interface IBadge {
|
|
114
114
|
|
115
115
|
declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
|
116
116
|
|
117
|
+
declare enum LogoSize {
|
118
|
+
SMALL = "SMALL",
|
119
|
+
MEDIUM = "MEDIUM"
|
120
|
+
}
|
121
|
+
|
117
122
|
interface ILogoSrc {
|
118
123
|
srcset: string;
|
119
124
|
src: string;
|
@@ -121,6 +126,7 @@ interface ILogoSrc {
|
|
121
126
|
interface ILogoBase {
|
122
127
|
ariaLabel: string;
|
123
128
|
alt: string;
|
129
|
+
size: LogoSize;
|
124
130
|
children?: React$1.ReactNode | React$1.ReactNode[];
|
125
131
|
}
|
126
132
|
interface ILogoLoad extends ILogoBase {
|
@@ -433,7 +439,7 @@ declare const List: {
|
|
433
439
|
Item: ({ children }: ListItemThemeableProps) => react_jsx_runtime.JSX.Element;
|
434
440
|
};
|
435
441
|
|
436
|
-
declare const Logo: ({ srcset, alt, ariaLabel }: ILogo) => react_jsx_runtime.JSX.Element;
|
442
|
+
declare const Logo: ({ srcset, alt, ariaLabel, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
437
443
|
|
438
444
|
interface INotification {
|
439
445
|
number: number;
|
@@ -628,6 +634,7 @@ interface INavigation extends INavigationBase {
|
|
628
634
|
}
|
629
635
|
interface INavigationBase {
|
630
636
|
children?: React$1.ReactNode;
|
637
|
+
logo: React$1.ReactNode;
|
631
638
|
}
|
632
639
|
interface INavigationItem {
|
633
640
|
label: string;
|
@@ -638,7 +645,7 @@ interface INavigationItem {
|
|
638
645
|
}
|
639
646
|
|
640
647
|
declare const Navigation: {
|
641
|
-
({ children }: INavigation): react_jsx_runtime.JSX.Element;
|
648
|
+
({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
|
642
649
|
Item: ({ label, icon, onClick, isActive, href, }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
643
650
|
};
|
644
651
|
|
@@ -711,14 +718,22 @@ interface IOnboarding {
|
|
711
718
|
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
712
719
|
|
713
720
|
interface IHeader {
|
714
|
-
profileNavigation: React.ReactNode;
|
715
|
-
topNavigation: React.ReactNode;
|
716
|
-
navigation: React.ReactNode;
|
717
|
-
compactNavigation: React.ReactNode;
|
718
|
-
brand: React.ReactNode;
|
721
|
+
profileNavigation: React$1.ReactNode;
|
722
|
+
topNavigation: React$1.ReactNode;
|
723
|
+
navigation: React$1.ReactNode;
|
724
|
+
compactNavigation: React$1.ReactNode;
|
725
|
+
brand: React$1.ReactNode;
|
726
|
+
}
|
727
|
+
|
728
|
+
interface HeaderContextType {
|
729
|
+
offset: number;
|
730
|
+
setOffset: React$1.Dispatch<React$1.SetStateAction<number>>;
|
731
|
+
isSticky: boolean;
|
732
|
+
setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
719
733
|
}
|
734
|
+
declare const HeaderContext: React$1.Context<HeaderContextType>;
|
720
735
|
|
721
|
-
declare const Header: (
|
736
|
+
declare const Header: (props: IHeader) => react_jsx_runtime.JSX.Element;
|
722
737
|
|
723
738
|
type IPointOnMap = {
|
724
739
|
key: string;
|
@@ -769,9 +784,10 @@ interface ISearch {
|
|
769
784
|
}
|
770
785
|
interface ISearchStep extends PropsWithChildren {
|
771
786
|
flyout: React$1.ReactElement;
|
787
|
+
withFigure: React$1.ReactElement<IFigure>;
|
772
788
|
}
|
773
789
|
|
774
|
-
declare const SearchStep: ({ children }: ISearchStep) =>
|
790
|
+
declare const SearchStep: ({ children, withFigure }: ISearchStep) => null;
|
775
791
|
|
776
792
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
777
793
|
|
@@ -1086,4 +1102,4 @@ interface IWizardStepProvider extends PropsWithChildren {
|
|
1086
1102
|
}
|
1087
1103
|
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
1088
1104
|
|
1089
|
-
export { Accordeon, AccordeonContext, AutoComplete, type AutoCompleteBlurEvent, type AutoCompleteChangeEvent, AutoCompleteContext, type AutoCompleteFocusEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, Blur, BlurContext, BlurProvider, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Checkbox, CheckboxContext, Choice, ChoiceContext, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, Header, Heading, HtmlHeading, type IAccordeon, type IAutoComplete, type IBackdrop, type IBackdropProvider, type IBadge, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFrame, type IHeader, type IHeading, type IIcon, type IInformation, type IInput, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOverlay, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IRadio, type IRecord, type IRecords, type ISearch, type ISearchProvider, type ISearchStep, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, Information, Input, InputContext, ItemType, Link, LinkContext, List, ListType, Logo, Map, Margin, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, Overlay, OverlayContext, OverlayProvider, Padding, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, Radio, RadioContext, Record, Records, Search, SearchContext, SearchProvider, SearchStep, Status, StatusCompact, StatusContext, StatusList, Surface, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
|
1105
|
+
export { Accordeon, AccordeonContext, AutoComplete, type AutoCompleteBlurEvent, type AutoCompleteChangeEvent, AutoCompleteContext, type AutoCompleteFocusEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, Blur, BlurContext, BlurProvider, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Checkbox, CheckboxContext, Choice, ChoiceContext, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, Header, HeaderContext, Heading, HtmlHeading, type IAccordeon, type IAutoComplete, type IBackdrop, type IBackdropProvider, type IBadge, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFrame, type IHeader, type IHeading, type IIcon, type IInformation, type IInput, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOverlay, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IRadio, type IRecord, type IRecords, type ISearch, type ISearchProvider, type ISearchStep, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, Information, Input, InputContext, ItemType, Link, LinkContext, List, ListType, Logo, LogoSize, Map, Margin, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, Overlay, OverlayContext, OverlayProvider, Padding, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, Radio, RadioContext, Record, Records, Search, SearchContext, SearchProvider, SearchStep, Status, StatusCompact, StatusContext, StatusList, Surface, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
|