@yelon/bis 15.1.0-18de49a5 → 15.1.0-f09cdbae
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/fesm2020/layout.mjs
CHANGED
|
@@ -406,11 +406,11 @@ YunzaiI18NComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
406
406
|
[nzSelected]="item.code === curLangCode"
|
|
407
407
|
(click)="change(item.code)"
|
|
408
408
|
>
|
|
409
|
-
<template *ngIf="!item.
|
|
409
|
+
<template *ngIf="!item.image">
|
|
410
410
|
<span role="img" [attr.aria-label]="item.text" class="pr-xs">{{ item.abbr }}</span>
|
|
411
411
|
</template>
|
|
412
|
-
<template *ngIf="item.
|
|
413
|
-
<img [src]="'data:image/png;base64,' + item.
|
|
412
|
+
<template *ngIf="item.image">
|
|
413
|
+
<img [src]="'data:image/png;base64,' + item.image" [alt]="item.abbr" class="pr-xs" />
|
|
414
414
|
</template>
|
|
415
415
|
{{ item.text }}
|
|
416
416
|
</li>
|
|
@@ -446,11 +446,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
446
446
|
[nzSelected]="item.code === curLangCode"
|
|
447
447
|
(click)="change(item.code)"
|
|
448
448
|
>
|
|
449
|
-
<template *ngIf="!item.
|
|
449
|
+
<template *ngIf="!item.image">
|
|
450
450
|
<span role="img" [attr.aria-label]="item.text" class="pr-xs">{{ item.abbr }}</span>
|
|
451
451
|
</template>
|
|
452
|
-
<template *ngIf="item.
|
|
453
|
-
<img [src]="'data:image/png;base64,' + item.
|
|
452
|
+
<template *ngIf="item.image">
|
|
453
|
+
<img [src]="'data:image/png;base64,' + item.image" [alt]="item.abbr" class="pr-xs" />
|
|
454
454
|
</template>
|
|
455
455
|
{{ item.text }}
|
|
456
456
|
</li>
|