@kumori/aurora-wui-components 0.0.273-dev4131.4 → 0.0.273-dev4131.5
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/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10999,21 +10999,21 @@ var AxebowSummaryFlavors = class AxebowSummaryFlavors extends LitElement {
|
|
|
10999
10999
|
${this.hasFlavors || this.nodes || this.highAvailable !== void 0 || this.autoscale !== void 0 || this.supportedStorage.some((s) => this.flavors?.[s]?.[0]) ? html`
|
|
11000
11000
|
<div class="flex w-full gap-[2%]">
|
|
11001
11001
|
<div class="flex-1 flex flex-col gap-2">
|
|
11002
|
-
<p
|
|
11002
|
+
<p class="font-semibold">${this.labels.workload}</p>
|
|
11003
11003
|
${this.hasFlavors && this.flavors?.small?.[0] ? html`<p>${this.labels.runtimePlane}</p>` : ""}
|
|
11004
11004
|
<p>${this.labels.numberOfVms}</p>
|
|
11005
11005
|
${this.hasFlavors && this.flavors?.medium?.[0] ? html`<p>${this.labels.controlPlane}</p>` : ""}
|
|
11006
11006
|
${this.highAvailable !== void 0 ? html`<p>${this.labels.highAvailable}</p>` : ""}
|
|
11007
11007
|
</div>
|
|
11008
11008
|
<div class="flex-1 flex flex-col gap-2">
|
|
11009
|
-
<p
|
|
11010
|
-
${this.hasFlavors && this.flavors?.small?.[0] ? html`<p><
|
|
11011
|
-
<p><
|
|
11009
|
+
<p class="font-semibold">${this.labels.selectedFlavor}</p>
|
|
11010
|
+
${this.hasFlavors && this.flavors?.small?.[0] ? html`<p><span class="text-(--axebow-primary)">${this.flavors?.small?.[0]}</span></p>` : ""}
|
|
11011
|
+
<p><span class="text-(--axebow-primary)">${this.nodes?.max || "0"}</span></p>
|
|
11012
11012
|
|
|
11013
|
-
${this.hasFlavors && this.flavors?.medium?.[0] ? html`<p><
|
|
11013
|
+
${this.hasFlavors && this.flavors?.medium?.[0] ? html`<p><span class="text-(--axebow-primary)">${this.flavors?.medium?.[0]}</span></p>` : ""}
|
|
11014
11014
|
${this.highAvailable !== void 0 ? html`<p>
|
|
11015
|
-
<
|
|
11016
|
-
>${this.highAvailable ? this.labels.yes : this.labels.no}</
|
|
11015
|
+
<span class="text-(--axebow-primary)"
|
|
11016
|
+
>${this.highAvailable ? this.labels.yes : this.labels.no}</span
|
|
11017
11017
|
>
|
|
11018
11018
|
</p>` : ""}
|
|
11019
11019
|
</div>
|
|
@@ -11021,21 +11021,21 @@ var AxebowSummaryFlavors = class AxebowSummaryFlavors extends LitElement {
|
|
|
11021
11021
|
${this.supportedStorage.some((s) => this.flavors?.[s]?.[0]) ? html`
|
|
11022
11022
|
<div class="flex w-full gap-[2%] mt-2">
|
|
11023
11023
|
<div class="flex-1 flex flex-col gap-2">
|
|
11024
|
-
<p
|
|
11024
|
+
<p class="font-semibold">${this.labels.storage}</p>
|
|
11025
11025
|
${this.supportedStorage.includes("volatile") && this.flavors?.volatile?.[0] ? html`<p>${this.labels.volatile}</p>` : ""}
|
|
11026
11026
|
${this.supportedStorage.includes("nonReplicated") && this.flavors?.nonReplicated?.[0] ? html`<p>${this.labels.nonReplPersistent}</p>` : ""}
|
|
11027
11027
|
${this.supportedStorage.includes("persistent") && this.flavors?.persistent?.[0] ? html`<p>${this.labels.persistentReplicated}</p>` : ""}
|
|
11028
11028
|
</div>
|
|
11029
11029
|
<div class="flex-1 flex flex-col gap-2">
|
|
11030
|
-
<p
|
|
11030
|
+
<p class="font-semibold">${this.labels.selectedFlavor}</p>
|
|
11031
11031
|
${this.supportedStorage.includes("volatile") && this.flavors?.volatile?.[0] ? html`<p>
|
|
11032
|
-
<
|
|
11032
|
+
<span class="text-(--axebow-primary)">${this.flavors?.volatile?.[0]}</span>
|
|
11033
11033
|
</p>` : ""}
|
|
11034
11034
|
${this.supportedStorage.includes("nonReplicated") && this.flavors?.nonReplicated?.[0] ? html`<p>
|
|
11035
|
-
<
|
|
11035
|
+
<span class="text-(--axebow-primary)">${this.flavors?.nonReplicated?.[0]}</span>
|
|
11036
11036
|
</p>` : ""}
|
|
11037
11037
|
${this.supportedStorage.includes("persistent") && this.flavors?.persistent?.[0] ? html`<p>
|
|
11038
|
-
<
|
|
11038
|
+
<span class="text-(--axebow-primary)">${this.flavors?.persistent?.[0]}</span>
|
|
11039
11039
|
</p>` : ""}
|
|
11040
11040
|
</div>
|
|
11041
11041
|
</div>
|