@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
|
|
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
|
|
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
|
-
|
|
2
|
-
declare const
|
|
3
|
-
declare const
|
|
4
|
-
declare const
|
|
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 };
|
package/dist/src/Type/index.d.ts
CHANGED
package/dist/src/index.d.ts
CHANGED
|
@@ -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";
|