@kumori/aurora-wui-components 0.0.270-dev4118.1 → 0.0.270-dev4118.3
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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1036,9 +1036,9 @@ var AxebowSearchBarFilters = class AxebowSearchBarFilters extends LitElement {
|
|
|
1036
1036
|
></axebow-icon>
|
|
1037
1037
|
${this.providerOptions.map((opt) => html`
|
|
1038
1038
|
<sl-option value="${opt.value}">
|
|
1039
|
-
<span class="flex items-center
|
|
1039
|
+
<span class="flex items-center w-full gap-1">
|
|
1040
|
+
${opt.logo ? html`<img src="${opt.logo}" alt="${opt.label}" class="h-4 w-auto object-contain" />` : ""}
|
|
1040
1041
|
${opt.label}
|
|
1041
|
-
${opt.logo ? html`<img src="${opt.logo}" alt="${opt.label}" class="h-4 w-auto object-contain ml-auto" />` : ""}
|
|
1042
1042
|
</span>
|
|
1043
1043
|
</sl-option>
|
|
1044
1044
|
`)}
|