@kumori/aurora-wui-components 0.0.269-dev4124.17 → 0.0.269-dev4124.19

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.
@@ -1 +1 @@
1
- {"version":3,"file":"axebow-summary-step-header.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-summary/axebow-summary-step-header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAmB,MAAM,KAAK,CAAC;AAIlD,OAAO,+BAA+B,CAAC;AAEvC,qBACa,uBAAwB,SAAQ,UAAU;IACrD,MAAM,CAAC,MAAM,4BAAyC;IAE1B,UAAU,EAAG,MAAM,CAAC;IACpB,SAAS,SAAM;IACd,KAAK,UAAS;IACd,SAAS,UAAS;IAClB,OAAO,UAAQ;IACf,SAAS,UAAS;IACnB,SAAS,SAAU;IACnB,YAAY,SAAa;IACxB,OAAO,UAAQ;IAE5C,MAAM;IAsDN,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,WAAW;CAGpB"}
1
+ {"version":3,"file":"axebow-summary-step-header.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-summary/axebow-summary-step-header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAmB,MAAM,KAAK,CAAC;AAIlD,OAAO,+BAA+B,CAAC;AAEvC,qBACa,uBAAwB,SAAQ,UAAU;IACrD,MAAM,CAAC,MAAM,4BAAyC;IAE1B,UAAU,EAAG,MAAM,CAAC;IACpB,SAAS,SAAM;IACd,KAAK,UAAS;IACd,SAAS,UAAS;IAClB,OAAO,UAAQ;IACf,SAAS,UAAS;IACnB,SAAS,SAAU;IACnB,YAAY,SAAa;IACxB,OAAO,UAAQ;IAE5C,MAAM;IAoDN,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,WAAW;CAGpB"}
package/dist/index.js CHANGED
@@ -1761,10 +1761,10 @@ var AxebowInputBase = class extends LitElement {
1761
1761
  style="margin-bottom: ${this.description ? "var(--axebow-input-label-gap, 1rem)" : "var(--axebow-input-field-gap, 0.5rem)"}"
1762
1762
  >
1763
1763
  ${this.required ? html`<p class="text-(--axebow-error)">*</p>` : ""}
1764
- <h4 class="${this.compact ? "font-normal text-sm" : "font-bold text-base"}">${this.label}</h4>
1764
+ <h4 class="${this.compact ? "font-normal text-sm" : "font-semibold text-base"}">${this.label}</h4>
1765
1765
  </div>` : ""}
1766
1766
  ${this.description ? html`<p
1767
- class="text-m overflow-hidden line-clamp-2"
1767
+ class="text-m font-semibold overflow-hidden line-clamp-2"
1768
1768
  style="
1769
1769
  margin-bottom: var(--axebow-input-description-gap, 0.75rem);
1770
1770
  height: var(--axebow-input-description-height, 3rem);
@@ -1797,7 +1797,7 @@ var AxebowInputBase = class extends LitElement {
1797
1797
  </h4>
1798
1798
  </div>` : ""}
1799
1799
  ${this.description ? html`<p
1800
- class="field-description text-base leading-4.25 m-0"
1800
+ class="field-description text-base font-semibold leading-4.25 m-0"
1801
1801
  title="${this.wrapDescription ? "" : this.description}"
1802
1802
  >
1803
1803
  ${this.description}
@@ -10371,7 +10371,7 @@ var AxebowSummaryStepHeader = class AxebowSummaryStepHeader extends LitElement {
10371
10371
  >
10372
10372
  STEP ${this.stepNumber}: ${this.stepTitle}
10373
10373
  </h5>
10374
- ${this.valid && this.enabled ? html`<axebow-icon
10374
+ ${this.valid && this.enabled && !this.isEditing ? html`<axebow-icon
10375
10375
  class="shrink-0"
10376
10376
  iconName="check_circle"
10377
10377
  iconColor="var(--axebow-success)"
@@ -10380,11 +10380,11 @@ var AxebowSummaryStepHeader = class AxebowSummaryStepHeader extends LitElement {
10380
10380
  </div>
10381
10381
  <div class="flex items-center gap-2 shrink-0">
10382
10382
  ${this.isEditing ? html`<span class="w-11.25 h-4.25 shrink-0 text-base text-(--axebow-gray)">${this.editingLabel}</span>` : ""}
10383
- ${this.enabled && this.valid && this.canEdit ? html`
10383
+ ${this.enabled && this.valid && this.canEdit && !this.isEditing ? html`
10384
10384
  <div
10385
- class="w-4.5 h-4.5 shrink-0 flex items-center justify-center ${this.isEditing ? "opacity-50" : "cursor-pointer"}"
10386
- title="${this.isEditing ? this.editingLabel : this.editLabel}"
10387
- @click=${this.isEditing ? void 0 : this._handleEdit}
10385
+ class="w-4.5 h-4.5 shrink-0 flex items-center justify-center cursor-pointer"
10386
+ title="${this.editLabel}"
10387
+ @click=${this._handleEdit}
10388
10388
  >
10389
10389
  <axebow-icon iconName="edit_square" iconColor="var(--axebow-tertiary)" size="md"></axebow-icon>
10390
10390
  </div>