prisma-goat 0.11.2 → 0.11.3
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 +6 -0
- package/dist/prisma-goat.js +1381 -1370
- package/dist/prisma-goat.umd.cjs +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/prisma-goat.d.ts
CHANGED
|
@@ -478,6 +478,7 @@ logo?: string;
|
|
|
478
478
|
heightLogo?: string;
|
|
479
479
|
widthLogo?: string;
|
|
480
480
|
activeRoute?: string;
|
|
481
|
+
sucursalName?: string;
|
|
481
482
|
router: any;
|
|
482
483
|
user?: {
|
|
483
484
|
name: string;
|
|
@@ -489,11 +490,13 @@ link: string;
|
|
|
489
490
|
}>;
|
|
490
491
|
theme?: boolean;
|
|
491
492
|
InstallApp?: boolean;
|
|
493
|
+
sucursal?: boolean;
|
|
492
494
|
version?: string;
|
|
493
495
|
handleLogout?: () => void;
|
|
494
496
|
toggleTheme?: () => void;
|
|
495
497
|
toggeInstallApp?: () => void;
|
|
496
498
|
handleTogge?: () => void;
|
|
499
|
+
handleSucursal?: () => void;
|
|
497
500
|
variantIndicator?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "experiences";
|
|
498
501
|
backgroundIndicator?: "black" | "white";
|
|
499
502
|
logoGoatDataIndicator?: "logoRed" | "logoBlack" | "logo6" | "logoMagenta" | "logoWhite";
|
|
@@ -519,6 +522,7 @@ export declare type SidebarProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
519
522
|
heightLogo?: string;
|
|
520
523
|
widthLogo?: string;
|
|
521
524
|
activeRoute?: string;
|
|
525
|
+
sucursalName?: string;
|
|
522
526
|
router: any;
|
|
523
527
|
user?: {
|
|
524
528
|
name: string;
|
|
@@ -530,11 +534,13 @@ export declare type SidebarProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
530
534
|
}>;
|
|
531
535
|
theme?: boolean;
|
|
532
536
|
InstallApp?: boolean;
|
|
537
|
+
sucursal?: boolean;
|
|
533
538
|
version?: string;
|
|
534
539
|
handleLogout?: () => void;
|
|
535
540
|
toggleTheme?: () => void;
|
|
536
541
|
toggeInstallApp?: () => void;
|
|
537
542
|
handleTogge?: () => void;
|
|
543
|
+
handleSucursal?: () => void;
|
|
538
544
|
variantIndicator?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "experiences";
|
|
539
545
|
backgroundIndicator?: "black" | "white";
|
|
540
546
|
logoGoatDataIndicator?: "logoRed" | "logoBlack" | "logo6" | "logoMagenta" | "logoWhite";
|