@oicl/openbridge-webcomponents 2.0.0-next.92 → 2.0.0-next.93
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 +7 -2
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/custom-elements.json +19 -0
- package/dist/automation/automation-tank/automation-tank.d.ts +2 -0
- package/dist/automation/automation-tank/automation-tank.d.ts.map +1 -1
- package/dist/automation/automation-tank/automation-tank.js +7 -2
- package/dist/automation/automation-tank/automation-tank.js.map +1 -1
- package/package.json +1 -1
|
@@ -37496,6 +37496,7 @@ let ObcAutomationTank = class extends i$4 {
|
|
|
37496
37496
|
this.compact = false;
|
|
37497
37497
|
this.positioning = "button";
|
|
37498
37498
|
this.static = false;
|
|
37499
|
+
this.activated = false;
|
|
37499
37500
|
this.tag = "";
|
|
37500
37501
|
this.chartMode = "bar";
|
|
37501
37502
|
this.chartData = [];
|
|
@@ -38022,9 +38023,10 @@ let ObcAutomationTank = class extends i$4 {
|
|
|
38022
38023
|
const halo = b`
|
|
38023
38024
|
<div class="halo">${haloContents}${alertFrameOverlay}</div>
|
|
38024
38025
|
`;
|
|
38026
|
+
const rootClasses = e$1({ root: true, activated: this.activated });
|
|
38025
38027
|
return b`
|
|
38026
38028
|
${this.static ? b`<div
|
|
38027
|
-
class
|
|
38029
|
+
class=${rootClasses}
|
|
38028
38030
|
role="img"
|
|
38029
38031
|
aria-label=${this.tag || "Tank"}
|
|
38030
38032
|
aria-live="polite"
|
|
@@ -38032,7 +38034,7 @@ let ObcAutomationTank = class extends i$4 {
|
|
|
38032
38034
|
>
|
|
38033
38035
|
${halo}
|
|
38034
38036
|
</div>` : b`<button
|
|
38035
|
-
class
|
|
38037
|
+
class=${rootClasses}
|
|
38036
38038
|
type="button"
|
|
38037
38039
|
aria-label=${this.tag || "Tank"}
|
|
38038
38040
|
aria-live="polite"
|
|
@@ -38071,6 +38073,9 @@ __decorateClass$z8([
|
|
|
38071
38073
|
__decorateClass$z8([
|
|
38072
38074
|
n$3({ type: Boolean, reflect: true })
|
|
38073
38075
|
], ObcAutomationTank.prototype, "static", 2);
|
|
38076
|
+
__decorateClass$z8([
|
|
38077
|
+
n$3({ type: Boolean })
|
|
38078
|
+
], ObcAutomationTank.prototype, "activated", 2);
|
|
38074
38079
|
__decorateClass$z8([
|
|
38075
38080
|
n$3({ type: String })
|
|
38076
38081
|
], ObcAutomationTank.prototype, "tag", 2);
|