Ole Ersoy

Results 33 comments of Ole Ersoy

If you remove this block from [RoundProgressiveService]() does it still throw?: ``` js this.supportsSvg = !!( document && document.createElementNS && document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect ); ```

Seems more like a problem with Angular Universal than with this component. I wonder if Angular Universal is attempting to schema check the template before it is compiled, so it's...

This [demo](https://codepen.io/oleersoy/pen/jZpOXv) runs in chrome with both the `xmlns` and `version` attributes removed from the `svg` element. I can check on SO if they are required when declaring inline svg...

The attributes are [optional](https://stackoverflow.com/questions/18467982/are-svg-parameters-such-as-xmlns-and-version-needed) for inlined `svg` so it should be fine to remove them.

Wonder if it's related to this: https://github.com/crisbeto/angular-svg-round-progressbar/issues/163

I have [implemented it here](https://github.com/fireflysemantics/validator). Incidentally this project could probably delegate to https://github.com/fireflysemantics/is as I am doing.

I broke it off into a completely separate module and updated the Typedoc. Obviously you are free to keep it in the core. https://www.npmjs.com/package/@fireflysemantics/is

I implemented the feature asked for here: https://www.npmjs.com/package/@fireflysemantics/validator

One possible requirement is that suit components should be [DRY](https://en.wikipedia.org/wiki/Don't_repeat_yourself) by assuming the presence of the `normalize.css / base.css` ([Base Styles](https://github.com/suitcss/base)) layer. Designers may want to leave `suit` off the...

> Say we have a Header, whose children must be styled in some way (like, be floated or flexed, etc.). Some of those children are components themselves. There are three...