Skip to content

Commit d4875df

Browse files
authored
chore(router-outlet): rename files (#28074)
Issue number: N/A --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> Router outlet files can be hard to find when searching for them. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Router outlet files are named what you'd expect. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
1 parent 01fc9b4 commit d4875df

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

core/src/components/router-outlet/route-outlet.tsx renamed to core/src/components/router-outlet/router-outlet.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type { RouteID, RouterDirection, RouteWrite, NavOutlet } from '../router/
2020

2121
@Component({
2222
tag: 'ion-router-outlet',
23-
styleUrl: 'route-outlet.scss',
23+
styleUrl: 'router-outlet.scss',
2424
shadow: true,
2525
})
2626
export class RouterOutlet implements ComponentInterface, NavOutlet {

core/src/utils/test/overlays/overlays.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { newSpecPage } from '@stencil/core/testing';
22

33
import { Nav } from '../../../components/nav/nav';
4-
import { RouterOutlet } from '../../../components/router-outlet/route-outlet';
4+
import { RouterOutlet } from '../../../components/router-outlet/router-outlet';
55
import { setRootAriaHidden } from '../../overlays';
66

77
describe('setRootAriaHidden()', () => {

0 commit comments

Comments
 (0)