-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(select): make @Output names consistent #6677 #7160
Conversation
src/lib/select/select.ts
Outdated
@@ -402,13 +402,31 @@ export class MdSelect extends _MdSelectMixinBase implements AfterContentInit, On | |||
} | |||
|
|||
/** Event emitted when the select has been opened. */ | |||
@Output() onOpen: EventEmitter<void> = new EventEmitter<void>(); | |||
@Output() opened: EventEmitter<void> = new EventEmitter<void>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's fine by me, we just have to make sure to mark it as a breaking change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code-wise LGTM, pending a decision on what to do with the openedChange
.
@jelbourn - let me know what you want to do regarding that. |
If we're making the sidenav |
…lect-outputs-6677 # Conflicts: # src/lib/select/select.ts
@jelbourn - should be good to go now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Caretaker note: should be completely backwards compatible, so if something fails there's a bug |
closing in favor of #8052 |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Updated APIs per #6677
onOpen
toopened
onClose
toclosed
change
toselectionChange