@opengeoweb/warnings 13.1.0 → 13.2.1
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 +7 -5
- package/package.json +12 -12
- package/src/lib/components/PublicWarningList/PublicWarningListConnect.aviation.drawTools.integration.spec.d.ts +1 -0
- package/src/lib/components/PublicWarningList/PublicWarningListConnect.aviation.saveAndPublish.integration.spec.d.ts +1 -0
- /package/src/lib/components/PublicWarningList/{PublicWarningListConnect.aviation.integration.spec.d.ts → PublicWarningListConnect.aviation.createAndEdit.integration.spec.d.ts} +0 -0
package/index.esm.js
CHANGED
|
@@ -1187,12 +1187,13 @@ var warningsDrawingsReducer = slice$2.reducer,
|
|
|
1187
1187
|
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
1188
1188
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
1189
1189
|
* */
|
|
1190
|
+
var EMPTY_DRAW_STATE = {
|
|
1191
|
+
entities: {},
|
|
1192
|
+
ids: []
|
|
1193
|
+
};
|
|
1190
1194
|
var _drawAdapter$getSelec = drawAdapter.getSelectors(function (state) {
|
|
1191
1195
|
var _state$drawings;
|
|
1192
|
-
return (_state$drawings = state == null ? void 0 : state.drawings) != null ? _state$drawings :
|
|
1193
|
-
entities: {},
|
|
1194
|
-
ids: []
|
|
1195
|
-
};
|
|
1196
|
+
return (_state$drawings = state == null ? void 0 : state.drawings) != null ? _state$drawings : EMPTY_DRAW_STATE;
|
|
1196
1197
|
}),
|
|
1197
1198
|
selectDrawByInstanceId = _drawAdapter$getSelec.selectById;
|
|
1198
1199
|
var getWarningFormDirty = createSelector(selectDrawByInstanceId, function (drawing) {
|
|
@@ -8470,11 +8471,12 @@ var PublicWarningsForm = function PublicWarningsForm(props) {
|
|
|
8470
8471
|
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
8471
8472
|
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
8472
8473
|
* */
|
|
8474
|
+
var EMPTY_WARNING_FORM_STATE = {};
|
|
8473
8475
|
var selectPublicWarningState = function selectPublicWarningState(store) {
|
|
8474
8476
|
if (store && store.publicWarningForm) {
|
|
8475
8477
|
return store.publicWarningForm;
|
|
8476
8478
|
}
|
|
8477
|
-
return
|
|
8479
|
+
return EMPTY_WARNING_FORM_STATE;
|
|
8478
8480
|
};
|
|
8479
8481
|
createSelector(selectPublicWarningState, function (publicWarningStore) {
|
|
8480
8482
|
return publicWarningStore.object;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/warnings",
|
|
3
|
-
"version": "13.1
|
|
3
|
+
"version": "13.2.1",
|
|
4
4
|
"description": "GeoWeb warinings library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -8,25 +8,25 @@
|
|
|
8
8
|
"url": "git@gitlab.com:opengeoweb/opengeoweb.git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opengeoweb/api": "13.1
|
|
12
|
-
"@opengeoweb/shared": "13.1
|
|
13
|
-
"@opengeoweb/store": "13.1
|
|
14
|
-
"@opengeoweb/webmap-react": "13.1
|
|
11
|
+
"@opengeoweb/api": "13.2.1",
|
|
12
|
+
"@opengeoweb/shared": "13.2.1",
|
|
13
|
+
"@opengeoweb/store": "13.2.1",
|
|
14
|
+
"@opengeoweb/webmap-react": "13.2.1",
|
|
15
15
|
"@tanstack/react-query": "^5.85.5",
|
|
16
16
|
"react-redux": "^9.2.0",
|
|
17
|
-
"@opengeoweb/theme": "13.1
|
|
18
|
-
"@opengeoweb/form-fields": "13.1
|
|
17
|
+
"@opengeoweb/theme": "13.2.1",
|
|
18
|
+
"@opengeoweb/form-fields": "13.2.1",
|
|
19
19
|
"react-hook-form": "^7.50.1",
|
|
20
20
|
"lodash": "^4.17.21",
|
|
21
21
|
"@reduxjs/toolkit": "^2.6.1",
|
|
22
|
-
"@opengeoweb/snackbar": "13.1
|
|
22
|
+
"@opengeoweb/snackbar": "13.2.1",
|
|
23
23
|
"react-window": "^1.8.10",
|
|
24
24
|
"react-virtualized-auto-sizer": "^1.0.20",
|
|
25
25
|
"axios": "^1.7.7",
|
|
26
|
-
"@opengeoweb/core": "13.1
|
|
27
|
-
"@opengeoweb/webmap": "13.1
|
|
28
|
-
"@opengeoweb/authentication": "13.1
|
|
29
|
-
"@opengeoweb/sigmet-airmet": "13.1
|
|
26
|
+
"@opengeoweb/core": "13.2.1",
|
|
27
|
+
"@opengeoweb/webmap": "13.2.1",
|
|
28
|
+
"@opengeoweb/authentication": "13.2.1",
|
|
29
|
+
"@opengeoweb/sigmet-airmet": "13.2.1",
|
|
30
30
|
"react-i18next": "^15.1.1",
|
|
31
31
|
"i18next": "^25.0.1",
|
|
32
32
|
"@mui/material": "^7.0.1",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|