@floegence/floe-webapp-core 0.48.4 → 0.48.5
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/components/file-browser/FileIcons.d.ts +1 -0
- package/dist/components/file-browser/FileIcons.js +202 -188
- package/dist/components/file-browser/archiveFiles.d.ts +9 -0
- package/dist/components/file-browser/archiveFiles.js +73 -0
- package/dist/components/file-browser/index.d.ts +4 -3
- package/dist/file-browser.js +33 -30
- package/dist/full.js +559 -556
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare const SymlinkFolderOpenIcon: (props: FileIconProps) => JSX.Elemen
|
|
|
16
16
|
export declare const FileIcon: (props: FileIconProps) => JSX.Element;
|
|
17
17
|
export declare const SymlinkFileIcon: (props: FileIconProps) => JSX.Element;
|
|
18
18
|
export declare const BrokenSymlinkIcon: (props: FileIconProps) => JSX.Element;
|
|
19
|
+
export declare const ArchiveFileIcon: (props: FileIconProps) => JSX.Element;
|
|
19
20
|
export declare const CodeFileIcon: (props: FileIconProps) => JSX.Element;
|
|
20
21
|
export declare const JavaScriptFileIcon: FileIconComponent;
|
|
21
22
|
export declare const TypeScriptFileIcon: FileIconComponent;
|