ode-explorer 2.6.6-develop-enabling.20260825105516 → 2.6.7
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/README.md +6 -0
- package/dist/crna.png +0 -0
- package/dist/illu-empty-notifications.png +0 -0
- package/dist/index.js +63 -79
- package/dist/style.css +1 -1
- package/lib/app/root/index.d.ts +1 -1
- package/lib/components/AppAction/AppAction.d.ts +1 -1
- package/lib/components/EmptyScreens/EmptyScreenApp.d.ts +0 -1
- package/lib/components/EmptyScreens/EmptyScreenError.d.ts +0 -1
- package/lib/components/EmptyScreens/EmptyScreenNoContentInFolder.d.ts +0 -1
- package/lib/components/EmptyScreens/EmptyScreenSearch.d.ts +0 -1
- package/lib/components/EmptyScreens/EmptyScreenTrash.d.ts +1 -1
- package/lib/components/Explorer.d.ts +1 -1
- package/lib/components/ExplorerBreadcrumb.d.ts +1 -1
- package/lib/components/LoadMore.d.ts +0 -1
- package/lib/features/ActionBar/ActionBarContainer.d.ts +1 -1
- package/lib/features/ActionBar/Delete/DeleteModal.d.ts +0 -1
- package/lib/features/ActionBar/Disable/DisableModal.d.ts +0 -1
- package/lib/features/ActionBar/Export/ExportModal.d.ts +0 -1
- package/lib/features/ActionBar/Folder/FolderModal.d.ts +0 -1
- package/lib/features/ActionBar/Move/MoveModal.d.ts +0 -1
- package/lib/features/ActionBar/Trash/TrashModal.d.ts +0 -1
- package/lib/features/List/DraggableCard.d.ts +2 -2
- package/lib/features/List/FolderCard.d.ts +1 -1
- package/lib/features/List/FoldersList.d.ts +1 -1
- package/lib/features/List/List.d.ts +1 -1
- package/lib/features/List/ResourceCard.d.ts +1 -1
- package/lib/features/SearchForm/SearchForm.d.ts +1 -1
- package/lib/features/SearchForm/useSearchForm.d.ts +1 -2
- package/lib/features/SideBar/Library/Library.d.ts +1 -1
- package/lib/features/SideBar/TreeViewContainer.d.ts +1 -1
- package/lib/index2.js +98 -98
- package/lib/providers/index.d.ts +1 -1
- package/lib/services/api/index.d.ts +1 -1
- package/package.json +40 -49
- package/dist/illu-notifications.png +0 -0
package/lib/app/root/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare function Root(): import("react
|
|
1
|
+
declare function Root(): import("react").JSX.Element;
|
|
2
2
|
export default Root;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function EmptyScreenTrash(): import("react
|
|
1
|
+
export default function EmptyScreenTrash(): import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function ExplorerBreadcrumb(): import("react
|
|
1
|
+
export declare function ExplorerBreadcrumb(): import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function ActionBarContainer(): import("react
|
|
1
|
+
export default function ActionBarContainer(): import("react").JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IWebApp } from '@edifice.io/client';
|
|
2
2
|
export declare const DraggableCard: ({ app, type, name, }: {
|
|
3
3
|
app?: IWebApp;
|
|
4
|
-
type:
|
|
4
|
+
type: "folder" | "resource";
|
|
5
5
|
name?: string;
|
|
6
|
-
}) => import("react
|
|
6
|
+
}) => import("react").JSX.Element;
|
|
@@ -15,7 +15,7 @@ export interface FolderCardProps extends Omit<CardProps, 'children'> {
|
|
|
15
15
|
idFolder: ID;
|
|
16
16
|
}
|
|
17
17
|
declare const FolderCard: {
|
|
18
|
-
({ app, name, idFolder, isSelected, isSelectable, onClick, onSelect, }: FolderCardProps): import("react
|
|
18
|
+
({ app, name, idFolder, isSelected, isSelectable, onClick, onSelect, }: FolderCardProps): import("react").JSX.Element;
|
|
19
19
|
displayName: string;
|
|
20
20
|
};
|
|
21
21
|
export default FolderCard;
|
|
@@ -3,5 +3,5 @@ import { InfiniteData } from '@tanstack/react-query';
|
|
|
3
3
|
declare const FoldersList: ({ data, }: {
|
|
4
4
|
data: InfiniteData<ISearchResults> | undefined;
|
|
5
5
|
isFetching: boolean;
|
|
6
|
-
}) => import("react
|
|
6
|
+
}) => import("react").JSX.Element | null;
|
|
7
7
|
export default FoldersList;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const List: () => import("react
|
|
1
|
+
export declare const List: () => import("react").JSX.Element;
|
|
@@ -16,7 +16,7 @@ export interface ResourceCardProps extends OmitChildren {
|
|
|
16
16
|
time: string;
|
|
17
17
|
}
|
|
18
18
|
declare const ResourceCard: {
|
|
19
|
-
({ app, resource, time, isSelected, isSelectable, onClick, onSelect, }: ResourceCardProps): import("react
|
|
19
|
+
({ app, resource, time, isSelected, isSelectable, onClick, onSelect, }: ResourceCardProps): import("react").JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
export default ResourceCard;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SearchForm: () => import("react
|
|
1
|
+
export declare const SearchForm: () => import("react").JSX.Element;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const useSearchForm: () => {
|
|
3
2
|
formRef: import('react').MutableRefObject<null>;
|
|
4
3
|
inputSearch: string;
|
|
5
4
|
handleInputSearchChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
6
5
|
handleKeyPress: (event: React.KeyboardEvent) => void;
|
|
7
|
-
handleSearchSubmit: (e
|
|
6
|
+
handleSearchSubmit: (e: React.MouseEvent) => void;
|
|
8
7
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const Library: () => "" | import("react
|
|
1
|
+
declare const Library: () => "" | import("react").JSX.Element | null;
|
|
2
2
|
export default Library;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const TreeViewContainer: () => import("react
|
|
1
|
+
export declare const TreeViewContainer: () => import("react").JSX.Element;
|