@record-evolution/widget-scada 1.0.7 → 1.0.9

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.
@@ -1,7 +1,7 @@
1
1
  import { html, css, LitElement, PropertyValues, nothing } from 'lit'
2
2
  import { customElement, property, state, query } from 'lit/decorators.js'
3
3
  import { unsafeSVG } from 'lit/directives/unsafe-svg.js'
4
- import { InputData } from './definition-schema.js'
4
+ import { SCADASymbolConfiguration } from './definition-schema.js'
5
5
  import {
6
6
  SymbolMetadata,
7
7
  ScadaContext,
@@ -20,7 +20,7 @@ type Theme = {
20
20
  @customElement('widget-scada-versionplaceholder')
21
21
  export class WidgetScada extends LitElement {
22
22
  @property({ type: Object })
23
- inputData?: InputData
23
+ inputData?: SCADASymbolConfiguration
24
24
 
25
25
  @property({ type: Object })
26
26
  theme?: Theme