@kumori/aurora-wui-components 0.0.93 → 0.0.94

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
@@ -4160,31 +4160,31 @@ var AxebowTenantResourceTable = class AxebowTenantResourceTable extends LitEleme
4160
4160
  class="w-286 h-7.25 flex items-center gap-2 rounded-md bg-(--axebow-base) border border-solid border-(--axebow-table-header-border) px-4"
4161
4161
  >
4162
4162
  <div class="flex items-center gap-2 w-63.5 shrink-0">
4163
- <span class="flex-1 text-center text-sm font-bold text-gray-600 truncate">${this.labels.accountsEnv}</span>
4163
+ <span class="flex-1 text-center text-base font-bold text-gray-600 truncate">${this.labels.accountsEnv}</span>
4164
4164
  ${this._renderDivider()}
4165
4165
  </div>
4166
4166
  <div class="flex items-center gap-2 w-18 shrink-0">
4167
- <span class="flex-1 text-center text-sm font-bold text-gray-600">${this.labels.vCpu}</span>
4167
+ <span class="flex-1 text-center text-base font-bold text-gray-600">${this.labels.vCpu}</span>
4168
4168
  ${this._renderDivider()}
4169
4169
  </div>
4170
4170
  <div class="flex items-center gap-2 w-37 shrink-0">
4171
- <span class="flex-1 text-center text-sm font-bold text-gray-600">${this.labels.vCpuUtil}</span>
4171
+ <span class="flex-1 text-center text-base font-bold text-gray-600">${this.labels.vCpuUtil}</span>
4172
4172
  ${this._renderDivider()}
4173
4173
  </div>
4174
4174
  <div class="flex items-center gap-2 w-20 shrink-0">
4175
- <span class="flex-1 text-center text-sm font-bold text-gray-600">${this.labels.memory}</span>
4175
+ <span class="flex-1 text-center text-base font-bold text-gray-600">${this.labels.memory}</span>
4176
4176
  ${this._renderDivider()}
4177
4177
  </div>
4178
4178
  <div class="flex items-center gap-2 w-37 shrink-0">
4179
- <span class="flex-1 text-center text-sm font-bold text-gray-600">${this.labels.memUtil}</span>
4179
+ <span class="flex-1 text-center text-base font-bold text-gray-600">${this.labels.memUtil}</span>
4180
4180
  ${this._renderDivider()}
4181
4181
  </div>
4182
4182
  <div class="flex items-center gap-2 w-25 shrink-0">
4183
- <span class="flex-1 text-center text-sm font-bold text-gray-600">${this.labels.storage}</span>
4183
+ <span class="flex-1 text-center text-base font-bold text-gray-600">${this.labels.storage}</span>
4184
4184
  ${this.showActions ? this._renderDivider() : ""}
4185
4185
  </div>
4186
4186
  ${this.showActions ? html`<div class="flex items-center flex-1 min-w-53.25">
4187
- <span class="flex-1 text-center text-sm font-bold text-gray-600">${this.labels.actions}</span>
4187
+ <span class="flex-1 text-center text-base font-bold text-gray-600">${this.labels.actions}</span>
4188
4188
  </div>` : ""}
4189
4189
  </div>
4190
4190
  `;
@@ -4201,7 +4201,7 @@ var AxebowTenantResourceTable = class AxebowTenantResourceTable extends LitEleme
4201
4201
  .yAxisMax=${chart.max}
4202
4202
  .animated=${false}
4203
4203
  ></table-chart>
4204
- <span class="text-sm whitespace-nowrap">${percent}%</span>
4204
+ <span class="text-base whitespace-nowrap">${percent}%</span>
4205
4205
  </div>
4206
4206
  `;
4207
4207
  }
@@ -4231,21 +4231,21 @@ var AxebowTenantResourceTable = class AxebowTenantResourceTable extends LitEleme
4231
4231
  class="shrink-0"
4232
4232
  ></axebow-icon>
4233
4233
  <img src=${row.logoUrl} class="w-6 h-6 object-contain shrink-0" />
4234
- <span class="text-sm font-semibold truncate">${row.name}</span>
4234
+ <span class="text-base font-semibold truncate">${row.name}</span>
4235
4235
  ${this._renderStatusIcon(row.statusIcon)}
4236
4236
  <span class="flex-1"></span>
4237
4237
  ${this._renderStatusIcon(row.warningIcon)}
4238
4238
  </div>
4239
- <div class="w-18 shrink-0 text-center text-sm whitespace-nowrap">${row.vCpu}</div>
4239
+ <div class="w-18 shrink-0 text-center text-base whitespace-nowrap">${row.vCpu}</div>
4240
4240
  <div class="w-37 shrink-0">
4241
4241
  ${this._renderChartCell(row.vCpuChart, row.vCpuUtilizationPercent, `chart-account-${index}-vcpu`)}
4242
4242
  </div>
4243
- <div class="w-20 shrink-0 text-center text-sm whitespace-nowrap">${row.memory}</div>
4243
+ <div class="w-20 shrink-0 text-center text-base whitespace-nowrap">${row.memory}</div>
4244
4244
  <div class="w-37 shrink-0">
4245
4245
  ${this._renderChartCell(row.memoryChart, row.memoryUtilizationPercent, `chart-account-${index}-mem`)}
4246
4246
  </div>
4247
4247
  <div class="w-25 shrink-0 flex items-center justify-center gap-2 min-w-0">
4248
- <span class="text-sm">${row.storage}</span>
4248
+ <span class="text-base">${row.storage}</span>
4249
4249
  <usage-tooltip .usage=${row.usage}></usage-tooltip>
