@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$1 {
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$1> &
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<CenterProps> &
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$1 as 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 };
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "6.3.0-beta.1",
3
+ "version": "6.3.0-beta.2",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -23,5 +23,5 @@ export interface StackProps {
23
23
  | "inherit";
24
24
  }
25
25
 
26
- export const Stack: React.FC<Expand<CenterProps> &
26
+ export const Stack: React.FC<Expand<StackProps> &
27
27
  React.HTMLAttributes<HTMLElement>>;