@record-evolution/widget-gauge 1.7.5 → 1.7.6

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
@@ -3,7 +3,7 @@
3
3
  "description": "REWidget widget-gauge",
4
4
  "license": "MIT",
5
5
  "author": "widget-gauge",
6
- "version": "1.7.5",
6
+ "version": "1.7.6",
7
7
  "type": "module",
8
8
  "main": "dist/widget-gauge.js",
9
9
  "types": "dist/src/widget-gauge.d.ts",
@@ -191,7 +191,7 @@ export class WidgetGauge extends LitElement {
191
191
 
192
192
  registerTheme(theme?: Theme) {
193
193
  const cssTextColor = getComputedStyle(this).getPropertyValue('--re-text-color').trim()
194
- const cssBgColor = getComputedStyle(this).getPropertyValue('--re-background-color').trim()
194
+ const cssBgColor = getComputedStyle(this).getPropertyValue('--re-tile-background-color').trim()
195
195
  this.themeBgColor = cssBgColor || this.theme?.theme_object?.backgroundColor
196
196
  this.themeTitleColor = cssTextColor || this.theme?.theme_object?.title?.textStyle?.color
197
197
  this.themeSubtitleColor =