mirror of
https://github.com/material-components/material-web.git
synced 2026-01-09 07:21:09 +08:00
fix(iconbutton)!: rename "lib" directory to "internal"
BREAKING CHANGE: Rename `@material/web/iconbutton/lib` to `@material/web/iconbutton/internal`. Prefer not using internal files. PiperOrigin-RevId: 550579461
This commit is contained in:
parent
2147af7e28
commit
38b1b69a9c
@ -3,4 +3,4 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
@forward './lib/filled-icon-button' show theme;
|
||||
@forward './internal/filled-icon-button' show theme;
|
||||
|
||||
@ -3,4 +3,4 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
@forward './lib/filled-tonal-icon-button' show theme;
|
||||
@forward './internal/filled-tonal-icon-button' show theme;
|
||||
|
||||
@ -3,4 +3,4 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
@forward './lib/outlined-icon-button' show theme;
|
||||
@forward './internal/outlined-icon-button' show theme;
|
||||
|
||||
@ -3,4 +3,4 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
@forward './lib/standard-icon-button' show theme;
|
||||
@forward './internal/standard-icon-button' show theme;
|
||||
|
||||
@ -6,9 +6,9 @@
|
||||
|
||||
import {customElement} from 'lit/decorators.js';
|
||||
|
||||
import {styles} from './lib/filled-styles.css.js';
|
||||
import {IconButton} from './lib/icon-button.js';
|
||||
import {styles as sharedStyles} from './lib/shared-styles.css.js';
|
||||
import {styles} from './internal/filled-styles.css.js';
|
||||
import {IconButton} from './internal/icon-button.js';
|
||||
import {styles as sharedStyles} from './internal/shared-styles.css.js';
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
|
||||
@ -6,9 +6,9 @@
|
||||
|
||||
import {customElement} from 'lit/decorators.js';
|
||||
|
||||
import {styles} from './lib/filled-tonal-styles.css.js';
|
||||
import {IconButton} from './lib/icon-button.js';
|
||||
import {styles as sharedStyles} from './lib/shared-styles.css.js';
|
||||
import {styles} from './internal/filled-tonal-styles.css.js';
|
||||
import {IconButton} from './internal/icon-button.js';
|
||||
import {styles as sharedStyles} from './internal/shared-styles.css.js';
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
import {Harness} from '../testing/harness.js';
|
||||
|
||||
import {IconButton} from './lib/icon-button.js';
|
||||
import {IconButton} from './internal/icon-button.js';
|
||||
|
||||
/**
|
||||
* Test harness for icon buttons.
|
||||
|
||||
@ -6,9 +6,9 @@
|
||||
|
||||
import {customElement} from 'lit/decorators.js';
|
||||
|
||||
import {IconButton} from './lib/icon-button.js';
|
||||
import {styles} from './lib/outlined-styles.css.js';
|
||||
import {styles as sharedStyles} from './lib/shared-styles.css.js';
|
||||
import {IconButton} from './internal/icon-button.js';
|
||||
import {styles} from './internal/outlined-styles.css.js';
|
||||
import {styles as sharedStyles} from './internal/shared-styles.css.js';
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
|
||||
@ -6,9 +6,9 @@
|
||||
|
||||
import {customElement} from 'lit/decorators.js';
|
||||
|
||||
import {IconButton} from './lib/icon-button.js';
|
||||
import {styles as sharedStyles} from './lib/shared-styles.css.js';
|
||||
import {styles} from './lib/standard-styles.css.js';
|
||||
import {IconButton} from './internal/icon-button.js';
|
||||
import {styles as sharedStyles} from './internal/shared-styles.css.js';
|
||||
import {styles} from './internal/standard-styles.css.js';
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user