@nativetail/ui 0.2.3 → 0.2.4
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.
|
3
|
+
"version": "0.2.4",
|
4
4
|
"description": "",
|
5
5
|
"main": "src/index.ts",
|
6
6
|
"scripts": {},
|
@@ -29,7 +29,6 @@
|
|
29
29
|
"@hookform/resolvers": "^3.6.0",
|
30
30
|
"@nativetail/core": "^0.0.6",
|
31
31
|
"@shopify/flash-list": "^1.7.1",
|
32
|
-
"@sinclair/typebox": "0.32.34",
|
33
32
|
"countries-list": "^3.1.0",
|
34
33
|
"expo-blur": "^13.0.2",
|
35
34
|
"expo-linear-gradient": "~13.0.2",
|
@@ -1,9 +1,8 @@
|
|
1
1
|
import { zodResolver } from "@hookform/resolvers/zod";
|
2
|
-
import { typeboxResolver } from "@hookform/resolvers/typebox";
|
3
2
|
|
4
3
|
import { cn, TextInputProps, View } from "@nativetail/core";
|
5
4
|
import React, { ComponentPropsWithoutRef } from "react";
|
6
|
-
import { Control, DefaultValues,
|
5
|
+
import { Control, DefaultValues, useForm } from "react-hook-form";
|
7
6
|
import { z } from "zod";
|
8
7
|
import { Button } from "../button";
|
9
8
|
import {
|