@spaceandtimelabs/makeinfinite-ui 0.44.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
@@ -64,6 +64,7 @@ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
64
64
  import * as TogglePrimitive from '@radix-ui/react-toggle';
65
65
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
66
66
  import { UseEmblaCarouselType } from 'embla-carousel-react';
67
+ import { useForm } from 'react-hook-form';
67
68
  import { VariantProps } from 'class-variance-authority';
68
69
  import { VisibilityState } from '@tanstack/react-table';
69
70
 
@@ -563,6 +564,7 @@ declare const DrawerTrigger: ForwardRefExoticComponent<DialogTriggerProps & RefA
563
564
 
564
565
  export declare namespace DreamspaceElements {
565
566
  export {
567
+ useForm,
566
568
  Variants,
567
569
  Accordion,
568
570
  AccordionItem,
@@ -1243,7 +1245,9 @@ export declare namespace TailwindThemeHooks {
1243
1245
  useVariants,
1244
1246
  useTheme,
1245
1247
  useFontFamily,
1246
- useColors
1248
+ useColors,
1249
+ useSiteBackground,
1250
+ useTailwind
1247
1251
  }
1248
1252
  }
1249
1253
 
@@ -1300,12 +1304,12 @@ export declare const useB64UrlForProjectImage: (projectName: string, imageFilena
1300
1304
 
1301
1305
  declare const useColors: () => {
1302
1306
  colors: any;
1303
- setColors: any;
1307
+ setColors: (colors: Record<string, any>) => void;
1304
1308
  };
1305
1309
 
1306
1310
  declare const useFontFamily: () => {
1307
1311
  fontFamily: any;
1308
- setFontFamily: any;
1312
+ setFontFamily: (fontFamily: string) => void;
1309
1313
  };
1310
1314
 
1311
1315
  declare const useFormField: () => {
@@ -1323,6 +1327,18 @@ declare const useFormField: () => {
1323
1327
 
1324
1328
  export declare const useProject: () => any;
1325
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
+
1326
1342
  declare const useTheme: () => {
1327
1343
  theme: any;
1328
1344
  setTheme: any;