ui-czn 1.0.45 → 1.0.46
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/index.d.ts +21 -0
- package/dist/ui-czn.es.js +7 -0
- package/dist/ui-czn.umd.js +30 -30
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,15 @@ import { ReactNode } from 'react';
|
|
|
10
10
|
import { VariantProps } from 'class-variance-authority';
|
|
11
11
|
import * as z from 'zod';
|
|
12
12
|
|
|
13
|
+
export declare function Badge({ className, variant, ...props }: BadgeProps): JSX.Element;
|
|
14
|
+
|
|
15
|
+
export declare interface BadgeProps extends React_2.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
declare const badgeVariants: (props?: ({
|
|
19
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
20
|
+
} & ClassProp) | undefined) => string;
|
|
21
|
+
|
|
13
22
|
export declare const BaseForm: React_2.FC<BaseFormProps>;
|
|
14
23
|
|
|
15
24
|
export declare interface BaseFormProps {
|
|
@@ -40,6 +49,16 @@ declare const buttonVariants: (props?: ({
|
|
|
40
49
|
rounded?: "default" | "sm" | "lg" | "dm" | "xl" | "2xl" | "3xl" | "4xl" | null | undefined;
|
|
41
50
|
} & ClassProp) | undefined) => string;
|
|
42
51
|
|
|
52
|
+
export declare const Card: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
53
|
+
|
|
54
|
+
export declare const CardContent: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
55
|
+
|
|
56
|
+
export declare const CardDescription: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
57
|
+
|
|
58
|
+
export declare const CardFooter: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
59
|
+
|
|
60
|
+
export declare const CardHeader: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
61
|
+
|
|
43
62
|
export declare const CardPartner: React_2.ForwardRefExoticComponent<CardPartnerProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
44
63
|
|
|
45
64
|
export declare interface CardPartnerProps extends VariantProps<typeof cardPartnerVariants> {
|
|
@@ -69,6 +88,8 @@ export declare interface CardPersonnelProps {
|
|
|
69
88
|
personPosition?: string;
|
|
70
89
|
}
|
|
71
90
|
|
|
91
|
+
export declare const CardTitle: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
92
|
+
|
|
72
93
|
export declare const CardWithBadge: React_2.ForwardRefExoticComponent<CardWithBadgeProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
73
94
|
|
|
74
95
|
export declare interface CardWithBadgeProps {
|
package/dist/ui-czn.es.js
CHANGED
|
@@ -15729,10 +15729,17 @@ const ry = "flex w-full input-base px-3 items-center justify-between gap-4 min-w
|
|
|
15729
15729
|
);
|
|
15730
15730
|
};
|
|
15731
15731
|
export {
|
|
15732
|
+
dv as Badge,
|
|
15732
15733
|
rm as BaseForm,
|
|
15733
15734
|
wa as Button,
|
|
15735
|
+
br as Card,
|
|
15736
|
+
yr as CardContent,
|
|
15737
|
+
co as CardDescription,
|
|
15738
|
+
ba as CardFooter,
|
|
15739
|
+
Vn as CardHeader,
|
|
15734
15740
|
$a as CardPartner,
|
|
15735
15741
|
lv as CardPersonnel,
|
|
15742
|
+
Yn as CardTitle,
|
|
15736
15743
|
hv as CardWithBadge,
|
|
15737
15744
|
cv as CardWithIcon,
|
|
15738
15745
|
lo as CardWithImg,
|