@sellout/ui 0.0.6 → 0.0.7

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.
@@ -96,7 +96,7 @@ export declare const Icons: {
96
96
  };
97
97
  export declare type IconProps = {
98
98
  icon: any;
99
- color?: Colors | null;
99
+ color?: Colors | string | null;
100
100
  onClick?: any | null;
101
101
  size?: string | number | undefined;
102
102
  position?: string;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export default function Simple(): JSX.Element;
package/build/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { Colors } from "./Colors";
2
- import Button from './components/Button';
2
+ import Button, { ButtonTypes, ButtonStates } from './components/Button';
3
3
  import Counter from "./components/Counter";
4
4
  import Icon from "./components/Icon";
5
5
  import Input from "./components/Input";
6
- import Loader from "./components/Loader";
6
+ import Loader, { LoaderSizes } from "./components/Loader";
7
7
  import Product from "./components/Product";
8
8
  declare const Icons: {
9
9
  AudienceRegular: import("@fortawesome/fontawesome-common-types").IconDefinition;
@@ -99,4 +99,4 @@ declare const Icons: {
99
99
  SortBy: import("@fortawesome/fontawesome-common-types").IconDefinition;
100
100
  UpgradeSolid: import("@fortawesome/fontawesome-common-types").IconDefinition;
101
101
  };
102
- export { Colors, Button, Counter, Icon, Icons, Input, Loader, Product, };
102
+ export { Colors, Button, ButtonTypes, ButtonStates, Counter, Icon, Icons, Input, Loader, LoaderSizes, Product, };