diff --git a/components/action-element/README.md b/components/action-element/README.md index 578995e8d..79a3e1cd1 100644 --- a/components/action-element/README.md +++ b/components/action-element/README.md @@ -41,7 +41,7 @@ from `endPress()` have a `detail` object, it should be included in the call to ### Example ```ts -import {ActionElement, BeginPressConfig, EndPressConfig} from '../action_element/action-element'; +import {ActionElement, BeginPressConfig, EndPressConfig} from '../action-element/action-element'; import {html} from 'lit'; import {property} from 'lit/decorators'; @@ -82,7 +82,7 @@ export class MyElement extends ActionElement { ### Example with ripple ```ts -import {ActionElement, BeginPressConfig, EndPressConfig} from '../action_element/action-element'; +import {ActionElement, BeginPressConfig, EndPressConfig} from '../action-element/action-element'; import {MdRipple} from '../ripple/ripple'; import {html} from 'lit'; diff --git a/components/icon-button/lib/icon-button-toggle.ts b/components/icon-button/lib/icon-button-toggle.ts index 12e6de0ed..d105563a1 100644 --- a/components/icon-button/lib/icon-button-toggle.ts +++ b/components/icon-button/lib/icon-button-toggle.ts @@ -9,7 +9,7 @@ import {property, query} from 'lit/decorators'; import {classMap} from 'lit/directives/class-map'; import {ifDefined} from 'lit/directives/if-defined'; -import {ActionElement, BeginPressConfig, EndPressConfig} from '../../action_element/action-element'; +import {ActionElement, BeginPressConfig, EndPressConfig} from '../../action-element/action-element'; import {ariaProperty} from '../../decorators/aria-property'; import {MdRipple} from '../../ripple/ripple'; diff --git a/components/icon-button/lib/icon-button.ts b/components/icon-button/lib/icon-button.ts index 31fefa199..f28f17053 100644 --- a/components/icon-button/lib/icon-button.ts +++ b/components/icon-button/lib/icon-button.ts @@ -8,7 +8,7 @@ import {html, TemplateResult} from 'lit'; import {property, query} from 'lit/decorators'; import {ifDefined} from 'lit/directives/if-defined'; -import {ActionElement, BeginPressConfig, EndPressConfig} from '../../action_element/action-element'; +import {ActionElement, BeginPressConfig, EndPressConfig} from '../../action-element/action-element'; import {ariaProperty} from '../../decorators/aria-property'; import {MdRipple} from '../../ripple/ripple'; import {ARIAHasPopup} from '../../types/aria'; diff --git a/components/navigation-tab/lib/navigation-tab.ts b/components/navigation-tab/lib/navigation-tab.ts index 14aca2533..aa0ec2d75 100644 --- a/components/navigation-tab/lib/navigation-tab.ts +++ b/components/navigation-tab/lib/navigation-tab.ts @@ -11,7 +11,7 @@ import {property, query, state} from 'lit/decorators'; import {ClassInfo, classMap} from 'lit/directives/class-map'; import {ifDefined} from 'lit/directives/if-defined'; -import {ActionElement, BeginPressConfig, EndPressConfig} from '../../action_element/action-element'; +import {ActionElement, BeginPressConfig, EndPressConfig} from '../../action-element/action-element'; import {ariaProperty} from '../../decorators/aria-property'; import {pointerPress, shouldShowStrongFocus} from '../../focus/strong-focus'; import {MdRipple} from '../../ripple/ripple';