{"version":3,"file":"chunk-nil41oun.js","sources":["packages/vanilla/lib/features/footer/src/footer.client-config.ts","packages/vanilla/lib/features/footer/src/footer-menu-item.component.ts","packages/vanilla/lib/features/footer/src/footer-menu-item.html","packages/vanilla/lib/features/footer/src/footer-menu-section.html","packages/vanilla/lib/features/footer/src/footer-menu-section.component.ts","packages/vanilla/lib/features/footer/src/sub-components/help-button.html","packages/vanilla/lib/features/footer/src/sub-components/help-button.component.ts","packages/vanilla/lib/features/footer/src/footer.html","packages/vanilla/lib/features/footer/src/footer.component.ts","packages/vanilla/lib/features/footer/src/footer-bootstrap.service.ts","packages/vanilla/lib/features/footer/src/footer.feature.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\nimport {\n ClientConfigProductName,\n ContentItem,\n LazyClientConfig,\n LazyClientConfigBase,\n LazyClientConfigService,\n MenuContentItem,\n MenuContentSection,\n ViewTemplateForClient,\n} from '@frontend/vanilla/core';\n\n/**\n * @stable\n */\n@LazyClientConfig({ key: 'vnFooter', product: ClientConfigProductName.SF })\n@Injectable({\n providedIn: 'root',\n useFactory: footerContentFactory,\n deps: [LazyClientConfigService],\n})\nexport class ResponsiveFooterContent extends LazyClientConfigBase {\n isEnabledCondition: string;\n expandableModeEnabled: boolean;\n showHelpButton: boolean;\n links: MenuContentSection;\n seoLinks: MenuContentSection[];\n logos: { left: MenuContentSection; right: MenuContentSection };\n contentMessages: ContentItem[];\n copyright: ViewTemplateForClient;\n showLanguageSwitcherDslCondition: string;\n helpButton: MenuContentItem;\n showLabelSwitcher: boolean;\n footerTopItems: ContentItem[];\n expandableModeIcons: { expanded: string; collapsed: string };\n}\n\nexport function footerContentFactory(service: LazyClientConfigService) {\n return service.get(ResponsiveFooterContent);\n}\n","import { CommonModule } from '@angular/common';\nimport { Component, Input } from '@angular/core';\n\nimport { MenuContentItem, MenuSection } from '@frontend/vanilla/core';\nimport { MenuItemComponent } from '@frontend/vanilla/features/menus';\n\n@Component({\n standalone: true,\n imports: [MenuItemComponent, CommonModule],\n selector: 'vn-footer-menu-item',\n templateUrl: 'footer-menu-item.html',\n})\nexport class FooterMenuItemComponent {\n @Input() item: MenuContentItem;\n\n MenuSection = MenuSection;\n}\n","