@hoddy-ui/core 1.0.22 → 1.0.24

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": "@hoddy-ui/core",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "Core rich react native components written in typescript",
5
5
  "main": "index.ts",
6
6
  "repository": {
@@ -35,8 +35,6 @@ const FlashMessage: React.FC = () => {
35
35
  setMessage(null);
36
36
  }, 500);
37
37
  }, msg.duration || 2000);
38
-
39
- console.log("done", msg);
40
38
  };
41
39
  useEffect(() => {
42
40
  LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
package/src/types.ts CHANGED
@@ -103,7 +103,7 @@ export interface ButtonProps {
103
103
  export interface CheckboxProps {
104
104
  color?: colorTypes;
105
105
  label?: ReactNode;
106
- size: number;
106
+ size?: number;
107
107
  checked?: boolean;
108
108
  style?: ViewStyle;
109
109
  onChange?: () => void;