chore: remove closure comments from static blocks

PiperOrigin-RevId: 539772537
This commit is contained in:
Elizabeth Mitchell 2023-06-12 15:07:03 -07:00 committed by Copybara-Service
parent 902c9d6687
commit 1790a5bbf8
22 changed files with 0 additions and 22 deletions

View File

@ -20,7 +20,6 @@ import {dispatchActivationClick, isActivationClick, redispatchEvent} from '../..
* A button component.
*/
export abstract class Button extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -19,7 +19,6 @@ import {dispatchActivationClick, isActivationClick, redispatchEvent} from '../..
* A checkbox component.
*/
export class Checkbox extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -17,7 +17,6 @@ import {requestUpdateOnAriaChange} from '../../internal/aria/delegate.js';
* A chip component.
*/
export abstract class Chip extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -15,7 +15,6 @@ import {requestUpdateOnAriaChange} from '../../internal/aria/delegate.js';
* A circular progress component.
*/
export class CircularProgress extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -22,7 +22,6 @@ export type FabSize = 'medium'|'small'|'large';
// tslint:disable-next-line:enforce-comments-on-exported-symbols
export abstract class SharedFab extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -20,7 +20,6 @@ type LinkTarget = '_blank'|'_parent'|'_self'|'_top';
// tslint:disable-next-line:enforce-comments-on-exported-symbols
export class IconButton extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -21,7 +21,6 @@ declare global {
@customElement('test-aria-delegate')
class AriaDelegateElement extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(AriaDelegateElement);
}

View File

@ -21,7 +21,6 @@ import {NavigationBarState} from './state.js';
* TODO(b/265346501): add docs
*/
export class NavigationBar extends LitElement implements NavigationBarState {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -15,7 +15,6 @@ import {requestUpdateOnAriaChange} from '../../../internal/aria/delegate.js';
* TODO(b/265346501): add docs
*/
export class NavigationDrawerModal extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -17,7 +17,6 @@ import {requestUpdateOnAriaChange} from '../../../internal/aria/delegate.js';
* TODO(b/265346501): add docs
*/
export class NavigationDrawer extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -21,7 +21,6 @@ import {NavigationTabState} from './state.js';
* TODO(b/265346501): add docs
*/
export class NavigationTab extends LitElement implements NavigationTabState {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -21,7 +21,6 @@ import {requestUpdateOnAriaChange} from '../../../internal/aria/delegate.js';
* context.
*/
export class SegmentedButton extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -17,7 +17,6 @@ import {SegmentedButton} from '../../segmentedbutton/lib/segmented-button.js';
* used as children.
*/
export class SegmentedButtonSet extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -16,7 +16,6 @@ import {requestUpdateOnAriaChange} from '../../internal/aria/delegate.js';
* A linear progress component.
*/
export class LinearProgress extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -29,7 +29,6 @@ function isNavigableKey(key: string): key is NavigatableValues {
// tslint:disable-next-line:enforce-comments-on-exported-symbols
export class List extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -32,7 +32,6 @@ export type ListItem = ListItemSelf&HTMLElement;
// tslint:disable-next-line:enforce-comments-on-exported-symbols
export class ListItemEl extends LitElement implements ListItem {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -63,7 +63,6 @@ function getFocusedElement(activeDoc: Document|ShadowRoot = document):
* @fires closed Fired once the menu is closed, after any animations
*/
export abstract class Menu extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -23,7 +23,6 @@ const CHECKED = Symbol('checked');
* A radio component.
*/
export class Radio extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -27,7 +27,6 @@ import {MdRipple} from '../../ripple/ripple.js';
* Slider component.
*/
export class Slider extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -21,7 +21,6 @@ import {dispatchActivationClick, isActivationClick} from '../../internal/control
* interaction (bubbles).
*/
export class Switch extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -37,7 +37,6 @@ export type Variant = Style|`${Style} ${Orientation}`|`${Orientation} ${Style}`;
* Tab component.
*/
export class Tab extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}

View File

@ -38,7 +38,6 @@ export type InvalidTextFieldType =
* A text field component.
*/
export abstract class TextField extends LitElement {
/** @nocollapse */
static {
requestUpdateOnAriaChange(this);
}