@windstream/react-shared-components 0.0.43 → 0.0.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windstream/react-shared-components",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
- import { ComaprisonTableProps } from "./types";
2
+ import { ComparisonTableProps } from "./types";
3
3
 
4
- export const ComparisonTable: React.FC<ComaprisonTableProps> = () => {
4
+ export const ComparisonTable: React.FC<ComparisonTableProps> = () => {
5
5
  return <div>ComaprisonTableProps</div>;
6
6
  };
@@ -1 +1 @@
1
- export type ComaprisonTableProps = {}
1
+ export type ComparisonTableProps = {}
@@ -46,3 +46,6 @@ export type { CtaCalloutProps } from "./blocks/cta-callout/types";
46
46
 
47
47
  export { FindKinetic } from "./blocks/find-kinetic";
48
48
  export type { FindKineticProps } from "./blocks/find-kinetic/types";
49
+
50
+ export { ComparisonTable } from "./blocks/comparison-table";
51
+ export type { ComparisonTableProps } from "./blocks/comparison-table/types";