@vertigis/react-ui 8.15.1 → 8.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020 Geocortex
3
+ Copyright (c) 2022 VertiGIS North America Ltd.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/react-ui",
3
- "version": "8.15.1",
3
+ "version": "8.16.0",
4
4
  "description": "Utilities and React components used in VertiGIS applications.",
5
5
  "keywords": [
6
6
  "vertigis",
@@ -546,7 +546,8 @@ function getOverrides(theme) {
546
546
  };
547
547
  }
548
548
  function createTheme(options) {
549
- // Merge the Geocortex theme defaults with any user specified theme options
549
+ // Merge the VertiGIS Studio theme defaults with any user specified theme
550
+ // options
550
551
  const mode = options && options.palette && options.palette.type === "dark" ? "dark" : "light";
551
552
  // If we are using light mode, then we want to use our defined light theme palette
552
553
  const themeTypeOptions = mode === "light" ? lightThemeOverrides : {};