Skip to content

Commit

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

PiperOrigin-RevId: 550034550
  • Loading branch information
AndrewJakubowicz authored and copybara-github committed Jul 21, 2023
1 parent c4ac9f7 commit aaa672b
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dialog/_dialog.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/dialog' show theme;
@forward './internal/dialog' show theme;
4 changes: 2 additions & 2 deletions dialog/dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

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

import {Dialog} from './lib/dialog.js';
import {styles} from './lib/dialog-styles.css.js';
import {Dialog} from './internal/dialog.js';
import {styles} from './internal/dialog-styles.css.js';

declare global {
interface HTMLElementTagNameMap {
Expand Down
2 changes: 1 addition & 1 deletion dialog/harness.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import {Harness} from '../testing/harness.js';

import {Dialog} from './lib/dialog.js';
import {Dialog} from './internal/dialog.js';


/**
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit aaa672b

Please sign in to comment.