@opengeoweb/theme 8.4.1 → 9.0.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 +130 -3274
- package/package.json +2 -9
- package/src/lib/components/Icons/Icons.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -9,12 +9,5 @@
|
|
|
9
9
|
},
|
|
10
10
|
"module": "./index.esm.js",
|
|
11
11
|
"type": "module",
|
|
12
|
-
"main": "./index.esm.js"
|
|
13
|
-
"dependencies": {},
|
|
14
|
-
"peerDependencies": {
|
|
15
|
-
"@mui/material": "5.12.0",
|
|
16
|
-
"@mui/system": "5.14.14",
|
|
17
|
-
"@mui/x-date-pickers": "6.2.1",
|
|
18
|
-
"react": "18.2.0"
|
|
19
|
-
}
|
|
12
|
+
"main": "./index.esm.js"
|
|
20
13
|
}
|
|
@@ -15,6 +15,7 @@ export declare const Edit: (props: SvgIconProps) => JSX.Element;
|
|
|
15
15
|
export declare const Export: (props: SvgIconProps) => JSX.Element;
|
|
16
16
|
export declare const ListItem: (props: SvgIconProps) => JSX.Element;
|
|
17
17
|
export declare const TimeSeriesManager: React.FC;
|
|
18
|
+
export declare const TimeSeriesSelect: React.FC;
|
|
18
19
|
export declare const Close: React.FC<SvgIconProps>;
|
|
19
20
|
export declare const KeyOption: React.FC;
|
|
20
21
|
export declare const KeyCommand: React.FC;
|
|
@@ -102,4 +103,5 @@ export declare const Fog: (props: SvgIconProps) => JSX.Element;
|
|
|
102
103
|
export declare const CoastalEvent: (props: SvgIconProps) => JSX.Element;
|
|
103
104
|
export declare const TemperatureHigh: (props: SvgIconProps) => JSX.Element;
|
|
104
105
|
export declare const TemperatureLow: (props: SvgIconProps) => JSX.Element;
|
|
106
|
+
export declare const WorldMapProjection: (props: SvgIconProps) => JSX.Element;
|
|
105
107
|
export {};
|