@kumori/aurora-wui-components 0.0.171 → 0.0.172
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;AACvC,OAAO,qEAAqE,CAAC;AAE7E,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;IACrD;6EACyE;IAC5C,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;AACvC,OAAO,qEAAqE,CAAC;AAE7E,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;IACrD;6EACyE;IAC5C,OAAO,UAAQ;IAE5C,MAAM;IAmDN,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,WAAW;CAGpB"}
|
package/dist/index.js
CHANGED
|
@@ -5825,17 +5825,19 @@ var AxebowSummaryStepHeader = class AxebowSummaryStepHeader extends LitElement {
|
|
|
5825
5825
|
iconColor="var(--axebow-success)"
|
|
5826
5826
|
size="small"
|
|
5827
5827
|
></axebow-icon>` : ""}
|
|
5828
|
+
</div>
|
|
5829
|
+
<div class="flex items-center gap-2 shrink-0">
|
|
5828
5830
|
${this.isEditing ? html`<span class="w-11.25 h-4.25 shrink-0 text-base text-(--axebow-gray)">${this.editingLabel}</span>` : ""}
|
|
5831
|
+
${this.enabled && this.valid && this.canEdit ? html`
|
|
5832
|
+
<div
|
|
5833
|
+
class="w-4.5 h-4.5 shrink-0 flex items-center justify-center ${this.isEditing ? "opacity-50" : "cursor-pointer"}"
|
|
5834
|
+
title="${this.isEditing ? this.editingLabel : this.editLabel}"
|
|
5835
|
+
@click=${this.isEditing ? void 0 : this._handleEdit}
|
|
5836
|
+
>
|
|
5837
|
+
<axebow-icon iconName="edit_square" iconColor="var(--axebow-tertiary)" size="small"></axebow-icon>
|
|
5838
|
+
</div>
|
|
5839
|
+
` : ""}
|
|
5829
5840
|
</div>
|
|
5830
|
-
${this.enabled && this.valid && this.canEdit ? html`
|
|
5831
|
-
<div
|
|
5832
|
-
class="w-4.5 h-4.5 shrink-0 flex items-center justify-center ${this.isEditing ? "opacity-50" : "cursor-pointer"}"
|
|
5833
|
-
title="${this.isEditing ? this.editingLabel : this.editLabel}"
|
|
5834
|
-
@click=${this.isEditing ? void 0 : this._handleEdit}
|
|
5835
|
-
>
|
|
5836
|
-
<axebow-icon iconName="edit_square" iconColor="var(--axebow-tertiary)" size="small"></axebow-icon>
|
|
5837
|
-
</div>
|
|
5838
|
-
` : ""}
|
|
5839
5841
|
</div>
|
|
5840
5842
|
`;
|
|
5841
5843
|
}
|