Thank you for all your hard work of bringing this back.
I noticed when updating that few features were missing. Most of them I was able to go around but there are issues regarding locals. As Intl.DateTimeFormat does not support Icelandic.
I need the weekDayNames because current implementation does not work with Icelandic (is-IS). Intl.DateTimeFormat method that this library uses does not return correct names for days. The same is for months, the months names are wrong

This should return 'F枚s' instead of 'Fri'

'M11' should be 'N贸v'
Hey @spoldman,
thanks for the report. Unfortunately, that is beyond my responsibilities. ECMAScript Internationalization API is implemented by the browsers. From the screenshot, I think you're using Chrome. I suggest you reporting the issue to them.
Be sure to share the link to your report. I'll gladly support it!
Thanks for the response.
Thats true that it is not your responsibilities to fix how Intl.DateTimeFormat is implemented in the browsers. I was just thinking of if there is a better way as DateTimeFormat is not reliable enough for many locals. Does it makes sense to add a property to provide the component with methods to format months and day names. That way you could use moment or any other library that you use in your application.
I'm willing to do a PR if that is something you would be interested in.
Hmmm. That doesn't seem like a bad idea, actually. Custom formatters would be easy to implement. I could work on this over the weekend if I find some time.
...although I still urge you to file an issue for the sake of better web ;) By the way, Firefox formats is-IS dates quite nicely from what I can see!

So now you can shame Google by Mozilla's example :D
I created the following issue https://bugs.chromium.org/p/chromium/issues/detail?id=783809#
But custom dateTime formatters would be awesome as that would allow me to do 'M' instead of 'Mon' for weekday names.
Most helpful comment
I created the following issue https://bugs.chromium.org/p/chromium/issues/detail?id=783809#
But custom dateTime formatters would be awesome as that would allow me to do 'M' instead of 'Mon' for weekday names.