Belan
Belan
Yes with #15140 + overriding the mat-color function with a custom one, theming with css variables works like a charm :) See here: [https://stackoverflow.com/a/55306685/2416833](https://stackoverflow.com/a/55306685/2416833)
@kevinbeal Yes, but at least for projects that dont have to support these browsers (like ours), this solves the problem.
[http://userguide.icu-project.org/formatparse/messages](http://userguide.icu-project.org/formatparse/messages): Use a "select" argument to select sub-messages via a fixed set of **keywords**. Sounds like only strings should be used. But as your readme states compatibility with messageformat.js, I...
pdfjs is not written with es modules, but they made a es module wrapper available that could be used in the meantime: https://www.npmjs.com/package/@bundled-es-modules/pdfjs-dist for more info: https://github.com/mozilla/pdf.js/issues/10317
Suggestion for (5): How about making it configureable, but save the used number of rounds for each account. On each login it is checked if the config value matches the...
> Most people want to describe a single "type schema" for their CRUD operations Are you sure about that? Same as @bkoelman, we also deliberatelly chose to use different models....
You can return a Subject from your dataSourceProvider and then just call subject.next([your new data array here]). We did this at work and it works like a charm :)
Other projects like angular material or primeng provide their (s)css separated from the component and you have to include it in the angular-cli.json. But then all css classes of the...
@valeri879 my comment was meant for @diegofsza. If the ng2-iq-select2 styles come in a separate (s)css file instead of being embedded into the component, then you could either extend the...
I helped debug some code today where the dev had written something like this: ``` const value = valueOrNull ?? condition ? value1 : value2; ``` javascript sees this as...