@tactics/lokaal-loket 0.0.102 → 0.0.103
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +690 -599
- package/build/index.d.cts +19 -13
- package/build/index.d.ts +19 -13
- package/build/index.js +498 -403
- package/package.json +16 -16
package/build/index.d.cts
CHANGED
@@ -3,7 +3,7 @@ import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 're
|
|
3
3
|
import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant, ColorVariantKey, ColorKey } from '@tactics/tacky/contract';
|
4
4
|
export { Color, ColorVariant, Radius, Spacing, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
|
5
5
|
import { ThemeMode } from '@tactics/tacky';
|
6
|
-
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight,
|
6
|
+
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
7
7
|
|
8
8
|
declare enum IconContext {
|
9
9
|
STANDARD = "STANDARD",
|
@@ -223,11 +223,6 @@ declare enum ChoiceContext {
|
|
223
223
|
ERROR = "ERROR"
|
224
224
|
}
|
225
225
|
|
226
|
-
declare enum FigureContext {
|
227
|
-
STANDARD = "STANDARD",
|
228
|
-
INVERTED = "INVERTED",
|
229
|
-
ACCENT = "ACCENT"
|
230
|
-
}
|
231
226
|
declare enum FigureSize {
|
232
227
|
SMALL = "SMALL",
|
233
228
|
MEDIUM = "MEDIUM",
|
@@ -277,14 +272,11 @@ declare enum FigureType {
|
|
277
272
|
BUILDING = "BUILDING"
|
278
273
|
}
|
279
274
|
|
280
|
-
interface
|
275
|
+
interface IFigure {
|
281
276
|
size: FigureSize;
|
282
277
|
type: FigureType;
|
283
278
|
screenReaderText: string;
|
284
279
|
}
|
285
|
-
interface IFigure extends IFigureLoad {
|
286
|
-
context?: FigureContext;
|
287
|
-
}
|
288
280
|
|
289
281
|
interface IChoiceBase {
|
290
282
|
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
@@ -631,7 +623,7 @@ interface AutoCompleteContextType<T> {
|
|
631
623
|
setHasFocus: SetState<boolean>;
|
632
624
|
}
|
633
625
|
|
634
|
-
declare const Figure: ({ size, type, screenReaderText
|
626
|
+
declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
635
627
|
|
636
628
|
interface AutocompleteI<T> {
|
637
629
|
name: string;
|
@@ -753,6 +745,7 @@ interface IMaskedImageBase {
|
|
753
745
|
height: number;
|
754
746
|
maskType: MaskType;
|
755
747
|
imagePath: string;
|
748
|
+
withDecorations?: boolean;
|
756
749
|
}
|
757
750
|
|
758
751
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
@@ -834,6 +827,18 @@ interface CloseI {
|
|
834
827
|
|
835
828
|
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
836
829
|
|
830
|
+
interface IToggle {
|
831
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
832
|
+
value: string;
|
833
|
+
ariaLabel?: string;
|
834
|
+
label: string;
|
835
|
+
name: string;
|
836
|
+
checked?: boolean;
|
837
|
+
defaultChecked?: boolean;
|
838
|
+
}
|
839
|
+
|
840
|
+
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, }: IToggle) => react_jsx_runtime.JSX.Element;
|
841
|
+
|
837
842
|
declare enum CompactNavigationContext {
|
838
843
|
OPEN = "OPEN",
|
839
844
|
CLOSED = "CLOSED"
|
@@ -1255,6 +1260,7 @@ declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_
|
|
1255
1260
|
interface IHomeSectionLeftSplit {
|
1256
1261
|
title: string;
|
1257
1262
|
content: React$1.ReactElement;
|
1263
|
+
imagePath: string;
|
1258
1264
|
}
|
1259
1265
|
|
1260
1266
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1545,7 +1551,7 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
1545
1551
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1546
1552
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1547
1553
|
|
1548
|
-
declare const
|
1554
|
+
declare const CardDaycareExample: () => react_jsx_runtime.JSX.Element;
|
1549
1555
|
declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
1550
1556
|
|
1551
1557
|
declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
@@ -1555,4 +1561,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1555
1561
|
|
1556
1562
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1557
1563
|
|
1558
|
-
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, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample,
|
1564
|
+
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, 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, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, 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 IDetails, 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 ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRouteLocation, 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 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, 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, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
|
package/build/index.d.ts
CHANGED
@@ -3,7 +3,7 @@ import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 're
|
|
3
3
|
import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant, ColorVariantKey, ColorKey } from '@tactics/tacky/contract';
|
4
4
|
export { Color, ColorVariant, Radius, Spacing, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
|
5
5
|
import { ThemeMode } from '@tactics/tacky';
|
6
|
-
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight,
|
6
|
+
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
7
7
|
|
8
8
|
declare enum IconContext {
|
9
9
|
STANDARD = "STANDARD",
|
@@ -223,11 +223,6 @@ declare enum ChoiceContext {
|
|
223
223
|
ERROR = "ERROR"
|
224
224
|
}
|
225
225
|
|
226
|
-
declare enum FigureContext {
|
227
|
-
STANDARD = "STANDARD",
|
228
|
-
INVERTED = "INVERTED",
|
229
|
-
ACCENT = "ACCENT"
|
230
|
-
}
|
231
226
|
declare enum FigureSize {
|
232
227
|
SMALL = "SMALL",
|
233
228
|
MEDIUM = "MEDIUM",
|
@@ -277,14 +272,11 @@ declare enum FigureType {
|
|
277
272
|
BUILDING = "BUILDING"
|
278
273
|
}
|
279
274
|
|
280
|
-
interface
|
275
|
+
interface IFigure {
|
281
276
|
size: FigureSize;
|
282
277
|
type: FigureType;
|
283
278
|
screenReaderText: string;
|
284
279
|
}
|
285
|
-
interface IFigure extends IFigureLoad {
|
286
|
-
context?: FigureContext;
|
287
|
-
}
|
288
280
|
|
289
281
|
interface IChoiceBase {
|
290
282
|
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
@@ -631,7 +623,7 @@ interface AutoCompleteContextType<T> {
|
|
631
623
|
setHasFocus: SetState<boolean>;
|
632
624
|
}
|
633
625
|
|
634
|
-
declare const Figure: ({ size, type, screenReaderText
|
626
|
+
declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
635
627
|
|
636
628
|
interface AutocompleteI<T> {
|
637
629
|
name: string;
|
@@ -753,6 +745,7 @@ interface IMaskedImageBase {
|
|
753
745
|
height: number;
|
754
746
|
maskType: MaskType;
|
755
747
|
imagePath: string;
|
748
|
+
withDecorations?: boolean;
|
756
749
|
}
|
757
750
|
|
758
751
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
@@ -834,6 +827,18 @@ interface CloseI {
|
|
834
827
|
|
835
828
|
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
836
829
|
|
830
|
+
interface IToggle {
|
831
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
832
|
+
value: string;
|
833
|
+
ariaLabel?: string;
|
834
|
+
label: string;
|
835
|
+
name: string;
|
836
|
+
checked?: boolean;
|
837
|
+
defaultChecked?: boolean;
|
838
|
+
}
|
839
|
+
|
840
|
+
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, }: IToggle) => react_jsx_runtime.JSX.Element;
|
841
|
+
|
837
842
|
declare enum CompactNavigationContext {
|
838
843
|
OPEN = "OPEN",
|
839
844
|
CLOSED = "CLOSED"
|
@@ -1255,6 +1260,7 @@ declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_
|
|
1255
1260
|
interface IHomeSectionLeftSplit {
|
1256
1261
|
title: string;
|
1257
1262
|
content: React$1.ReactElement;
|
1263
|
+
imagePath: string;
|
1258
1264
|
}
|
1259
1265
|
|
1260
1266
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1545,7 +1551,7 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
1545
1551
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1546
1552
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1547
1553
|
|
1548
|
-
declare const
|
1554
|
+
declare const CardDaycareExample: () => react_jsx_runtime.JSX.Element;
|
1549
1555
|
declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
1550
1556
|
|
1551
1557
|
declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
@@ -1555,4 +1561,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1555
1561
|
|
1556
1562
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1557
1563
|
|
1558
|
-
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, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample,
|
1564
|
+
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, 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, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, 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 IDetails, 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 ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRouteLocation, 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 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, 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, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
|