ode-explorer 1.4.0 → 1.4.1-develop-b2school.202403141630
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.html +17 -11
- package/dist/index.js +245 -81
- package/dist/version.txt +1 -1
- package/lib/ActionBarContainer.js +191 -179
- package/lib/DeleteModal.js +3 -3
- package/lib/FolderModal.js +16 -16
- package/lib/Library.js +4 -6
- package/lib/MoveModal.js +6 -6
- package/lib/features/ActionBar/useActionBar.d.ts +1 -1
- package/lib/features/SideBar/Library/Library.d.ts +1 -1
- package/lib/index2.js +472 -412
- package/lib/services/api/index.d.ts +7 -0
- package/package.json +5 -5
|
@@ -66,6 +66,13 @@ export declare const restoreAll: ({ searchParams, resourceIds, folderIds, useAss
|
|
|
66
66
|
useAssetIds: boolean;
|
|
67
67
|
folderIds: ID[];
|
|
68
68
|
}) => Promise<import("edifice-ts-client").IActionResult>;
|
|
69
|
+
/**
|
|
70
|
+
* copyResource API.
|
|
71
|
+
* @param searchParams searchParams to retrieve the application name.
|
|
72
|
+
* @param resourceId the resource id to copy.
|
|
73
|
+
* @returns copied ressource id and message.
|
|
74
|
+
*/
|
|
75
|
+
export declare const copyResource: (searchParams: ISearchParameters & IActionParameters, resourceId: ID) => Promise<import("edifice-ts-client").CopyResult>;
|
|
69
76
|
/**
|
|
70
77
|
* moveToFolder API
|
|
71
78
|
* @param searchParams, resourceIds, folderIds, folderId
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-explorer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1-develop-b2school.202403141630",
|
|
4
4
|
"description": "Edifice Explorer",
|
|
5
5
|
"homepage": "https://github.com/edificeio/explorer#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
]
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@edifice-ui/icons": "
|
|
40
|
-
"@edifice-ui/react": "
|
|
39
|
+
"@edifice-ui/icons": "develop-b2school",
|
|
40
|
+
"@edifice-ui/react": "develop-b2school",
|
|
41
41
|
"@react-spring/web": "9.7.3",
|
|
42
42
|
"@tanstack/react-query": "5.8.4",
|
|
43
43
|
"clsx": "2.1.0",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@vitejs/plugin-react-swc": "3.5.0",
|
|
66
66
|
"concurrently": "8.2.2",
|
|
67
67
|
"csstype": "3.1.3",
|
|
68
|
-
"edifice-bootstrap": "
|
|
69
|
-
"edifice-ts-client": "
|
|
68
|
+
"edifice-bootstrap": "develop-b2school",
|
|
69
|
+
"edifice-ts-client": "develop-b2school",
|
|
70
70
|
"eslint": "8.56.0",
|
|
71
71
|
"eslint-config-prettier": "9.1.0",
|
|
72
72
|
"eslint-plugin-import": "2.29.1",
|