@databutton/firebase-types 1.69.99 → 1.69.101

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,47 @@ 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
+ ring: string;
669
+ chart1: string;
670
+ chart2: string;
671
+ chart3: string;
672
+ chart4: string;
673
+ chart5: string;
674
+ }
675
+ export interface ShadcnTheme extends BaseTheme {
676
+ type: "shadcn";
677
+ colors: {
678
+ light: ShadcnColors;
679
+ dark: ShadcnColors;
680
+ };
681
+ radius: string;
682
+ }
683
+ export interface ChakraTheme extends BaseTheme {
684
+ type: "chakra";
685
+ }
686
+ export type ProjectTheme = ShadcnTheme | ChakraTheme;
646
687
  export interface Project {
647
688
  createdAt: Timestamp;
648
689
  createdBy?: PerformedBy;
@@ -652,6 +693,7 @@ export interface Project {
652
693
  buildingStage?: ProjectBuildStage;
653
694
  lifeStage: ProjectLifeStage;
654
695
  lifeStageUpdatedBy: PerformedBy;
696
+ theme?: ProjectTheme;
655
697
  guidelines?: ProjectGuidelines;
656
698
  aiGeneratedSummary?: string;
657
699
  /**
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.101",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {