@nulogy/components 8.2.0 → 8.2.1

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.
@@ -1,2 +1,2 @@
1
- declare const HelpText: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, import("../Type/Text").TextProps, never>;
1
+ declare const HelpText: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, import("../Type").TextProps, never>;
2
2
  export default HelpText;
@@ -1,3 +1,3 @@
1
- import Table, { TableRowType, TableColumnType, TableCellInfoType, TableProps } from "./Table";
2
- export type { TableRowType, TableColumnType, TableProps, TableCellInfoType };
1
+ import Table from "./Table";
2
+ export type { TableRowType, TableColumnType, TableProps, TableCellInfoType } from "./Table";
3
3
  export { Table };
@@ -1,6 +1,5 @@
1
- import { TextProps } from "./Text";
2
- declare const Heading1: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, TextProps, never>;
3
- declare const Heading2: import("styled-components").StyledComponent<"h2", import("styled-components").DefaultTheme, TextProps, never>;
4
- declare const Heading3: import("styled-components").StyledComponent<"h3", import("styled-components").DefaultTheme, TextProps, never>;
5
- declare const Heading4: import("styled-components").StyledComponent<"h4", import("styled-components").DefaultTheme, TextProps, never>;
1
+ declare const Heading1: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, import("./Text").TextProps, never>;
2
+ declare const Heading2: import("styled-components").StyledComponent<"h2", import("styled-components").DefaultTheme, import("./Text").TextProps, never>;
3
+ declare const Heading3: import("styled-components").StyledComponent<"h3", import("styled-components").DefaultTheme, import("./Text").TextProps, never>;
4
+ declare const Heading4: import("styled-components").StyledComponent<"h4", import("styled-components").DefaultTheme, import("./Text").TextProps, never>;
6
5
  export { Heading1, Heading2, Heading3, Heading4 };
@@ -1,2 +1,3 @@
1
1
  export { default as Text } from "./Text";
2
+ export type { TextProps } from "./Text";
2
3
  export * from "./Headings";
@@ -5,6 +5,7 @@ export { Box, AnimatedBox } from "./Box";
5
5
  export { Flex } from "./Flex";
6
6
  export { Icon, InlineIcon } from "./Icon";
7
7
  export { Text, Heading1, Heading2, Heading3, Heading4 } from "./Type";
8
+ export type { TextProps } from "./Type";
8
9
  export { Button, PrimaryButton, DangerButton, QuietButton, IconicButton, ControlIcon } from "./Button";
9
10
  export { ButtonGroup } from "./ButtonGroup";
10
11
  export { Link } from "./Link";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nulogy/components",
3
- "version": "8.2.0",
3
+ "version": "8.2.1",
4
4
  "description": "Component library for the Nulogy Design System - http://nulogy.design",
5
5
  "private": false,
6
6
  "publishConfig": {