forked from fa/breadcrumb-the-shire
Drops the wrapping details-card so the audit toggle and retention input read like the email page. The audit switch now uses role="switch" and a new app-settings-audit component (built on the existing createConditionalToggleInit primitive) hides the retention block when audit is disabled — the input is meaningless without audit on, and the control state syncs automatically on toggle. The redundant info blockquote and the toggle's paraphrased DB description are gone. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
2.1 KiB
PHP
49 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace MintyPHP\Tests\Architecture;
|
|
|
|
trait FrontendRuntimeContractSupport
|
|
{
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
private function runtimeMigratedComponentFiles(): array
|
|
{
|
|
return [
|
|
'web/js/components/app-flash-auto-dismiss.js',
|
|
'web/js/components/app-fslightbox-refresh.js',
|
|
'web/js/components/app-password-hints.js',
|
|
'web/js/components/app-copy-badge.js',
|
|
'web/js/components/app-multiselect-init.js',
|
|
'web/js/components/app-toggle-sidebar.js',
|
|
'web/js/components/app-toggle-aside-panels.js',
|
|
'web/js/components/app-toggle-details-aside.js',
|
|
'web/js/components/app-global-search.js',
|
|
'web/js/components/app-theme-toggle.js',
|
|
'web/js/components/app-contrast-toggle.js',
|
|
'web/js/components/app-confirm-actions.js',
|
|
'web/js/components/app-details-state.js',
|
|
'web/js/components/app-tenant-switcher.js',
|
|
'web/js/components/app-custom-field-options-toggle.js',
|
|
'web/js/components/app-tenant-sso-toggle.js',
|
|
'web/js/components/app-settings-telemetry.js',
|
|
'web/js/components/app-settings-audit.js',
|
|
'web/js/components/app-standard-detail-page.js',
|
|
'web/js/components/app-auto-submit.js',
|
|
'modules/bookmarks/web/js/components/app-bookmark-save.js',
|
|
'modules/bookmarks/web/js/components/app-bookmark-panel.js',
|
|
'web/js/components/app-lookup-field.js',
|
|
'web/js/components/app-password-toggle.js',
|
|
'web/js/components/app-page-editor.js',
|
|
'modules/helpdesk/web/js/helpdesk-detail.js',
|
|
'modules/helpdesk/web/js/helpdesk-domain-detail.js',
|
|
'modules/helpdesk/web/js/helpdesk-ticket.js',
|
|
'modules/helpdesk/web/js/helpdesk-team.js',
|
|
'modules/helpdesk/web/js/helpdesk-risk-radar.js',
|
|
'modules/helpdesk/web/js/helpdesk-settings.js',
|
|
'modules/helpdesk/web/js/handover-domain-select.js',
|
|
'modules/helpdesk/web/js/handover-schema-editor.js',
|
|
];
|
|
}
|
|
}
|