@kumori/aurora-wui-components 0.0.260 → 0.0.261
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-breadcrumb-header.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-breadcrumb-header/axebow-breadcrumb-header.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,+BAA+B,CAAC;AAEvC,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED;;;;GAIG;AACH,qBACa,sBAAuB,SAAQ,UAAU;IACpD,MAAM,CAAC,MAAM,4BAQX;IAE2B,MAAM,UAAS;IAChB,aAAa,SAAU;IACtB,aAAa,UAAQ;IAClB,WAAW,EAAE,MAAM,IAAI,CAAY;IACtC,kBAAkB,UAAS;IAC7B,cAAc,EAAE,uBAAuB,EAAE,CAAM;IAC9C,QAAQ,SAAM;IACb,iBAAiB,UAAS;IAC3B,kBAAkB,SAAM;IAEpD,MAAM;
|
|
1
|
+
{"version":3,"file":"axebow-breadcrumb-header.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-breadcrumb-header/axebow-breadcrumb-header.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,+BAA+B,CAAC;AAEvC,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED;;;;GAIG;AACH,qBACa,sBAAuB,SAAQ,UAAU;IACpD,MAAM,CAAC,MAAM,4BAQX;IAE2B,MAAM,UAAS;IAChB,aAAa,SAAU;IACtB,aAAa,UAAQ;IAClB,WAAW,EAAE,MAAM,IAAI,CAAY;IACtC,kBAAkB,UAAS;IAC7B,cAAc,EAAE,uBAAuB,EAAE,CAAM;IAC9C,QAAQ,SAAM;IACb,iBAAiB,UAAS;IAC3B,kBAAkB,SAAM;IAEpD,MAAM;CAyDP"}
|
package/dist/index.js
CHANGED
|
@@ -1547,9 +1547,14 @@ var AxebowBreadcrumbHeader = class AxebowBreadcrumbHeader extends LitElement {
|
|
|
1547
1547
|
class="flex flex-col gap-1 pt-8 ${this.padded ? "ps-8" : ""}"
|
|
1548
1548
|
style="padding-bottom: ${this.paddingBottom};"
|
|
1549
1549
|
>
|
|
1550
|
-
<div
|
|
1550
|
+
<div
|
|
1551
|
+
class="flex flex-wrap items-center gap-2 text-xl text-(--axebow-primary)"
|
|
1552
|
+
>
|
|
1551
1553
|
${this.showHomeBlock ? html`
|
|
1552
|
-
<span
|
|
1554
|
+
<span
|
|
1555
|
+
class="flex items-center gap-2 cursor-pointer"
|
|
1556
|
+
@click=${() => this.onHomeClick()}
|
|
1557
|
+
>
|
|
1553
1558
|
<axebow-icon
|
|
1554
1559
|
iconName="home"
|
|
1555
1560
|
iconColor="var(--axebow-primary)"
|
|
@@ -1560,18 +1565,24 @@ var AxebowBreadcrumbHeader = class AxebowBreadcrumbHeader extends LitElement {
|
|
|
1560
1565
|
</span>
|
|
1561
1566
|
` : ""}
|
|
1562
1567
|
${this.showSecondaryPages ? this.secondaryPages.map((page) => html`
|
|
1563
|
-
<span
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
+
<span class="flex items-center gap-2">
|
|
1569
|
+
<span
|
|
1570
|
+
class="font-normal ${page.onClick ? "cursor-pointer hover:underline" : ""}"
|
|
1571
|
+
@click=${page.onClick ? () => page.onClick() : void 0}
|
|
1572
|
+
>${page.label}</span
|
|
1573
|
+
>
|
|
1574
|
+
<span class="font-normal">/</span>
|
|
1575
|
+
</span>
|
|
1568
1576
|
`) : ""}
|
|
1577
|
+
|
|
1569
1578
|
<span class="font-semibold">${this.mainPage}</span>
|
|
1570
1579
|
</div>
|
|
1571
1580
|
${this.showRequiredField ? html`
|
|
1572
1581
|
<div class="text-sm">
|
|
1573
1582
|
<span class="font-bold text-(--axebow-error)">*</span>
|
|
1574
|
-
<span class="font-normal text-(--axebow-rich-black)">
|
|
1583
|
+
<span class="font-normal text-(--axebow-rich-black)">
|
|
1584
|
+
${this.requiredFieldLabel}</span
|
|
1585
|
+
>
|
|
1575
1586
|
</div>
|
|
1576
1587
|
` : ""}
|
|
1577
1588
|
</div>
|