@tactics/lokaal-loket 0.0.90 → 0.0.92
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +650 -526
- package/build/index.d.cts +58 -15
- package/build/index.d.ts +58 -15
- package/build/index.js +469 -350
- package/package.json +1 -1
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,
|
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:
|
977
|
-
content:
|
978
|
-
cta:
|
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,41 @@ interface IInstruction {
|
|
996
1005
|
|
997
1006
|
declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
|
998
1007
|
|
999
|
-
interface
|
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
|
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;
|
1034
|
+
|
1035
|
+
interface IFooter {
|
1036
|
+
top: React$1.ReactNode;
|
1037
|
+
left: React$1.ReactNode;
|
1038
|
+
right: React$1.ReactNode;
|
1039
|
+
bottom: React$1.ReactNode;
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1016
1043
|
|
1017
1044
|
type IPointOnMap = {
|
1018
1045
|
key: string;
|
@@ -1146,6 +1173,14 @@ interface IHomeSectionFaq {
|
|
1146
1173
|
|
1147
1174
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
1148
1175
|
|
1176
|
+
interface IHomeSectionGettingStarted {
|
1177
|
+
title: string;
|
1178
|
+
quickSearch: React$1.ReactElement;
|
1179
|
+
onBoarding: React$1.ReactElement;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) => react_jsx_runtime.JSX.Element;
|
1183
|
+
|
1149
1184
|
interface IOnboardingArrangementIntroduction {
|
1150
1185
|
top: React$1.ReactElement;
|
1151
1186
|
left: React$1.ReactElement;
|
@@ -1184,7 +1219,8 @@ interface IHomeSectionLeftSplit {
|
|
1184
1219
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
1185
1220
|
|
1186
1221
|
interface ISharedSectionHeader {
|
1187
|
-
|
1222
|
+
top?: React$1.ReactElement;
|
1223
|
+
bottom: React$1.ReactElement;
|
1188
1224
|
}
|
1189
1225
|
|
1190
1226
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
@@ -1243,15 +1279,17 @@ declare enum ContainerType {
|
|
1243
1279
|
interface IContainer {
|
1244
1280
|
children?: React$1.ReactNode | React$1.ReactNode[] | string;
|
1245
1281
|
type?: ContainerType;
|
1246
|
-
radius?:
|
1282
|
+
radius?: string;
|
1247
1283
|
lifted?: boolean;
|
1248
1284
|
fullWidth?: boolean;
|
1249
1285
|
tint?: ColorVariantKey;
|
1250
1286
|
padding?: SpacingKey;
|
1251
1287
|
color?: ColorKey;
|
1288
|
+
border?: string;
|
1289
|
+
background?: string;
|
1252
1290
|
}
|
1253
1291
|
|
1254
|
-
declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, }: IContainer) => react_jsx_runtime.JSX.Element;
|
1292
|
+
declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, border, background, }: IContainer) => react_jsx_runtime.JSX.Element;
|
1255
1293
|
|
1256
1294
|
declare enum DrawerSize {
|
1257
1295
|
SMALL = "SMALL",
|
@@ -1270,6 +1308,11 @@ declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
|
|
1270
1308
|
interface GridProps {
|
1271
1309
|
children: React.ReactNode;
|
1272
1310
|
gap?: SpacingKey;
|
1311
|
+
smGap?: SpacingKey;
|
1312
|
+
mdGap?: SpacingKey;
|
1313
|
+
lgGap?: SpacingKey;
|
1314
|
+
xlGap?: SpacingKey;
|
1315
|
+
xxlGap?: SpacingKey;
|
1273
1316
|
smBreakpoint?: number;
|
1274
1317
|
mdBreakpoint?: number;
|
1275
1318
|
lgBreakpoint?: number;
|
@@ -1287,7 +1330,7 @@ interface GridItemProps {
|
|
1287
1330
|
}
|
1288
1331
|
|
1289
1332
|
declare const Grid: {
|
1290
|
-
({ children, gap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
|
1333
|
+
({ children, gap, smGap, mdGap, lgGap, xlGap, xxlGap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
|
1291
1334
|
Item: ({ initial, sm, md, lg, xl, xxl, children }: GridItemProps) => react_jsx_runtime.JSX.Element;
|
1292
1335
|
};
|
1293
1336
|
|
@@ -1543,4 +1586,4 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
1543
1586
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1544
1587
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1545
1588
|
|
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,
|
1589
|
+
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, Footer, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, 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 IFooter, type IFrame, type IHeaderBottom, type IHeaderTop, type IHeading, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, 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,
|
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:
|
977
|
-
content:
|
978
|
-
cta:
|
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,41 @@ interface IInstruction {
|
|
996
1005
|
|
997
1006
|
declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
|
998
1007
|
|
999
|
-
interface
|
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
|
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;
|
1034
|
+
|
1035
|
+
interface IFooter {
|
1036
|
+
top: React$1.ReactNode;
|
1037
|
+
left: React$1.ReactNode;
|
1038
|
+
right: React$1.ReactNode;
|
1039
|
+
bottom: React$1.ReactNode;
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1016
1043
|
|
1017
1044
|
type IPointOnMap = {
|
1018
1045
|
key: string;
|
@@ -1146,6 +1173,14 @@ interface IHomeSectionFaq {
|
|
1146
1173
|
|
1147
1174
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
1148
1175
|
|
1176
|
+
interface IHomeSectionGettingStarted {
|
1177
|
+
title: string;
|
1178
|
+
quickSearch: React$1.ReactElement;
|
1179
|
+
onBoarding: React$1.ReactElement;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) => react_jsx_runtime.JSX.Element;
|
1183
|
+
|
1149
1184
|
interface IOnboardingArrangementIntroduction {
|
1150
1185
|
top: React$1.ReactElement;
|
1151
1186
|
left: React$1.ReactElement;
|
@@ -1184,7 +1219,8 @@ interface IHomeSectionLeftSplit {
|
|
1184
1219
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
1185
1220
|
|
1186
1221
|
interface ISharedSectionHeader {
|
1187
|
-
|
1222
|
+
top?: React$1.ReactElement;
|
1223
|
+
bottom: React$1.ReactElement;
|
1188
1224
|
}
|
1189
1225
|
|
1190
1226
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
@@ -1243,15 +1279,17 @@ declare enum ContainerType {
|
|
1243
1279
|
interface IContainer {
|
1244
1280
|
children?: React$1.ReactNode | React$1.ReactNode[] | string;
|
1245
1281
|
type?: ContainerType;
|
1246
|
-
radius?:
|
1282
|
+
radius?: string;
|
1247
1283
|
lifted?: boolean;
|
1248
1284
|
fullWidth?: boolean;
|
1249
1285
|
tint?: ColorVariantKey;
|
1250
1286
|
padding?: SpacingKey;
|
1251
1287
|
color?: ColorKey;
|
1288
|
+
border?: string;
|
1289
|
+
background?: string;
|
1252
1290
|
}
|
1253
1291
|
|
1254
|
-
declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, }: IContainer) => react_jsx_runtime.JSX.Element;
|
1292
|
+
declare const Container: ({ children, type, radius, color, tint, lifted, padding, fullWidth, border, background, }: IContainer) => react_jsx_runtime.JSX.Element;
|
1255
1293
|
|
1256
1294
|
declare enum DrawerSize {
|
1257
1295
|
SMALL = "SMALL",
|
@@ -1270,6 +1308,11 @@ declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
|
|
1270
1308
|
interface GridProps {
|
1271
1309
|
children: React.ReactNode;
|
1272
1310
|
gap?: SpacingKey;
|
1311
|
+
smGap?: SpacingKey;
|
1312
|
+
mdGap?: SpacingKey;
|
1313
|
+
lgGap?: SpacingKey;
|
1314
|
+
xlGap?: SpacingKey;
|
1315
|
+
xxlGap?: SpacingKey;
|
1273
1316
|
smBreakpoint?: number;
|
1274
1317
|
mdBreakpoint?: number;
|
1275
1318
|
lgBreakpoint?: number;
|
@@ -1287,7 +1330,7 @@ interface GridItemProps {
|
|
1287
1330
|
}
|
1288
1331
|
|
1289
1332
|
declare const Grid: {
|
1290
|
-
({ children, gap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
|
1333
|
+
({ children, gap, smGap, mdGap, lgGap, xlGap, xxlGap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, }: GridProps): react_jsx_runtime.JSX.Element;
|
1291
1334
|
Item: ({ initial, sm, md, lg, xl, xxl, children }: GridItemProps) => react_jsx_runtime.JSX.Element;
|
1292
1335
|
};
|
1293
1336
|
|
@@ -1543,4 +1586,4 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
1543
1586
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1544
1587
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
1545
1588
|
|
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,
|
1589
|
+
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, Footer, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, Heading, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, 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 IFooter, type IFrame, type IHeaderBottom, type IHeaderTop, type IHeading, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, 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 };
|