mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
BREAKING CHANGE: Rename `@material/web/chips/lib` to `@material/web/chips/internal`. Prefer not using internal files. PiperOrigin-RevId: 550044106
28 lines
524 B
TypeScript
28 lines
524 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {customElement} from 'lit/decorators.js';
|
|
|
|
import {ChipSet} from './internal/chip-set.js';
|
|
import {styles} from './internal/chip-set-styles.css.js';
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'md-chip-set': MdChipSet;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* TODO(b/243982145): add docs
|
|
*
|
|
* @final
|
|
* @suppress {visibility}
|
|
*/
|
|
@customElement('md-chip-set')
|
|
export class MdChipSet extends ChipSet {
|
|
static override styles = [styles];
|
|
}
|