DSO Toolkit v95.2.0 ๐ฅ
ยท Een minuut leestijd
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>
