@tactics/lokaal-loket 0.0.175 → 0.0.177
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +683 -683
- package/build/index.d.cts +96 -78
- package/build/index.d.ts +96 -78
- package/build/index.js +450 -450
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -63,6 +63,10 @@ declare enum IconType {
|
|
63
63
|
LOCATION = "LOCATION"
|
64
64
|
}
|
65
65
|
|
66
|
+
interface IScaledIcon {
|
67
|
+
icon: React$1.ReactElement<IIcon>;
|
68
|
+
size: IconSize;
|
69
|
+
}
|
66
70
|
interface IIcon {
|
67
71
|
type: IconType;
|
68
72
|
screenReaderText?: string;
|
@@ -93,13 +97,99 @@ declare enum BadgeSize {
|
|
93
97
|
SMALL = "SMALL"
|
94
98
|
}
|
95
99
|
|
100
|
+
declare enum FigureSize {
|
101
|
+
SMALL = "SMALL",
|
102
|
+
MEDIUM = "MEDIUM",
|
103
|
+
LARGE = "LARGE",
|
104
|
+
XLARGE = "XLARGE"
|
105
|
+
}
|
106
|
+
declare enum FigureType {
|
107
|
+
CHILD = "CHILD",
|
108
|
+
FAMILY = "FAMILY",
|
109
|
+
CALENDAR = "CALENDAR",
|
110
|
+
BIN = "BIN",
|
111
|
+
ALERT = "ALERT",
|
112
|
+
PASSWORD = "PASSWORD",
|
113
|
+
SEARCH = "SEARCH",
|
114
|
+
FOLDER = "FOLDER",
|
115
|
+
PASSPORT = "PASSPORT",
|
116
|
+
SETTING = "SETTING",
|
117
|
+
FACE = "FACE",
|
118
|
+
PIN = "PIN",
|
119
|
+
MONEY = "MONEY",
|
120
|
+
IDEA = "IDEA",
|
121
|
+
OFFER = "OFFER",
|
122
|
+
FAVORITE = "FAVORITE",
|
123
|
+
FOLLOW_UP = "FOLLOW_UP",
|
124
|
+
STAR = "STAR",
|
125
|
+
COINS = "COINS",
|
126
|
+
CHECK = "CHECK",
|
127
|
+
LIKE = "LIKE",
|
128
|
+
MAP = "MAP",
|
129
|
+
ADD = "ADD",
|
130
|
+
APPLICATION = "APPLICATION",
|
131
|
+
BABY = "BABY",
|
132
|
+
BOOKMARK = "BOOKMARK",
|
133
|
+
CONVERSATION = "CONVERSATION",
|
134
|
+
CANCEL = "CANCEL",
|
135
|
+
DAD = "DAD",
|
136
|
+
DATETIME = "DATETIME",
|
137
|
+
FILE = "FILE",
|
138
|
+
HOME = "HOME",
|
139
|
+
INFORMATION = "INFORMATION",
|
140
|
+
MAIL = "MAIL",
|
141
|
+
MOM = "MOM",
|
142
|
+
NO = "NO",
|
143
|
+
NOTE = "NOTE",
|
144
|
+
YES = "YES",
|
145
|
+
FENCE = "FENCE",
|
146
|
+
BUILDING = "BUILDING",
|
147
|
+
BABY_BOTTLE = "BABY_BOTTLE",
|
148
|
+
DIAPERS = "DIAPERS",
|
149
|
+
CART = "CART",
|
150
|
+
PLANT = "PLANT",
|
151
|
+
CAMERA = "CAMERA",
|
152
|
+
CAR = "CAR",
|
153
|
+
HEART = "HEART",
|
154
|
+
CONTROL = "CONTROL",
|
155
|
+
ACCOUNT_VALIDATION = "ACCOUNT_VALIDATION",
|
156
|
+
DATE_TIME_SETTING = "DATE_TIME_SETTING",
|
157
|
+
TYPE = "TYPE"
|
158
|
+
}
|
159
|
+
|
160
|
+
interface IFigure {
|
161
|
+
type: FigureType;
|
162
|
+
screenReaderText: string;
|
163
|
+
}
|
164
|
+
interface IScaledFigure {
|
165
|
+
figure: React$1.ReactElement<IFigure>;
|
166
|
+
size: FigureSize;
|
167
|
+
}
|
168
|
+
|
169
|
+
declare const Figure: ({ type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
170
|
+
declare const ScaledFigure: ({ figure, size }: IScaledFigure) => react_jsx_runtime.JSX.Element;
|
171
|
+
|
172
|
+
declare enum FramePadding {
|
173
|
+
DEFAULT = "DEFAULT",
|
174
|
+
LARGE = "LARGE",
|
175
|
+
SMALL = "SMALL"
|
176
|
+
}
|
177
|
+
|
178
|
+
interface IFrame {
|
179
|
+
around: React$1.ReactElement<IIcon | IFigure>;
|
180
|
+
split?: string | false;
|
181
|
+
background?: string;
|
182
|
+
padding?: FramePadding;
|
183
|
+
lifted?: boolean;
|
184
|
+
}
|
185
|
+
|
96
186
|
interface IBadge {
|
97
187
|
type: BadgeType;
|
98
|
-
|
188
|
+
figure: React$1.ReactElement<IFigure>;
|
99
189
|
size?: BadgeSize;
|
100
190
|
}
|
101
191
|
|
102
|
-
declare const Badge: ({ type,
|
192
|
+
declare const Badge: ({ type, size, figure }: IBadge) => react_jsx_runtime.JSX.Element;
|
103
193
|
|
104
194
|
declare enum LabelSize {
|
105
195
|
DEFAULT = "DEFAULT",
|
@@ -107,6 +197,7 @@ declare enum LabelSize {
|
|
107
197
|
}
|
108
198
|
|
109
199
|
declare const Icon: ({ type, screenReaderText }: IIcon) => react_jsx_runtime.JSX.Element;
|
200
|
+
declare const ScaledIcon: ({ icon, size }: IScaledIcon) => react_jsx_runtime.JSX.Element;
|
110
201
|
|
111
202
|
interface ILabel {
|
112
203
|
iconType?: IconType;
|
@@ -242,61 +333,6 @@ declare enum ChoiceContext {
|
|
242
333
|
ERROR = "ERROR"
|
243
334
|
}
|
244
335
|
|
245
|
-
declare enum FigureSize {
|
246
|
-
SMALL = "SMALL",
|
247
|
-
MEDIUM = "MEDIUM",
|
248
|
-
LARGE = "LARGE",
|
249
|
-
XLARGE = "XLARGE"
|
250
|
-
}
|
251
|
-
declare enum FigureType {
|
252
|
-
CHILD = "CHILD",
|
253
|
-
FAMILY = "FAMILY",
|
254
|
-
CALENDAR = "CALENDAR",
|
255
|
-
BIN = "BIN",
|
256
|
-
ALERT = "ALERT",
|
257
|
-
PASSWORD = "PASSWORD",
|
258
|
-
SEARCH = "SEARCH",
|
259
|
-
FOLDER = "FOLDER",
|
260
|
-
PASSPORT = "PASSPORT",
|
261
|
-
SETTING = "SETTING",
|
262
|
-
FACE = "FACE",
|
263
|
-
PIN = "PIN",
|
264
|
-
MONEY = "MONEY",
|
265
|
-
IDEA = "IDEA",
|
266
|
-
OFFER = "OFFER",
|
267
|
-
FAVORITE = "FAVORITE",
|
268
|
-
FOLLOW_UP = "FOLLOW_UP",
|
269
|
-
STAR = "STAR",
|
270
|
-
COINS = "COINS",
|
271
|
-
CHECK = "CHECK",
|
272
|
-
LIKE = "LIKE",
|
273
|
-
MAP = "MAP",
|
274
|
-
ADD = "ADD",
|
275
|
-
APPLICATION = "APPLICATION",
|
276
|
-
BABY = "BABY",
|
277
|
-
BOOKMARK = "BOOKMARK",
|
278
|
-
CONVERSATION = "CONVERSATION",
|
279
|
-
CANCEL = "CANCEL",
|
280
|
-
DAD = "DAD",
|
281
|
-
DATETIME = "DATETIME",
|
282
|
-
FILE = "FILE",
|
283
|
-
HOME = "HOME",
|
284
|
-
INFORMATION = "INFORMATION",
|
285
|
-
MAIL = "MAIL",
|
286
|
-
MOM = "MOM",
|
287
|
-
NO = "NO",
|
288
|
-
NOTE = "NOTE",
|
289
|
-
YES = "YES",
|
290
|
-
FENCE = "FENCE",
|
291
|
-
BUILDING = "BUILDING"
|
292
|
-
}
|
293
|
-
|
294
|
-
interface IFigure {
|
295
|
-
size: FigureSize;
|
296
|
-
type: FigureType;
|
297
|
-
screenReaderText: string;
|
298
|
-
}
|
299
|
-
|
300
336
|
interface IChoiceBase {
|
301
337
|
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
302
338
|
value: string;
|
@@ -332,22 +368,6 @@ interface IExpand {
|
|
332
368
|
|
333
369
|
declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
|
334
370
|
|
335
|
-
declare enum FramePadding {
|
336
|
-
DEFAULT = "DEFAULT",
|
337
|
-
LARGE = "LARGE",
|
338
|
-
SMALL = "SMALL"
|
339
|
-
}
|
340
|
-
|
341
|
-
interface IFrame {
|
342
|
-
around: React$1.ReactElement<IIcon | IFigure>;
|
343
|
-
split?: string | false;
|
344
|
-
background?: string;
|
345
|
-
padding?: FramePadding;
|
346
|
-
lifted?: boolean;
|
347
|
-
}
|
348
|
-
|
349
|
-
declare const Frame: ({ around, split, background, padding, lifted, }: IFrame) => react_jsx_runtime.JSX.Element;
|
350
|
-
|
351
371
|
declare enum TextDecoration {
|
352
372
|
NONE = "NONE",
|
353
373
|
UNDERLINE = "UNDERLINE",
|
@@ -551,12 +571,12 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
|
|
551
571
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
552
572
|
|
553
573
|
interface ITerm {
|
554
|
-
|
574
|
+
figure: React$1.ReactElement<IFigure>;
|
555
575
|
label: string;
|
556
576
|
description?: string;
|
557
577
|
}
|
558
578
|
|
559
|
-
declare const Term: ({ label, description,
|
579
|
+
declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
|
560
580
|
|
561
581
|
declare const Terminal: () => react_jsx_runtime.JSX.Element;
|
562
582
|
|
@@ -657,8 +677,6 @@ interface AutoCompleteContextType<T> {
|
|
657
677
|
setHasFocus: SetState<boolean>;
|
658
678
|
}
|
659
679
|
|
660
|
-
declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
661
|
-
|
662
680
|
interface AutocompleteI<T> {
|
663
681
|
name: string;
|
664
682
|
debounceTime: number;
|
@@ -1761,4 +1779,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1761
1779
|
|
1762
1780
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1763
1781
|
|
1764
|
-
export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation,
|
1782
|
+
export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, 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 ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, 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, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -63,6 +63,10 @@ declare enum IconType {
|
|
63
63
|
LOCATION = "LOCATION"
|
64
64
|
}
|
65
65
|
|
66
|
+
interface IScaledIcon {
|
67
|
+
icon: React$1.ReactElement<IIcon>;
|
68
|
+
size: IconSize;
|
69
|
+
}
|
66
70
|
interface IIcon {
|
67
71
|
type: IconType;
|
68
72
|
screenReaderText?: string;
|
@@ -93,13 +97,99 @@ declare enum BadgeSize {
|
|
93
97
|
SMALL = "SMALL"
|
94
98
|
}
|
95
99
|
|
100
|
+
declare enum FigureSize {
|
101
|
+
SMALL = "SMALL",
|
102
|
+
MEDIUM = "MEDIUM",
|
103
|
+
LARGE = "LARGE",
|
104
|
+
XLARGE = "XLARGE"
|
105
|
+
}
|
106
|
+
declare enum FigureType {
|
107
|
+
CHILD = "CHILD",
|
108
|
+
FAMILY = "FAMILY",
|
109
|
+
CALENDAR = "CALENDAR",
|
110
|
+
BIN = "BIN",
|
111
|
+
ALERT = "ALERT",
|
112
|
+
PASSWORD = "PASSWORD",
|
113
|
+
SEARCH = "SEARCH",
|
114
|
+
FOLDER = "FOLDER",
|
115
|
+
PASSPORT = "PASSPORT",
|
116
|
+
SETTING = "SETTING",
|
117
|
+
FACE = "FACE",
|
118
|
+
PIN = "PIN",
|
119
|
+
MONEY = "MONEY",
|
120
|
+
IDEA = "IDEA",
|
121
|
+
OFFER = "OFFER",
|
122
|
+
FAVORITE = "FAVORITE",
|
123
|
+
FOLLOW_UP = "FOLLOW_UP",
|
124
|
+
STAR = "STAR",
|
125
|
+
COINS = "COINS",
|
126
|
+
CHECK = "CHECK",
|
127
|
+
LIKE = "LIKE",
|
128
|
+
MAP = "MAP",
|
129
|
+
ADD = "ADD",
|
130
|
+
APPLICATION = "APPLICATION",
|
131
|
+
BABY = "BABY",
|
132
|
+
BOOKMARK = "BOOKMARK",
|
133
|
+
CONVERSATION = "CONVERSATION",
|
134
|
+
CANCEL = "CANCEL",
|
135
|
+
DAD = "DAD",
|
136
|
+
DATETIME = "DATETIME",
|
137
|
+
FILE = "FILE",
|
138
|
+
HOME = "HOME",
|
139
|
+
INFORMATION = "INFORMATION",
|
140
|
+
MAIL = "MAIL",
|
141
|
+
MOM = "MOM",
|
142
|
+
NO = "NO",
|
143
|
+
NOTE = "NOTE",
|
144
|
+
YES = "YES",
|
145
|
+
FENCE = "FENCE",
|
146
|
+
BUILDING = "BUILDING",
|
147
|
+
BABY_BOTTLE = "BABY_BOTTLE",
|
148
|
+
DIAPERS = "DIAPERS",
|
149
|
+
CART = "CART",
|
150
|
+
PLANT = "PLANT",
|
151
|
+
CAMERA = "CAMERA",
|
152
|
+
CAR = "CAR",
|
153
|
+
HEART = "HEART",
|
154
|
+
CONTROL = "CONTROL",
|
155
|
+
ACCOUNT_VALIDATION = "ACCOUNT_VALIDATION",
|
156
|
+
DATE_TIME_SETTING = "DATE_TIME_SETTING",
|
157
|
+
TYPE = "TYPE"
|
158
|
+
}
|
159
|
+
|
160
|
+
interface IFigure {
|
161
|
+
type: FigureType;
|
162
|
+
screenReaderText: string;
|
163
|
+
}
|
164
|
+
interface IScaledFigure {
|
165
|
+
figure: React$1.ReactElement<IFigure>;
|
166
|
+
size: FigureSize;
|
167
|
+
}
|
168
|
+
|
169
|
+
declare const Figure: ({ type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
170
|
+
declare const ScaledFigure: ({ figure, size }: IScaledFigure) => react_jsx_runtime.JSX.Element;
|
171
|
+
|
172
|
+
declare enum FramePadding {
|
173
|
+
DEFAULT = "DEFAULT",
|
174
|
+
LARGE = "LARGE",
|
175
|
+
SMALL = "SMALL"
|
176
|
+
}
|
177
|
+
|
178
|
+
interface IFrame {
|
179
|
+
around: React$1.ReactElement<IIcon | IFigure>;
|
180
|
+
split?: string | false;
|
181
|
+
background?: string;
|
182
|
+
padding?: FramePadding;
|
183
|
+
lifted?: boolean;
|
184
|
+
}
|
185
|
+
|
96
186
|
interface IBadge {
|
97
187
|
type: BadgeType;
|
98
|
-
|
188
|
+
figure: React$1.ReactElement<IFigure>;
|
99
189
|
size?: BadgeSize;
|
100
190
|
}
|
101
191
|
|
102
|
-
declare const Badge: ({ type,
|
192
|
+
declare const Badge: ({ type, size, figure }: IBadge) => react_jsx_runtime.JSX.Element;
|
103
193
|
|
104
194
|
declare enum LabelSize {
|
105
195
|
DEFAULT = "DEFAULT",
|
@@ -107,6 +197,7 @@ declare enum LabelSize {
|
|
107
197
|
}
|
108
198
|
|
109
199
|
declare const Icon: ({ type, screenReaderText }: IIcon) => react_jsx_runtime.JSX.Element;
|
200
|
+
declare const ScaledIcon: ({ icon, size }: IScaledIcon) => react_jsx_runtime.JSX.Element;
|
110
201
|
|
111
202
|
interface ILabel {
|
112
203
|
iconType?: IconType;
|
@@ -242,61 +333,6 @@ declare enum ChoiceContext {
|
|
242
333
|
ERROR = "ERROR"
|
243
334
|
}
|
244
335
|
|
245
|
-
declare enum FigureSize {
|
246
|
-
SMALL = "SMALL",
|
247
|
-
MEDIUM = "MEDIUM",
|
248
|
-
LARGE = "LARGE",
|
249
|
-
XLARGE = "XLARGE"
|
250
|
-
}
|
251
|
-
declare enum FigureType {
|
252
|
-
CHILD = "CHILD",
|
253
|
-
FAMILY = "FAMILY",
|
254
|
-
CALENDAR = "CALENDAR",
|
255
|
-
BIN = "BIN",
|
256
|
-
ALERT = "ALERT",
|
257
|
-
PASSWORD = "PASSWORD",
|
258
|
-
SEARCH = "SEARCH",
|
259
|
-
FOLDER = "FOLDER",
|
260
|
-
PASSPORT = "PASSPORT",
|
261
|
-
SETTING = "SETTING",
|
262
|
-
FACE = "FACE",
|
263
|
-
PIN = "PIN",
|
264
|
-
MONEY = "MONEY",
|
265
|
-
IDEA = "IDEA",
|
266
|
-
OFFER = "OFFER",
|
267
|
-
FAVORITE = "FAVORITE",
|
268
|
-
FOLLOW_UP = "FOLLOW_UP",
|
269
|
-
STAR = "STAR",
|
270
|
-
COINS = "COINS",
|
271
|
-
CHECK = "CHECK",
|
272
|
-
LIKE = "LIKE",
|
273
|
-
MAP = "MAP",
|
274
|
-
ADD = "ADD",
|
275
|
-
APPLICATION = "APPLICATION",
|
276
|
-
BABY = "BABY",
|
277
|
-
BOOKMARK = "BOOKMARK",
|
278
|
-
CONVERSATION = "CONVERSATION",
|
279
|
-
CANCEL = "CANCEL",
|
280
|
-
DAD = "DAD",
|
281
|
-
DATETIME = "DATETIME",
|
282
|
-
FILE = "FILE",
|
283
|
-
HOME = "HOME",
|
284
|
-
INFORMATION = "INFORMATION",
|
285
|
-
MAIL = "MAIL",
|
286
|
-
MOM = "MOM",
|
287
|
-
NO = "NO",
|
288
|
-
NOTE = "NOTE",
|
289
|
-
YES = "YES",
|
290
|
-
FENCE = "FENCE",
|
291
|
-
BUILDING = "BUILDING"
|
292
|
-
}
|
293
|
-
|
294
|
-
interface IFigure {
|
295
|
-
size: FigureSize;
|
296
|
-
type: FigureType;
|
297
|
-
screenReaderText: string;
|
298
|
-
}
|
299
|
-
|
300
336
|
interface IChoiceBase {
|
301
337
|
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
302
338
|
value: string;
|
@@ -332,22 +368,6 @@ interface IExpand {
|
|
332
368
|
|
333
369
|
declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
|
334
370
|
|
335
|
-
declare enum FramePadding {
|
336
|
-
DEFAULT = "DEFAULT",
|
337
|
-
LARGE = "LARGE",
|
338
|
-
SMALL = "SMALL"
|
339
|
-
}
|
340
|
-
|
341
|
-
interface IFrame {
|
342
|
-
around: React$1.ReactElement<IIcon | IFigure>;
|
343
|
-
split?: string | false;
|
344
|
-
background?: string;
|
345
|
-
padding?: FramePadding;
|
346
|
-
lifted?: boolean;
|
347
|
-
}
|
348
|
-
|
349
|
-
declare const Frame: ({ around, split, background, padding, lifted, }: IFrame) => react_jsx_runtime.JSX.Element;
|
350
|
-
|
351
371
|
declare enum TextDecoration {
|
352
372
|
NONE = "NONE",
|
353
373
|
UNDERLINE = "UNDERLINE",
|
@@ -551,12 +571,12 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
|
|
551
571
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
552
572
|
|
553
573
|
interface ITerm {
|
554
|
-
|
574
|
+
figure: React$1.ReactElement<IFigure>;
|
555
575
|
label: string;
|
556
576
|
description?: string;
|
557
577
|
}
|
558
578
|
|
559
|
-
declare const Term: ({ label, description,
|
579
|
+
declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
|
560
580
|
|
561
581
|
declare const Terminal: () => react_jsx_runtime.JSX.Element;
|
562
582
|
|
@@ -657,8 +677,6 @@ interface AutoCompleteContextType<T> {
|
|
657
677
|
setHasFocus: SetState<boolean>;
|
658
678
|
}
|
659
679
|
|
660
|
-
declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
661
|
-
|
662
680
|
interface AutocompleteI<T> {
|
663
681
|
name: string;
|
664
682
|
debounceTime: number;
|
@@ -1761,4 +1779,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1761
1779
|
|
1762
1780
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1763
1781
|
|
1764
|
-
export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation,
|
1782
|
+
export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, 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 ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, 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, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|