forked from fa/breadcrumb-the-shire
refactor(addressbook): move from aside icon-bar to explorer nav link
Introduce generic explorer.nav_item slot type in app-main-aside.phtml so modules can contribute links to the explorer nav panel. Switch addressbook module from aside.tab_panel to explorer.nav_item. Remove aside department-filter panel, AddressBookLayoutProvider, and AddressBookSessionProvider (only served the now-removed aside panel). Fix grid Name column overflow into Email column: CSS selector .grid-name-cell > span:last-child never matched the <a> name link; changed to :last-child and scoped flex-shrink:0 to :first-child only. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -22,9 +22,9 @@ final class ModuleRegistryBootstrapContractTest extends TestCase
|
||||
self::assertTrue($registry->hasModule('addressbook'));
|
||||
self::assertNotEmpty($registry->getPermissions());
|
||||
self::assertNotEmpty($registry->getSearchResources());
|
||||
self::assertNotEmpty($registry->getLayoutContextProviders());
|
||||
self::assertNotEmpty($registry->getSessionProviders());
|
||||
self::assertNotEmpty($registry->getSlotContributions('aside.tab_panel'));
|
||||
self::assertEmpty($registry->getLayoutContextProviders());
|
||||
self::assertEmpty($registry->getSessionProviders());
|
||||
self::assertNotEmpty($registry->getSlotContributions('explorer.nav_item'));
|
||||
}
|
||||
|
||||
public function testEmptyEnvDisablesAllConfiguredModules(): void
|
||||
|
||||
Reference in New Issue
Block a user