buildgrid-ui 1.1.0-dev.36 → 1.1.0-dev.38
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/dist/buildgrid-ui.es.js +3307 -3611
- package/dist/buildgrid-ui.umd.js +49 -49
- package/dist/components/index.d.ts +0 -1
- package/package.json +1 -2
- package/dist/components/form/form.d.ts +0 -23
- package/dist/components/form/index.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "buildgrid-ui",
|
|
3
|
-
"version": "1.1.0-dev.
|
|
3
|
+
"version": "1.1.0-dev.38",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"date-fns": "^4.1.0",
|
|
50
50
|
"lucide-react": "^0.469.0",
|
|
51
51
|
"react-day-picker": "^9.5.0",
|
|
52
|
-
"react-hook-form": "^7.54.2",
|
|
53
52
|
"sonner": "^1.7.1",
|
|
54
53
|
"tailwind-merge": "^2.6.0",
|
|
55
54
|
"tailwindcss-animate": "^1.0.7",
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import { ControllerProps, FieldPath, FieldValues } from 'react-hook-form';
|
|
4
|
-
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues extends FieldValues | undefined = undefined>(props: import("react-hook-form").FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
5
|
-
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
declare const useFormField: () => {
|
|
7
|
-
invalid: boolean;
|
|
8
|
-
isDirty: boolean;
|
|
9
|
-
isTouched: boolean;
|
|
10
|
-
isValidating: boolean;
|
|
11
|
-
error?: import("react-hook-form").FieldError;
|
|
12
|
-
id: string;
|
|
13
|
-
name: string;
|
|
14
|
-
formItemId: string;
|
|
15
|
-
formDescriptionId: string;
|
|
16
|
-
formMessageId: string;
|
|
17
|
-
};
|
|
18
|
-
declare const FormItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
-
declare const FormLabel: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
|
|
20
|
-
declare const FormControl: React.ForwardRefExoticComponent<Omit<import("@radix-ui/react-slot").SlotProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
21
|
-
declare const FormDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
22
|
-
declare const FormMessage: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
23
|
-
export { Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, useFormField, };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './form';
|