@opengeoweb/theme 9.15.0 → 9.16.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 CHANGED
@@ -1835,6 +1835,25 @@ var index = /*#__PURE__*/Object.freeze({
1835
1835
  CloudIdle: CloudIdle
1836
1836
  });
1837
1837
 
1838
+ var en = {
1839
+ theme: "Theme"
1840
+ };
1841
+ var fi = {
1842
+ theme: "ei käännetty"
1843
+ };
1844
+ var no = {
1845
+ theme: "ikke oversatt"
1846
+ };
1847
+ var nl = {
1848
+ theme: "niet vertaald"
1849
+ };
1850
+ var theme = {
1851
+ en: en,
1852
+ fi: fi,
1853
+ no: no,
1854
+ nl: nl
1855
+ };
1856
+
1838
1857
  var objectDefineProperties = {};
1839
1858
 
1840
1859
  var DESCRIPTORS$1 = descriptors;
@@ -5893,4 +5912,4 @@ const EChartsLightTheme = {
5893
5912
  }
5894
5913
  };
5895
5914
 
5896
- export { Add, 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, Export, FastForward, Filter, Fog, FunnelCloud, GeoWebLogo, HamburgerMenu, Home, index as Icons, Info, KeyCommand, KeyOption, Layers, LayersAdd, Lightning, Link, LinkOff, List, ListItem, Location, LockLocked, LockUnlocked, MapAdd, Menu, Minus, MyLocation, None, Notifications, Now, Options, Pause, Picture, Play, Polygons, Preset, PresetTiles, PresetWorkspace, Rain, Resize, Search, Share, SliderThumb, Snow, Speed, SplitHorizontal, SplitVertical, StepBackward, StepForward, SubdirectoryArrowRight, Success, TemperatureHigh, TemperatureLow, TextIcon, ThemeContext, ThemeProvider, ThemeTypes, ThemeWrapper, ThumbsUp, TimeSeriesSelect, UnExpand, Update, Visibility, VisibilityOff, WebAssetOff, Wind, WorldMapProjection, breakpoints, colors$1 as colorsLight, createShadows, createTheme, darkTheme, dragHandlePath, elevations$1 as elevationsLight, lightTheme, parseColors, useThemeContext };
5915
+ export { Add, 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, Export, FastForward, Filter, Fog, FunnelCloud, GeoWebLogo, HamburgerMenu, Home, index as Icons, Info, KeyCommand, KeyOption, Layers, LayersAdd, Lightning, Link, LinkOff, List, ListItem, Location, LockLocked, LockUnlocked, MapAdd, Menu, Minus, MyLocation, None, Notifications, Now, Options, Pause, Picture, Play, Polygons, Preset, PresetTiles, PresetWorkspace, Rain, Resize, Search, Share, SliderThumb, Snow, Speed, SplitHorizontal, SplitVertical, StepBackward, StepForward, SubdirectoryArrowRight, Success, TemperatureHigh, TemperatureLow, TextIcon, ThemeContext, ThemeProvider, ThemeTypes, ThemeWrapper, ThumbsUp, TimeSeriesSelect, UnExpand, Update, Visibility, VisibilityOff, WebAssetOff, Wind, WorldMapProjection, breakpoints, colors$1 as colorsLight, createShadows, createTheme, darkTheme, dragHandlePath, elevations$1 as elevationsLight, lightTheme, parseColors, theme as themeTranslations, useThemeContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/theme",
3
- "version": "9.15.0",
3
+ "version": "9.16.0",
4
4
  "description": "GeoWeb Theme library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as Icons from './lib/components/Icons';
2
+ import themeTranslations from '../locales/theme.json';
2
3
  export { Icons };
3
4
  export * from './lib/components/Theme';
4
5
  export { parseColors, createShadows } from './lib/utils/utils';
@@ -8,3 +9,4 @@ export * from './lib/components/Icons';
8
9
  export * from './lib/components/Paths';
9
10
  export * from './lib/types';
10
11
  export * from './lib/utils/EChartsThemes';
12
+ export { themeTranslations };
@@ -2,6 +2,5 @@ import React from 'react';
2
2
  interface ThemeTranslationWrapperProps {
3
3
  children?: React.ReactNode;
4
4
  }
5
- export declare const ThemeTranslationsWrapper: React.FC<ThemeTranslationWrapperProps>;
6
5
  export declare const ThemeI18nProvider: React.FC<ThemeTranslationWrapperProps>;
7
6
  export {};