@tactics/lokaal-loket 0.0.90 → 0.0.91

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
3
- import { ColorKey, ColorVariantKey, TypographyFontKey, TypographyFontsKey, TypographyFontWeight, TypographyFontWeightKey, RadiusKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
3
+ import { ColorKey, ColorVariantKey, TypographyFontKey, TypographyFontsKey, TypographyFontWeight, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } 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
6
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, StyleProviderRouter, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
@@ -333,9 +333,12 @@ interface IHeading {
333
333
  size?: TypographyFontKey;
334
334
  font?: TypographyFontsKey;
335
335
  fontWeight?: TypographyFontWeight;
336
+ color?: ColorKey;
337
+ tint?: ColorVariantKey;
338
+ textColor?: string;
336
339
  }
337
340
 
338
- declare const Heading: ({ id, title, children, htmlType, size, font, fontWeight, }: IHeading) => react_jsx_runtime.JSX.Element;
341
+ declare const Heading: ({ id, title, children, htmlType, size, font, fontWeight, color, tint, textColor, }: IHeading) => react_jsx_runtime.JSX.Element;
339
342
 
340
343
  declare enum TextDecoration {
341
344
  NONE = "NONE",
@@ -973,14 +976,20 @@ declare const TopNavigation: {
973
976
  };
974
977
 
975
978
  interface IOnboarding {
976
- heading: React$1.ReactElement<IHeading>;
977
- content: React$1.ReactElement<IPlainText>;
978
- cta: React$1.ReactElement<IButton>;
979
+ heading: string;
980
+ content: string;
981
+ cta: string;
979
982
  figure: React$1.ReactElement<IFigure>;
980
983
  }
981
984
 
982
985
  declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
983
986
 
987
+ interface IQuickSearch {
988
+ heading: string;
989
+ }
990
+
991
+ declare const QuickSearch: ({ heading }: IQuickSearch) => react_jsx_runtime.JSX.Element;
992
+
984
993
  interface IInfoCard {
985
994
  figureType: FigureType;
986
995
  title: string;
@@ -996,23 +1005,32 @@ interface IInstruction {
996
1005
 
997
1006
  declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
998
1007
 
999
- interface IHeader {
1008
+ interface IHeaderMobile {
1000
1009
  profileNavigation: React$1.ReactNode;
1010
+ compactNavigation: React$1.ReactNode;
1011
+ }
1012
+ interface IHeaderTop {
1013
+ brand: React$1.ReactNode;
1001
1014
  topNavigation: React$1.ReactNode;
1015
+ }
1016
+ interface IHeaderBottom extends IHeaderMobile {
1017
+ navigation: React$1.ReactNode;
1018
+ brand: React$1.ReactNode;
1019
+ }
1020
+ interface IHeaderAlternate extends IHeaderMobile {
1002
1021
  navigation: React$1.ReactNode;
1003
- compactNavigation: React$1.ReactNode;
1004
1022
  brand: React$1.ReactNode;
1005
1023
  }
1006
1024
 
1007
1025
  interface HeaderContextType {
1008
- offset: number;
1009
- setOffset: React$1.Dispatch<React$1.SetStateAction<number>>;
1010
1026
  isSticky: boolean;
1011
1027
  setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1012
1028
  }
1013
1029
  declare const HeaderContext: React$1.Context<HeaderContextType>;
1014
1030
 
1015
- declare const Header: (props: IHeader) => react_jsx_runtime.JSX.Element;
1031
+ declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
1032
+ declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
1033
+ declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
1016
1034
 
1017
1035
  type IPointOnMap = {
1018
1036
  key: string;
@@ -1184,7 +1202,8 @@ interface IHomeSectionLeftSplit {
1184
1202
  declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
1185
1203
 
1186
1204
  interface ISharedSectionHeader {
1187
- content: React$1.ReactElement;
1205
+ top?: React$1.ReactElement;
1206
+ bottom: React$1.ReactElement;
1188
1207
  }
1189
1208
 
1190
1209
  declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
@@ -1243,15 +1262,17 @@ declare enum ContainerType {
1243
1262
  interface IContainer {
1244
1263
  children?: React$1.ReactNode | React$1.ReactNode[] | string;
1245
1264
  type?: ContainerType;
1246
- radius?: RadiusKey;
1265
+ radius?: string;
1247
1266
  lifted?: boolean;
1248
1267
  fullWidth?: boolean;
1249
1268
  tint?: ColorVariantKey;
1250
1269
  padding?: SpacingKey;
1251
1270
  color?: ColorKey;
1271
+ border?: string;
1272
+ background?: string;
1252
1273
  }
1253
1274
 
1254
- declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, }: IContainer) => react_jsx_runtime.JSX.Element;
1275
+ declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, border, background, }: IContainer) => react_jsx_runtime.JSX.Element;
1255
1276
 
1256
1277
  declare enum DrawerSize {
1257
1278
  SMALL = "SMALL",
@@ -1270,6 +1291,11 @@ declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
1270
1291
  interface GridProps {
1271
1292
  children: React.ReactNode;
1272
1293
  gap?: SpacingKey;
1294
+ smGap?: SpacingKey;
1295
+ mdGap?: SpacingKey;
1296
+ lgGap?: SpacingKey;
1297
+ xlGap?: SpacingKey;
1298
+ xxlGap?: SpacingKey;
1273
1299
  smBreakpoint?: number;
1274
1300
  mdBreakpoint?: number;
1275
1301
  lgBreakpoint?: number;
@@ -1287,7 +1313,7 @@ interface GridItemProps {
1287
1313
  }
1288
1314
 
1289
1315
  declare const Grid: {
1290
- ({ children, gap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
1316
+ ({ children, gap, smGap, mdGap, lgGap, xlGap, xxlGap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
1291
1317
  Item: ({ initial, sm, md, lg, xl, xxl, children }: GridItemProps) => react_jsx_runtime.JSX.Element;
1292
1318
  };
1293
1319
 
@@ -1543,4 +1569,4 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
1543
1569
  declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
1544
1570
  declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
1545
1571
 
1546
- 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, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, Header, HeaderContext, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionLeftSplit, HtmlHeading, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFrame, type IHeader, type IHeading, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, 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 IPadding, type IPaddingCssItem, type IPaddingItem, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, 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 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, Link, LinkContext, List, ListType, Location, type LocationI, Logo, LogoSize, Map, Margin, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, Overlay, OverlayContext, OverlayHeading, OverlayProvider, Padding, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, 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, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
1572
+ 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, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionLeftSplit, HtmlHeading, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFrame, type IHeaderBottom, type IHeaderTop, type IHeading, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, 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 IPadding, type IPaddingCssItem, type IPaddingItem, 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 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, Link, LinkContext, List, ListType, Location, type LocationI, Logo, LogoSize, Map, Margin, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, Overlay, OverlayContext, OverlayHeading, OverlayProvider, Padding, 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, 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, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
package/build/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
3
- import { ColorKey, ColorVariantKey, TypographyFontKey, TypographyFontsKey, TypographyFontWeight, TypographyFontWeightKey, RadiusKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
3
+ import { ColorKey, ColorVariantKey, TypographyFontKey, TypographyFontsKey, TypographyFontWeight, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } 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
6
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, StyleProviderRouter, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
@@ -333,9 +333,12 @@ interface IHeading {
333
333
  size?: TypographyFontKey;
334
334
  font?: TypographyFontsKey;
335
335
  fontWeight?: TypographyFontWeight;
336
+ color?: ColorKey;
337
+ tint?: ColorVariantKey;
338
+ textColor?: string;
336
339
  }
337
340
 
338
- declare const Heading: ({ id, title, children, htmlType, size, font, fontWeight, }: IHeading) => react_jsx_runtime.JSX.Element;
341
+ declare const Heading: ({ id, title, children, htmlType, size, font, fontWeight, color, tint, textColor, }: IHeading) => react_jsx_runtime.JSX.Element;
339
342
 
340
343
  declare enum TextDecoration {
341
344
  NONE = "NONE",
@@ -973,14 +976,20 @@ declare const TopNavigation: {
973
976
  };
974
977
 
975
978
  interface IOnboarding {
976
- heading: React$1.ReactElement<IHeading>;
977
- content: React$1.ReactElement<IPlainText>;
978
- cta: React$1.ReactElement<IButton>;
979
+ heading: string;
980
+ content: string;
981
+ cta: string;
979
982
  figure: React$1.ReactElement<IFigure>;
980
983
  }
981
984
 
982
985
  declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
983
986
 
987
+ interface IQuickSearch {
988
+ heading: string;
989
+ }
990
+
991
+ declare const QuickSearch: ({ heading }: IQuickSearch) => react_jsx_runtime.JSX.Element;
992
+
984
993
  interface IInfoCard {
985
994
  figureType: FigureType;
986
995
  title: string;
@@ -996,23 +1005,32 @@ interface IInstruction {
996
1005
 
997
1006
  declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
998
1007
 
999
- interface IHeader {
1008
+ interface IHeaderMobile {
1000
1009
  profileNavigation: React$1.ReactNode;
1010
+ compactNavigation: React$1.ReactNode;
1011
+ }
1012
+ interface IHeaderTop {
1013
+ brand: React$1.ReactNode;
1001
1014
  topNavigation: React$1.ReactNode;
1015
+ }
1016
+ interface IHeaderBottom extends IHeaderMobile {
1017
+ navigation: React$1.ReactNode;
1018
+ brand: React$1.ReactNode;
1019
+ }
1020
+ interface IHeaderAlternate extends IHeaderMobile {
1002
1021
  navigation: React$1.ReactNode;
1003
- compactNavigation: React$1.ReactNode;
1004
1022
  brand: React$1.ReactNode;
1005
1023
  }
1006
1024
 
1007
1025
  interface HeaderContextType {
1008
- offset: number;
1009
- setOffset: React$1.Dispatch<React$1.SetStateAction<number>>;
1010
1026
  isSticky: boolean;
1011
1027
  setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1012
1028
  }
1013
1029
  declare const HeaderContext: React$1.Context<HeaderContextType>;
1014
1030
 
1015
- declare const Header: (props: IHeader) => react_jsx_runtime.JSX.Element;
1031
+ declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
1032
+ declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
1033
+ declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
1016
1034
 
1017
1035
  type IPointOnMap = {
1018
1036
  key: string;
@@ -1184,7 +1202,8 @@ interface IHomeSectionLeftSplit {
1184
1202
  declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
1185
1203
 
1186
1204
  interface ISharedSectionHeader {
1187
- content: React$1.ReactElement;
1205
+ top?: React$1.ReactElement;
1206
+ bottom: React$1.ReactElement;
1188
1207
  }
1189
1208
 
1190
1209
  declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
@@ -1243,15 +1262,17 @@ declare enum ContainerType {
1243
1262
  interface IContainer {
1244
1263
  children?: React$1.ReactNode | React$1.ReactNode[] | string;
1245
1264
  type?: ContainerType;
1246
- radius?: RadiusKey;
1265
+ radius?: string;
1247
1266
  lifted?: boolean;
1248
1267
  fullWidth?: boolean;
1249
1268
  tint?: ColorVariantKey;
1250
1269
  padding?: SpacingKey;
1251
1270
  color?: ColorKey;
1271
+ border?: string;
1272
+ background?: string;
1252
1273
  }
1253
1274
 
1254
- declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, }: IContainer) => react_jsx_runtime.JSX.Element;
1275
+ declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, border, background, }: IContainer) => react_jsx_runtime.JSX.Element;
1255
1276
 
1256
1277
  declare enum DrawerSize {
1257
1278
  SMALL = "SMALL",
@@ -1270,6 +1291,11 @@ declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
1270
1291
  interface GridProps {
1271
1292
  children: React.ReactNode;
1272
1293
  gap?: SpacingKey;
1294
+ smGap?: SpacingKey;
1295
+ mdGap?: SpacingKey;
1296
+ lgGap?: SpacingKey;
1297
+ xlGap?: SpacingKey;
1298
+ xxlGap?: SpacingKey;
1273
1299
  smBreakpoint?: number;
1274
1300
  mdBreakpoint?: number;
1275
1301
  lgBreakpoint?: number;
@@ -1287,7 +1313,7 @@ interface GridItemProps {
1287
1313
  }
1288
1314
 
1289
1315
  declare const Grid: {
1290
- ({ children, gap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
1316
+ ({ children, gap, smGap, mdGap, lgGap, xlGap, xxlGap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
1291
1317
  Item: ({ initial, sm, md, lg, xl, xxl, children }: GridItemProps) => react_jsx_runtime.JSX.Element;
1292
1318
  };
1293
1319
 
@@ -1543,4 +1569,4 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
1543
1569
  declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
1544
1570
  declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
1545
1571
 
1546
- 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, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, Header, HeaderContext, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionLeftSplit, HtmlHeading, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFrame, type IHeader, type IHeading, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, 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 IPadding, type IPaddingCssItem, type IPaddingItem, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, 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 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, Link, LinkContext, List, ListType, Location, type LocationI, Logo, LogoSize, Map, Margin, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, Overlay, OverlayContext, OverlayHeading, OverlayProvider, Padding, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, 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, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
1572
+ 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, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Contained, Container, ContainerType, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionLeftSplit, HtmlHeading, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContained, type IContainer, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFrame, type IHeaderBottom, type IHeaderTop, type IHeading, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILink, type IList, type ILogo, type IMap, type IMargin, type IMarginCssItem, type IMarginItem, 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 IPadding, type IPaddingCssItem, type IPaddingItem, 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 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, Link, LinkContext, List, ListType, Location, type LocationI, Logo, LogoSize, Map, Margin, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, Overlay, OverlayContext, OverlayHeading, OverlayProvider, Padding, 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, 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, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };