@opengeoweb/layer-select 9.14.0 → 9.15.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/layer-select",
3
- "version": "9.14.0",
3
+ "version": "9.15.0",
4
4
  "description": "GeoWeb layer select library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -2,6 +2,5 @@ export { layerSelectActions, initialState as layerSelectInitialState, reducer as
2
2
  export * as layerSelectSelectors from './selectors';
3
3
  export { useAppSelector } from './selectors';
4
4
  export * as layerSelectTypes from './types';
5
- export * from './localStorage';
6
5
  export * from './config';
7
6
  export { isUserAddedService } from './utils';
@@ -1,18 +1,9 @@
1
1
  import { CoreAppStore, serviceTypes } from '@opengeoweb/store';
2
2
  import { EntityState } from '@reduxjs/toolkit';
3
3
  export type RootState = CoreAppStore & LayerSelectModuleState;
4
- export type NoIdService = Omit<LayerSelectService, 'id'>;
5
- export type UserAddedServices = Record<string, NoIdService>;
6
4
  export interface LayerWithServiceName extends serviceTypes.ServiceLayer {
7
5
  serviceName: string;
8
6
  }
9
- export interface LayerSelectService {
10
- name: string;
11
- url: string;
12
- id: string;
13
- scope?: serviceTypes.ServiceScope;
14
- abstract?: string;
15
- }
16
7
  export interface ActiveServiceObject {
17
8
  serviceId?: string;
18
9
  serviceName?: string;
@@ -1,3 +0,0 @@
1
- import { UserAddedServices } from './types';
2
- export declare const getUserAddedServices: () => UserAddedServices;
3
- export declare const setUserAddedServices: (services: UserAddedServices) => void;
@@ -1 +0,0 @@
1
- export {};