@@ -17,6 +17,7 @@ import { WidgetAutopilotComponent } from "../../widgets/widget-autopilot/widget-
17
17
import { WidgetSimpleLinearComponent } from "../../widgets/widget-simple-linear/widget-simple-linear.component" ;
18
18
import { WidgetRaceTimerComponent } from '../../widgets/widget-race-timer/widget-race-timer.component' ;
19
19
import { WidgetDataChartComponent } from '../../widgets/widget-data-chart/widget-data-chart.component' ;
20
+ import { WidgetFreeboardskComponent } from '../../widgets/widget-freeboardsk/widget-freeboardsk.component' ;
20
21
21
22
class widgetInfo {
22
23
name : string ;
@@ -37,11 +38,6 @@ export class WidgetListService {
37
38
38
39
widgetList : widgetList = {
39
40
'Basic' : [
40
- {
41
- name : 'WidgetBlank' ,
42
- componentName : WidgetBlankComponent ,
43
- description : 'Blank' ,
44
- } ,
45
41
{
46
42
name : 'WidgetNumeric' ,
47
43
componentName : WidgetNumericComponent ,
@@ -62,10 +58,15 @@ export class WidgetListService {
62
58
componentName : WidgetBooleanSwitchComponent ,
63
59
description : 'Boolean Control Panel' ,
64
60
} ,
61
+ {
62
+ name : 'WidgetBlank' ,
63
+ componentName : WidgetBlankComponent ,
64
+ description : 'Blank' ,
65
+ } ,
65
66
{
66
67
name : 'WidgetStateComponent' ,
67
68
componentName : WidgetButtonComponent ,
68
- description : 'Boolean Button/Switch' ,
69
+ description : '(Deprecated) Boolean Button/Switch' ,
69
70
}
70
71
] ,
71
72
'Gauge' : [
@@ -88,7 +89,7 @@ export class WidgetListService {
88
89
name : 'WidgetGaugeComponent' ,
89
90
componentName : WidgetGaugeComponent ,
90
91
description : "Linear & Radial Steel Style"
91
- } ,
92
+ }
92
93
] ,
93
94
'Component' : [
94
95
{
@@ -97,15 +98,20 @@ export class WidgetListService {
97
98
description : 'Wind Steering Display' ,
98
99
} ,
99
100
{
100
- name : 'WidgetDataChart ' ,
101
- componentName : WidgetDataChartComponent ,
102
- description : 'Data Chart' ,
101
+ name : 'WidgetFreeboardskComponent ' ,
102
+ componentName : WidgetFreeboardskComponent ,
103
+ description : 'Freeboard-SK Chart Plotter ' ,
103
104
} ,
104
105
{
105
106
name : 'WidgetAutopilotComponent' ,
106
107
componentName : WidgetAutopilotComponent ,
107
108
description : 'Autopilot Head' ,
108
109
} ,
110
+ {
111
+ name : 'WidgetDataChart' ,
112
+ componentName : WidgetDataChartComponent ,
113
+ description : 'Data Chart' ,
114
+ } ,
109
115
{
110
116
name : 'WidgetRaceTimerComponent' ,
111
117
componentName : WidgetRaceTimerComponent ,
@@ -115,11 +121,6 @@ export class WidgetListService {
115
121
name : 'WidgetIframeComponent' ,
116
122
componentName : WidgetIframeComponent ,
117
123
description : 'Embed Webpage' ,
118
- } ,
119
- {
120
- name : 'WidgetTutorial' ,
121
- componentName : WidgetTutorialComponent ,
122
- description : 'Tutorial'
123
124
}
124
125
]
125
126
} ;
0 commit comments