@spaceandtimelabs/makeinfinite-ui 0.45.0 → 0.46.0

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/dist/index.d.ts CHANGED
@@ -1245,7 +1245,9 @@ export declare namespace TailwindThemeHooks {
1245
1245
  useVariants,
1246
1246
  useTheme,
1247
1247
  useFontFamily,
1248
- useColors
1248
+ useColors,
1249
+ useSiteBackground,
1250
+ useTailwind
1249
1251
  }
1250
1252
  }
1251
1253
 
@@ -1302,12 +1304,12 @@ export declare const useB64UrlForProjectImage: (projectName: string, imageFilena
1302
1304
 
1303
1305
  declare const useColors: () => {
1304
1306
  colors: any;
1305
- setColors: any;
1307
+ setColors: (colors: Record<string, any>) => void;
1306
1308
  };
1307
1309
 
1308
1310
  declare const useFontFamily: () => {
1309
1311
  fontFamily: any;
1310
- setFontFamily: any;
1312
+ setFontFamily: (fontFamily: string) => void;
1311
1313
  };
1312
1314
 
1313
1315
  declare const useFormField: () => {
@@ -1325,6 +1327,18 @@ declare const useFormField: () => {
1325
1327
 
1326
1328
  export declare const useProject: () => any;
1327
1329
 
1330
+ declare const useSiteBackground: () => {
1331
+ siteBackground: any;
1332
+ siteBackgroundColor: any;
1333
+ siteBackgroundImage: any;
1334
+ setSiteBackground: any;
1335
+ };
1336
+
1337
+ declare const useTailwind: () => {
1338
+ tailwind: any;
1339
+ setTailwind: any;
1340
+ };
1341
+
1328
1342
  declare const useTheme: () => {
1329
1343
  theme: any;
1330
1344
  setTheme: any;