mirror of
https://github.com/material-components/material-web.git
synced 2024-11-10 11:21:43 +03:00
30c95aeee1
In particular, this allows external build tools like Rollup and @web/dev-server to understand imports of Lit, which is configured to require the ".js" extension via its export conditions (so that Lit import maps can remain minimal). PiperOrigin-RevId: 469772992
23 lines
469 B
TypeScript
23 lines
469 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {customElement} from 'lit/decorators.js';
|
|
|
|
import {styles} from '../list/lib/listitem/list-item-styles.css.js';
|
|
|
|
import {MenuItem} from './lib/menuitem/menu-item.js';
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'md-menu-item': MdMenuItem;
|
|
}
|
|
}
|
|
|
|
@customElement('md-menu-item')
|
|
export class MdMenuItem extends MenuItem {
|
|
static override styles = [styles];
|
|
}
|