@opengeoweb/layer-select 9.36.0 → 9.37.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 +21 -1
- package/package.json +1 -2
- package/src/lib/store/config.d.ts +7 -4
package/index.esm.js
CHANGED
|
@@ -1150,7 +1150,25 @@ layerSelectListener.startListening({
|
|
|
1150
1150
|
}()
|
|
1151
1151
|
});
|
|
1152
1152
|
|
|
1153
|
+
/* *
|
|
1154
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
1155
|
+
* you may not use this file except in compliance with the License.
|
|
1156
|
+
* You may obtain a copy of the License at
|
|
1157
|
+
*
|
|
1158
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
1159
|
+
*
|
|
1160
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1161
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
1162
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1163
|
+
* See the License for the specific language governing permissions and
|
|
1164
|
+
* limitations under the License.
|
|
1165
|
+
*
|
|
1166
|
+
* Copyright 2022 - Koninklijk Nederlands Meteorologisch Instituut (KNMI)
|
|
1167
|
+
* Copyright 2022 - Finnish Meteorological Institute (FMI)
|
|
1168
|
+
* Copyright 2024 - The Norwegian Meteorological Institute (MET Norway)
|
|
1169
|
+
* */
|
|
1153
1170
|
var layerSelectConfig = {
|
|
1171
|
+
// TODO: remove id in https://gitlab.com/opengeoweb/opengeoweb/-/issues/5561
|
|
1154
1172
|
id: 'layerSelect-module',
|
|
1155
1173
|
reducersMap: {
|
|
1156
1174
|
layerSelect: reducer
|
|
@@ -2126,7 +2144,9 @@ var ServiceOptionsDialog = function ServiceOptionsDialog(_ref) {
|
|
|
2126
2144
|
sx: styles.header,
|
|
2127
2145
|
children: t('services')
|
|
2128
2146
|
}), jsx(Backdrop, {
|
|
2129
|
-
sx: styles.loading,
|
|
2147
|
+
sx: Object.assign({}, styles.loading, {
|
|
2148
|
+
backgroundSize: 'cover'
|
|
2149
|
+
}),
|
|
2130
2150
|
open: isLoading,
|
|
2131
2151
|
children: jsx(CircularProgress, {})
|
|
2132
2152
|
}), jsx(Rows, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/layer-select",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.37.0",
|
|
4
4
|
"description": "GeoWeb layer select library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
"@opengeoweb/form-fields": "*",
|
|
20
20
|
"react-hook-form": "^7.50.1",
|
|
21
21
|
"@reduxjs/toolkit": "^1.9.7",
|
|
22
|
-
"@redux-eggs/core": "^2.2.0",
|
|
23
22
|
"lodash": "^4.17.21",
|
|
24
23
|
"i18next": "^23.11.5",
|
|
25
24
|
"@mui/material": "^6.1.1",
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export declare const layerSelectConfig: {
|
|
2
|
+
id: string;
|
|
3
|
+
reducersMap: {
|
|
4
|
+
layerSelect: import("redux").Reducer<import("./types").LayerSelectStoreType>;
|
|
5
|
+
};
|
|
6
|
+
middlewares: import("@reduxjs/toolkit").ListenerMiddleware<import("./types").RootState, import("redux-thunk").ThunkDispatch<import("./types").RootState, unknown, import("redux").AnyAction>, unknown>[];
|
|
7
|
+
};
|