ode-explorer 1.3.2 → 1.3.3-develop.202402061659
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/ActionBarContainer.js +7 -1
- package/dist/AppAction.js +7 -1
- package/dist/EmptyScreenApp.js +1 -1
- package/dist/EmptyScreenError.js +1 -1
- package/dist/EmptyScreenNoContentInFolder.js +1 -1
- package/dist/EmptyScreenSearch.js +1 -1
- package/dist/EmptyScreenTrash.js +1 -1
- package/dist/FolderModal.js +1 -1
- package/dist/FoldersList.js +1 -1
- package/dist/Library.js +1 -1
- package/dist/OnboardingModal.js +1 -1
- package/dist/PublishModal.js +1 -1
- package/dist/ResourceModal.js +1 -1
- package/dist/ResourcesList.js +1 -1
- package/dist/edifice-icons.js +1 -1
- package/dist/edifice-react.js +90 -90
- package/dist/index.html +0 -1
- package/dist/index.js +10 -4
- package/dist/react.js +3 -3
- package/dist/version.txt +1 -1
- package/lib/ActionBarContainer.js +194 -192
- package/lib/AppAction.js +20 -20
- package/lib/Library.js +19 -16
- package/lib/index2.js +413 -429
- package/lib/services/api/index.d.ts +4 -4
- package/package.json +9 -9
- package/dist/ShareModal.js +0 -1
- package/lib/ShareModal.js +0 -5
|
@@ -83,8 +83,8 @@ export declare const moveToFolder: ({ searchParams, resourceIds, folderId, folde
|
|
|
83
83
|
* @param searchParams, entId, shares
|
|
84
84
|
* @returns shared resource
|
|
85
85
|
*/
|
|
86
|
-
export declare const shareResource: ({
|
|
87
|
-
|
|
86
|
+
export declare const shareResource: ({ application, resourceId, rights, }: {
|
|
87
|
+
application: string;
|
|
88
88
|
resourceId: ID;
|
|
89
89
|
rights: ShareRight[];
|
|
90
90
|
}) => Promise<import("edifice-ts-client").PutShareResponse>;
|
|
@@ -93,8 +93,8 @@ export declare const shareResource: ({ searchParams, resourceId, rights, }: {
|
|
|
93
93
|
* @param searchParams, params
|
|
94
94
|
* @returns updated resource
|
|
95
95
|
*/
|
|
96
|
-
export declare const updateResource: ({
|
|
97
|
-
|
|
96
|
+
export declare const updateResource: ({ application, params, }: {
|
|
97
|
+
application: string;
|
|
98
98
|
params: UpdateParameters;
|
|
99
99
|
}) => Promise<import("edifice-ts-client").UpdateResult>;
|
|
100
100
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-explorer",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3-develop.202402061659",
|
|
4
4
|
"description": "Open Digital Education Explorer",
|
|
5
5
|
"homepage": "https://github.com/opendigitaleducation/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",
|
|
40
|
+
"@edifice-ui/react": "develop",
|
|
41
41
|
"@react-spring/web": "9.7.3",
|
|
42
42
|
"@tanstack/react-query": "5.8.4",
|
|
43
43
|
"clsx": "2.0.0",
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
78
78
|
"eslint-plugin-react-refresh": "0.4.5",
|
|
79
79
|
"husky": "8.0.3",
|
|
80
|
-
"lint-staged": "15.
|
|
81
|
-
"prettier": "3.
|
|
82
|
-
"typescript": "5.
|
|
83
|
-
"vite": "
|
|
84
|
-
"vite-plugin-dts": "3.7.
|
|
85
|
-
"vite-tsconfig-paths": "4.
|
|
80
|
+
"lint-staged": "15.2.0",
|
|
81
|
+
"prettier": "3.2.4",
|
|
82
|
+
"typescript": "5.3.3",
|
|
83
|
+
"vite": "5.0.12",
|
|
84
|
+
"vite-plugin-dts": "3.7.2",
|
|
85
|
+
"vite-tsconfig-paths": "4.3.1"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"@edifice-ui/icons": "*",
|
package/dist/ShareModal.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{Y as r}from"./edifice-react.js";import"./react.js";import"/assets/js/edifice-ts-client/index.js";import"./edifice-icons.js";export{r as default};
|