Bugfix
This release fixes a bug with font handling. When there are multiple font-family
parameters, they should be handled in the order they are given. Before this fix, only the last font-family
was used.
Example:
<se:SvgParameter name="font-family">Noto Sans</se:SvgParameter>
<se:SvgParameter name="font-family">Arial</se:SvgParameter>
<se:SvgParameter name="font-family">sans-serif</se:SvgParameter>
Before fix --> fontFamily: 'sans-serif'
After fix --> fontFamily: '"Noto Sans", Arial, sans-serif'