@opengeoweb/knmi-components 14.2.2 → 14.3.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/knmi-components",
3
- "version": "14.2.2",
3
+ "version": "14.3.0",
4
4
  "description": "GeoWeb knmi-components library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -8,11 +8,11 @@
8
8
  "url": "git@gitlab.com:opengeoweb/opengeoweb.git"
9
9
  },
10
10
  "dependencies": {
11
- "@opengeoweb/form-fields": "14.2.2",
11
+ "@opengeoweb/form-fields": "14.3.0",
12
12
  "react-hook-form": "^7.61.1",
13
13
  "@mui/material": "^7.2.0",
14
- "@opengeoweb/shared": "14.2.2",
15
- "@opengeoweb/theme": "14.2.2",
14
+ "@opengeoweb/shared": "14.3.0",
15
+ "@opengeoweb/theme": "14.3.0",
16
16
  "i18next": "^25.3.2",
17
17
  "react-i18next": "^15.1.1"
18
18
  },
@@ -2,5 +2,5 @@ import i18n from 'i18next';
2
2
  import type { UseTranslationResponse } from 'react-i18next';
3
3
  export declare const KNMICOMPONENTS_NAMESPACE = "KNMIComponents";
4
4
  export declare const initKNMIComponentsI18n: () => void;
5
- export declare const translateKeyOutsideComponents: (key: string, params?: Record<string, string | number> | undefined) => string;
5
+ export declare const translateInTestsAndStories: (key: string, params?: Record<string, string | number> | undefined) => string;
6
6
  export declare const useKNMIComponentsTranslation: () => UseTranslationResponse<typeof KNMICOMPONENTS_NAMESPACE, typeof i18n>;