@opengeoweb/theme 9.30.0 → 9.32.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 +767 -383
- package/package.json +4 -3
- package/src/lib/components/Icons/Icons.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.32.0",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@mui/x-date-pickers": "^7.17.0",
|
|
13
13
|
"i18next": "^23.11.5",
|
|
14
14
|
"@mui/material": "^6.1.1",
|
|
15
|
-
"react-i18next": "^
|
|
15
|
+
"react-i18next": "^15.1.1"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"react": "18",
|
|
@@ -21,5 +21,6 @@
|
|
|
21
21
|
},
|
|
22
22
|
"module": "./index.esm.js",
|
|
23
23
|
"type": "module",
|
|
24
|
-
"main": "./index.esm.js"
|
|
24
|
+
"main": "./index.esm.js",
|
|
25
|
+
"types": "./index.esm.d.ts"
|
|
25
26
|
}
|
|
@@ -125,4 +125,8 @@ export declare const RadioactiveMaterials: (props: SvgIconProps) => React.ReactE
|
|
|
125
125
|
export declare const FreezingPrecipitation: (props: SvgIconProps) => React.ReactElement;
|
|
126
126
|
export declare const Haze: (props: SvgIconProps) => React.ReactElement;
|
|
127
127
|
export declare const ModerateTurbulence: (props: SvgIconProps) => React.ReactElement;
|
|
128
|
+
export declare const FlagNetherlands: (props: SvgIconProps) => React.ReactElement;
|
|
129
|
+
export declare const FlagFinland: (props: SvgIconProps) => React.ReactElement;
|
|
130
|
+
export declare const FlagNorway: (props: SvgIconProps) => React.ReactElement;
|
|
131
|
+
export declare const FlagBritain: (props: SvgIconProps) => React.ReactElement;
|
|
128
132
|
export {};
|