@spaceandtimelabs/makeinfinite-ui 0.39.0 → 0.40.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 -6
- package/dist/makeinfinite-ui.es.js +3127 -3118
- package/dist/makeinfinite-ui.umd.js +62 -62
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ export declare const APIHandler: (baseUrl: string) => {
|
|
|
130
130
|
updateProjectComponentSourceCode: (projectName: string, componentId: string, sourceCode: string) => Promise<Response>;
|
|
131
131
|
updateApplicationMetadata: (projectName: string, applicationName: string, applicationDescription: string, applicationCategory: string) => Promise<Response>;
|
|
132
132
|
updateApplicationSettings: (projectName: string, applicationLoginEnabled: boolean) => Promise<Response>;
|
|
133
|
-
updateProjectTheme: (projectName: string, theme: object) => Promise<Response>;
|
|
133
|
+
updateProjectTheme: (projectName: string, theme: object, abortSignal?: AbortSignal) => Promise<Response>;
|
|
134
134
|
deleteProjectFile: (projectName: string, filePath: string) => Promise<Response>;
|
|
135
135
|
resetProjectFile: (projectName: string, filePath: string, gitRef: string, prune?: boolean, extraMetadata?: string) => Promise<Response>;
|
|
136
136
|
deleteProject: (projectName: string) => Promise<Response>;
|
|
@@ -1240,8 +1240,10 @@ declare const TailwindThemeContext_2: Context<any>;
|
|
|
1240
1240
|
|
|
1241
1241
|
export declare namespace TailwindThemeHooks {
|
|
1242
1242
|
export {
|
|
1243
|
-
|
|
1244
|
-
|
|
1243
|
+
useVariants,
|
|
1244
|
+
useTheme,
|
|
1245
|
+
useFontFamily,
|
|
1246
|
+
useColors
|
|
1245
1247
|
}
|
|
1246
1248
|
}
|
|
1247
1249
|
|
|
@@ -1296,9 +1298,14 @@ export declare const useAppVersions: (projectName: string, projectURL: string, d
|
|
|
1296
1298
|
|
|
1297
1299
|
export declare const useB64UrlForProjectImage: (projectName: string, imageFilename: string) => string;
|
|
1298
1300
|
|
|
1299
|
-
declare const
|
|
1300
|
-
|
|
1301
|
-
|
|
1301
|
+
declare const useColors: () => {
|
|
1302
|
+
colors: any;
|
|
1303
|
+
setColors: any;
|
|
1304
|
+
};
|
|
1305
|
+
|
|
1306
|
+
declare const useFontFamily: () => {
|
|
1307
|
+
fontFamily: any;
|
|
1308
|
+
setFontFamily: any;
|
|
1302
1309
|
};
|
|
1303
1310
|
|
|
1304
1311
|
declare const useFormField: () => {
|
|
@@ -1316,6 +1323,11 @@ declare const useFormField: () => {
|
|
|
1316
1323
|
|
|
1317
1324
|
export declare const useProject: () => any;
|
|
1318
1325
|
|
|
1326
|
+
declare const useTheme: () => {
|
|
1327
|
+
theme: any;
|
|
1328
|
+
setTheme: any;
|
|
1329
|
+
};
|
|
1330
|
+
|
|
1319
1331
|
declare const useVariants: () => {
|
|
1320
1332
|
variants: any;
|
|
1321
1333
|
setVariants: any;
|