@opengeoweb/theme 9.21.0 → 9.23.1
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 +27 -21
- package/package.json +2 -2
- package/src/index.d.ts +1 -0
- package/src/lib/components/Icons/Icons.d.ts +1 -1
package/index.esm.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
2
|
import { SvgIcon, createTheme as createTheme$1, ThemeProvider as ThemeProvider$1, CssBaseline, GlobalStyles, StyledEngineProvider } from '@mui/material';
|
|
3
3
|
import * as React from 'react';
|
|
4
|
+
import 'i18next';
|
|
5
|
+
import 'react-i18next';
|
|
4
6
|
|
|
5
7
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
6
8
|
|
|
@@ -1996,10 +1998,7 @@ const CloudIdle = props => jsx(SvgIcon, Object.assign({}, props, {
|
|
|
1996
1998
|
})
|
|
1997
1999
|
}));
|
|
1998
2000
|
const Admin = _a => {
|
|
1999
|
-
var
|
|
2000
|
-
children
|
|
2001
|
-
} = _a,
|
|
2002
|
-
props = __rest(_a, ["children"]);
|
|
2001
|
+
var props = __rest(_a, []);
|
|
2003
2002
|
const title = 'Admin';
|
|
2004
2003
|
return jsxs(SvgIcon, Object.assign({}, props, {
|
|
2005
2004
|
width: 32,
|
|
@@ -2083,18 +2082,7 @@ const Admin = _a => {
|
|
|
2083
2082
|
xlinkHref: "#d",
|
|
2084
2083
|
fill: "#000",
|
|
2085
2084
|
filter: "url(#c)"
|
|
2086
|
-
})
|
|
2087
|
-
fill: "#FFF",
|
|
2088
|
-
fontFamily: "Roboto-Medium, Roboto",
|
|
2089
|
-
fontSize: "14",
|
|
2090
|
-
fontWeight: "400",
|
|
2091
|
-
x: "16",
|
|
2092
|
-
y: "16.308",
|
|
2093
|
-
alignmentBaseline: "central",
|
|
2094
|
-
textAnchor: "middle"
|
|
2095
|
-
}, {
|
|
2096
|
-
children: children || 'VL'
|
|
2097
|
-
}))]
|
|
2085
|
+
})]
|
|
2098
2086
|
}))]
|
|
2099
2087
|
}));
|
|
2100
2088
|
};
|
|
@@ -2316,9 +2304,9 @@ var no = {
|
|
|
2316
2304
|
theme: "ikke oversatt"
|
|
2317
2305
|
};
|
|
2318
2306
|
var nl = {
|
|
2319
|
-
theme: "
|
|
2307
|
+
theme: "Thema"
|
|
2320
2308
|
};
|
|
2321
|
-
var
|
|
2309
|
+
var themeTranslations = {
|
|
2322
2310
|
en: en,
|
|
2323
2311
|
fi: fi,
|
|
2324
2312
|
no: no,
|
|
@@ -4273,7 +4261,7 @@ const colors$1 = {
|
|
|
4273
4261
|
needleLabel: {
|
|
4274
4262
|
backgroundColor: '#212121',
|
|
4275
4263
|
borderColor: '#9e9e9e',
|
|
4276
|
-
color: '#
|
|
4264
|
+
color: '#FFFFFF'
|
|
4277
4265
|
},
|
|
4278
4266
|
timeline: {
|
|
4279
4267
|
fill: '#FFFFFF',
|
|
@@ -5564,7 +5552,7 @@ const colors = {
|
|
|
5564
5552
|
needleLabel: {
|
|
5565
5553
|
backgroundColor: '#212121',
|
|
5566
5554
|
borderColor: '#9e9e9e',
|
|
5567
|
-
color: '#
|
|
5555
|
+
color: '#FFFFFF'
|
|
5568
5556
|
},
|
|
5569
5557
|
timeline: {
|
|
5570
5558
|
fill: '#FFFFFF',
|
|
@@ -6393,4 +6381,22 @@ const EChartsLightTheme = {
|
|
|
6393
6381
|
}
|
|
6394
6382
|
};
|
|
6395
6383
|
|
|
6396
|
-
|
|
6384
|
+
/* *
|
|
6385
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6386
|
+
* you may not use this file except in compliance with the License.
|
|
6387
|
+
* You may obtain a copy of the License at
|
|
6388
|
+
*
|
|
6389
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
6390
|
+
*
|
|
6391
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
6392
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
6393
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
6394
|
+
* See the License for the specific language governing permissions and
|
|
6395
|
+
* limitations under the License.
|
|
6396
|
+
*
|
|
6397
|
+
* Copyright 2023 - Koninklijk Nederlands Meteorologisch Instituut (KNMI)
|
|
6398
|
+
* Copyright 2023 - Finnish Meteorological Institute (FMI)
|
|
6399
|
+
* */
|
|
6400
|
+
const THEME_NAMESPACE = 'theme';
|
|
6401
|
+
|
|
6402
|
+
export { Add, Admin, Animation, ArrowDown, ArrowDropDownDown, ArrowDropDownUp, ArrowLeft, ArrowRight, ArrowUp, AutoUpdateActive, AutoUpdateInActive, Both, Cached, CalendarToday, Cancel, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clear, Clock, Close, CloudIdle, CloudLoading, CoastalEvent, CollapseLarge, CollapseMedium, CollapseSmall, CollapseWindow, Copy, Delete, DimensionsElevation, DimensionsOther, DimensionsRefTime, DimensionsTime, DragHandle, DrawFIRLand, DrawPolygon, DrawRegion, EChartsDarkTheme, EChartsLightTheme, Edit, Equalizer, Exclamation, ExitDomain, Expand, ExpandWindow, Expire, Export, FastForward, Filter, Fog, FreezingPrecipitation, FunnelCloud, GeoWebLogo, HamburgerMenu, Haze, Home, index as Icons, Info, KeyCommand, KeyOption, Layers, LayersAdd, Lightning, Link, LinkOff, List, ListItem, Location, LockLocked, LockUnlocked, MapAdd, Menu, Minus, ModerateAircraftIcing, ModerateTurbulence, MyLocation, None, Notifications, Now, Options, Pause, Picture, Play, Polygons, Preset, PresetTiles, PresetWorkspace, RadioactiveMaterials, Rain, Remove, Resize, SandStorm, Search, SevereAircraftIcing, SevereTurbulence, SevereWaves, Share, SliderThumb, Snow, Speed, SplitHorizontal, SplitVertical, StepBackward, StepForward, SubdirectoryArrowRight, Success, THEME_NAMESPACE, TemperatureHigh, TemperatureLow, TextIcon, ThemeContext, ThemeProvider, ThemeTypes, ThemeWrapper, ThumbsUp, Thunderstorm, TimeSeriesSelect, UnExpand, Update, Visibility, VisibilityOff, VulcanicEruption, WebAssetOff, Wind, WorldMapProjection, breakpoints, colors$1 as colorsLight, createShadows, createTheme, darkTheme, dragHandlePath, elevations$1 as elevationsLight, lightTheme, parseColors, themeTranslations, useThemeContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/theme",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.23.1",
|
|
4
4
|
"description": "GeoWeb Theme library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "git@gitlab.com:opengeoweb/opengeoweb.git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@mui/material": "
|
|
11
|
+
"@mui/material": "^5.16.0",
|
|
12
12
|
"@mui/system": "^5.15.1",
|
|
13
13
|
"@mui/x-date-pickers": "^6.18.5",
|
|
14
14
|
"i18next": "^23.11.5",
|
package/src/index.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export declare const WorldMapProjection: (props: SvgIconProps) => JSX.Element;
|
|
|
111
111
|
export declare const FunnelCloud: (props: SvgIconProps) => JSX.Element;
|
|
112
112
|
export declare const CloudLoading: (props: SvgIconProps) => JSX.Element;
|
|
113
113
|
export declare const CloudIdle: (props: SvgIconProps) => JSX.Element;
|
|
114
|
-
export declare const Admin: ({
|
|
114
|
+
export declare const Admin: ({ ...props }: SvgIconProps) => JSX.Element;
|
|
115
115
|
export declare const Remove: (props: SvgIconProps) => JSX.Element;
|
|
116
116
|
export declare const Expire: (props: SvgIconProps) => JSX.Element;
|
|
117
117
|
export declare const Thunderstorm: (props: SvgIconProps) => JSX.Element;
|