@equinor/echo-framework 0.22.0 → 0.23.0-beta-0
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/{47deeba42768c5d1.svg → 063009f06499d102.svg} +8 -8
- package/README.md +28 -28
- package/{1bd97dd2170d0f64.svg → f4c85313e79b1662.svg} +850 -850
- package/index.cjs.d.ts +2 -2
- package/index.cjs.js +1 -14
- package/package.json +4 -3
- package/src/lib/feature/globalSelection/globalSelection.api.d.ts +1 -9
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/echo-framework",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0-beta-0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@equinor/echo-base": ">= 0.7.0 < 0.8.0",
|
|
6
6
|
"@equinor/echo-components": ">= 0.12.0 < 0.13.0",
|
|
7
7
|
"@equinor/echo-core": ">= 0.9.0 < 0.10.0",
|
|
8
|
-
"@equinor/echo-search": "
|
|
8
|
+
"@equinor/echo-search": "0.16.0-beta-3",
|
|
9
9
|
"@equinor/echo-utils": ">= 0.4.0 < 0.5.0",
|
|
10
10
|
"@equinor/eds-core-react": "0.43.0",
|
|
11
11
|
"@equinor/eds-icons": "0.22.0",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"react-router-dom": "5.3.4",
|
|
20
20
|
"zustand": ">= 4.4.7 < 5",
|
|
21
21
|
"react-swipeable": "7.0.2",
|
|
22
|
-
"immer": "10.1.1"
|
|
22
|
+
"immer": "10.1.1",
|
|
23
|
+
"dexie": ">= 4.0.11 < 5"
|
|
23
24
|
},
|
|
24
25
|
"main": "./index.cjs.js",
|
|
25
26
|
"type": "commonjs",
|
|
@@ -59,15 +59,7 @@ export declare const globalSelectionApi: Readonly<{
|
|
|
59
59
|
*/
|
|
60
60
|
listById: (args: {
|
|
61
61
|
groupId: import("dist/libs/echo-utils/src").Guid;
|
|
62
|
-
categoryId
|
|
63
|
-
* Removes all items by their IDs, from all groups, from the state.
|
|
64
|
-
*
|
|
65
|
-
* If the given item ids are in more than one group, then a confirmation dialog will be shown to confirm the action.
|
|
66
|
-
*
|
|
67
|
-
* @param {Object} args - The arguments object.
|
|
68
|
-
* @param {GlobalSelectionTypes.ItemId[]} args.itemIds - The array of item IDs to remove.
|
|
69
|
-
* @returns {void}
|
|
70
|
-
*/: GlobalSelectionCategoryId;
|
|
62
|
+
categoryId?: GlobalSelectionCategoryId;
|
|
71
63
|
}) => void;
|
|
72
64
|
}>;
|
|
73
65
|
add: Readonly<{
|