@opengeoweb/webmap-react 9.17.0 → 9.19.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/webmap-react",
3
- "version": "9.17.0",
3
+ "version": "9.19.0",
4
4
  "description": "GeoWeb react wrapper for webmap",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ export declare const LegendButton: React.FC<{
3
+ openLegendDialog: () => void;
4
+ isOpen: boolean;
5
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -1,3 +1,4 @@
1
1
  export * from './Legend';
2
2
  export * from './LegendLayout';
3
3
  export * from './LegendDialog';
4
+ export * from './LegendButton';
@@ -24,7 +24,7 @@ interface DrawFunction {
24
24
  }
25
25
  export declare const getDrawFunctionFromStore: (id: string) => DrawFunction['drawMethod'] | undefined;
26
26
  export declare const registerDrawFunction: (drawFunction?: DrawFunction['drawMethod']) => string;
27
- export declare const NEW_LINESTRING_CREATED = "new point in LineString created";
28
- export declare const NEW_FEATURE_CREATED = "new feature created";
29
- export declare const NEW_POINT_CREATED = "new point created";
27
+ export declare const NEW_LINESTRING_CREATED: string;
28
+ export declare const NEW_FEATURE_CREATED: string;
29
+ export declare const NEW_POINT_CREATED: string;
30
30
  export {};
@@ -1,8 +1,3 @@
1
1
  import React from 'react';
2
2
  import { ThemeProviderProps } from '@opengeoweb/theme';
3
3
  export declare const WebmapReactThemeProvider: React.FC<ThemeProviderProps>;
4
- interface WebmapReactTranslationWrapperProps {
5
- children?: React.ReactNode;
6
- }
7
- export declare const WebmapReactI18nProvider: React.FC<WebmapReactTranslationWrapperProps>;
8
- export {};
@@ -1,3 +1,5 @@
1
+ import RadarGetCapabilities from './radarGetCapabilities.spec.json';
1
2
  export * from './ReactMapViewLayer';
2
3
  export * from './ReactMapView';
3
4
  export * from './types';
5
+ export { RadarGetCapabilities };
@@ -1,5 +1,6 @@
1
1
  import i18n from 'i18next';
2
2
  import { UseTranslationResponse } from 'react-i18next';
3
3
  export declare const WEBMAP_REACT_NAMESPACE = "webmapreact";
4
- export declare const initWebmapReactTestI18n: () => void;
4
+ export declare const translateKeyOutsideComponents: (key: string, params?: Record<string, string | number> | undefined) => string;
5
5
  export declare const useWebmapReactTranslation: () => UseTranslationResponse<typeof WEBMAP_REACT_NAMESPACE, typeof i18n>;
6
+ export { i18n };