@nativetail/ui 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativetail/ui",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {},
@@ -2,7 +2,7 @@ import { cn, Text, useTw, View } from "@nativetail/core";
2
2
  import { Pressable } from "react-native";
3
3
  import { Button, ButtonProps } from "../button";
4
4
 
5
- type CardProps = {
5
+ export type CardProps = {
6
6
  renderHeader?: () => React.ReactNode;
7
7
  title?: string;
8
8
  subtitle?: string;
@@ -7,7 +7,7 @@ import {
7
7
  ActionSheetRef,
8
8
  } from "../actions-sheet";
9
9
 
10
- type InfoCardProps = {
10
+ export type InfoCardProps = {
11
11
  containerClassname?: string;
12
12
  renderIcon?: () => React.ReactNode;
13
13
  renderContent?: () => React.ReactNode;
@@ -1,6 +1,6 @@
1
1
  import { cn, View } from "@nativetail/core";
2
2
 
3
- type StatCardProps = {
3
+ export type StatCardProps = {
4
4
  renderIcon?: () => React.ReactNode;
5
5
  renderTitle?: () => React.ReactNode;
6
6
  renderValue?: () => React.ReactNode;