@kumori/aurora-wui-components 0.0.116 → 0.0.117
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 +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4087,12 +4087,12 @@ var AxebowMarketplaceCard = class AxebowMarketplaceCard extends LitElement {
|
|
|
4087
4087
|
return html`
|
|
4088
4088
|
<div class="relative shrink-0">
|
|
4089
4089
|
<div
|
|
4090
|
-
class="w-15.25 h-4.5 box-border flex items-center overflow-hidden border border-(--axebow-light-gray) rounded-md
|
|
4091
|
-
@click=${() => this._versionsOpen = !this._versionsOpen}
|
|
4090
|
+
class="w-15.25 h-4.5 box-border flex items-center overflow-hidden border border-(--axebow-light-gray) rounded-md"
|
|
4092
4091
|
>
|
|
4093
4092
|
<span class="flex-1 min-w-0 truncate text-base pl-1.5">${this.version}</span>
|
|
4094
4093
|
<div
|
|
4095
|
-
class="w-4.25 h-4.5 box-border flex items-center justify-center shrink-0 border-l border-solid border-(--axebow-light-gray)"
|
|
4094
|
+
class="w-4.25 h-4.5 box-border flex items-center justify-center shrink-0 cursor-pointer border-l border-solid border-(--axebow-light-gray)"
|
|
4095
|
+
@click=${() => this._versionsOpen = !this._versionsOpen}
|
|
4096
4096
|
>
|
|
4097
4097
|
<axebow-icon iconName="keyboard_arrow_down" iconColor="var(--axebow-tertiary)" size="small"></axebow-icon>
|
|
4098
4098
|
</div>
|
|
@@ -4143,7 +4143,7 @@ var AxebowMarketplaceCard = class AxebowMarketplaceCard extends LitElement {
|
|
|
4143
4143
|
class="w-11.5 h-11.5 shrink-0 aspect-square object-contain rounded-sm"
|
|
4144
4144
|
alt="${this.name} logo"
|
|
4145
4145
|
/>
|
|
4146
|
-
<div class="flex flex-col gap-1.25 w-full min-w-0
|
|
4146
|
+
<div class="flex flex-col gap-1.25 w-full min-w-0">
|
|
4147
4147
|
<div class="flex items-center justify-between gap-1 w-full min-w-0">
|
|
4148
4148
|
<h3 class="text-md font-bold text-(--axebow-primary) truncate m-0">${this.name}</h3>
|
|
4149
4149
|
${this._renderVersionSelector()}
|