@kumori/aurora-wui-components 0.0.281-dev4205.12 → 0.0.281-dev4205.13

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 CHANGED
@@ -8527,7 +8527,7 @@ var AxebowTenantResourceTable = class AxebowTenantResourceTable extends LitEleme
8527
8527
  <div class="w-5 h-5 shrink-0 flex items-center justify-center">
8528
8528
  ${icon.spinner ? html`<sl-spinner style="font-size: 0.85rem; --indicator-color: var(--axebow-tertiary);"></sl-spinner>` : html`<axebow-icon iconName=${icon.iconName} iconColor=${icon.iconColor} size="md"></axebow-icon>`}
8529
8529
  </div>
8530
- ${icon.label ? html`<span class="text-sm font-semibold" style="color: ${icon.iconColor};">${icon.label}</span>` : ""}
8530
+ ${icon.label ? html`<span class="text-sm font-semibold" style="color: ${icon.iconColor};">: ${icon.label}</span>` : ""}
8531
8531
  </div>
8532
8532
  `;
8533
8533
  return icon.tooltip ? html`<axebow-tooltip content=${icon.tooltip}>${content}</axebow-tooltip>` : content;
@@ -9283,22 +9283,22 @@ var AxebowTenantCard = class AxebowTenantCard extends LitElement {
9283
9283
  </span>
9284
9284
  `)}
9285
9285
  </div>
9286
- ${this.showInvitedNotice ? html`<span class="text-base text-black">${this.invitedNoticeText}</span>` : this.showNoAccountsWarning ? html`<span class="flex items-center gap-1 text-base text-black">
9287
- <axebow-icon iconName="warning" iconColor="var(--axebow-warning)" size="md"></axebow-icon>
9288
- ${this.noAccountsWarningText}
9289
- </span>` : this.showCallToActionIssues ? html`<span
9290
- class="flex items-center gap-1 text-base cursor-pointer"
9291
- style="color: ${CRITICALITY_STYLES[this.callToActionCriticality].color};"
9292
- @click=${() => this.onCallToActionClick?.()}
9293
- >
9294
- <div class="w-5 h-5 shrink-0 flex items-center justify-center">
9295
- <axebow-icon
9296
- iconName=${CRITICALITY_STYLES[this.callToActionCriticality].iconName}
9297
- iconColor=${CRITICALITY_STYLES[this.callToActionCriticality].color}
9298
- size="md"
9299
- ></axebow-icon>
9300
- </div>
9301
- ${this.callToActionIssuesText}
9286
+ ${this.showInvitedNotice ? html`<span class="text-base text-black">${this.invitedNoticeText}</span>` : this.showCallToActionIssues ? html`<span
9287
+ class="flex items-center gap-1 text-base cursor-pointer"
9288
+ style="color: ${CRITICALITY_STYLES[this.callToActionCriticality].color};"
9289
+ @click=${() => this.onCallToActionClick?.()}
9290
+ >
9291
+ <div class="w-5 h-5 shrink-0 flex items-center justify-center">
9292
+ <axebow-icon
9293
+ iconName=${CRITICALITY_STYLES[this.callToActionCriticality].iconName}
9294
+ iconColor=${CRITICALITY_STYLES[this.callToActionCriticality].color}
9295
+ size="md"
9296
+ ></axebow-icon>
9297
+ </div>
9298
+ ${this.callToActionIssuesText}
9299
+ </span>` : this.showNoAccountsWarning ? html`<span class="flex items-center gap-1 text-base text-black">
9300
+ <axebow-icon iconName="warning" iconColor="var(--axebow-warning)" size="md"></axebow-icon>
9301
+ ${this.noAccountsWarningText}
9302
9302
  </span>` : ""}
9303
9303
  </div>
9304
9304