4250
4250
  </div>
4251
4251
  ${this.showActions ? html`<div
@@ -4281,20 +4281,20 @@ var AxebowTenantResourceTable = class AxebowTenantResourceTable extends LitEleme
4281
4281
  size="small"
4282
4282
  class="shrink-0"
4283
4283
  ></axebow-icon>
4284
- <span class="text-sm truncate">${env.name}</span>
4284
+ <span class="text-base truncate">${env.name}</span>
4285
4285
  <span class="flex-1"></span>
4286
4286
  ${this._renderStatusIcon(env.warningIcon)}
4287
4287
  </div>
4288
- <div class="w-18 shrink-0 text-center text-sm whitespace-nowrap">${env.vCpu}</div>
4288
+ <div class="w-18 shrink-0 text-center text-base whitespace-nowrap">${env.vCpu}</div>
4289
4289
  <div class="w-37 shrink-0">
4290
4290
  ${this._renderChartCell(env.vCpuChart, env.vCpuUtilizationPercent, `chart-env-${accountIndex}-${envIndex}-vcpu`)}
4291
4291
  </div>
4292
- <div class="w-20 shrink-0 text-center text-sm whitespace-nowrap">${env.memory}</div>
4292
+ <div class="w-20 shrink-0 text-center text-base whitespace-nowrap">${env.memory}</div>
4293
4293
  <div class="w-37 shrink-0">
4294
4294
  ${this._renderChartCell(env.memoryChart, env.memoryUtilizationPercent, `chart-env-${accountIndex}-${envIndex}-mem`)}
4295
4295
  </div>
4296
4296
  <div class="w-25 shrink-0 flex items-center justify-center gap-2 min-w-0">
4297
- <span class="text-sm">${env.storage}</span>
4297
+ <span class="text-base">${env.storage}</span>
4298
4298
  <usage-tooltip .usage=${env.usage}></usage-tooltip>
4299
4299
  </div>
4300
4300
  ${this.showActions ? html`<div class="flex-1 min-w-53.25 flex items-center">
@@ -4379,13 +4379,13 @@ var AxebowTenantCard = class AxebowTenantCard extends LitElement {
4379
4379
  _renderPlanBadge() {
4380
4380
  if (this.isDeleting || this.isLeaving) return html`
4381
4381
  <div class="flex items-center gap-2">
4382
- <p class="text-(--axebow-gray) text-sm m-0">${this.isDeleting ? this.deletingLabel : this.leavingLabel}</p>
4382
+ <p class="text-(--axebow-gray) text-base m-0">${this.isDeleting ? this.deletingLabel : this.leavingLabel}</p>
4383
4383
  <sl-spinner style="font-size: 1rem; --indicator-color: var(--axebow-tertiary);"></sl-spinner>
4384
4384
  </div>
4385
4385
  `;
4386
4386
  return html`
4387
4387
  <div class="w-21.5 h-8 flex items-center justify-center rounded-lg bg-gray-100 px-2">
4388
- <span class="text-sm font-bold capitalize text-(--axebow-gray) truncate">${this.planLabel}</span>
4388
+ <span class="text-base font-bold capitalize text-(--axebow-gray) truncate">${this.planLabel}</span>
4389
4389
  </div>
4390
4390
  `;
4391
4391
  }
@@ -4429,12 +4429,12 @@ var AxebowTenantCard = class AxebowTenantCard extends LitElement {
4429
4429
  _renderContent() {
4430
4430
  if (this.contentState === "invitation") return html`
4431
4431
  <div class="w-286 h-14.25 rounded-md bg-(--axebow-base) flex items-center justify-center text-center px-4">
4432
- <span class="text-sm">${this.invitationText}</span>
4432
+ <span class="text-base">${this.invitationText}</span>
4433
4433
  </div>
4434
4434
  `;
4435
4435
  if (this.contentState === "empty") return html`
4436
4436
  <div class="w-286 h-14.25 rounded-md bg-(--axebow-base) flex items-center justify-center text-center px-4">
4437
- <span class="text-sm">
4437
+ <span class="text-base">
4438
4438
  ${this.emptyTextPrefix}
4439
4439
  <span
4440
4440
  class="text-(--axebow-tertiary) font-bold cursor-pointer hover:underline"
@@ -4477,13 +4477,13 @@ var AxebowTenantCard = class AxebowTenantCard extends LitElement {
4477
4477
  <div class="flex items-center justify-between flex-wrap gap-2">
4478
4478
  <div class="flex items-center gap-5 text-(--axebow-gray)">
4479
4479
  ${this.resourceStats.map((stat) => html`
4480
- <span class="flex items-center gap-1 text-sm whitespace-nowrap">
4480
+ <span class="flex items-center gap-1 text-base whitespace-nowrap">
4481
4481
  <axebow-icon iconName=${stat.icon} iconColor="var(--axebow-gray)" size="small"></axebow-icon>
4482
4482
  <b>${stat.label}</b> ${stat.value}
4483
4483
  </span>
4484
4484
  `)}
4485
4485
  </div>
4486
- ${this.showInvitedNotice ? html`<span class="text-sm text-black">${this.invitedNoticeText}</span>` : this.showNoAccountsWarning ? html`<span class="flex items-center gap-1 text-sm text-black">
4486
+ ${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">
4487
4487
  <axebow-icon iconName="warning" iconColor="var(--axebow-warning)" size="small"></axebow-icon>
4488
4488
  ${this.noAccountsWarningText}
4489
4489
  </span>` : ""}