User requests that the Angular generator be updated to remove the "on" prefix from EventEmitter outputs, aligning with Angular's recommended style guide.
### I am interested in helping provide a feature! Yes ### Which generators are impacted? - [ ] All - [X] Angular - [ ] HTML - [ ] Qwik - [ ] React - [ ] React-Native - [ ] Solid - [ ] Stencil - [ ] Svelte - [ ] Vue - [ ] Web components ### What problem does this feature solve? Angular strictly recommends not to use prefix "on" on EventEmitters. > Do name events without the prefix on. > Do name event handler methods with the prefix on followed by the event name. > > Why? > This is consistent with built-in events such as button clicks. > > Why? > Angular allows for an [alternative syntax](https://angular.dev/guide/templates/binding) on-*. If the event itself was prefixed with on this would result in an on-onEvent binding expression. > [Rule 05-16: Don't Prefix Output Properties](https://angular.dev/style-guide#style-05-16) This is already resolved when you use a component. The onCancel and onConfirm is changed to cancel and confirm. [