@opengeoweb/layer-select 9.14.0 → 9.16.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.16.0",
4
4
  "description": "GeoWeb layer select library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -5,7 +5,7 @@ declare const _default: {
5
5
  export default _default;
6
6
  export declare const KeywordFilterResultsLight: {
7
7
  (): React.ReactElement;
8
- storyName: string;
8
+ tags: string[];
9
9
  parameters: {
10
10
  zeplinLink: {
11
11
  name: string;
@@ -15,7 +15,7 @@ export declare const KeywordFilterResultsLight: {
15
15
  };
16
16
  export declare const KeywordFilterResultsDark: {
17
17
  (): React.ReactElement;
18
- storyName: string;
18
+ tags: string[];
19
19
  parameters: {
20
20
  zeplinLink: {
21
21
  name: string;
@@ -5,7 +5,7 @@ declare const _default: {
5
5
  export default _default;
6
6
  export declare const LayerSelectDemoLightTheme: {
7
7
  (): React.ReactElement;
8
- storyName: string;
8
+ tags: string[];
9
9
  parameters: {
10
10
  zeplinLink: {
11
11
  name: string;
@@ -15,7 +15,7 @@ export declare const LayerSelectDemoLightTheme: {
15
15
  };
16
16
  export declare const LayerSelectDemoDarkTheme: {
17
17
  (): React.ReactElement;
18
- storyName: string;
18
+ tags: string[];
19
19
  parameters: {
20
20
  zeplinLink: {
21
21
  name: string;
@@ -25,9 +25,9 @@ export declare const LayerSelectDemoDarkTheme: {
25
25
  };
26
26
  export declare const LayerSelectDemoSmallLightTheme: {
27
27
  (): React.ReactElement;
28
- storyName: string;
28
+ tags: string[];
29
29
  };
30
30
  export declare const LayerSelectDemoSmallDarkTheme: {
31
31
  (): React.ReactElement;
32
- storyName: string;
32
+ tags: string[];
33
33
  };
@@ -5,7 +5,7 @@ declare const _default: {
5
5
  export default _default;
6
6
  export declare const ServiceOptionsDialogLight: {
7
7
  (): React.ReactElement;
8
- storyName: string;
8
+ tags: string[];
9
9
  parameters: {
10
10
  zeplinLink: {
11
11
  name: string;
@@ -15,7 +15,7 @@ export declare const ServiceOptionsDialogLight: {
15
15
  };
16
16
  export declare const ServiceOptionsDialogDark: {
17
17
  (): React.ReactElement;
18
- storyName: string;
18
+ tags: string[];
19
19
  parameters: {
20
20
  zeplinLink: {
21
21
  name: string;
@@ -2,7 +2,7 @@ declare const _default: import("@storybook/types").ComponentAnnotations<import("
2
2
  export default _default;
3
3
  export declare const ServicePopupAddLight: {
4
4
  (): JSX.Element;
5
- storyName: string;
5
+ tags: string[];
6
6
  parameters: {
7
7
  zeplinLink: {
8
8
  name: string;
@@ -12,7 +12,7 @@ export declare const ServicePopupAddLight: {
12
12
  };
13
13
  export declare const ServicePopupAddDark: {
14
14
  (): JSX.Element;
15
- storyName: string;
15
+ tags: string[];
16
16
  parameters: {
17
17
  zeplinLink: {
18
18
  name: string;
@@ -22,7 +22,7 @@ export declare const ServicePopupAddDark: {
22
22
  };
23
23
  export declare const ServicePopupShowLight: {
24
24
  (): JSX.Element;
25
- storyName: string;
25
+ tags: string[];
26
26
  parameters: {
27
27
  zeplinLink: {
28
28
  name: string;
@@ -32,7 +32,7 @@ export declare const ServicePopupShowLight: {
32
32
  };
33
33
  export declare const ServicePopupShowDark: {
34
34
  (): JSX.Element;
35
- storyName: string;
35
+ tags: string[];
36
36
  parameters: {
37
37
  zeplinLink: {
38
38
  name: string;
@@ -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 {};
@@ -1 +0,0 @@
1
- export {};