prisma-goat 0.4.4 → 0.4.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/README.md +1 -1
- package/dist/prisma-goat.d.ts +10 -0
- package/dist/prisma-goat.js +1004 -965
- package/dist/prisma-goat.umd.cjs +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/prisma-goat.d.ts
CHANGED
|
@@ -276,6 +276,16 @@ export declare type LoadingIndicatorProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
276
276
|
strokeWidth?: "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14";
|
|
277
277
|
};
|
|
278
278
|
|
|
279
|
+
export declare const MotionTransition: ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
280
|
+
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "experiences";
|
|
281
|
+
} & {
|
|
282
|
+
children?: ReactNode | undefined;
|
|
283
|
+
} & RefAttributes<HTMLDivElement>>;
|
|
284
|
+
|
|
285
|
+
export declare type MotionTransitionProps = HTMLAttributes<HTMLDivElement> & {
|
|
286
|
+
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "experiences";
|
|
287
|
+
};
|
|
288
|
+
|
|
279
289
|
export declare const Nav: ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
|
|
280
290
|
variant?: "goatData" | "secondary" | "experiences";
|
|
281
291
|
items: {
|