@opengeoweb/warnings 8.3.0 → 8.4.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/index.esm.js +1206 -180
- package/package.json +13 -12
- package/src/lib/components/ObjectManager/Objects.d.ts +9 -0
- package/src/lib/utils/constants.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/warnings",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"description": "GeoWeb warinings library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -9,22 +9,23 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@mui/material": "5.12.0",
|
|
12
|
-
"@opengeoweb/api": "8.
|
|
13
|
-
"@opengeoweb/core": "8.
|
|
14
|
-
"@opengeoweb/form-fields": "8.
|
|
15
|
-
"@opengeoweb/shared": "8.
|
|
16
|
-
"@opengeoweb/store": "8.
|
|
17
|
-
"@opengeoweb/theme": "8.
|
|
18
|
-
"@opengeoweb/webmap": "8.
|
|
19
|
-
"@opengeoweb/webmap-react": "8.
|
|
12
|
+
"@opengeoweb/api": "8.4.0",
|
|
13
|
+
"@opengeoweb/core": "8.4.0",
|
|
14
|
+
"@opengeoweb/form-fields": "8.4.0",
|
|
15
|
+
"@opengeoweb/shared": "8.4.0",
|
|
16
|
+
"@opengeoweb/store": "8.4.0",
|
|
17
|
+
"@opengeoweb/theme": "8.4.0",
|
|
18
|
+
"@opengeoweb/webmap": "8.4.0",
|
|
19
|
+
"@opengeoweb/webmap-react": "8.4.0",
|
|
20
20
|
"@redux-eggs/redux-toolkit": "2.2.0",
|
|
21
21
|
"@redux-eggs/saga-extension": "2.2.0",
|
|
22
|
-
"@reduxjs/toolkit": "1.9.
|
|
22
|
+
"@reduxjs/toolkit": "1.9.7",
|
|
23
23
|
"axios": "1.5.0",
|
|
24
24
|
"lodash": "4.17.21",
|
|
25
25
|
"react": "18.2.0",
|
|
26
|
-
"react-hook-form": "7.
|
|
27
|
-
"react-redux": "8.1.
|
|
26
|
+
"react-hook-form": "7.47.0",
|
|
27
|
+
"react-redux": "8.1.3",
|
|
28
|
+
"react-window": "1.8.9",
|
|
28
29
|
"redux-saga": "1.2.3"
|
|
29
30
|
},
|
|
30
31
|
"module": "./index.esm.js",
|
|
@@ -8,6 +8,14 @@ export declare const BUTTON_AIRMET = "AIRMET";
|
|
|
8
8
|
export declare const BUTTON_SIGMET = "SIGMET";
|
|
9
9
|
export declare const BUTTON_PUBLIC_WARNING = "PUBLIC WARNING";
|
|
10
10
|
export declare const MENU_SHARE = "Share object to";
|
|
11
|
+
type ListInclHeadersType = {
|
|
12
|
+
isObject: boolean;
|
|
13
|
+
index: number;
|
|
14
|
+
}[];
|
|
15
|
+
export declare const getListInclHeaders: (objects: DrawingListItem[]) => {
|
|
16
|
+
listInclHeaders: ListInclHeadersType;
|
|
17
|
+
headerList: string[];
|
|
18
|
+
};
|
|
11
19
|
export declare const Objects: FC<{
|
|
12
20
|
objects: DrawingListItem[];
|
|
13
21
|
onClickObject: (object: DrawingListItem) => void;
|
|
@@ -17,3 +25,4 @@ export declare const Objects: FC<{
|
|
|
17
25
|
activeObject: string;
|
|
18
26
|
isLoading?: boolean;
|
|
19
27
|
}>;
|
|
28
|
+
export {};
|