DSO Toolkit v97.0.0 ๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ
ยท 2 minuten leestijd
Deze release bevat breaking changes voor het volgende component:
- Banner (HTML/CSS implementatie)
Deze release bevat een deprecation voor het volgende component:
- Info (HTML/CSS implementatie)
Banner (HTML/CSS implementatie)โ
De HTML/CSS implementatie van het component Banner is in โ v95.0.0 deprecated. In deze release is deze
implementatie verwijderd.
Migratiepadโ
Gebruik de Core implementatie van Banner.
โ
<section role="alert" class="dso-banner alert-error dso-icon">
<div class="dso-banner-inner">
<div class="dso-rich-content">
<h2>Storingsmelding:</h2>
<p>
Op dit moment ervaren wij een storing in de Vergunningcheck. U kunt wel een
<a href="#" class="download">aanvraag</a>
of melding indienen.
</p>
</div>
<dso-icon-button variant="tertiary" icon="cross" label="Sluiten"></dso-icon-button>
</div>
</section>
โ
<dso-banner status="error" icon="">
<div class="dso-banner-inner">
<div class="dso-rich-content">
<h2>Storingsmelding:</h2>
<p>
Op dit moment ervaren wij een storing in de Vergunningcheck. U kunt wel een
<a href="#" class="download">aanvraag</a>
of melding indienen.
</p>
</div>
<dso-icon-button variant="tertiary" icon="cross" label="Sluiten"></dso-icon-button>
</div>
</dso-banner>
Info (HTML/CSS implementatie)โ
De HTML/CSS implementatie van het component Info is deprecated. In een toekomstige BREAKING release zal de HTML/CSS implementatie verwijderd worden.
Migratiepadโ
Gebruik het Core component Info.
โ
<div class="dso-info">
<div class="dso-rich-content">...</div>
<button type="button" class="">
<span class="sr-only">Sluiten</span>
</button>
</div>
โ
<dso-info fixed="" active="">
<div class="dso-rich-content">...</div>
</dso-info>

