@budibase/shared-core 3.37.5 → 3.38.1

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.
@@ -1,5 +1,14 @@
1
- import { ThemeMeta, Theme } from "@budibase/types";
1
+ import { AppFontFamily, ThemeMeta, Theme } from "@budibase/types";
2
2
  export declare const ThemeClassPrefix = "spectrum--";
3
3
  export declare const DefaultBuilderTheme = Theme.DARKEST;
4
4
  export declare const DefaultAppTheme = Theme.LIGHT;
5
5
  export declare const ThemeOptions: ThemeMeta[];
6
+ export declare const DefaultExistingAppFontFamily = AppFontFamily.SOURCE_SANS;
7
+ export declare const DefaultNewAppFontFamily = AppFontFamily.INTER;
8
+ export declare const AppFontFamilyOptions: {
9
+ label: string;
10
+ value: AppFontFamily;
11
+ }[];
12
+ export declare const AppFontFamilyStacks: Record<AppFontFamily, string>;
13
+ export declare const ensureValidAppFontFamily: (fontFamily?: string) => AppFontFamily;
14
+ export declare const getAppFontFamilyStack: (fontFamily?: string) => string;