@oicl/openbridge-webcomponents 0.0.15-dev-20240915195432 → 0.0.15-dev-20240916185711

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/__snapshots__/navigation-instruments-azimuth-thruster--in-command-at-setpoint-disable-auto-setpoint.png +0 -0
  2. package/__snapshots__/navigation-instruments-azimuth-thruster--in-command-at-setpoint.png +0 -0
  3. package/__snapshots__/navigation-instruments-azimuth-thruster--in-command.png +0 -0
  4. package/__snapshots__/navigation-instruments-azimuth-thruster--pod.png +0 -0
  5. package/__snapshots__/navigation-instruments-azimuth-thruster--single-direction-with-propeller.png +0 -0
  6. package/__snapshots__/navigation-instruments-azimuth-thruster--single-direction.png +0 -0
  7. package/__snapshots__/navigation-instruments-azimuth-thruster-labeled--large.png +0 -0
  8. package/__snapshots__/navigation-instruments-main-engine--active.png +0 -0
  9. package/__snapshots__/navigation-instruments-main-engine--in-command.png +0 -0
  10. package/__snapshots__/navigation-instruments-main-engine--off.png +0 -0
  11. package/__snapshots__/navigation-instruments-thruster--tunnel.png +0 -0
  12. package/custom-elements.json +570 -7
  13. package/dist/navigation-instruments/azimuth-thruster/azimuth-thruster.d.ts.map +1 -1
  14. package/dist/navigation-instruments/azimuth-thruster/azimuth-thruster.js +2 -1
  15. package/dist/navigation-instruments/azimuth-thruster/azimuth-thruster.js.map +1 -1
  16. package/dist/navigation-instruments/main-engine/main-engine.css.js +22 -0
  17. package/dist/navigation-instruments/main-engine/main-engine.css.js.map +1 -0
  18. package/dist/navigation-instruments/main-engine/main-engine.d.ts +29 -0
  19. package/dist/navigation-instruments/main-engine/main-engine.d.ts.map +1 -0
  20. package/dist/navigation-instruments/main-engine/main-engine.js +196 -0
  21. package/dist/navigation-instruments/main-engine/main-engine.js.map +1 -0
  22. package/dist/navigation-instruments/thruster/thruster.d.ts +54 -1
  23. package/dist/navigation-instruments/thruster/thruster.d.ts.map +1 -1
  24. package/dist/navigation-instruments/thruster/thruster.js +163 -99
  25. package/dist/navigation-instruments/thruster/thruster.js.map +1 -1
  26. package/package.json +1 -1
  27. package/src/navigation-instruments/azimuth-thruster/azimuth-thruster.ts +1 -0
  28. package/src/navigation-instruments/main-engine/main-engine.css +17 -0
  29. package/src/navigation-instruments/main-engine/main-engine.stories.ts +54 -0
  30. package/src/navigation-instruments/main-engine/main-engine.ts +160 -0
  31. package/src/navigation-instruments/thruster/thruster.stories.ts +1 -0
  32. package/src/navigation-instruments/thruster/thruster.ts +205 -113
  33. package/src/palettes/variables.css +1343 -1343
@@ -242,6 +242,12 @@
242
242
  }
243
243
  ]
244
244
  },
245
+ {
246
+ "kind": "javascript-module",
247
+ "path": "src/navigation-instruments/types.ts",
248
+ "declarations": [],
249
+ "exports": []
250
+ },
245
251
  {
246
252
  "kind": "javascript-module",
247
253
  "path": "src/icons/icon-01-add.ts",
@@ -38216,12 +38222,6 @@
38216
38222
  }
38217
38223
  ]
38218
38224
  },
38219
- {
38220
- "kind": "javascript-module",
38221
- "path": "src/navigation-instruments/types.ts",
38222
- "declarations": [],
38223
- "exports": []
38224
- },
38225
38225
  {
38226
38226
  "kind": "javascript-module",
38227
38227
  "path": "src/svghelpers/circle.ts",
@@ -44601,6 +44601,311 @@
44601
44601
  }
44602
44602
  ]
44603
44603
  },
44604
+ {
44605
+ "kind": "javascript-module",
44606
+ "path": "src/navigation-instruments/main-engine/main-engine.ts",
44607
+ "declarations": [
44608
+ {
44609
+ "kind": "class",
44610
+ "description": "",
44611
+ "name": "ObcMainEngine",
44612
+ "members": [
44613
+ {
44614
+ "kind": "field",
44615
+ "name": "thrust",
44616
+ "type": {
44617
+ "text": "number"
44618
+ },
44619
+ "default": "0",
44620
+ "attribute": "thrust"
44621
+ },
44622
+ {
44623
+ "kind": "field",
44624
+ "name": "thrustSetpoint",
44625
+ "type": {
44626
+ "text": "number | undefined"
44627
+ },
44628
+ "attribute": "thrustSetpoint"
44629
+ },
44630
+ {
44631
+ "kind": "field",
44632
+ "name": "thrustTouching",
44633
+ "type": {
44634
+ "text": "boolean"
44635
+ },
44636
+ "default": "false",
44637
+ "attribute": "thrustTouching"
44638
+ },
44639
+ {
44640
+ "kind": "field",
44641
+ "name": "atThrustSetpoint",
44642
+ "type": {
44643
+ "text": "boolean"
44644
+ },
44645
+ "default": "false",
44646
+ "attribute": "atThrustSetpoint"
44647
+ },
44648
+ {
44649
+ "kind": "field",
44650
+ "name": "speed",
44651
+ "type": {
44652
+ "text": "number"
44653
+ },
44654
+ "default": "0",
44655
+ "attribute": "speed"
44656
+ },
44657
+ {
44658
+ "kind": "field",
44659
+ "name": "speedSetpoint",
44660
+ "type": {
44661
+ "text": "number | undefined"
44662
+ },
44663
+ "attribute": "speedSetpoint"
44664
+ },
44665
+ {
44666
+ "kind": "field",
44667
+ "name": "speedTouching",
44668
+ "type": {
44669
+ "text": "boolean"
44670
+ },
44671
+ "default": "false",
44672
+ "attribute": "speedTouching"
44673
+ },
44674
+ {
44675
+ "kind": "field",
44676
+ "name": "atSpeedSetpoint",
44677
+ "type": {
44678
+ "text": "boolean"
44679
+ },
44680
+ "default": "false",
44681
+ "attribute": "atSpeedSetpoint"
44682
+ },
44683
+ {
44684
+ "kind": "field",
44685
+ "name": "disableAutoAtThrustSetpoint",
44686
+ "type": {
44687
+ "text": "boolean"
44688
+ },
44689
+ "default": "false",
44690
+ "attribute": "disableAutoAtThrustSetpoint"
44691
+ },
44692
+ {
44693
+ "kind": "field",
44694
+ "name": "disableAutoAtSpeedSetpoint",
44695
+ "type": {
44696
+ "text": "boolean"
44697
+ },
44698
+ "default": "false",
44699
+ "attribute": "disableAutoAtSpeedSetpoint"
44700
+ },
44701
+ {
44702
+ "kind": "field",
44703
+ "name": "autoAtThrustSetpointDeadband",
44704
+ "type": {
44705
+ "text": "number"
44706
+ },
44707
+ "default": "1",
44708
+ "attribute": "autoAtThrustSetpointDeadband"
44709
+ },
44710
+ {
44711
+ "kind": "field",
44712
+ "name": "autoAtSpeedSetpointDeadband",
44713
+ "type": {
44714
+ "text": "number"
44715
+ },
44716
+ "default": "1",
44717
+ "attribute": "autoAtSpeedSetpointDeadband"
44718
+ },
44719
+ {
44720
+ "kind": "field",
44721
+ "name": "thrustSetpointAtZeroDeadband",
44722
+ "type": {
44723
+ "text": "number"
44724
+ },
44725
+ "default": "0.5",
44726
+ "attribute": "thrustSetpointAtZeroDeadband"
44727
+ },
44728
+ {
44729
+ "kind": "field",
44730
+ "name": "speedSetpointAtZeroDeadband",
44731
+ "type": {
44732
+ "text": "number"
44733
+ },
44734
+ "default": "0.5",
44735
+ "attribute": "speedSetpointAtZeroDeadband"
44736
+ },
44737
+ {
44738
+ "kind": "field",
44739
+ "name": "state",
44740
+ "type": {
44741
+ "text": "InstrumentState"
44742
+ },
44743
+ "attribute": "state"
44744
+ },
44745
+ {
44746
+ "kind": "field",
44747
+ "name": "thrustAdvices",
44748
+ "type": {
44749
+ "text": "LinearAdvice[]"
44750
+ },
44751
+ "default": "[]",
44752
+ "attribute": "thrustAdvices"
44753
+ }
44754
+ ],
44755
+ "attributes": [
44756
+ {
44757
+ "name": "thrust",
44758
+ "type": {
44759
+ "text": "number"
44760
+ },
44761
+ "default": "0",
44762
+ "fieldName": "thrust"
44763
+ },
44764
+ {
44765
+ "name": "thrustSetpoint",
44766
+ "type": {
44767
+ "text": "number | undefined"
44768
+ },
44769
+ "fieldName": "thrustSetpoint"
44770
+ },
44771
+ {
44772
+ "name": "thrustTouching",
44773
+ "type": {
44774
+ "text": "boolean"
44775
+ },
44776
+ "default": "false",
44777
+ "fieldName": "thrustTouching"
44778
+ },
44779
+ {
44780
+ "name": "atThrustSetpoint",
44781
+ "type": {
44782
+ "text": "boolean"
44783
+ },
44784
+ "default": "false",
44785
+ "fieldName": "atThrustSetpoint"
44786
+ },
44787
+ {
44788
+ "name": "speed",
44789
+ "type": {
44790
+ "text": "number"
44791
+ },
44792
+ "default": "0",
44793
+ "fieldName": "speed"
44794
+ },
44795
+ {
44796
+ "name": "speedSetpoint",
44797
+ "type": {
44798
+ "text": "number | undefined"
44799
+ },
44800
+ "fieldName": "speedSetpoint"
44801
+ },
44802
+ {
44803
+ "name": "speedTouching",
44804
+ "type": {
44805
+ "text": "boolean"
44806
+ },
44807
+ "default": "false",
44808
+ "fieldName": "speedTouching"
44809
+ },
44810
+ {
44811
+ "name": "atSpeedSetpoint",
44812
+ "type": {
44813
+ "text": "boolean"
44814
+ },
44815
+ "default": "false",
44816
+ "fieldName": "atSpeedSetpoint"
44817
+ },
44818
+ {
44819
+ "name": "disableAutoAtThrustSetpoint",
44820
+ "type": {
44821
+ "text": "boolean"
44822
+ },
44823
+ "default": "false",
44824
+ "fieldName": "disableAutoAtThrustSetpoint"
44825
+ },
44826
+ {
44827
+ "name": "disableAutoAtSpeedSetpoint",
44828
+ "type": {
44829
+ "text": "boolean"
44830
+ },
44831
+ "default": "false",
44832
+ "fieldName": "disableAutoAtSpeedSetpoint"
44833
+ },
44834
+ {
44835
+ "name": "autoAtThrustSetpointDeadband",
44836
+ "type": {
44837
+ "text": "number"
44838
+ },
44839
+ "default": "1",
44840
+ "fieldName": "autoAtThrustSetpointDeadband"
44841
+ },
44842
+ {
44843
+ "name": "autoAtSpeedSetpointDeadband",
44844
+ "type": {
44845
+ "text": "number"
44846
+ },
44847
+ "default": "1",
44848
+ "fieldName": "autoAtSpeedSetpointDeadband"
44849
+ },
44850
+ {
44851
+ "name": "thrustSetpointAtZeroDeadband",
44852
+ "type": {
44853
+ "text": "number"
44854
+ },
44855
+ "default": "0.5",
44856
+ "fieldName": "thrustSetpointAtZeroDeadband"
44857
+ },
44858
+ {
44859
+ "name": "speedSetpointAtZeroDeadband",
44860
+ "type": {
44861
+ "text": "number"
44862
+ },
44863
+ "default": "0.5",
44864
+ "fieldName": "speedSetpointAtZeroDeadband"
44865
+ },
44866
+ {
44867
+ "name": "state",
44868
+ "type": {
44869
+ "text": "InstrumentState"
44870
+ },
44871
+ "fieldName": "state"
44872
+ },
44873
+ {
44874
+ "name": "thrustAdvices",
44875
+ "type": {
44876
+ "text": "LinearAdvice[]"
44877
+ },
44878
+ "default": "[]",
44879
+ "fieldName": "thrustAdvices"
44880
+ }
44881
+ ],
44882
+ "superclass": {
44883
+ "name": "LitElement",
44884
+ "package": "lit"
44885
+ },
44886
+ "tagName": "obc-main-engine",
44887
+ "customElement": true
44888
+ }
44889
+ ],
44890
+ "exports": [
44891
+ {
44892
+ "kind": "js",
44893
+ "name": "ObcMainEngine",
44894
+ "declaration": {
44895
+ "name": "ObcMainEngine",
44896
+ "module": "src/navigation-instruments/main-engine/main-engine.ts"
44897
+ }
44898
+ },
44899
+ {
44900
+ "kind": "custom-element-definition",
44901
+ "name": "obc-main-engine",
44902
+ "declaration": {
44903
+ "name": "ObcMainEngine",
44904
+ "module": "src/navigation-instruments/main-engine/main-engine.ts"
44905
+ }
44906
+ }
44907
+ ]
44908
+ },
44604
44909
  {
44605
44910
  "kind": "javascript-module",
44606
44911
  "path": "src/navigation-instruments/rudder/rudder.ts",
@@ -45157,6 +45462,167 @@
45157
45462
  "tagName": "obc-thruster",
45158
45463
  "customElement": true
45159
45464
  },
45465
+ {
45466
+ "kind": "function",
45467
+ "name": "thrusterTop",
45468
+ "parameters": [
45469
+ {
45470
+ "name": "height",
45471
+ "type": {
45472
+ "text": "number"
45473
+ }
45474
+ },
45475
+ {
45476
+ "name": "value",
45477
+ "type": {
45478
+ "text": "number"
45479
+ }
45480
+ },
45481
+ {
45482
+ "name": "colors",
45483
+ "type": {
45484
+ "text": "{box: string; container: string}"
45485
+ }
45486
+ },
45487
+ {
45488
+ "name": "options",
45489
+ "type": {
45490
+ "text": "{hideTicks: boolean; hideContainer: boolean}"
45491
+ }
45492
+ }
45493
+ ]
45494
+ },
45495
+ {
45496
+ "kind": "function",
45497
+ "name": "thrusterTopSingleSided",
45498
+ "parameters": [
45499
+ {
45500
+ "name": "height",
45501
+ "type": {
45502
+ "text": "number"
45503
+ }
45504
+ },
45505
+ {
45506
+ "name": "value",
45507
+ "type": {
45508
+ "text": "number"
45509
+ }
45510
+ },
45511
+ {
45512
+ "name": "colors",
45513
+ "type": {
45514
+ "text": "{box: string; container: string}"
45515
+ }
45516
+ },
45517
+ {
45518
+ "name": "options",
45519
+ "type": {
45520
+ "text": "{\n hideTicks: boolean;\n flipAdicePattern: boolean;\n hideContainer: boolean;\n narrow: boolean;\n }"
45521
+ }
45522
+ },
45523
+ {
45524
+ "name": "advice",
45525
+ "type": {
45526
+ "text": "LinearAdviceRaw[]"
45527
+ }
45528
+ }
45529
+ ]
45530
+ },
45531
+ {
45532
+ "kind": "function",
45533
+ "name": "thrusterBottom",
45534
+ "parameters": [
45535
+ {
45536
+ "name": "height",
45537
+ "type": {
45538
+ "text": "number"
45539
+ }
45540
+ },
45541
+ {
45542
+ "name": "value",
45543
+ "type": {
45544
+ "text": "number"
45545
+ }
45546
+ },
45547
+ {
45548
+ "name": "colors",
45549
+ "type": {
45550
+ "text": "{box: string; container: string}"
45551
+ }
45552
+ },
45553
+ {
45554
+ "name": "options",
45555
+ "type": {
45556
+ "text": "{hideTicks: boolean; hideContainer: boolean}"
45557
+ }
45558
+ }
45559
+ ]
45560
+ },
45561
+ {
45562
+ "kind": "function",
45563
+ "name": "setpointSvg",
45564
+ "parameters": [
45565
+ {
45566
+ "name": "height",
45567
+ "type": {
45568
+ "text": "number"
45569
+ }
45570
+ },
45571
+ {
45572
+ "name": "value",
45573
+ "type": {
45574
+ "text": "number"
45575
+ }
45576
+ },
45577
+ {
45578
+ "name": "setpointAtZero",
45579
+ "type": {
45580
+ "text": "boolean"
45581
+ }
45582
+ },
45583
+ {
45584
+ "name": "colors",
45585
+ "type": {
45586
+ "text": "{fill: string; stroke: string}"
45587
+ }
45588
+ },
45589
+ {
45590
+ "name": "options",
45591
+ "type": {
45592
+ "text": "{\n inCommand: boolean;\n singleSided: boolean;\n narrow: boolean;\n }"
45593
+ }
45594
+ }
45595
+ ]
45596
+ },
45597
+ {
45598
+ "kind": "function",
45599
+ "name": "atSetpoint",
45600
+ "return": {
45601
+ "type": {
45602
+ "text": "boolean"
45603
+ }
45604
+ },
45605
+ "parameters": [
45606
+ {
45607
+ "name": "thrust",
45608
+ "type": {
45609
+ "text": "number"
45610
+ }
45611
+ },
45612
+ {
45613
+ "name": "setpoint",
45614
+ "type": {
45615
+ "text": "number | undefined"
45616
+ }
45617
+ },
45618
+ {
45619
+ "name": "options",
45620
+ "type": {
45621
+ "text": "{\n autoAtSetpoint: boolean;\n autoSetpointDeadband: number;\n touching: boolean;\n atSetpoint: boolean;\n }"
45622
+ }
45623
+ }
45624
+ ]
45625
+ },
45160
45626
  {
45161
45627
  "kind": "function",
45162
45628
  "name": "thruster",
@@ -45182,7 +45648,48 @@
45182
45648
  {
45183
45649
  "name": "options",
45184
45650
  "type": {
45185
- "text": "{\n atSetpoint: boolean;\n tunnel: boolean;\n singleSided: boolean;\n singleDirection: boolean;\n singleDirectionHalfSize: boolean;\n setpointAtZeroDeadband: number;\n autoAtSetpoint: boolean;\n autoSetpointDeadband: number;\n touching: boolean;\n advices: LinearAdvice[];\n topPropeller: PropellerType;\n bottomPropeller: PropellerType;\n }"
45651
+ "text": "{\n atSetpoint: boolean;\n tunnel: boolean;\n singleSided: boolean;\n singleDirection: boolean;\n singleDirectionHalfSize: boolean;\n setpointAtZeroDeadband: number;\n autoAtSetpoint: boolean;\n autoSetpointDeadband: number;\n touching: boolean;\n advices: LinearAdvice[];\n topPropeller: PropellerType;\n bottomPropeller: PropellerType;\n narrow: boolean;\n }"
45652
+ }
45653
+ }
45654
+ ]
45655
+ },
45656
+ {
45657
+ "kind": "function",
45658
+ "name": "convertThrustAdvices",
45659
+ "return": {
45660
+ "type": {
45661
+ "text": "{topAdvices: LinearAdviceRaw[]; bottomAdvices: LinearAdviceRaw[]}"
45662
+ }
45663
+ },
45664
+ "parameters": [
45665
+ {
45666
+ "name": "advices",
45667
+ "type": {
45668
+ "text": "LinearAdvice[]"
45669
+ }
45670
+ },
45671
+ {
45672
+ "name": "thrust",
45673
+ "type": {
45674
+ "text": "number"
45675
+ }
45676
+ }
45677
+ ]
45678
+ },
45679
+ {
45680
+ "kind": "function",
45681
+ "name": "thrusterColors",
45682
+ "parameters": [
45683
+ {
45684
+ "name": "options",
45685
+ "type": {
45686
+ "text": "{atSetpoint: boolean; touching: boolean}"
45687
+ }
45688
+ },
45689
+ {
45690
+ "name": "state",
45691
+ "type": {
45692
+ "text": "InstrumentState"
45186
45693
  }
45187
45694
  }
45188
45695
  ]
@@ -45205,6 +45712,46 @@
45205
45712
  "module": "src/navigation-instruments/thruster/thruster.ts"
45206
45713
  }
45207
45714
  },
45715
+ {
45716
+ "kind": "js",
45717
+ "name": "thrusterTop",
45718
+ "declaration": {
45719
+ "name": "thrusterTop",
45720
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45721
+ }
45722
+ },
45723
+ {
45724
+ "kind": "js",
45725
+ "name": "thrusterTopSingleSided",
45726
+ "declaration": {
45727
+ "name": "thrusterTopSingleSided",
45728
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45729
+ }
45730
+ },
45731
+ {
45732
+ "kind": "js",
45733
+ "name": "thrusterBottom",
45734
+ "declaration": {
45735
+ "name": "thrusterBottom",
45736
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45737
+ }
45738
+ },
45739
+ {
45740
+ "kind": "js",
45741
+ "name": "setpointSvg",
45742
+ "declaration": {
45743
+ "name": "setpointSvg",
45744
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45745
+ }
45746
+ },
45747
+ {
45748
+ "kind": "js",
45749
+ "name": "atSetpoint",
45750
+ "declaration": {
45751
+ "name": "atSetpoint",
45752
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45753
+ }
45754
+ },
45208
45755
  {
45209
45756
  "kind": "js",
45210
45757
  "name": "thruster",
@@ -45212,6 +45759,22 @@
45212
45759
  "name": "thruster",
45213
45760
  "module": "src/navigation-instruments/thruster/thruster.ts"
45214
45761
  }
45762
+ },
45763
+ {
45764
+ "kind": "js",
45765
+ "name": "convertThrustAdvices",
45766
+ "declaration": {
45767
+ "name": "convertThrustAdvices",
45768
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45769
+ }
45770
+ },
45771
+ {
45772
+ "kind": "js",
45773
+ "name": "thrusterColors",
45774
+ "declaration": {
45775
+ "name": "thrusterColors",
45776
+ "module": "src/navigation-instruments/thruster/thruster.ts"
45777
+ }
45215
45778
  }
45216
45779
  ]
45217
45780
  },
@@ -1 +1 @@
1
- {"version":3,"file":"azimuth-thruster.d.ts","sourceRoot":"","sources":["../../../src/navigation-instruments/azimuth-thruster/azimuth-thruster.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAiB,MAAM,KAAK,CAAC;AAE/C,OAAO,EAAC,eAAe,EAAC,MAAM,UAAU,CAAC;AAEzC,OAAO,gBAAgB,CAAC;AAGxB,OAAO,EAAc,WAAW,EAAiB,MAAM,iBAAiB,CAAC;AAEzE,OAAO,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAC,aAAa,EAAC,MAAM,uBAAuB,CAAC;AAWpD,qBACa,kBAAmB,SAAQ,UAAU;IACtB,KAAK,SAAK;IACV,aAAa,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5D,eAAe,EAAE,OAAO,CAAS;IACN,QAAQ,EAAE,OAAO,CAAS;IAC1B,0BAA0B,EAAE,OAAO,CAAS;IAC7C,2BAA2B,EAAE,MAAM,CAAK;IAExC,MAAM,SAAK;IACX,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;IAE7D,gBAAgB,EAAE,OAAO,CAAS;IACR,4BAA4B,EAAE,MAAM,CAAO;IAC1C,2BAA2B,EAAE,OAAO,CAAS;IAC9C,4BAA4B,EAAE,MAAM,CAAK;IACzC,KAAK,EAAE,eAAe,CAA6B;IACnD,OAAO,EAAE,MAAM,CAAK;IACnB,SAAS,EAAE,OAAO,CAAS;IACX,YAAY,EAAE,WAAW,EAAE,CAAM;IACjC,aAAa,EAAE,YAAY,EAAE,CAAM;IACnD,eAAe,EAAE,OAAO,CAAS;IAClC,YAAY,EAAE,aAAa,CAAsB;IACjD,eAAe,EAAE,aAAa,CAAsB;IAE9E,IAAI,mBAAmB,YAgBtB;IAED,OAAO,KAAK,cAAc,GAoBzB;IAEQ,MAAM;IAsDf,OAAgB,MAAM,0BAA6B;CACpD;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,sBAAsB,EAAE,kBAAkB,CAAC;KAC5C;CACF"}
1
+ {"version":3,"file":"azimuth-thruster.d.ts","sourceRoot":"","sources":["../../../src/navigation-instruments/azimuth-thruster/azimuth-thruster.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAiB,MAAM,KAAK,CAAC;AAE/C,OAAO,EAAC,eAAe,EAAC,MAAM,UAAU,CAAC;AAEzC,OAAO,gBAAgB,CAAC;AAGxB,OAAO,EAAc,WAAW,EAAiB,MAAM,iBAAiB,CAAC;AAEzE,OAAO,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAC,aAAa,EAAC,MAAM,uBAAuB,CAAC;AAWpD,qBACa,kBAAmB,SAAQ,UAAU;IACtB,KAAK,SAAK;IACV,aAAa,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5D,eAAe,EAAE,OAAO,CAAS;IACN,QAAQ,EAAE,OAAO,CAAS;IAC1B,0BAA0B,EAAE,OAAO,CAAS;IAC7C,2BAA2B,EAAE,MAAM,CAAK;IAExC,MAAM,SAAK;IACX,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;IAE7D,gBAAgB,EAAE,OAAO,CAAS;IACR,4BAA4B,EAAE,MAAM,CAAO;IAC1C,2BAA2B,EAAE,OAAO,CAAS;IAC9C,4BAA4B,EAAE,MAAM,CAAK;IACzC,KAAK,EAAE,eAAe,CAA6B;IACnD,OAAO,EAAE,MAAM,CAAK;IACnB,SAAS,EAAE,OAAO,CAAS;IACX,YAAY,EAAE,WAAW,EAAE,CAAM;IACjC,aAAa,EAAE,YAAY,EAAE,CAAM;IACnD,eAAe,EAAE,OAAO,CAAS;IAClC,YAAY,EAAE,aAAa,CAAsB;IACjD,eAAe,EAAE,aAAa,CAAsB;IAE9E,IAAI,mBAAmB,YAgBtB;IAED,OAAO,KAAK,cAAc,GAoBzB;IAEQ,MAAM;IAuDf,OAAgB,MAAM,0BAA6B;CACpD;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,sBAAsB,EAAE,kBAAkB,CAAC;KAC5C;CACF"}
@@ -118,7 +118,8 @@ let ObcAzimuthThruster = class extends LitElement {
118
118
  touching: this.touching,
119
119
  advices: this.thrustAdvices,
120
120
  topPropeller: this.topPropeller,
121
- bottomPropeller: this.bottomPropeller
121
+ bottomPropeller: this.bottomPropeller,
122
+ narrow: true
122
123
  })}
123
124
  </svg>
124
125
  </g>