-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix(progress-spinner): Rename ProgressCircle to ProgressSpinner #2300
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
Conversation
| @Component({ | ||
| moduleId: module.id, | ||
| selector: 'md-progress-circle, mat-progress-circle', | ||
| selector: 'md-progress-spinner, mat-progress-spinner', |
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.
We need to leave the old selectors as well so we can more easily migrate existing google projects
| changeDetection: ChangeDetectionStrategy.OnPush, | ||
| }) | ||
| export class MdProgressCircle implements OnDestroy { | ||
| export class MdProgressSpinner implements OnDestroy { |
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.
You can add at the bottom of this file
/** @deprecated */
export {MdProgressSpinner as MdProgressCircle};
/** @deprecated */
export {MdProgressSpinnerModule as MdProgressCircleModule};
// same for other symbolsthis will let people continue using the old symbols and let us migrate them incrementally.
c2fe6cd to
326b829
Compare
|
Make selectors |
ed1e42c to
f831e4a
Compare
|
Added progress-circle.ts. PTAL. Thanks! |
|
LGTM |
|
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. |
Closes #1495
R: @jelbourn