@oicl/openbridge-webcomponents-ng 2.0.0-next.16 → 2.0.0-next.18
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.
|
@@ -74479,6 +74479,18 @@ class ObcCompass {
|
|
|
74479
74479
|
get vesselImage() {
|
|
74480
74480
|
return this._el.vesselImage;
|
|
74481
74481
|
}
|
|
74482
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
74483
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
74484
|
+
}
|
|
74485
|
+
get rateOfTurnDegreesPerMinute() {
|
|
74486
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
74487
|
+
}
|
|
74488
|
+
set rotDotAnimationFactor(v) {
|
|
74489
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
74490
|
+
}
|
|
74491
|
+
get rotDotAnimationFactor() {
|
|
74492
|
+
return this._el.rotDotAnimationFactor;
|
|
74493
|
+
}
|
|
74482
74494
|
set rotationsPerMinute(v) {
|
|
74483
74495
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
74484
74496
|
}
|
|
@@ -74558,7 +74570,7 @@ class ObcCompass {
|
|
|
74558
74570
|
return this._el.tickmarksInside;
|
|
74559
74571
|
}
|
|
74560
74572
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcCompass, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
74561
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcCompass, isStandalone: true, selector: "obc-compass", inputs: { heading: "heading", courseOverGround: "courseOverGround", headingSetpoint: "headingSetpoint", newHeadingSetpoint: "newHeadingSetpoint", atHeadingSetpoint: "atHeadingSetpoint", headingSetpointAtZeroDeadband: "headingSetpointAtZeroDeadband", headingSetpointOverride: "headingSetpointOverride", autoAtHeadingSetpoint: "autoAtHeadingSetpoint", autoAtHeadingSetpointDeadband: "autoAtHeadingSetpointDeadband", animateSetpoint: "animateSetpoint", touching: "touching", headingAdvices: "headingAdvices", windSpeed: "windSpeed", windFromDirection: "windFromDirection", currentSpeed: "currentSpeed", currentFromDirection: "currentFromDirection", vesselImage: "vesselImage", rotationsPerMinute: "rotationsPerMinute", rotType: "rotType", rotPosition: "rotPosition", rotMaxValue: "rotMaxValue", rotArcExtent: "rotArcExtent", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband", direction: "direction", state: "state", priority: "priority", priorityElements: "priorityElements", showLabels: "showLabels", tickmarksInside: "tickmarksInside" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
74573
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcCompass, isStandalone: true, selector: "obc-compass", inputs: { heading: "heading", courseOverGround: "courseOverGround", headingSetpoint: "headingSetpoint", newHeadingSetpoint: "newHeadingSetpoint", atHeadingSetpoint: "atHeadingSetpoint", headingSetpointAtZeroDeadband: "headingSetpointAtZeroDeadband", headingSetpointOverride: "headingSetpointOverride", autoAtHeadingSetpoint: "autoAtHeadingSetpoint", autoAtHeadingSetpointDeadband: "autoAtHeadingSetpointDeadband", animateSetpoint: "animateSetpoint", touching: "touching", headingAdvices: "headingAdvices", windSpeed: "windSpeed", windFromDirection: "windFromDirection", currentSpeed: "currentSpeed", currentFromDirection: "currentFromDirection", vesselImage: "vesselImage", rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor", rotationsPerMinute: "rotationsPerMinute", rotType: "rotType", rotPosition: "rotPosition", rotMaxValue: "rotMaxValue", rotArcExtent: "rotArcExtent", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband", direction: "direction", state: "state", priority: "priority", priorityElements: "priorityElements", showLabels: "showLabels", tickmarksInside: "tickmarksInside" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
74562
74574
|
}
|
|
74563
74575
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcCompass, decorators: [{
|
|
74564
74576
|
type: Component,
|
|
@@ -74602,6 +74614,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
74602
74614
|
type: Input
|
|
74603
74615
|
}], vesselImage: [{
|
|
74604
74616
|
type: Input
|
|
74617
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
74618
|
+
type: Input
|
|
74619
|
+
}], rotDotAnimationFactor: [{
|
|
74620
|
+
type: Input
|
|
74605
74621
|
}], rotationsPerMinute: [{
|
|
74606
74622
|
type: Input
|
|
74607
74623
|
}], rotType: [{
|
|
@@ -74697,6 +74713,18 @@ class ObcCompassFlat {
|
|
|
74697
74713
|
get rotType() {
|
|
74698
74714
|
return this._el.rotType;
|
|
74699
74715
|
}
|
|
74716
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
74717
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
74718
|
+
}
|
|
74719
|
+
get rateOfTurnDegreesPerMinute() {
|
|
74720
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
74721
|
+
}
|
|
74722
|
+
set rotDotAnimationFactor(v) {
|
|
74723
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
74724
|
+
}
|
|
74725
|
+
get rotDotAnimationFactor() {
|
|
74726
|
+
return this._el.rotDotAnimationFactor;
|
|
74727
|
+
}
|
|
74700
74728
|
set rotationsPerMinute(v) {
|
|
74701
74729
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
74702
74730
|
}
|
|
@@ -74728,7 +74756,7 @@ class ObcCompassFlat {
|
|
|
74728
74756
|
return this._el.rotAtZeroDeadband;
|
|
74729
74757
|
}
|
|
74730
74758
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcCompassFlat, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
74731
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcCompassFlat, isStandalone: true, selector: "obc-compass-flat", inputs: { FOVIndicator: "FOVIndicator", heading: "heading", courseOverGround: "courseOverGround", tickInterval: "tickInterval", FOV: "FOV", minFOV: "minFOV", maxFOV: "maxFOV", priority: "priority", priorityElements: "priorityElements", rotType: "rotType", rotationsPerMinute: "rotationsPerMinute", rotMaxValue: "rotMaxValue", rotArcExtent: "rotArcExtent", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
74759
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcCompassFlat, isStandalone: true, selector: "obc-compass-flat", inputs: { FOVIndicator: "FOVIndicator", heading: "heading", courseOverGround: "courseOverGround", tickInterval: "tickInterval", FOV: "FOV", minFOV: "minFOV", maxFOV: "maxFOV", priority: "priority", priorityElements: "priorityElements", rotType: "rotType", rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor", rotationsPerMinute: "rotationsPerMinute", rotMaxValue: "rotMaxValue", rotArcExtent: "rotArcExtent", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
74732
74760
|
}
|
|
74733
74761
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcCompassFlat, decorators: [{
|
|
74734
74762
|
type: Component,
|
|
@@ -74758,6 +74786,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
74758
74786
|
type: Input
|
|
74759
74787
|
}], rotType: [{
|
|
74760
74788
|
type: Input
|
|
74789
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
74790
|
+
type: Input
|
|
74791
|
+
}], rotDotAnimationFactor: [{
|
|
74792
|
+
type: Input
|
|
74761
74793
|
}], rotationsPerMinute: [{
|
|
74762
74794
|
type: Input
|
|
74763
74795
|
}], rotMaxValue: [{
|
|
@@ -74916,6 +74948,18 @@ class ObcCompassSector {
|
|
|
74916
74948
|
get rotPosition() {
|
|
74917
74949
|
return this._el.rotPosition;
|
|
74918
74950
|
}
|
|
74951
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
74952
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
74953
|
+
}
|
|
74954
|
+
get rateOfTurnDegreesPerMinute() {
|
|
74955
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
74956
|
+
}
|
|
74957
|
+
set rotDotAnimationFactor(v) {
|
|
74958
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
74959
|
+
}
|
|
74960
|
+
get rotDotAnimationFactor() {
|
|
74961
|
+
return this._el.rotDotAnimationFactor;
|
|
74962
|
+
}
|
|
74919
74963
|
set rotationsPerMinute(v) {
|
|
74920
74964
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
74921
74965
|
}
|
|
@@ -74972,7 +75016,7 @@ class ObcCompassSector {
|
|
|
74972
75016
|
}
|
|
74973
75017
|
NoneEvent = new EventEmitter();
|
|
74974
75018
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcCompassSector, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
74975
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcCompassSector, isStandalone: true, selector: "obc-compass-sector", inputs: { heading: "heading", courseOverGround: "courseOverGround", headingSetpoint: "headingSetpoint", newHeadingSetpoint: "newHeadingSetpoint", atHeadingSetpoint: "atHeadingSetpoint", headingSetpointAtZeroDeadband: "headingSetpointAtZeroDeadband", headingSetpointOverride: "headingSetpointOverride", autoAtHeadingSetpoint: "autoAtHeadingSetpoint", autoAtHeadingSetpointDeadband: "autoAtHeadingSetpointDeadband", animateSetpoint: "animateSetpoint", touching: "touching", headingAdvices: "headingAdvices", minFOV: "minFOV", rotType: "rotType", rotPosition: "rotPosition", rotationsPerMinute: "rotationsPerMinute", rotMaxValue: "rotMaxValue", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband", state: "state", priority: "priority", priorityElements: "priorityElements", tickmarksInside: "tickmarksInside", zoomToFitArc: "zoomToFitArc" }, outputs: { NoneEvent: "NoneEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
75019
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcCompassSector, isStandalone: true, selector: "obc-compass-sector", inputs: { heading: "heading", courseOverGround: "courseOverGround", headingSetpoint: "headingSetpoint", newHeadingSetpoint: "newHeadingSetpoint", atHeadingSetpoint: "atHeadingSetpoint", headingSetpointAtZeroDeadband: "headingSetpointAtZeroDeadband", headingSetpointOverride: "headingSetpointOverride", autoAtHeadingSetpoint: "autoAtHeadingSetpoint", autoAtHeadingSetpointDeadband: "autoAtHeadingSetpointDeadband", animateSetpoint: "animateSetpoint", touching: "touching", headingAdvices: "headingAdvices", minFOV: "minFOV", rotType: "rotType", rotPosition: "rotPosition", rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor", rotationsPerMinute: "rotationsPerMinute", rotMaxValue: "rotMaxValue", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband", state: "state", priority: "priority", priorityElements: "priorityElements", tickmarksInside: "tickmarksInside", zoomToFitArc: "zoomToFitArc" }, outputs: { NoneEvent: "NoneEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
74976
75020
|
}
|
|
74977
75021
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcCompassSector, decorators: [{
|
|
74978
75022
|
type: Component,
|
|
@@ -75012,6 +75056,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
75012
75056
|
type: Input
|
|
75013
75057
|
}], rotPosition: [{
|
|
75014
75058
|
type: Input
|
|
75059
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
75060
|
+
type: Input
|
|
75061
|
+
}], rotDotAnimationFactor: [{
|
|
75062
|
+
type: Input
|
|
75015
75063
|
}], rotationsPerMinute: [{
|
|
75016
75064
|
type: Input
|
|
75017
75065
|
}], rotMaxValue: [{
|
|
@@ -76405,8 +76453,20 @@ class ObcPitch {
|
|
|
76405
76453
|
get triggerPitchAdvice() {
|
|
76406
76454
|
return this._el.triggerPitchAdvice;
|
|
76407
76455
|
}
|
|
76456
|
+
set zoomToFitArc(v) {
|
|
76457
|
+
this._ngZone.runOutsideAngular(() => (this._el.zoomToFitArc = v));
|
|
76458
|
+
}
|
|
76459
|
+
get zoomToFitArc() {
|
|
76460
|
+
return this._el.zoomToFitArc;
|
|
76461
|
+
}
|
|
76462
|
+
set arcAngle(v) {
|
|
76463
|
+
this._ngZone.runOutsideAngular(() => (this._el.arcAngle = v));
|
|
76464
|
+
}
|
|
76465
|
+
get arcAngle() {
|
|
76466
|
+
return this._el.arcAngle;
|
|
76467
|
+
}
|
|
76408
76468
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPitch, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
76409
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPitch, isStandalone: true, selector: "obc-pitch", inputs: { pitch: "pitch", minAvgPitch: "minAvgPitch", maxAvgPitch: "maxAvgPitch", vesselImageSide: "vesselImageSide", maxPitchAdvice: "maxPitchAdvice", triggerPitchAdvice: "triggerPitchAdvice" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76469
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPitch, isStandalone: true, selector: "obc-pitch", inputs: { pitch: "pitch", minAvgPitch: "minAvgPitch", maxAvgPitch: "maxAvgPitch", vesselImageSide: "vesselImageSide", maxPitchAdvice: "maxPitchAdvice", triggerPitchAdvice: "triggerPitchAdvice", zoomToFitArc: "zoomToFitArc", arcAngle: "arcAngle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76410
76470
|
}
|
|
76411
76471
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPitch, decorators: [{
|
|
76412
76472
|
type: Component,
|
|
@@ -76428,6 +76488,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76428
76488
|
type: Input
|
|
76429
76489
|
}], triggerPitchAdvice: [{
|
|
76430
76490
|
type: Input
|
|
76491
|
+
}], zoomToFitArc: [{
|
|
76492
|
+
type: Input
|
|
76493
|
+
}], arcAngle: [{
|
|
76494
|
+
type: Input
|
|
76431
76495
|
}] } });
|
|
76432
76496
|
|
|
76433
76497
|
class ObcPitchRoll {
|
|
@@ -76527,8 +76591,32 @@ class ObcPitchRoll {
|
|
|
76527
76591
|
get priorityElements() {
|
|
76528
76592
|
return this._el.priorityElements;
|
|
76529
76593
|
}
|
|
76594
|
+
set zoomToFitArc(v) {
|
|
76595
|
+
this._ngZone.runOutsideAngular(() => (this._el.zoomToFitArc = v));
|
|
76596
|
+
}
|
|
76597
|
+
get zoomToFitArc() {
|
|
76598
|
+
return this._el.zoomToFitArc;
|
|
76599
|
+
}
|
|
76600
|
+
set arcAngle(v) {
|
|
76601
|
+
this._ngZone.runOutsideAngular(() => (this._el.arcAngle = v));
|
|
76602
|
+
}
|
|
76603
|
+
get arcAngle() {
|
|
76604
|
+
return this._el.arcAngle;
|
|
76605
|
+
}
|
|
76606
|
+
set pitchArcAngle(v) {
|
|
76607
|
+
this._ngZone.runOutsideAngular(() => (this._el.pitchArcAngle = v));
|
|
76608
|
+
}
|
|
76609
|
+
get pitchArcAngle() {
|
|
76610
|
+
return this._el.pitchArcAngle;
|
|
76611
|
+
}
|
|
76612
|
+
set rollArcAngle(v) {
|
|
76613
|
+
this._ngZone.runOutsideAngular(() => (this._el.rollArcAngle = v));
|
|
76614
|
+
}
|
|
76615
|
+
get rollArcAngle() {
|
|
76616
|
+
return this._el.rollArcAngle;
|
|
76617
|
+
}
|
|
76530
76618
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPitchRoll, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
76531
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPitchRoll, isStandalone: true, selector: "obc-pitch-roll", inputs: { pitch: "pitch", roll: "roll", minAvgPitch: "minAvgPitch", maxAvgPitch: "maxAvgPitch", minAvgRoll: "minAvgRoll", maxAvgRoll: "maxAvgRoll", vesselImageFore: "vesselImageFore", vesselImageSide: "vesselImageSide", scaleForeImage: "scaleForeImage", maxPitchAdvice: "maxPitchAdvice", maxRollAdvice: "maxRollAdvice", triggerPitchAdvice: "triggerPitchAdvice", triggerRollAdvice: "triggerRollAdvice", priority: "priority", priorityElements: "priorityElements" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76619
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPitchRoll, isStandalone: true, selector: "obc-pitch-roll", inputs: { pitch: "pitch", roll: "roll", minAvgPitch: "minAvgPitch", maxAvgPitch: "maxAvgPitch", minAvgRoll: "minAvgRoll", maxAvgRoll: "maxAvgRoll", vesselImageFore: "vesselImageFore", vesselImageSide: "vesselImageSide", scaleForeImage: "scaleForeImage", maxPitchAdvice: "maxPitchAdvice", maxRollAdvice: "maxRollAdvice", triggerPitchAdvice: "triggerPitchAdvice", triggerRollAdvice: "triggerRollAdvice", priority: "priority", priorityElements: "priorityElements", zoomToFitArc: "zoomToFitArc", arcAngle: "arcAngle", pitchArcAngle: "pitchArcAngle", rollArcAngle: "rollArcAngle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76532
76620
|
}
|
|
76533
76621
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPitchRoll, decorators: [{
|
|
76534
76622
|
type: Component,
|
|
@@ -76568,6 +76656,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76568
76656
|
type: Input
|
|
76569
76657
|
}], priorityElements: [{
|
|
76570
76658
|
type: Input
|
|
76659
|
+
}], zoomToFitArc: [{
|
|
76660
|
+
type: Input
|
|
76661
|
+
}], arcAngle: [{
|
|
76662
|
+
type: Input
|
|
76663
|
+
}], pitchArcAngle: [{
|
|
76664
|
+
type: Input
|
|
76665
|
+
}], rollArcAngle: [{
|
|
76666
|
+
type: Input
|
|
76571
76667
|
}] } });
|
|
76572
76668
|
|
|
76573
76669
|
class ObcRateOfTurn {
|
|
@@ -76577,6 +76673,18 @@ class ObcRateOfTurn {
|
|
|
76577
76673
|
this._el = e.nativeElement;
|
|
76578
76674
|
this._ngZone = ngZone;
|
|
76579
76675
|
}
|
|
76676
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
76677
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
76678
|
+
}
|
|
76679
|
+
get rateOfTurnDegreesPerMinute() {
|
|
76680
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
76681
|
+
}
|
|
76682
|
+
set rotDotAnimationFactor(v) {
|
|
76683
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
76684
|
+
}
|
|
76685
|
+
get rotDotAnimationFactor() {
|
|
76686
|
+
return this._el.rotDotAnimationFactor;
|
|
76687
|
+
}
|
|
76580
76688
|
set rotationsPerMinute(v) {
|
|
76581
76689
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
76582
76690
|
}
|
|
@@ -76632,7 +76740,7 @@ class ObcRateOfTurn {
|
|
|
76632
76740
|
return this._el.rotAtZeroDeadband;
|
|
76633
76741
|
}
|
|
76634
76742
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRateOfTurn, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
76635
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRateOfTurn, isStandalone: true, selector: "obc-rate-of-turn", inputs: { rotationsPerMinute: "rotationsPerMinute", rotType: "rotType", rotPosition: "rotPosition", priority: "priority", barStartAngle: "barStartAngle", barEndAngle: "barEndAngle", watchCircleType: "watchCircleType", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76743
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRateOfTurn, isStandalone: true, selector: "obc-rate-of-turn", inputs: { rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor", rotationsPerMinute: "rotationsPerMinute", rotType: "rotType", rotPosition: "rotPosition", priority: "priority", barStartAngle: "barStartAngle", barEndAngle: "barEndAngle", watchCircleType: "watchCircleType", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76636
76744
|
}
|
|
76637
76745
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRateOfTurn, decorators: [{
|
|
76638
76746
|
type: Component,
|
|
@@ -76642,7 +76750,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76642
76750
|
standalone: true,
|
|
76643
76751
|
imports: []
|
|
76644
76752
|
}]
|
|
76645
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: {
|
|
76753
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { rateOfTurnDegreesPerMinute: [{
|
|
76754
|
+
type: Input
|
|
76755
|
+
}], rotDotAnimationFactor: [{
|
|
76756
|
+
type: Input
|
|
76757
|
+
}], rotationsPerMinute: [{
|
|
76646
76758
|
type: Input
|
|
76647
76759
|
}], rotType: [{
|
|
76648
76760
|
type: Input
|
|
@@ -76711,8 +76823,20 @@ class ObcRoll {
|
|
|
76711
76823
|
get triggerRollAdvice() {
|
|
76712
76824
|
return this._el.triggerRollAdvice;
|
|
76713
76825
|
}
|
|
76826
|
+
set zoomToFitArc(v) {
|
|
76827
|
+
this._ngZone.runOutsideAngular(() => (this._el.zoomToFitArc = v));
|
|
76828
|
+
}
|
|
76829
|
+
get zoomToFitArc() {
|
|
76830
|
+
return this._el.zoomToFitArc;
|
|
76831
|
+
}
|
|
76832
|
+
set arcAngle(v) {
|
|
76833
|
+
this._ngZone.runOutsideAngular(() => (this._el.arcAngle = v));
|
|
76834
|
+
}
|
|
76835
|
+
get arcAngle() {
|
|
76836
|
+
return this._el.arcAngle;
|
|
76837
|
+
}
|
|
76714
76838
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRoll, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
76715
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRoll, isStandalone: true, selector: "obc-roll", inputs: { roll: "roll", minAvgRoll: "minAvgRoll", maxAvgRoll: "maxAvgRoll", vesselImageFore: "vesselImageFore", scaleForeImage: "scaleForeImage", maxRollAdvice: "maxRollAdvice", triggerRollAdvice: "triggerRollAdvice" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76839
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRoll, isStandalone: true, selector: "obc-roll", inputs: { roll: "roll", minAvgRoll: "minAvgRoll", maxAvgRoll: "maxAvgRoll", vesselImageFore: "vesselImageFore", scaleForeImage: "scaleForeImage", maxRollAdvice: "maxRollAdvice", triggerRollAdvice: "triggerRollAdvice", zoomToFitArc: "zoomToFitArc", arcAngle: "arcAngle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76716
76840
|
}
|
|
76717
76841
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRoll, decorators: [{
|
|
76718
76842
|
type: Component,
|
|
@@ -76736,6 +76860,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76736
76860
|
type: Input
|
|
76737
76861
|
}], triggerRollAdvice: [{
|
|
76738
76862
|
type: Input
|
|
76863
|
+
}], zoomToFitArc: [{
|
|
76864
|
+
type: Input
|
|
76865
|
+
}], arcAngle: [{
|
|
76866
|
+
type: Input
|
|
76739
76867
|
}] } });
|
|
76740
76868
|
|
|
76741
76869
|
class ObcRotIndicator {
|
|
@@ -76745,6 +76873,18 @@ class ObcRotIndicator {
|
|
|
76745
76873
|
this._el = e.nativeElement;
|
|
76746
76874
|
this._ngZone = ngZone;
|
|
76747
76875
|
}
|
|
76876
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
76877
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
76878
|
+
}
|
|
76879
|
+
get rateOfTurnDegreesPerMinute() {
|
|
76880
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
76881
|
+
}
|
|
76882
|
+
set rotDotAnimationFactor(v) {
|
|
76883
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
76884
|
+
}
|
|
76885
|
+
get rotDotAnimationFactor() {
|
|
76886
|
+
return this._el.rotDotAnimationFactor;
|
|
76887
|
+
}
|
|
76748
76888
|
set rotationsPerMinute(v) {
|
|
76749
76889
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
76750
76890
|
}
|
|
@@ -76752,7 +76892,7 @@ class ObcRotIndicator {
|
|
|
76752
76892
|
return this._el.rotationsPerMinute;
|
|
76753
76893
|
}
|
|
76754
76894
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRotIndicator, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
76755
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRotIndicator, isStandalone: true, selector: "obc-rot-indicator", inputs: { rotationsPerMinute: "rotationsPerMinute" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76895
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRotIndicator, isStandalone: true, selector: "obc-rot-indicator", inputs: { rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor", rotationsPerMinute: "rotationsPerMinute" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
76756
76896
|
}
|
|
76757
76897
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRotIndicator, decorators: [{
|
|
76758
76898
|
type: Component,
|
|
@@ -76762,7 +76902,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76762
76902
|
standalone: true,
|
|
76763
76903
|
imports: []
|
|
76764
76904
|
}]
|
|
76765
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: {
|
|
76905
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { rateOfTurnDegreesPerMinute: [{
|
|
76906
|
+
type: Input
|
|
76907
|
+
}], rotDotAnimationFactor: [{
|
|
76908
|
+
type: Input
|
|
76909
|
+
}], rotationsPerMinute: [{
|
|
76766
76910
|
type: Input
|
|
76767
76911
|
}] } });
|
|
76768
76912
|
|
|
@@ -77669,8 +77813,20 @@ class ObcWatch {
|
|
|
77669
77813
|
get rotAtZeroDeadband() {
|
|
77670
77814
|
return this._el.rotAtZeroDeadband;
|
|
77671
77815
|
}
|
|
77816
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
77817
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
77818
|
+
}
|
|
77819
|
+
get rateOfTurnDegreesPerMinute() {
|
|
77820
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
77821
|
+
}
|
|
77822
|
+
set rotDotAnimationFactor(v) {
|
|
77823
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
77824
|
+
}
|
|
77825
|
+
get rotDotAnimationFactor() {
|
|
77826
|
+
return this._el.rotDotAnimationFactor;
|
|
77827
|
+
}
|
|
77672
77828
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWatch, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
77673
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcWatch, isStandalone: true, selector: "obc-watch", inputs: { state: "state", priority: "priority", watchCircleType: "watchCircleType", northArrow: "northArrow", northArrowInside: "northArrowInside", angleSetpoint: "angleSetpoint", newAngleSetpoint: "newAngleSetpoint", atAngleSetpoint: "atAngleSetpoint", angleSetpointAtZeroDeadband: "angleSetpointAtZeroDeadband", setpointOverride: "setpointOverride", touching: "touching", animateSetpoint: "animateSetpoint", padding: "padding", areas: "areas", barAreas: "barAreas", needles: "needles", tickmarks: "tickmarks", tickmarksInside: "tickmarksInside", tickmarkStyle: "tickmarkStyle", advices: "advices", crosshairEnabled: "crosshairEnabled", showLabels: "showLabels", vessels: "vessels", wind: "wind", windFromDirectionDeg: "windFromDirectionDeg", windSymbolRadius: "windSymbolRadius", windColor: "windColor", current: "current", currentFromDirectionDeg: "currentFromDirectionDeg", currentSymbolRadius: "currentSymbolRadius", currentColor: "currentColor", starboardPortIndicator: "starboardPortIndicator", clipTop: "clipTop", clipBottom: "clipBottom", scaleWindIcon: "scaleWindIcon", rotation: "rotation", zoomToFitArc: "zoomToFitArc", arcFrame: "arcFrame", tickFadeAngle: "tickFadeAngle", rotType: "rotType", rotPosition: "rotPosition", rotStartAngle: "rotStartAngle", rotEndAngle: "rotEndAngle", rotPriority: "rotPriority", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
77829
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcWatch, isStandalone: true, selector: "obc-watch", inputs: { state: "state", priority: "priority", watchCircleType: "watchCircleType", northArrow: "northArrow", northArrowInside: "northArrowInside", angleSetpoint: "angleSetpoint", newAngleSetpoint: "newAngleSetpoint", atAngleSetpoint: "atAngleSetpoint", angleSetpointAtZeroDeadband: "angleSetpointAtZeroDeadband", setpointOverride: "setpointOverride", touching: "touching", animateSetpoint: "animateSetpoint", padding: "padding", areas: "areas", barAreas: "barAreas", needles: "needles", tickmarks: "tickmarks", tickmarksInside: "tickmarksInside", tickmarkStyle: "tickmarkStyle", advices: "advices", crosshairEnabled: "crosshairEnabled", showLabels: "showLabels", vessels: "vessels", wind: "wind", windFromDirectionDeg: "windFromDirectionDeg", windSymbolRadius: "windSymbolRadius", windColor: "windColor", current: "current", currentFromDirectionDeg: "currentFromDirectionDeg", currentSymbolRadius: "currentSymbolRadius", currentColor: "currentColor", starboardPortIndicator: "starboardPortIndicator", clipTop: "clipTop", clipBottom: "clipBottom", scaleWindIcon: "scaleWindIcon", rotation: "rotation", zoomToFitArc: "zoomToFitArc", arcFrame: "arcFrame", tickFadeAngle: "tickFadeAngle", rotType: "rotType", rotPosition: "rotPosition", rotStartAngle: "rotStartAngle", rotEndAngle: "rotEndAngle", rotPriority: "rotPriority", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband", rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
77674
77830
|
}
|
|
77675
77831
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWatch, decorators: [{
|
|
77676
77832
|
type: Component,
|
|
@@ -77772,6 +77928,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
77772
77928
|
type: Input
|
|
77773
77929
|
}], rotAtZeroDeadband: [{
|
|
77774
77930
|
type: Input
|
|
77931
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
77932
|
+
type: Input
|
|
77933
|
+
}], rotDotAnimationFactor: [{
|
|
77934
|
+
type: Input
|
|
77775
77935
|
}] } });
|
|
77776
77936
|
|
|
77777
77937
|
class ObcWatchFlat {
|
|
@@ -77907,8 +78067,20 @@ class ObcWatchFlat {
|
|
|
77907
78067
|
get rotAtZeroDeadband() {
|
|
77908
78068
|
return this._el.rotAtZeroDeadband;
|
|
77909
78069
|
}
|
|
78070
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
78071
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
78072
|
+
}
|
|
78073
|
+
get rateOfTurnDegreesPerMinute() {
|
|
78074
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
78075
|
+
}
|
|
78076
|
+
set rotDotAnimationFactor(v) {
|
|
78077
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
78078
|
+
}
|
|
78079
|
+
get rotDotAnimationFactor() {
|
|
78080
|
+
return this._el.rotDotAnimationFactor;
|
|
78081
|
+
}
|
|
77910
78082
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWatchFlat, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
77911
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcWatchFlat, isStandalone: true, selector: "obc-watch-flat", inputs: { width: "width", height: "height", padding: "padding", rotation: "rotation", tickmarkSpacing: "tickmarkSpacing", angleSetpoint: "angleSetpoint", tickmarks: "tickmarks", labels: "labels", FOVIndicator: "FOVIndicator", trackHeight: "trackHeight", ticksHeight: "ticksHeight", borderRadius: "borderRadius", bottomBar: "bottomBar", rotType: "rotType", rotPosition: "rotPosition", rotStartX: "rotStartX", rotEndX: "rotEndX", rotDotSpacing: "rotDotSpacing", rotPriority: "rotPriority", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
78083
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcWatchFlat, isStandalone: true, selector: "obc-watch-flat", inputs: { width: "width", height: "height", padding: "padding", rotation: "rotation", tickmarkSpacing: "tickmarkSpacing", angleSetpoint: "angleSetpoint", tickmarks: "tickmarks", labels: "labels", FOVIndicator: "FOVIndicator", trackHeight: "trackHeight", ticksHeight: "ticksHeight", borderRadius: "borderRadius", bottomBar: "bottomBar", rotType: "rotType", rotPosition: "rotPosition", rotStartX: "rotStartX", rotEndX: "rotEndX", rotDotSpacing: "rotDotSpacing", rotPriority: "rotPriority", rotPortStarboard: "rotPortStarboard", rotAtZeroDeadband: "rotAtZeroDeadband", rateOfTurnDegreesPerMinute: "rateOfTurnDegreesPerMinute", rotDotAnimationFactor: "rotDotAnimationFactor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
77912
78084
|
}
|
|
77913
78085
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWatchFlat, decorators: [{
|
|
77914
78086
|
type: Component,
|
|
@@ -77960,6 +78132,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
77960
78132
|
type: Input
|
|
77961
78133
|
}], rotAtZeroDeadband: [{
|
|
77962
78134
|
type: Input
|
|
78135
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
78136
|
+
type: Input
|
|
78137
|
+
}], rotDotAnimationFactor: [{
|
|
78138
|
+
type: Input
|
|
77963
78139
|
}] } });
|
|
77964
78140
|
|
|
77965
78141
|
class ObcWind {
|