@spaceandtimelabs/makeinfinite-ui 0.45.0 → 0.47.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 +18 -4
- package/dist/makeinfinite-ui.es.js +5701 -5641
- package/dist/makeinfinite-ui.umd.js +72 -72
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ export declare const APIHandler: (baseUrl: string) => {
|
|
|
130
130
|
updateProjectComponentLayoutMetadata: (projectName: string, componentId: string, layoutMetadata: any) => Promise<Response>;
|
|
131
131
|
updateProjectComponentSourceCode: (projectName: string, componentId: string, sourceCode: string) => Promise<Response>;
|
|
132
132
|
updateApplicationMetadata: (projectName: string, applicationName: string, applicationDescription: string, applicationCategory: string) => Promise<Response>;
|
|
133
|
-
updateApplicationSettings: (projectName: string, applicationLoginEnabled
|
|
133
|
+
updateApplicationSettings: (projectName: string, applicationLoginEnabled?: boolean | null, defaultDeploymentChainReference?: string | null) => Promise<Response>;
|
|
134
134
|
updateProjectFile: (filePath: string, projectName: string, sourceCode: string, abortSignal?: AbortSignal) => Promise<Response>;
|
|
135
135
|
deleteProjectFile: (projectName: string, filePath: string) => Promise<Response>;
|
|
136
136
|
resetProjectFile: (projectName: string, filePath: string, gitRef: string, prune?: boolean, extraMetadata?: string) => Promise<Response>;
|
|
@@ -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:
|
|
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;
|