Skip to content

Commit

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

PiperOrigin-RevId: 550034503
  • Loading branch information
AndrewJakubowicz authored and copybara-github committed Jul 21, 2023
1 parent 601ebb6 commit c4ac9f7
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

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

import {Checkbox} from './lib/checkbox.js';
import {styles} from './lib/checkbox-styles.css.js';
import {Checkbox} from './internal/checkbox.js';
import {styles} from './internal/checkbox-styles.css.js';

declare global {
interface HTMLElementTagNameMap {
Expand Down
2 changes: 1 addition & 1 deletion checkbox/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 {Checkbox} from './lib/checkbox.js';
import {Checkbox} from './internal/checkbox.js';

/**
* Test harness for checkbox.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c4ac9f7

Please sign in to comment.