prisma-goat 0.7.5 → 0.7.6
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 +4 -6
- package/dist/prisma-goat.js +1418 -1422
- package/dist/prisma-goat.umd.cjs +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/prisma-goat.d.ts
CHANGED
|
@@ -355,8 +355,8 @@ logo?: string;
|
|
|
355
355
|
heightLogo?: string;
|
|
356
356
|
widthLogo?: string;
|
|
357
357
|
activeRoute?: string;
|
|
358
|
-
toggleTheme?: () => void;
|
|
359
|
-
toggeInstallApp?: () => void;
|
|
358
|
+
toggleTheme?: (e?: any) => void;
|
|
359
|
+
toggeInstallApp?: (e?: any) => void;
|
|
360
360
|
theme?: boolean;
|
|
361
361
|
InstallApp?: boolean;
|
|
362
362
|
login?: boolean;
|
|
@@ -366,7 +366,6 @@ logoGoatDataIndicator?: "logoRed" | "logoBlack" | "logo6" | "logoMagenta" | "log
|
|
|
366
366
|
imgLoadingIndicator?: string;
|
|
367
367
|
strokeWidthIndicator?: "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14";
|
|
368
368
|
handleLogout?: () => void;
|
|
369
|
-
isLight?: boolean;
|
|
370
369
|
} & {
|
|
371
370
|
children?: ReactNode | undefined;
|
|
372
371
|
} & RefAttributes<HTMLElement>>;
|
|
@@ -396,8 +395,8 @@ export declare type NavbarProps = HTMLAttributes<HTMLElement> & {
|
|
|
396
395
|
heightLogo?: string;
|
|
397
396
|
widthLogo?: string;
|
|
398
397
|
activeRoute?: string;
|
|
399
|
-
toggleTheme?: () => void;
|
|
400
|
-
toggeInstallApp?: () => void;
|
|
398
|
+
toggleTheme?: (e?: any) => void;
|
|
399
|
+
toggeInstallApp?: (e?: any) => void;
|
|
401
400
|
theme?: boolean;
|
|
402
401
|
InstallApp?: boolean;
|
|
403
402
|
login?: boolean;
|
|
@@ -407,7 +406,6 @@ export declare type NavbarProps = HTMLAttributes<HTMLElement> & {
|
|
|
407
406
|
imgLoadingIndicator?: string;
|
|
408
407
|
strokeWidthIndicator?: "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14";
|
|
409
408
|
handleLogout?: () => void;
|
|
410
|
-
isLight?: boolean;
|
|
411
409
|
};
|
|
412
410
|
|
|
413
411
|
export declare type NavProps = HTMLAttributes<HTMLElement> & {
|