@spaceandtimelabs/makeinfinite-ui 0.48.0 → 0.48.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 +13 -2
- package/dist/makeinfinite-ui.es.js +2644 -2615
- package/dist/makeinfinite-ui.umd.js +69 -69
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -252,6 +252,8 @@ declare type CarouselProps = {
|
|
|
252
252
|
|
|
253
253
|
declare const Checkbox: ForwardRefExoticComponent<Omit<Checkbox_2.CheckboxProps & RefAttributes<HTMLButtonElement>, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
254
254
|
|
|
255
|
+
export declare const checkoutCommit: (projectName: string, commitHash: string) => Promise<void>;
|
|
256
|
+
|
|
255
257
|
declare const Collapsible: ForwardRefExoticComponent<Collapsible_2.CollapsibleProps & RefAttributes<HTMLDivElement>>;
|
|
256
258
|
|
|
257
259
|
declare const CollapsibleContent: ForwardRefExoticComponent<Omit<Collapsible_2.CollapsibleContentProps & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
@@ -329,6 +331,13 @@ declare const CommandShortcut: {
|
|
|
329
331
|
displayName: string;
|
|
330
332
|
};
|
|
331
333
|
|
|
334
|
+
declare interface Commit {
|
|
335
|
+
hash: string;
|
|
336
|
+
timestamp: number;
|
|
337
|
+
message: string;
|
|
338
|
+
isRelease: boolean;
|
|
339
|
+
}
|
|
340
|
+
|
|
332
341
|
declare const ContextMenu: FC<ContextMenu_2.ContextMenuProps>;
|
|
333
342
|
|
|
334
343
|
declare const ContextMenuCheckboxItem: ForwardRefExoticComponent<Omit<ContextMenu_2.ContextMenuCheckboxItemProps & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
@@ -856,11 +865,13 @@ declare const FormLabel: ForwardRefExoticComponent<Omit<Label.LabelProps & RefAt
|
|
|
856
865
|
|
|
857
866
|
declare const FormMessage: ForwardRefExoticComponent<HTMLAttributes<HTMLParagraphElement> & RefAttributes<HTMLParagraphElement>>;
|
|
858
867
|
|
|
868
|
+
export declare const getCommits: (projectName: string, projectUrl: string, commitsCount?: number) => Promise<Commit[]>;
|
|
869
|
+
|
|
859
870
|
export declare const getHeadCommit: (projectName: string) => Promise<string>;
|
|
860
871
|
|
|
861
872
|
export declare const getRedoTargetCommitForFile: (projectName: string, filePath: string) => Promise<[string, string]>;
|
|
862
873
|
|
|
863
|
-
export declare const getTags: (projectName: string, projectUrl: string) => Promise<{
|
|
874
|
+
export declare const getTags: (projectName: string, projectUrl: string, tagsCount?: number) => Promise<{
|
|
864
875
|
tag: string;
|
|
865
876
|
targetCommitTimestamp: number;
|
|
866
877
|
targetCommit: string;
|
|
@@ -1211,7 +1222,7 @@ declare const Slider: ForwardRefExoticComponent<Omit<Slider_2.SliderProps & RefA
|
|
|
1211
1222
|
|
|
1212
1223
|
declare const Switch: ForwardRefExoticComponent<Omit<Switch_2.SwitchProps & RefAttributes<HTMLButtonElement>, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
1213
1224
|
|
|
1214
|
-
export declare const syncAndRetry: (projectName: string, projectRepository: string) => Promise<void>;
|
|
1225
|
+
export declare const syncAndRetry: (projectName: string, projectRepository: string, commitHash?: string) => Promise<void>;
|
|
1215
1226
|
|
|
1216
1227
|
declare const Table: ForwardRefExoticComponent<HTMLAttributes<HTMLTableElement> & RefAttributes<HTMLTableElement>>;
|
|
1217
1228
|
|