@databutton/firebase-types 1.69.99 → 1.69.100

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.
@@ -643,6 +643,41 @@ export type ProjectExtensions = {
643
643
  name: ProjectExtension;
644
644
  version: string;
645
645
  }[];
646
+ export interface BaseTheme {
647
+ defaultFontFamily: string;
648
+ }
649
+ export interface ShadcnColors {
650
+ background: string;
651
+ foreground: string;
652
+ muted: string;
653
+ mutedForeground: string;
654
+ card: string;
655
+ cardForeground: string;
656
+ popover: string;
657
+ popoverForeground: string;
658
+ border: string;
659
+ input: string;
660
+ primary: string;
661
+ primaryForeground: string;
662
+ secondary: string;
663
+ secondaryForeground: string;
664
+ accent: string;
665
+ accentForeground: string;
666
+ destructive: string;
667
+ destructiveForeground: string;
668
+ }
669
+ export interface ShadcnTheme extends BaseTheme {
670
+ type: "shadcn";
671
+ colors: {
672
+ light: ShadcnColors;
673
+ dark: ShadcnColors;
674
+ };
675
+ radius: string;
676
+ }
677
+ export interface ChakraTheme extends BaseTheme {
678
+ type: "chakra";
679
+ }
680
+ export type ProjectTheme = ShadcnTheme | ChakraTheme;
646
681
  export interface Project {
647
682
  createdAt: Timestamp;
648
683
  createdBy?: PerformedBy;
@@ -652,6 +687,7 @@ export interface Project {
652
687
  buildingStage?: ProjectBuildStage;
653
688
  lifeStage: ProjectLifeStage;
654
689
  lifeStageUpdatedBy: PerformedBy;
690
+ theme?: ProjectTheme;
655
691
  guidelines?: ProjectGuidelines;
656
692
  aiGeneratedSummary?: string;
657
693
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.99",
3
+ "version": "1.69.100",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {