Ga naar hoofdinhoud

DSO Toolkit v95.2.0 ๐Ÿฅ•

ยท Een minuut leestijd
Eric Tamminga
DSO Toolkit Maintainer

Deze release bevat 2 deprecations voor de volgende componenten:

  • Alert (HTML/CSS implementatie)
  • Attachements Counter (HTML/CSS implementatie)

Alert (HTML/CSS implementatie)โ€‹

De HTML/CSS implementatie van het component Alert is deprecated. In een toekomstige BREAKING release zal de HTML/CSS implementatie verwijderd worden.

Migratiepadโ€‹

Gebruik de Core implementatie van Alert.

โŒ
<div class="alert alert-success">
<span class="sr-only">Gelukt:</span>
<div class="dso-rich-content">
<p>Dit is een succesmelding. Deze wordt getoond als een proces succesvol is afgerond.</p>
<button type="button" class="dso-alert-button">
<span>Button</span>
</button>
</div>
</div>

โœ…
<dso-alert status="success" closable>
<div class="dso-rich-content">
<p>Dit is een succesmelding. Deze wordt getoond als een proces succesvol is afgerond.</p>
<button type="button" class="dso-primary dso-small">
<span>Button</span>
</button>
</div>
</dso-alert>

Attachments Counter (HTML/CSS implementatie)โ€‹

De HTML/CSS implementatie van het component Attachments Counter is deprecated. In een toekomstige BREAKING release zal de HTML/CSS implementatie verwijderd worden.

Migratiepadโ€‹

Gebruik de Core implementatie van Attachments Counter.

โŒ
<span class="dso-attachments"> 3 <span class="sr-only">bijlagen</span> </span>

โœ…
<dso-attachments-counter count="3"></dso-attachments-counter>