@tactics/lokaal-loket 0.0.175 → 0.0.176

Sign up to get free protection for your applications and to get access to all the features.
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,88 @@ 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
+ }
148
+
149
+ interface IFigure {
150
+ type: FigureType;
151
+ screenReaderText: string;
152
+ }
153
+ interface IScaledFigure {
154
+ figure: React$1.ReactElement<IFigure>;
155
+ size: FigureSize;
156
+ }
157
+
158
+ declare const Figure: ({ type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
159
+ declare const ScaledFigure: ({ figure, size }: IScaledFigure) => react_jsx_runtime.JSX.Element;
160
+
161
+ declare enum FramePadding {
162
+ DEFAULT = "DEFAULT",
163
+ LARGE = "LARGE",
164
+ SMALL = "SMALL"
165
+ }
166
+
167
+ interface IFrame {
168
+ around: React$1.ReactElement<IIcon | IFigure>;
169
+ split?: string | false;
170
+ background?: string;
171
+ padding?: FramePadding;
172
+ lifted?: boolean;
173
+ }
174
+
96
175
  interface IBadge {
97
176
  type: BadgeType;
98
- screenReaderText: string;
177
+ figure: React$1.ReactElement<IFigure>;
99
178
  size?: BadgeSize;
100
179
  }
101
180
 
102
- declare const Badge: ({ type, screenReaderText, size }: IBadge) => react_jsx_runtime.JSX.Element;
181
+ declare const Badge: ({ type, size, figure }: IBadge) => react_jsx_runtime.JSX.Element;
103
182
 
104
183
  declare enum LabelSize {
105
184
  DEFAULT = "DEFAULT",
@@ -107,6 +186,7 @@ declare enum LabelSize {
107
186
  }
108
187
 
109
188
  declare const Icon: ({ type, screenReaderText }: IIcon) => react_jsx_runtime.JSX.Element;
189
+ declare const ScaledIcon: ({ icon, size }: IScaledIcon) => react_jsx_runtime.JSX.Element;
110
190
 
111
191
  interface ILabel {
112
192
  iconType?: IconType;
@@ -242,61 +322,6 @@ declare enum ChoiceContext {
242
322
  ERROR = "ERROR"
243
323
  }
244
324
 
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
325
  interface IChoiceBase {
301
326
  onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
302
327
  value: string;
@@ -332,22 +357,6 @@ interface IExpand {
332
357
 
333
358
  declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
334
359
 
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
360
  declare enum TextDecoration {
352
361
  NONE = "NONE",
353
362
  UNDERLINE = "UNDERLINE",
@@ -551,12 +560,12 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
551
560
  declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
552
561
 
553
562
  interface ITerm {
554
- frame: React$1.ReactElement<IFrame | IBadge>;
563
+ figure: React$1.ReactElement<IFigure>;
555
564
  label: string;
556
565
  description?: string;
557
566
  }
558
567
 
559
- declare const Term: ({ label, description, frame }: ITerm) => react_jsx_runtime.JSX.Element;
568
+ declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
560
569
 
561
570
  declare const Terminal: () => react_jsx_runtime.JSX.Element;
562
571
 
@@ -657,8 +666,6 @@ interface AutoCompleteContextType<T> {
657
666
  setHasFocus: SetState<boolean>;
658
667
  }
659
668
 
660
- declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
661
-
662
669
  interface AutocompleteI<T> {
663
670
  name: string;
664
671
  debounceTime: number;
@@ -1761,4 +1768,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
1761
1768
 
1762
1769
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
1763
1770
 
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, Frame, FramePadding, 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 IFrame, 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, 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 };
1771
+ 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,88 @@ 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
+ }
148
+
149
+ interface IFigure {
150
+ type: FigureType;
151
+ screenReaderText: string;
152
+ }
153
+ interface IScaledFigure {
154
+ figure: React$1.ReactElement<IFigure>;
155
+ size: FigureSize;
156
+ }
157
+
158
+ declare const Figure: ({ type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
159
+ declare const ScaledFigure: ({ figure, size }: IScaledFigure) => react_jsx_runtime.JSX.Element;
160
+
161
+ declare enum FramePadding {
162
+ DEFAULT = "DEFAULT",
163
+ LARGE = "LARGE",
164
+ SMALL = "SMALL"
165
+ }
166
+
167
+ interface IFrame {
168
+ around: React$1.ReactElement<IIcon | IFigure>;
169
+ split?: string | false;
170
+ background?: string;
171
+ padding?: FramePadding;
172
+ lifted?: boolean;
173
+ }
174
+
96
175
  interface IBadge {
97
176
  type: BadgeType;
98
- screenReaderText: string;
177
+ figure: React$1.ReactElement<IFigure>;
99
178
  size?: BadgeSize;
100
179
  }
101
180
 
102
- declare const Badge: ({ type, screenReaderText, size }: IBadge) => react_jsx_runtime.JSX.Element;
181
+ declare const Badge: ({ type, size, figure }: IBadge) => react_jsx_runtime.JSX.Element;
103
182
 
104
183
  declare enum LabelSize {
105
184
  DEFAULT = "DEFAULT",
@@ -107,6 +186,7 @@ declare enum LabelSize {
107
186
  }
108
187
 
109
188
  declare const Icon: ({ type, screenReaderText }: IIcon) => react_jsx_runtime.JSX.Element;
189
+ declare const ScaledIcon: ({ icon, size }: IScaledIcon) => react_jsx_runtime.JSX.Element;
110
190
 
111
191
  interface ILabel {
112
192
  iconType?: IconType;
@@ -242,61 +322,6 @@ declare enum ChoiceContext {
242
322
  ERROR = "ERROR"
243
323
  }
244
324
 
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
325
  interface IChoiceBase {
301
326
  onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
302
327
  value: string;
@@ -332,22 +357,6 @@ interface IExpand {
332
357
 
333
358
  declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
334
359
 
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
360
  declare enum TextDecoration {
352
361
  NONE = "NONE",
353
362
  UNDERLINE = "UNDERLINE",
@@ -551,12 +560,12 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
551
560
  declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
552
561
 
553
562
  interface ITerm {
554
- frame: React$1.ReactElement<IFrame | IBadge>;
563
+ figure: React$1.ReactElement<IFigure>;
555
564
  label: string;
556
565
  description?: string;
557
566
  }
558
567
 
559
- declare const Term: ({ label, description, frame }: ITerm) => react_jsx_runtime.JSX.Element;
568
+ declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
560
569
 
561
570
  declare const Terminal: () => react_jsx_runtime.JSX.Element;
562
571
 
@@ -657,8 +666,6 @@ interface AutoCompleteContextType<T> {
657
666
  setHasFocus: SetState<boolean>;
658
667
  }
659
668
 
660
- declare const Figure: ({ size, type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
661
-
662
669
  interface AutocompleteI<T> {
663
670
  name: string;
664
671
  debounceTime: number;
@@ -1761,4 +1768,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
1761
1768
 
1762
1769
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
1763
1770
 
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, Frame, FramePadding, 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 IFrame, 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, 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 };
1771
+ 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 };