Skip to content

Commit

Permalink
fix(elevation)!: rename "lib" directory to "internal"
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Rename `@material/web/elevation/lib` to `@material/web/elevation/internal`. Prefer not using internal files.

PiperOrigin-RevId: 550038448
  • Loading branch information
AndrewJakubowicz authored and copybara-github committed Jul 21, 2023
1 parent 5618b5e commit 0432e6d
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion elevation/_elevation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
// SPDX-License-Identifier: Apache-2.0
//

@forward './lib/elevation' show theme;
@forward './internal/elevation' show theme;
4 changes: 2 additions & 2 deletions elevation/elevation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import {customElement} from 'lit/decorators.js';

import {Elevation} from './lib/elevation.js';
import {styles} from './lib/elevation-styles.css.js';
import {Elevation} from './internal/elevation.js';
import {styles} from './internal/elevation-styles.css.js';

declare global {
interface HTMLElementTagNameMap {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion select/lib/_shared.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@use 'sass:string';
// go/keep-sorted end
// go/keep-sorted start
@use '../../elevation/lib/elevation';
@use '../../elevation/internal/elevation';
@use '../../internal/sass/theme';
@use '../../tokens';
// go/keep-sorted end
Expand Down

0 comments on commit 0432e6d

Please sign in to comment.