@nativetail/ui 0.2.4 → 0.2.5

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": "@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;