@spaceandtimelabs/makeinfinite-ui 0.8.28 → 0.9.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 +2 -19
- package/dist/makeinfinite-ui.es.js +25457 -25189
- package/dist/makeinfinite-ui.umd.js +365 -347
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,34 +1,17 @@
|
|
|
1
|
-
import { Consumer } from 'react';
|
|
2
|
-
import { Context } from 'react';
|
|
3
1
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
4
2
|
|
|
5
|
-
export declare const getRedoTargetCommitForFile: (projectName: string, filePath: string) => Promise<[string, string]>;
|
|
6
|
-
|
|
7
|
-
export declare const getUndoTargetCommitForFile: (projectName: string, filePath: string) => Promise<[string, string]>;
|
|
8
|
-
|
|
9
3
|
export declare const initializeMakeInfinite: () => void;
|
|
10
4
|
|
|
11
|
-
export declare const isDir: (dirPath: string) => Promise<boolean>;
|
|
12
|
-
|
|
13
|
-
export declare const listDir: (dirPath: string) => Promise<string[]>;
|
|
14
|
-
|
|
15
5
|
export declare const MakeInfinite: () => JSX_2.Element;
|
|
16
6
|
|
|
17
|
-
export declare const
|
|
18
|
-
|
|
19
|
-
export declare const ProjectContext: Context<any>;
|
|
7
|
+
export declare const MiniApp: () => JSX_2.Element;
|
|
20
8
|
|
|
21
9
|
export declare const ProjectProvider: (props: {
|
|
22
10
|
config: any;
|
|
11
|
+
metadata?: any;
|
|
23
12
|
children?: React.ReactNode;
|
|
24
13
|
}) => JSX_2.Element;
|
|
25
14
|
|
|
26
|
-
export declare const recursiveRm: (dirPath: string) => Promise<void>;
|
|
27
|
-
|
|
28
|
-
export declare const syncAndRetry: (projectName: string, projectRepository: string, corsProxy: string) => Promise<void>;
|
|
29
|
-
|
|
30
|
-
export declare const useProject: () => any;
|
|
31
|
-
|
|
32
15
|
export { }
|
|
33
16
|
|
|
34
17
|
|