Daniel Kimmich
Daniel Kimmich
Thanks for clarification, a demo app is not necessary. I was not aware that scoping themes to a specific element is supported by Angular Material. In theory this can be...
Thanks for reporting the issue. From a quick look it seems like #72 broke this functionality, more spceifically this commit: https://github.com/johannesjo/angular-material-css-vars/commit/c21082a2b5f3d773022e33be0e84c57ec125f253 I will need to investigate a bit more when...
Thanks for figuring out a workaround. Question is how can it be fixed, preferably in a "backwards compatible" (non-breaking) way. It could be done by creating a new mixin with...
They are both used by Compodoc. [`vis` is a direct dependency of this project](https://github.com/compodoc/compodoc/blob/0f49291a30a38825023fc53ffb20a85695ee2c22/package.json#L128C30-L128C30). [`vis` has a dependency to `moment.js`](https://github.com/almende/vis/blob/0b2a54a1684b3f15b4dd280cfbc68295d8edb48a/package.json#L38). It seems like those packages were introduced by this commit:...
@mmalerba @crisbeto I fixed the merge conflicts, the changes merge cleanly again. Is there something else blocking this PR from being merged?
I am able to use ngx-formly in my Angular 17 project. What exactly are you missing?
Apart from possibly dropping support for old Angular versions, the standalone migration should work in a backwards compatible way. Instead of declaring and exporting the components and directives in the...
Not only Stylelint deprecated their formatting rules, ESLint [did the same recently](https://eslint.org/blog/2023/10/deprecating-formatting-rules/). In ESLint world, very popular plugins like TypeScript ESLint [also don't include formatting rules](https://typescript-eslint.io/linting/troubleshooting/formatting). It's becoming the de-facto...
I got the plugin working in ESLint v9 with the help of the `@eslint/compat` package: ```js import { fixupPluginRules } from '@eslint/compat'; import rxjsAngular from 'eslint-plugin-rxjs-angular'; export default tseslint.config( {...
I got the plugin working in flat config format using ESLint v8, with the following config: ```javascript import rxjs from 'eslint-plugin-rxjs'; export default [ { files: ['**/*.ts'], plugins: { rxjs...