-
Notifications
You must be signed in to change notification settings - Fork 6.8k
chore: fewer warnings for docs generation #9864
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
* Hides the warnings about unresolved TypeScript symbols for the mixin base classes. Those warnings are not fixable and are polluting the Dgeni output. * Adds missing `@deprecated` tags to entries that already have the `@deletion-target` set. * Updates to the latest version of dgeni-packages because angular/dgeni-packages@3a4e568 landed.
7dbeab6
to
8653770
Compare
@@ -280,7 +280,10 @@ export class MatDatepickerInput<D> implements AfterContentInit, ControlValueAcce | |||
return this._validator ? this._validator(c) : null; | |||
} | |||
|
|||
/** @deletion-target 7.0.0 Use `getConnectedOverlayOrigin` instead */ | |||
/** | |||
* @deprecated |
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.
@jelbourn do we want to mark these deprecated now or wait until 6.0.0?
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.
As early as possible is always good
@devversion Looks like |
@CaerusKaru Oups, I didn't update the PR description, just the commit message. The |
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
@@ -280,7 +280,10 @@ export class MatDatepickerInput<D> implements AfterContentInit, ControlValueAcce | |||
return this._validator ? this._validator(c) : null; | |||
} | |||
|
|||
/** @deletion-target 7.0.0 Use `getConnectedOverlayOrigin` instead */ | |||
/** | |||
* @deprecated |
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.
As early as possible is always good
* Hides the warnings about unresolved TypeScript symbols for the mixin base classes. Those warnings are not fixable and are polluting the Dgeni output. * Adds missing `@deprecated` tags to entries that already have the `@deletion-target` set. * Updates to the latest version of dgeni-packages because angular/dgeni-packages@3a4e568 landed.
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. |
@deprecated
tags to entries that already have the@deletion-target
set.