@opengeoweb/theme 12.13.0 → 13.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.1.0",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"url": "git@gitlab.com:opengeoweb/opengeoweb.git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@mui/system": "^7.3.
|
|
12
|
-
"@mui/x-date-pickers": "^8.
|
|
11
|
+
"@mui/system": "^7.3.2",
|
|
12
|
+
"@mui/x-date-pickers": "^8.11.2",
|
|
13
13
|
"i18next": "^25.0.1",
|
|
14
14
|
"@mui/material": "^7.0.1",
|
|
15
15
|
"react-i18next": "^15.1.1",
|
|
@@ -138,4 +138,5 @@ export declare const SharedPresetsMyUser: (props: SvgIconProps) => React.ReactEl
|
|
|
138
138
|
export declare const Sources: (props: SvgIconProps) => React.ReactElement;
|
|
139
139
|
export declare const MeteoGate: (props: SvgIconProps) => React.ReactElement;
|
|
140
140
|
export declare const Overlayers: (props: SvgIconProps) => React.ReactElement;
|
|
141
|
+
export declare const SevereMountainWaves: (props: SvgIconProps) => React.ReactElement;
|
|
141
142
|
export {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export declare const dragHandlePath = "M9.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-5 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-5 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z";
|
|
2
2
|
export declare const locationPath = "M11.58 11.758a2.177 2.177 0 1 1 0-4.354 2.177 2.177 0 0 1 0 4.354m0-8.758A6.58 6.58 0 0 0 5 9.58C5 15.15 11.58 21 11.58 21s6.582-5.85 6.582-11.42A6.58 6.58 0 0 0 11.58 3";
|
|
3
|
+
export declare const arrowUpPath = "M-.08 2.96 2.88 0l2.96 2.96H3.39v8.01H2.37V2.96z";
|
package/src/lib/types.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare enum ThemeTypes {
|
|
|
12
12
|
DARK_THEME = "darkTheme",
|
|
13
13
|
LIGHT_THEME = "lightTheme",
|
|
14
14
|
XMAS2024_THEME = "xmas2024Theme",
|
|
15
|
+
EUMETNET_THEME = "eumetnetTheme",
|
|
15
16
|
DEMO_THEME = "demoTheme"
|
|
16
17
|
}
|
|
17
18
|
export type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'flat' | 'tool' | 'boxed' | 'icon';
|
|
@@ -5,6 +5,7 @@ export declare const lightTheme: import("@mui/material").Theme;
|
|
|
5
5
|
export declare const darkTheme: import("@mui/material").Theme;
|
|
6
6
|
export declare const xmas2024Theme: import("@mui/material").Theme;
|
|
7
7
|
export declare const demoTheme: import("@mui/material").Theme;
|
|
8
|
+
export declare const eumetnetTheme: import("@mui/material").Theme;
|
|
8
9
|
export declare const namedLightTheme: {
|
|
9
10
|
name: ThemeTypes;
|
|
10
11
|
theme: import("@mui/material").Theme;
|
|
@@ -21,4 +22,8 @@ export declare const namedDemoTheme: {
|
|
|
21
22
|
name: ThemeTypes;
|
|
22
23
|
theme: import("@mui/material").Theme;
|
|
23
24
|
};
|
|
25
|
+
export declare const namedEumetnetTheme: {
|
|
26
|
+
name: ThemeTypes;
|
|
27
|
+
theme: import("@mui/material").Theme;
|
|
28
|
+
};
|
|
24
29
|
export { colorsLight, elevationsLight };
|