@tactics/lokaal-loket 0.0.101 → 0.0.103
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +739 -595
- package/build/index.d.cts +108 -77
- package/build/index.d.ts +108 -77
- package/build/index.js +548 -404
- package/package.json +16 -16
package/build/index.d.cts
CHANGED
@@ -3,66 +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,
|
7
|
-
|
8
|
-
interface IFlip {
|
9
|
-
onClick?: () => void;
|
10
|
-
label: string;
|
11
|
-
}
|
12
|
-
|
13
|
-
declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
|
14
|
-
|
15
|
-
declare enum BadgeType {
|
16
|
-
DAYCARE = "DAYCARE",
|
17
|
-
CHILDMINDER = "CHILDMINDER",
|
18
|
-
COOPERATIVE = "COOPERATIVE"
|
19
|
-
}
|
20
|
-
|
21
|
-
interface IBadge {
|
22
|
-
type: BadgeType;
|
23
|
-
screenReaderText: string;
|
24
|
-
}
|
25
|
-
|
26
|
-
declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
|
27
|
-
|
28
|
-
declare enum LogoSize {
|
29
|
-
SMALL = "SMALL",
|
30
|
-
MEDIUM = "MEDIUM"
|
31
|
-
}
|
32
|
-
|
33
|
-
interface ILogoSrc {
|
34
|
-
srcset: string;
|
35
|
-
src: string;
|
36
|
-
}
|
37
|
-
interface ILogoBase {
|
38
|
-
ariaLabel: string;
|
39
|
-
alt: string;
|
40
|
-
size: LogoSize;
|
41
|
-
children?: React$1.ReactNode | React$1.ReactNode[];
|
42
|
-
}
|
43
|
-
interface ILogoLoad extends ILogoBase {
|
44
|
-
srcset?: ILogoSrc;
|
45
|
-
}
|
46
|
-
interface ILogo extends ILogoLoad {
|
47
|
-
}
|
48
|
-
|
49
|
-
interface IBrand {
|
50
|
-
ariaLabel: string;
|
51
|
-
logo: React$1.ReactElement<ILogo>;
|
52
|
-
name: string;
|
53
|
-
}
|
54
|
-
|
55
|
-
declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
|
56
|
-
|
57
|
-
declare enum LinkContext {
|
58
|
-
STANDARD = "STANDARD",
|
59
|
-
UI = "UI",
|
60
|
-
BOLD = "BOLD"
|
61
|
-
}
|
62
|
-
declare enum Position {
|
63
|
-
BEFORE = "BEFORE",
|
64
|
-
AFTER = "AFTER"
|
65
|
-
}
|
6
|
+
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
66
7
|
|
67
8
|
declare enum IconContext {
|
68
9
|
STANDARD = "STANDARD",
|
@@ -129,6 +70,72 @@ interface IIcon extends IIconLoad {
|
|
129
70
|
context?: IconContext;
|
130
71
|
}
|
131
72
|
|
73
|
+
interface ILabeledIcon {
|
74
|
+
withIconBefore: React$1.ReactElement<IIcon>;
|
75
|
+
label: string;
|
76
|
+
}
|
77
|
+
|
78
|
+
declare const LabeledIcon: ({ label, withIconBefore }: ILabeledIcon) => react_jsx_runtime.JSX.Element;
|
79
|
+
|
80
|
+
interface IFlip {
|
81
|
+
onClick?: () => void;
|
82
|
+
label: string;
|
83
|
+
}
|
84
|
+
|
85
|
+
declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
|
86
|
+
|
87
|
+
declare enum BadgeType {
|
88
|
+
DAYCARE = "DAYCARE",
|
89
|
+
CHILDMINDER = "CHILDMINDER",
|
90
|
+
COOPERATIVE = "COOPERATIVE"
|
91
|
+
}
|
92
|
+
|
93
|
+
interface IBadge {
|
94
|
+
type: BadgeType;
|
95
|
+
screenReaderText: string;
|
96
|
+
}
|
97
|
+
|
98
|
+
declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
|
99
|
+
|
100
|
+
declare enum LogoSize {
|
101
|
+
SMALL = "SMALL",
|
102
|
+
MEDIUM = "MEDIUM"
|
103
|
+
}
|
104
|
+
|
105
|
+
interface ILogoSrc {
|
106
|
+
srcset: string;
|
107
|
+
src: string;
|
108
|
+
}
|
109
|
+
interface ILogoBase {
|
110
|
+
ariaLabel: string;
|
111
|
+
alt: string;
|
112
|
+
size: LogoSize;
|
113
|
+
children?: React$1.ReactNode | React$1.ReactNode[];
|
114
|
+
}
|
115
|
+
interface ILogoLoad extends ILogoBase {
|
116
|
+
srcset?: ILogoSrc;
|
117
|
+
}
|
118
|
+
interface ILogo extends ILogoLoad {
|
119
|
+
}
|
120
|
+
|
121
|
+
interface IBrand {
|
122
|
+
ariaLabel: string;
|
123
|
+
logo: React$1.ReactElement<ILogo>;
|
124
|
+
name: string;
|
125
|
+
}
|
126
|
+
|
127
|
+
declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
|
128
|
+
|
129
|
+
declare enum LinkContext {
|
130
|
+
STANDARD = "STANDARD",
|
131
|
+
UI = "UI",
|
132
|
+
BOLD = "BOLD"
|
133
|
+
}
|
134
|
+
declare enum Position {
|
135
|
+
BEFORE = "BEFORE",
|
136
|
+
AFTER = "AFTER"
|
137
|
+
}
|
138
|
+
|
132
139
|
interface ILink {
|
133
140
|
id: string;
|
134
141
|
title: string;
|
@@ -216,11 +223,6 @@ declare enum ChoiceContext {
|
|
216
223
|
ERROR = "ERROR"
|
217
224
|
}
|
218
225
|
|
219
|
-
declare enum FigureContext {
|
220
|
-
STANDARD = "STANDARD",
|
221
|
-
INVERTED = "INVERTED",
|
222
|
-
ACCENT = "ACCENT"
|
223
|
-
}
|
224
226
|
declare enum FigureSize {
|
225
227
|
SMALL = "SMALL",
|
226
228
|
MEDIUM = "MEDIUM",
|
@@ -270,14 +272,11 @@ declare enum FigureType {
|
|
270
272
|
BUILDING = "BUILDING"
|
271
273
|
}
|
272
274
|
|
273
|
-
interface
|
275
|
+
interface IFigure {
|
274
276
|
size: FigureSize;
|
275
277
|
type: FigureType;
|
276
278
|
screenReaderText: string;
|
277
279
|
}
|
278
|
-
interface IFigure extends IFigureLoad {
|
279
|
-
context?: FigureContext;
|
280
|
-
}
|
281
280
|
|
282
281
|
interface IChoiceBase {
|
283
282
|
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
@@ -624,7 +623,7 @@ interface AutoCompleteContextType<T> {
|
|
624
623
|
setHasFocus: SetState<boolean>;
|
625
624
|
}
|
626
625
|
|
627
|
-
declare const Figure: ({ size, type, screenReaderText
|
626
|
+
declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
628
627
|
|
629
628
|
interface AutocompleteI<T> {
|
630
629
|
name: string;
|
@@ -746,6 +745,7 @@ interface IMaskedImageBase {
|
|
746
745
|
height: number;
|
747
746
|
maskType: MaskType;
|
748
747
|
imagePath: string;
|
748
|
+
withDecorations?: boolean;
|
749
749
|
}
|
750
750
|
|
751
751
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
@@ -827,6 +827,18 @@ interface CloseI {
|
|
827
827
|
|
828
828
|
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
829
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
|
+
|
830
842
|
declare enum CompactNavigationContext {
|
831
843
|
OPEN = "OPEN",
|
832
844
|
CLOSED = "CLOSED"
|
@@ -995,6 +1007,29 @@ interface IInstruction {
|
|
995
1007
|
|
996
1008
|
declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
|
997
1009
|
|
1010
|
+
interface ICta {
|
1011
|
+
label: string;
|
1012
|
+
action: React$1.ReactElement<IButton>;
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
1016
|
+
|
1017
|
+
interface IFooterNavigation extends IFooterNavigationBase {
|
1018
|
+
}
|
1019
|
+
interface IFooterNavigationBase {
|
1020
|
+
children?: React$1.ReactNode;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
1024
|
+
|
1025
|
+
interface IBottomNavigation extends IBottomNavigationBase {
|
1026
|
+
}
|
1027
|
+
interface IBottomNavigationBase {
|
1028
|
+
children?: React.ReactNode;
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1032
|
+
|
998
1033
|
interface IHeaderMobile {
|
999
1034
|
profileNavigation: React$1.ReactNode;
|
1000
1035
|
compactNavigation: React$1.ReactNode;
|
@@ -1122,11 +1157,6 @@ interface ILabel {
|
|
1122
1157
|
label: string;
|
1123
1158
|
}
|
1124
1159
|
|
1125
|
-
interface ILabeledIcon {
|
1126
|
-
withIconBefore: React$1.ReactElement<IIcon>;
|
1127
|
-
label: string;
|
1128
|
-
}
|
1129
|
-
|
1130
1160
|
interface ICard {
|
1131
1161
|
swipe?: React$1.ReactNode;
|
1132
1162
|
badge: React$1.ReactElement<IBadge>;
|
@@ -1230,6 +1260,7 @@ declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_
|
|
1230
1260
|
interface IHomeSectionLeftSplit {
|
1231
1261
|
title: string;
|
1232
1262
|
content: React$1.ReactElement;
|
1263
|
+
imagePath: string;
|
1233
1264
|
}
|
1234
1265
|
|
1235
1266
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1520,7 +1551,7 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
1520
1551
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1521
1552
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1522
1553
|
|
1523
|
-
declare const
|
1554
|
+
declare const CardDaycareExample: () => react_jsx_runtime.JSX.Element;
|
1524
1555
|
declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
1525
1556
|
|
1526
1557
|
declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
@@ -1530,4 +1561,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1530
1561
|
|
1531
1562
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1532
1563
|
|
1533
|
-
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, 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,66 +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,
|
7
|
-
|
8
|
-
interface IFlip {
|
9
|
-
onClick?: () => void;
|
10
|
-
label: string;
|
11
|
-
}
|
12
|
-
|
13
|
-
declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
|
14
|
-
|
15
|
-
declare enum BadgeType {
|
16
|
-
DAYCARE = "DAYCARE",
|
17
|
-
CHILDMINDER = "CHILDMINDER",
|
18
|
-
COOPERATIVE = "COOPERATIVE"
|
19
|
-
}
|
20
|
-
|
21
|
-
interface IBadge {
|
22
|
-
type: BadgeType;
|
23
|
-
screenReaderText: string;
|
24
|
-
}
|
25
|
-
|
26
|
-
declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
|
27
|
-
|
28
|
-
declare enum LogoSize {
|
29
|
-
SMALL = "SMALL",
|
30
|
-
MEDIUM = "MEDIUM"
|
31
|
-
}
|
32
|
-
|
33
|
-
interface ILogoSrc {
|
34
|
-
srcset: string;
|
35
|
-
src: string;
|
36
|
-
}
|
37
|
-
interface ILogoBase {
|
38
|
-
ariaLabel: string;
|
39
|
-
alt: string;
|
40
|
-
size: LogoSize;
|
41
|
-
children?: React$1.ReactNode | React$1.ReactNode[];
|
42
|
-
}
|
43
|
-
interface ILogoLoad extends ILogoBase {
|
44
|
-
srcset?: ILogoSrc;
|
45
|
-
}
|
46
|
-
interface ILogo extends ILogoLoad {
|
47
|
-
}
|
48
|
-
|
49
|
-
interface IBrand {
|
50
|
-
ariaLabel: string;
|
51
|
-
logo: React$1.ReactElement<ILogo>;
|
52
|
-
name: string;
|
53
|
-
}
|
54
|
-
|
55
|
-
declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
|
56
|
-
|
57
|
-
declare enum LinkContext {
|
58
|
-
STANDARD = "STANDARD",
|
59
|
-
UI = "UI",
|
60
|
-
BOLD = "BOLD"
|
61
|
-
}
|
62
|
-
declare enum Position {
|
63
|
-
BEFORE = "BEFORE",
|
64
|
-
AFTER = "AFTER"
|
65
|
-
}
|
6
|
+
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
66
7
|
|
67
8
|
declare enum IconContext {
|
68
9
|
STANDARD = "STANDARD",
|
@@ -129,6 +70,72 @@ interface IIcon extends IIconLoad {
|
|
129
70
|
context?: IconContext;
|
130
71
|
}
|
131
72
|
|
73
|
+
interface ILabeledIcon {
|
74
|
+
withIconBefore: React$1.ReactElement<IIcon>;
|
75
|
+
label: string;
|
76
|
+
}
|
77
|
+
|
78
|
+
declare const LabeledIcon: ({ label, withIconBefore }: ILabeledIcon) => react_jsx_runtime.JSX.Element;
|
79
|
+
|
80
|
+
interface IFlip {
|
81
|
+
onClick?: () => void;
|
82
|
+
label: string;
|
83
|
+
}
|
84
|
+
|
85
|
+
declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
|
86
|
+
|
87
|
+
declare enum BadgeType {
|
88
|
+
DAYCARE = "DAYCARE",
|
89
|
+
CHILDMINDER = "CHILDMINDER",
|
90
|
+
COOPERATIVE = "COOPERATIVE"
|
91
|
+
}
|
92
|
+
|
93
|
+
interface IBadge {
|
94
|
+
type: BadgeType;
|
95
|
+
screenReaderText: string;
|
96
|
+
}
|
97
|
+
|
98
|
+
declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
|
99
|
+
|
100
|
+
declare enum LogoSize {
|
101
|
+
SMALL = "SMALL",
|
102
|
+
MEDIUM = "MEDIUM"
|
103
|
+
}
|
104
|
+
|
105
|
+
interface ILogoSrc {
|
106
|
+
srcset: string;
|
107
|
+
src: string;
|
108
|
+
}
|
109
|
+
interface ILogoBase {
|
110
|
+
ariaLabel: string;
|
111
|
+
alt: string;
|
112
|
+
size: LogoSize;
|
113
|
+
children?: React$1.ReactNode | React$1.ReactNode[];
|
114
|
+
}
|
115
|
+
interface ILogoLoad extends ILogoBase {
|
116
|
+
srcset?: ILogoSrc;
|
117
|
+
}
|
118
|
+
interface ILogo extends ILogoLoad {
|
119
|
+
}
|
120
|
+
|
121
|
+
interface IBrand {
|
122
|
+
ariaLabel: string;
|
123
|
+
logo: React$1.ReactElement<ILogo>;
|
124
|
+
name: string;
|
125
|
+
}
|
126
|
+
|
127
|
+
declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
|
128
|
+
|
129
|
+
declare enum LinkContext {
|
130
|
+
STANDARD = "STANDARD",
|
131
|
+
UI = "UI",
|
132
|
+
BOLD = "BOLD"
|
133
|
+
}
|
134
|
+
declare enum Position {
|
135
|
+
BEFORE = "BEFORE",
|
136
|
+
AFTER = "AFTER"
|
137
|
+
}
|
138
|
+
|
132
139
|
interface ILink {
|
133
140
|
id: string;
|
134
141
|
title: string;
|
@@ -216,11 +223,6 @@ declare enum ChoiceContext {
|
|
216
223
|
ERROR = "ERROR"
|
217
224
|
}
|
218
225
|
|
219
|
-
declare enum FigureContext {
|
220
|
-
STANDARD = "STANDARD",
|
221
|
-
INVERTED = "INVERTED",
|
222
|
-
ACCENT = "ACCENT"
|
223
|
-
}
|
224
226
|
declare enum FigureSize {
|
225
227
|
SMALL = "SMALL",
|
226
228
|
MEDIUM = "MEDIUM",
|
@@ -270,14 +272,11 @@ declare enum FigureType {
|
|
270
272
|
BUILDING = "BUILDING"
|
271
273
|
}
|
272
274
|
|
273
|
-
interface
|
275
|
+
interface IFigure {
|
274
276
|
size: FigureSize;
|
275
277
|
type: FigureType;
|
276
278
|
screenReaderText: string;
|
277
279
|
}
|
278
|
-
interface IFigure extends IFigureLoad {
|
279
|
-
context?: FigureContext;
|
280
|
-
}
|
281
280
|
|
282
281
|
interface IChoiceBase {
|
283
282
|
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
@@ -624,7 +623,7 @@ interface AutoCompleteContextType<T> {
|
|
624
623
|
setHasFocus: SetState<boolean>;
|
625
624
|
}
|
626
625
|
|
627
|
-
declare const Figure: ({ size, type, screenReaderText
|
626
|
+
declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
628
627
|
|
629
628
|
interface AutocompleteI<T> {
|
630
629
|
name: string;
|
@@ -746,6 +745,7 @@ interface IMaskedImageBase {
|
|
746
745
|
height: number;
|
747
746
|
maskType: MaskType;
|
748
747
|
imagePath: string;
|
748
|
+
withDecorations?: boolean;
|
749
749
|
}
|
750
750
|
|
751
751
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
@@ -827,6 +827,18 @@ interface CloseI {
|
|
827
827
|
|
828
828
|
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
829
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
|
+
|
830
842
|
declare enum CompactNavigationContext {
|
831
843
|
OPEN = "OPEN",
|
832
844
|
CLOSED = "CLOSED"
|
@@ -995,6 +1007,29 @@ interface IInstruction {
|
|
995
1007
|
|
996
1008
|
declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
|
997
1009
|
|
1010
|
+
interface ICta {
|
1011
|
+
label: string;
|
1012
|
+
action: React$1.ReactElement<IButton>;
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
1016
|
+
|
1017
|
+
interface IFooterNavigation extends IFooterNavigationBase {
|
1018
|
+
}
|
1019
|
+
interface IFooterNavigationBase {
|
1020
|
+
children?: React$1.ReactNode;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
1024
|
+
|
1025
|
+
interface IBottomNavigation extends IBottomNavigationBase {
|
1026
|
+
}
|
1027
|
+
interface IBottomNavigationBase {
|
1028
|
+
children?: React.ReactNode;
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1032
|
+
|
998
1033
|
interface IHeaderMobile {
|
999
1034
|
profileNavigation: React$1.ReactNode;
|
1000
1035
|
compactNavigation: React$1.ReactNode;
|
@@ -1122,11 +1157,6 @@ interface ILabel {
|
|
1122
1157
|
label: string;
|
1123
1158
|
}
|
1124
1159
|
|
1125
|
-
interface ILabeledIcon {
|
1126
|
-
withIconBefore: React$1.ReactElement<IIcon>;
|
1127
|
-
label: string;
|
1128
|
-
}
|
1129
|
-
|
1130
1160
|
interface ICard {
|
1131
1161
|
swipe?: React$1.ReactNode;
|
1132
1162
|
badge: React$1.ReactElement<IBadge>;
|
@@ -1230,6 +1260,7 @@ declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_
|
|
1230
1260
|
interface IHomeSectionLeftSplit {
|
1231
1261
|
title: string;
|
1232
1262
|
content: React$1.ReactElement;
|
1263
|
+
imagePath: string;
|
1233
1264
|
}
|
1234
1265
|
|
1235
1266
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1520,7 +1551,7 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
1520
1551
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1521
1552
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1522
1553
|
|
1523
|
-
declare const
|
1554
|
+
declare const CardDaycareExample: () => react_jsx_runtime.JSX.Element;
|
1524
1555
|
declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
1525
1556
|
|
1526
1557
|
declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
@@ -1530,4 +1561,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1530
1561
|
|
1531
1562
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1532
1563
|
|
1533
|
-
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, 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 };
|