refactor(aio): order custom elements by selector (#23944)
PR Close #23944
This commit is contained in:
parent
ae86cb3be0
commit
7a9c987e56
|
@ -13,8 +13,8 @@ export const ELEMENT_MODULE_PATHS_AS_ROUTES = [
|
||||||
loadChildren: './api/api-list.module#ApiListModule'
|
loadChildren: './api/api-list.module#ApiListModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
selector: 'live-example',
|
selector: 'aio-contributor-list',
|
||||||
loadChildren: './live-example/live-example.module#LiveExampleModule'
|
loadChildren: './contributor/contributor-list.module#ContributorListModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
selector: 'aio-file-not-found-search',
|
selector: 'aio-file-not-found-search',
|
||||||
|
@ -25,25 +25,25 @@ export const ELEMENT_MODULE_PATHS_AS_ROUTES = [
|
||||||
loadChildren: './resource/resource-list.module#ResourceListModule'
|
loadChildren: './resource/resource-list.module#ResourceListModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
selector: 'current-location',
|
selector: 'code-example',
|
||||||
loadChildren: './current-location/current-location.module#CurrentLocationModule'
|
loadChildren: './code/code-example.module#CodeExampleModule'
|
||||||
},
|
|
||||||
{
|
|
||||||
selector: 'aio-contributor-list',
|
|
||||||
loadChildren: './contributor/contributor-list.module#ContributorListModule'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
selector: 'code-tabs',
|
selector: 'code-tabs',
|
||||||
loadChildren: './code/code-tabs.module#CodeTabsModule'
|
loadChildren: './code/code-tabs.module#CodeTabsModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
selector: 'code-example',
|
selector: 'current-location',
|
||||||
loadChildren: './code/code-example.module#CodeExampleModule'
|
loadChildren: './current-location/current-location.module#CurrentLocationModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
selector: 'expandable-section',
|
selector: 'expandable-section',
|
||||||
loadChildren: './expandable-section/expandable-section.module#ExpandableSectionModule'
|
loadChildren: './expandable-section/expandable-section.module#ExpandableSectionModule'
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
selector: 'live-example',
|
||||||
|
loadChildren: './live-example/live-example.module#LiveExampleModule'
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue