@oicl/openbridge-webcomponents 2.0.0-next.126 → 2.0.0-next.127
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.
- package/bundle/openbridge-webcomponents.bundle.js +20 -4
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/custom-elements.json +811 -551
- package/dist/automation/analog-valve/analog-valve.d.ts.map +1 -1
- package/dist/automation/analog-valve/analog-valve.js +3 -0
- package/dist/automation/analog-valve/analog-valve.js.map +1 -1
- package/dist/automation/automation-button/abstract-automation-button-motorized.d.ts.map +1 -1
- package/dist/automation/automation-button/abstract-automation-button-motorized.js +3 -0
- package/dist/automation/automation-button/abstract-automation-button-motorized.js.map +1 -1
- package/dist/automation/automation-button/abstract-automation-button-squared.d.ts.map +1 -1
- package/dist/automation/automation-button/abstract-automation-button-squared.js +3 -0
- package/dist/automation/automation-button/abstract-automation-button-squared.js.map +1 -1
- package/dist/automation/automation-button/abstract-automation-button.d.ts +4 -1
- package/dist/automation/automation-button/abstract-automation-button.d.ts.map +1 -1
- package/dist/automation/automation-button/abstract-automation-button.js +8 -4
- package/dist/automation/automation-button/abstract-automation-button.js.map +1 -1
- package/dist/automation/digital-valve/digital-valve.d.ts.map +1 -1
- package/dist/automation/digital-valve/digital-valve.js +3 -0
- package/dist/automation/digital-valve/digital-valve.js.map +1 -1
- package/package.json +6 -6
|
@@ -18137,7 +18137,9 @@ class ObcAbstractAutomationButton extends i$4 {
|
|
|
18137
18137
|
super(...arguments);
|
|
18138
18138
|
this.showReadoutStack = true;
|
|
18139
18139
|
this.readoutPosition = AutomationButtonReadoutPosition.bottom;
|
|
18140
|
+
this.showStatus = true;
|
|
18140
18141
|
this.readoutSize = AutomationButtonReadoutStackSize.regular;
|
|
18142
|
+
this.tag = null;
|
|
18141
18143
|
this.positioning = AutomationButtonPositioning.point;
|
|
18142
18144
|
this.activated = false;
|
|
18143
18145
|
this.alert = false;
|
|
@@ -18150,7 +18152,6 @@ class ObcAbstractAutomationButton extends i$4 {
|
|
|
18150
18152
|
this.progress = false;
|
|
18151
18153
|
this.progressMode = CircularProgressMode.indeterminate;
|
|
18152
18154
|
this.progressValue = 0;
|
|
18153
|
-
this.tag = null;
|
|
18154
18155
|
this.badgeControl = "none";
|
|
18155
18156
|
this.badgeCommandLocked = "none";
|
|
18156
18157
|
this.badgeInterlock = "none";
|
|
@@ -18325,9 +18326,15 @@ __decorateClass$zA([
|
|
|
18325
18326
|
__decorateClass$zA([
|
|
18326
18327
|
n$3({ type: String })
|
|
18327
18328
|
], ObcAbstractAutomationButton.prototype, "readoutPosition");
|
|
18329
|
+
__decorateClass$zA([
|
|
18330
|
+
n$3({ type: Boolean, attribute: false })
|
|
18331
|
+
], ObcAbstractAutomationButton.prototype, "showStatus");
|
|
18328
18332
|
__decorateClass$zA([
|
|
18329
18333
|
n$3({ type: String })
|
|
18330
18334
|
], ObcAbstractAutomationButton.prototype, "readoutSize");
|
|
18335
|
+
__decorateClass$zA([
|
|
18336
|
+
n$3({ type: String })
|
|
18337
|
+
], ObcAbstractAutomationButton.prototype, "tag");
|
|
18331
18338
|
__decorateClass$zA([
|
|
18332
18339
|
n$3({ type: String })
|
|
18333
18340
|
], ObcAbstractAutomationButton.prototype, "positioning");
|
|
@@ -18364,9 +18371,6 @@ __decorateClass$zA([
|
|
|
18364
18371
|
__decorateClass$zA([
|
|
18365
18372
|
n$3({ type: Number })
|
|
18366
18373
|
], ObcAbstractAutomationButton.prototype, "progressValue");
|
|
18367
|
-
__decorateClass$zA([
|
|
18368
|
-
n$3({ type: String })
|
|
18369
|
-
], ObcAbstractAutomationButton.prototype, "tag");
|
|
18370
18374
|
__decorateClass$zA([
|
|
18371
18375
|
n$3({ type: String })
|
|
18372
18376
|
], ObcAbstractAutomationButton.prototype, "badgeControl");
|
|
@@ -18411,6 +18415,9 @@ let ObcAnalogValve = class extends ObcAbstractAutomationButton {
|
|
|
18411
18415
|
this.variant = "regular";
|
|
18412
18416
|
}
|
|
18413
18417
|
get extraReadouts() {
|
|
18418
|
+
if (!this.showStatus) {
|
|
18419
|
+
return [];
|
|
18420
|
+
}
|
|
18414
18421
|
if (this.open) {
|
|
18415
18422
|
return [
|
|
18416
18423
|
{
|
|
@@ -18498,6 +18505,9 @@ class ObcAbstractAutomationButtonMotorized extends ObcAbstractAutomationButton {
|
|
|
18498
18505
|
}
|
|
18499
18506
|
get extraReadouts() {
|
|
18500
18507
|
const speed = this.speed ?? this.speedInPercent;
|
|
18508
|
+
if (!this.showStatus) {
|
|
18509
|
+
return [];
|
|
18510
|
+
}
|
|
18501
18511
|
if (speed !== void 0 && speed !== null && this.on) {
|
|
18502
18512
|
return [
|
|
18503
18513
|
{
|
|
@@ -18568,6 +18578,9 @@ class ObcAbstractAutomationButtonSquared extends ObcAbstractAutomationButton {
|
|
|
18568
18578
|
return this.orientation;
|
|
18569
18579
|
}
|
|
18570
18580
|
get extraReadouts() {
|
|
18581
|
+
if (!this.showStatus) {
|
|
18582
|
+
return [];
|
|
18583
|
+
}
|
|
18571
18584
|
if (this.on) {
|
|
18572
18585
|
return [
|
|
18573
18586
|
{
|
|
@@ -40705,6 +40718,9 @@ let ObcDigitalValve = class extends ObcAbstractAutomationButton {
|
|
|
40705
40718
|
return this.open;
|
|
40706
40719
|
}
|
|
40707
40720
|
get extraReadouts() {
|
|
40721
|
+
if (!this.showStatus) {
|
|
40722
|
+
return [];
|
|
40723
|
+
}
|
|
40708
40724
|
if (this.open) {
|
|
40709
40725
|
return [
|
|
40710
40726
|
{
|