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.
Files changed (36) hide show
  1. package/README.md +6 -0
  2. package/dist/crna.png +0 -0
  3. package/dist/illu-empty-notifications.png +0 -0
  4. package/dist/index.js +63 -79
  5. package/dist/style.css +1 -1
  6. package/lib/app/root/index.d.ts +1 -1
  7. package/lib/components/AppAction/AppAction.d.ts +1 -1
  8. package/lib/components/EmptyScreens/EmptyScreenApp.d.ts +0 -1
  9. package/lib/components/EmptyScreens/EmptyScreenError.d.ts +0 -1
  10. package/lib/components/EmptyScreens/EmptyScreenNoContentInFolder.d.ts +0 -1
  11. package/lib/components/EmptyScreens/EmptyScreenSearch.d.ts +0 -1
  12. package/lib/components/EmptyScreens/EmptyScreenTrash.d.ts +1 -1
  13. package/lib/components/Explorer.d.ts +1 -1
  14. package/lib/components/ExplorerBreadcrumb.d.ts +1 -1
  15. package/lib/components/LoadMore.d.ts +0 -1
  16. package/lib/features/ActionBar/ActionBarContainer.d.ts +1 -1
  17. package/lib/features/ActionBar/Delete/DeleteModal.d.ts +0 -1
  18. package/lib/features/ActionBar/Disable/DisableModal.d.ts +0 -1
  19. package/lib/features/ActionBar/Export/ExportModal.d.ts +0 -1
  20. package/lib/features/ActionBar/Folder/FolderModal.d.ts +0 -1
  21. package/lib/features/ActionBar/Move/MoveModal.d.ts +0 -1
  22. package/lib/features/ActionBar/Trash/TrashModal.d.ts +0 -1
  23. package/lib/features/List/DraggableCard.d.ts +2 -2
  24. package/lib/features/List/FolderCard.d.ts +1 -1
  25. package/lib/features/List/FoldersList.d.ts +1 -1
  26. package/lib/features/List/List.d.ts +1 -1
  27. package/lib/features/List/ResourceCard.d.ts +1 -1
  28. package/lib/features/SearchForm/SearchForm.d.ts +1 -1
  29. package/lib/features/SearchForm/useSearchForm.d.ts +1 -2
  30. package/lib/features/SideBar/Library/Library.d.ts +1 -1
  31. package/lib/features/SideBar/TreeViewContainer.d.ts +1 -1
  32. package/lib/index2.js +98 -98
  33. package/lib/providers/index.d.ts +1 -1
  34. package/lib/services/api/index.d.ts +1 -1
  35. package/package.json +40 -49
  36. package/dist/illu-notifications.png +0 -0
@@ -1,2 +1,2 @@
1
- declare function Root(): import("react/jsx-runtime").JSX.Element;
1
+ declare function Root(): import("react").JSX.Element;
2
2
  export default Root;
@@ -1,4 +1,4 @@
1
1
  import { IResource } from '@edifice.io/client';
2
2
  export default function AppAction({ onResourceCreated, }: {
3
3
  onResourceCreated?: (resource: IResource) => void;
4
- }): import("react/jsx-runtime").JSX.Element | null;
4
+ }): import("react").JSX.Element | null;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export default function EmptyScreenApp(): JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export default function EmptyScreenError(): JSX.Element;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export default function EmptyScreenNoContentInFolder(): JSX.Element | null;
@@ -1,2 +1 @@
1
- /// <reference types="react" />
2
1
  export default function EmptyScreenSearch(): JSX.Element;
@@ -1 +1 @@
1
- export default function EmptyScreenTrash(): import("react/jsx-runtime").JSX.Element;
1
+ export default function EmptyScreenTrash(): import("react").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import { AppParams } from '../config';
2
2
  declare const Explorer: ({ config }: {
3
3
  config: AppParams;
4
- }) => import("react/jsx-runtime").JSX.Element;
4
+ }) => import("react").JSX.Element;
5
5
  export default Explorer;
@@ -1 +1 @@
1
- export declare function ExplorerBreadcrumb(): import("react/jsx-runtime").JSX.Element;
1
+ export declare function ExplorerBreadcrumb(): import("react").JSX.Element;
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
1
  declare const LoadMore: import('react').ForwardRefExoticComponent<import('react').RefAttributes<HTMLButtonElement>>;
3
2
  export default LoadMore;
@@ -1 +1 @@
1
- export default function ActionBarContainer(): import("react/jsx-runtime").JSX.Element;
1
+ export default function ActionBarContainer(): import("react").JSX.Element;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface ModalProps {
3
2
  isOpen: boolean;
4
3
  onSuccess?: () => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export default function DisableModal({ isOpen, onCancel, }: {
3
2
  isOpen: boolean;
4
3
  onCancel?: () => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface ExportModalProps {
3
2
  isOpen: boolean;
4
3
  onSuccess: () => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface FolderModalProps {
3
2
  isOpen: boolean;
4
3
  edit: boolean;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface MoveModalProps {
3
2
  isOpen: boolean;
4
3
  onSuccess: () => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export default function TrashModal({ isOpen, onCancel, }: {
3
2
  isOpen: boolean;
4
3
  onCancel?: () => void;
@@ -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: 'folder' | 'resource';
4
+ type: "folder" | "resource";
5
5
  name?: string;
6
- }) => import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element | null;
6
+ }) => import("react").JSX.Element | null;
7
7
  export default FoldersList;
@@ -1 +1 @@
1
- export declare const List: () => import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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?: React.MouseEvent) => void;
6
+ handleSearchSubmit: (e: React.MouseEvent) => void;
8
7
  };
@@ -1,2 +1,2 @@
1
- declare const Library: () => "" | import("react/jsx-runtime").JSX.Element | null;
1
+ declare const Library: () => "" | import("react").JSX.Element | null;
2
2
  export default Library;
@@ -1 +1 @@
1
- export declare const TreeViewContainer: () => import("react/jsx-runtime").JSX.Element;
1
+ export declare const TreeViewContainer: () => import("react").JSX.Element;