Simon

Results 7 comments of Simon

Hello @manucorporat, As @Yomyer said, thank you for adding the **registerAnimation** function in the `@ionic/core/src/components/menu-controller/menu-controller.ts`. Is it possible to add to the MenuController of Angular and Vue the possibility to...

@NetanelBasal, what do you suggest to implements this new feature ? In Akita an [observable](https://github.com/datorama/akita/blob/76980498e1d285df8a05826be8f6bc0da0e82dba/packages/akita/src/lib/entityStore.ts#L64) is used to propagate entities event. However in Elf every mutation functions is a pure...

Hey @NetanelBasal, I'm pretty busy right now, In my last commit 3 weeks ago, I added the unit test. You can check the MR, I'll add the documentation after

@KacperPilkowski, Are you sure to import de `NgxGoogleAnalyticsModule` on every module where you use the directive ? You should import the `NgxGoogleAnalyticsModule` on every lazy loading module.

@JamesHenry After further consideration, this issue isn't limited to just this rule. It also impacts `@angular-eslint/no-input-rename`, `@angular-eslint/no-output-on-prefix`, and `@angular-eslint/no-output-rename`. To address this, we need to create new selectors to handle...

@noveogroup-amorgunov, It works with this syntax: ```javascript export default tsEslint.config({ files: ["**/*.ts"], plugins: { boundaries: eslintPluginBoundaries, }, settings: { "boundaries/elements": [], }, rules: { ...eslintPluginBoundaries.configs.recommended.rules, }, }); ```