@record-evolution/widget-value 1.0.10 → 1.0.12

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,28 +0,0 @@
1
- export interface Settings {
2
- title: string;
3
- subTitle: string;
4
- columnLayout: boolean;
5
- }
6
- export interface Data {
7
- value: number;
8
- pivot: string;
9
- }
10
- export interface Dataseries {
11
- label: string;
12
- order: number;
13
- unit: string;
14
- labelColor: string;
15
- valueColor: string;
16
- averageLatest: number;
17
- labelFontSize: number;
18
- valueFontSize: number;
19
- backgroundColor: string;
20
- data: Data[];
21
- needleValue: number;
22
- range: number;
23
- ranges: number[];
24
- }
25
- export interface InputData {
26
- settings: Settings;
27
- dataseries: Dataseries[];
28
- }
package/src/types.ts DELETED
@@ -1,32 +0,0 @@
1
-
2
- export interface Settings {
3
- title: string
4
- subTitle: string
5
- columnLayout: boolean
6
- }
7
-
8
- export interface Data {
9
- value: number
10
- pivot: string
11
- }
12
- export interface Dataseries {
13
- label: string
14
- order: number
15
- unit: string
16
- labelColor: string
17
- valueColor: string
18
- averageLatest: number
19
- labelFontSize: number
20
- valueFontSize: number
21
- backgroundColor: string
22
- data: Data[]
23
- // not input values
24
- needleValue: number
25
- range: number
26
- ranges: number[]
27
- }
28
-
29
- export interface InputData {
30
- settings: Settings
31
- dataseries: Dataseries[]
32
- }