@oicl/openbridge-webcomponents-ng 2.0.0-next.16 → 2.0.0-next.17
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: [{
|
|
@@ -76577,6 +76625,18 @@ class ObcRateOfTurn {
|
|
|
76577
76625
|
this._el = e.nativeElement;
|
|
76578
76626
|
this._ngZone = ngZone;
|
|
76579
76627
|
}
|
|
76628
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
76629
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
76630
|
+
}
|
|
76631
|
+
get rateOfTurnDegreesPerMinute() {
|
|
76632
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
76633
|
+
}
|
|
76634
|
+
set rotDotAnimationFactor(v) {
|
|
76635
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
76636
|
+
}
|
|
76637
|
+
get rotDotAnimationFactor() {
|
|
76638
|
+
return this._el.rotDotAnimationFactor;
|
|
76639
|
+
}
|
|
76580
76640
|
set rotationsPerMinute(v) {
|
|
76581
76641
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
76582
76642
|
}
|
|
@@ -76632,7 +76692,7 @@ class ObcRateOfTurn {
|
|
|
76632
76692
|
return this._el.rotAtZeroDeadband;
|
|
76633
76693
|
}
|
|
76634
76694
|
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 });
|
|
76695
|
+
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
76696
|
}
|
|
76637
76697
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRateOfTurn, decorators: [{
|
|
76638
76698
|
type: Component,
|
|
@@ -76642,7 +76702,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76642
76702
|
standalone: true,
|
|
76643
76703
|
imports: []
|
|
76644
76704
|
}]
|
|
76645
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: {
|
|
76705
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { rateOfTurnDegreesPerMinute: [{
|
|
76706
|
+
type: Input
|
|
76707
|
+
}], rotDotAnimationFactor: [{
|
|
76708
|
+
type: Input
|
|
76709
|
+
}], rotationsPerMinute: [{
|
|
76646
76710
|
type: Input
|
|
76647
76711
|
}], rotType: [{
|
|
76648
76712
|
type: Input
|
|
@@ -76745,6 +76809,18 @@ class ObcRotIndicator {
|
|
|
76745
76809
|
this._el = e.nativeElement;
|
|
76746
76810
|
this._ngZone = ngZone;
|
|
76747
76811
|
}
|
|
76812
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
76813
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
76814
|
+
}
|
|
76815
|
+
get rateOfTurnDegreesPerMinute() {
|
|
76816
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
76817
|
+
}
|
|
76818
|
+
set rotDotAnimationFactor(v) {
|
|
76819
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
76820
|
+
}
|
|
76821
|
+
get rotDotAnimationFactor() {
|
|
76822
|
+
return this._el.rotDotAnimationFactor;
|
|
76823
|
+
}
|
|
76748
76824
|
set rotationsPerMinute(v) {
|
|
76749
76825
|
this._ngZone.runOutsideAngular(() => (this._el.rotationsPerMinute = v));
|
|
76750
76826
|
}
|
|
@@ -76752,7 +76828,7 @@ class ObcRotIndicator {
|
|
|
76752
76828
|
return this._el.rotationsPerMinute;
|
|
76753
76829
|
}
|
|
76754
76830
|
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 });
|
|
76831
|
+
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
76832
|
}
|
|
76757
76833
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRotIndicator, decorators: [{
|
|
76758
76834
|
type: Component,
|
|
@@ -76762,7 +76838,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
76762
76838
|
standalone: true,
|
|
76763
76839
|
imports: []
|
|
76764
76840
|
}]
|
|
76765
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: {
|
|
76841
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { rateOfTurnDegreesPerMinute: [{
|
|
76842
|
+
type: Input
|
|
76843
|
+
}], rotDotAnimationFactor: [{
|
|
76844
|
+
type: Input
|
|
76845
|
+
}], rotationsPerMinute: [{
|
|
76766
76846
|
type: Input
|
|
76767
76847
|
}] } });
|
|
76768
76848
|
|
|
@@ -77669,8 +77749,20 @@ class ObcWatch {
|
|
|
77669
77749
|
get rotAtZeroDeadband() {
|
|
77670
77750
|
return this._el.rotAtZeroDeadband;
|
|
77671
77751
|
}
|
|
77752
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
77753
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
77754
|
+
}
|
|
77755
|
+
get rateOfTurnDegreesPerMinute() {
|
|
77756
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
77757
|
+
}
|
|
77758
|
+
set rotDotAnimationFactor(v) {
|
|
77759
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
77760
|
+
}
|
|
77761
|
+
get rotDotAnimationFactor() {
|
|
77762
|
+
return this._el.rotDotAnimationFactor;
|
|
77763
|
+
}
|
|
77672
77764
|
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 });
|
|
77765
|
+
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
77766
|
}
|
|
77675
77767
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWatch, decorators: [{
|
|
77676
77768
|
type: Component,
|
|
@@ -77772,6 +77864,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
77772
77864
|
type: Input
|
|
77773
77865
|
}], rotAtZeroDeadband: [{
|
|
77774
77866
|
type: Input
|
|
77867
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
77868
|
+
type: Input
|
|
77869
|
+
}], rotDotAnimationFactor: [{
|
|
77870
|
+
type: Input
|
|
77775
77871
|
}] } });
|
|
77776
77872
|
|
|
77777
77873
|
class ObcWatchFlat {
|
|
@@ -77907,8 +78003,20 @@ class ObcWatchFlat {
|
|
|
77907
78003
|
get rotAtZeroDeadband() {
|
|
77908
78004
|
return this._el.rotAtZeroDeadband;
|
|
77909
78005
|
}
|
|
78006
|
+
set rateOfTurnDegreesPerMinute(v) {
|
|
78007
|
+
this._ngZone.runOutsideAngular(() => (this._el.rateOfTurnDegreesPerMinute = v));
|
|
78008
|
+
}
|
|
78009
|
+
get rateOfTurnDegreesPerMinute() {
|
|
78010
|
+
return this._el.rateOfTurnDegreesPerMinute;
|
|
78011
|
+
}
|
|
78012
|
+
set rotDotAnimationFactor(v) {
|
|
78013
|
+
this._ngZone.runOutsideAngular(() => (this._el.rotDotAnimationFactor = v));
|
|
78014
|
+
}
|
|
78015
|
+
get rotDotAnimationFactor() {
|
|
78016
|
+
return this._el.rotDotAnimationFactor;
|
|
78017
|
+
}
|
|
77910
78018
|
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 });
|
|
78019
|
+
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
78020
|
}
|
|
77913
78021
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcWatchFlat, decorators: [{
|
|
77914
78022
|
type: Component,
|
|
@@ -77960,6 +78068,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
77960
78068
|
type: Input
|
|
77961
78069
|
}], rotAtZeroDeadband: [{
|
|
77962
78070
|
type: Input
|
|
78071
|
+
}], rateOfTurnDegreesPerMinute: [{
|
|
78072
|
+
type: Input
|
|
78073
|
+
}], rotDotAnimationFactor: [{
|
|
78074
|
+
type: Input
|
|
77963
78075
|
}] } });
|
|
77964
78076
|
|
|
77965
78077
|
class ObcWind {
|