@thecb/components 6.3.0-beta.1 → 6.3.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -66,13 +66,13 @@ interface BoxProps {
|
|
|
66
66
|
declare const Box: React.FC<Expand<BoxProps> &
|
|
67
67
|
React.HTMLAttributes<HTMLElement>>;
|
|
68
68
|
|
|
69
|
-
interface CenterProps
|
|
69
|
+
interface CenterProps {
|
|
70
70
|
maxWidth?: string;
|
|
71
71
|
gutters?: string;
|
|
72
72
|
intrinsic?: boolean;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
declare const Center: React.FC<Expand<CenterProps
|
|
75
|
+
declare const Center: React.FC<Expand<CenterProps> &
|
|
76
76
|
React.HTMLAttributes<HTMLElement>>;
|
|
77
77
|
|
|
78
78
|
interface ClusterProps {
|
|
@@ -126,7 +126,7 @@ interface StackProps {
|
|
|
126
126
|
| "inherit";
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
declare const Stack: React.FC<Expand<
|
|
129
|
+
declare const Stack: React.FC<Expand<StackProps> &
|
|
130
130
|
React.HTMLAttributes<HTMLElement>>;
|
|
131
131
|
|
|
132
132
|
interface ExternalLinkProps {
|
|
@@ -273,5 +273,5 @@ interface DefaultPageTemplateProps {
|
|
|
273
273
|
declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
|
|
274
274
|
React.HTMLAttributes<HTMLElement>>;
|
|
275
275
|
|
|
276
|
-
export { Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, CardWithHeader, CardWithHeaderProps, Center, CenterProps
|
|
276
|
+
export { Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, CardWithHeader, CardWithHeaderProps, Center, CenterProps, Cluster, ClusterProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, ExternalLink, ExternalLinkProps, FooterWithSubfooter, FooterWithSubfooterProps, InternalLink, InternalLinkProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, Stack, StackProps, Title, TitleProps, WelcomeCard, WelcomeCardProps };
|
|
277
277
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED