mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
BREAKING CHANGE: Rename `@material/web/<component>/lib` to `@material/web/<component>/internal`. Prefer not using internal files. PiperOrigin-RevId: 550633216
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import '../../field/filled-field.js';
|
|
|
|
import {literal} from 'lit/static-html.js';
|
|
|
|
import {Select} from './select.js';
|
|
|
|
// tslint:disable-next-line:enforce-comments-on-exported-symbols
|
|
export abstract class FilledSelect extends Select {
|
|
protected readonly fieldTag = literal`md-filled-field`;
|
|
}
|