@opengeoweb/theme 8.4.1 → 9.1.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 +173 -3279
- package/package.json +2 -9
- package/src/lib/components/Icons/Icons.d.ts +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.1.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
|
}
|
|
@@ -10,11 +10,12 @@ export declare const DrawPolygon: (props: SvgIconProps) => JSX.Element;
|
|
|
10
10
|
export declare const DrawFIRLand: (props: SvgIconProps) => JSX.Element;
|
|
11
11
|
export declare const Polygons: (props: SvgIconProps) => JSX.Element;
|
|
12
12
|
export declare const Location: (props: SvgIconProps) => JSX.Element;
|
|
13
|
+
export declare const MyLocation: (props: SvgIconProps) => JSX.Element;
|
|
13
14
|
export declare const ThumbsUp: (props: SvgIconProps) => JSX.Element;
|
|
14
15
|
export declare const Edit: (props: SvgIconProps) => JSX.Element;
|
|
15
16
|
export declare const Export: (props: SvgIconProps) => JSX.Element;
|
|
16
17
|
export declare const ListItem: (props: SvgIconProps) => JSX.Element;
|
|
17
|
-
export declare const
|
|
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,10 @@ 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 LockUnlocked: (props: SvgIconProps) => JSX.Element;
|
|
107
|
+
export declare const LockLocked: (props: SvgIconProps) => JSX.Element;
|
|
108
|
+
export declare const ArrowDropDownDown: (props: SvgIconProps) => JSX.Element;
|
|
109
|
+
export declare const ArrowDropDownUp: (props: SvgIconProps) => JSX.Element;
|
|
110
|
+
export declare const WorldMapProjection: (props: SvgIconProps) => JSX.Element;
|
|
111
|
+
export declare const FunnelCloud: (props: SvgIconProps) => JSX.Element;
|
|
105
112
|
export {};
|