@kumori/aurora-wui-components 0.0.269-dev4124.17 → 0.0.269-dev4124.18
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;
|
|
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
|
@@ -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
|
|
10386
|
-
title="${this.
|
|
10387
|
-
@click=${this.
|
|
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>
|