@spaceandtimelabs/makeinfinite-ui 0.40.0 → 0.41.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.
package/dist/index.d.ts CHANGED
@@ -130,13 +130,12 @@ 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, abortSignal?: AbortSignal) => Promise<Response>;
133
+ updateProjectFile: (filePath: string, projectName: string, sourceCode: string, 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>;
137
137
  requestErrorCorrection: (projectName: string, componentId: string, errorMessage: string) => Promise<Response>;
138
138
  addImage: (formData: FormData) => Promise<Response>;
139
- updateProjectFile: (filePath: string, projectName: string, sourceCode: string) => Promise<Response>;
140
139
  };
141
140
 
142
141
  export declare const APIProxyHandler: (baseUrl: string) => {
@@ -166,7 +165,7 @@ export declare const APIProxyHandler: (baseUrl: string) => {
166
165
 
167
166
  export declare const applySxtIgnore: (files: string[], pfs: default_2.PromisifiedFS, dir: string) => Promise<string[]>;
168
167
 
169
- declare const AspectRatio: typeof AspectRatio_2;
168
+ declare const AspectRatio: ForwardRefExoticComponent<AspectRatio_2.AspectRatioProps & RefAttributes<HTMLDivElement>>;
170
169
 
171
170
  declare const Avatar: React_2.ForwardRefExoticComponent<Omit<Avatar_2.AvatarProps & React_2.RefAttributes<HTMLSpanElement>, "ref"> & React_2.RefAttributes<HTMLSpanElement>>;
172
171