@eui/ecl 21.0.0-alpha.2 → 21.0.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/components/ecl-content-item/index.d.ts.map +1 -1
  2. package/components/ecl-date-block/index.d.ts.map +1 -1
  3. package/components/ecl-icon/index.d.ts +2 -3
  4. package/components/ecl-icon/index.d.ts.map +1 -1
  5. package/components/ecl-menu/index.d.ts.map +1 -1
  6. package/components/ecl-multiselect/index.d.ts.map +1 -1
  7. package/components/ecl-search-form/index.d.ts.map +1 -1
  8. package/docs/changelog.html +88 -0
  9. package/docs/components/EclIconComponent.html +1 -15
  10. package/docs/js/search/search_index.js +2 -2
  11. package/docs/properties.html +1 -1
  12. package/fesm2022/eui-ecl-components-ecl-content-item.mjs.map +1 -1
  13. package/fesm2022/eui-ecl-components-ecl-date-block.mjs +24 -0
  14. package/fesm2022/eui-ecl-components-ecl-date-block.mjs.map +1 -1
  15. package/fesm2022/eui-ecl-components-ecl-gallery.mjs.map +1 -1
  16. package/fesm2022/eui-ecl-components-ecl-icon.mjs +11 -12
  17. package/fesm2022/eui-ecl-components-ecl-icon.mjs.map +1 -1
  18. package/fesm2022/eui-ecl-components-ecl-mega-menu.mjs.map +1 -1
  19. package/fesm2022/eui-ecl-components-ecl-menu.mjs.map +1 -1
  20. package/fesm2022/eui-ecl-components-ecl-multiselect.mjs.map +1 -1
  21. package/fesm2022/eui-ecl-components-ecl-pagination.mjs +2 -2
  22. package/fesm2022/eui-ecl-components-ecl-pagination.mjs.map +1 -1
  23. package/fesm2022/eui-ecl-components-ecl-search-form.mjs +2 -2
  24. package/fesm2022/eui-ecl-components-ecl-search-form.mjs.map +1 -1
  25. package/fesm2022/eui-ecl-components-ecl-site-footer.mjs.map +1 -1
  26. package/fesm2022/eui-ecl-components-ecl-site-header.mjs +3 -3
  27. package/fesm2022/eui-ecl-components-ecl-site-header.mjs.map +1 -1
  28. package/fesm2022/eui-ecl-components-ecl-table.mjs +1 -1
  29. package/fesm2022/eui-ecl-components-ecl-table.mjs.map +1 -1
  30. package/package.json +31 -31
@@ -2,6 +2,8 @@ import * as i0 from '@angular/core';
2
2
  import { forwardRef, inject, EventEmitter, HostListener, Output, HostBinding, Input, Component, NgModule } from '@angular/core';
3
3
  import * as i1 from '@angular/forms';
4
4
  import { NG_VALUE_ACCESSOR, FormsModule } from '@angular/forms';
5
+ import * as i6 from '@ngx-translate/core';
6
+ import { TranslateModule } from '@ngx-translate/core';
5
7
  import { EclBaseEvent, ECLBaseDirective, EclThemeService } from '@eui/ecl/core';
6
8
  import * as i2 from '@eui/ecl/components/ecl-button';
7
9
  import { EclButtonModule } from '@eui/ecl/components/ecl-button';
@@ -11,8 +13,6 @@ import * as i4 from '@eui/ecl/components/ecl-text-input';
11
13
  import { EclTextInputModule } from '@eui/ecl/components/ecl-text-input';
12
14
  import * as i5 from '@eui/ecl/components/ecl-icon';
13
15
  import { EclIconModule } from '@eui/ecl/components/ecl-icon';
14
- import * as i6 from '@ngx-translate/core';
15
- import { TranslateModule } from '@ngx-translate/core';
16
16
 
17
17
  class EclSearchFormEvent extends EclBaseEvent {
18
18
  constructor(keyword) {
@@ -1 +1 @@
1
- {"version":3,"file":"eui-ecl-components-ecl-search-form.mjs","sources":["../../components/ecl-search-form/events/ecl-search-form.event.ts","../../components/ecl-search-form/ecl-search-form.component.ts","../../components/ecl-search-form/ecl-search-form.component.html","../../components/ecl-search-form/ecl-search-form.module.ts","../../components/ecl-search-form/index.ts","../../components/ecl-search-form/eui-ecl-components-ecl-search-form.ts"],"sourcesContent":["import { EclBaseEvent } from '@eui/ecl/core';\n\nexport class EclSearchFormEvent extends EclBaseEvent {\n\tconstructor(public keyword: string) {\n\t\tsuper();\n\t}\n}\n","import { Component, EventEmitter, forwardRef, HostBinding, HostListener, Input, Output, Provider, inject } from '@angular/core';\nimport { ControlValueAccessor, FormsModule, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ECLBaseDirective } from '@eui/ecl/core';\nimport { EclThemeService } from '@eui/ecl/core';\nimport { EclSearchFormEvent } from './events/ecl-search-form.event';\nimport { EclButtonModule } from '@eui/ecl/components/ecl-button';\nimport { EclFormGroupModule } from '@eui/ecl/components/ecl-form-group';\nimport { EclTextInputModule } from '@eui/ecl/components/ecl-text-input';\nimport { EclIconModule } from '@eui/ecl/components/ecl-icon';\nimport { TranslateModule } from '@ngx-translate/core';\n\nexport const ECL_SEARCH_FORM_VALUE_ACCESSOR: Provider = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => EclSearchFormComponent),\n multi: true,\n};\n\nconst noop = (): void => {\n /** empty*/\n};\n\n/**\n * Component representing search field - input and button, in a responsive, styled layout.\n */\n@Component({\n selector: 'ecl-search-form',\n templateUrl: 'ecl-search-form.component.html',\n imports: [TranslateModule, FormsModule, EclButtonModule, EclFormGroupModule, EclTextInputModule, EclIconModule], // TODO: replace with new names EUI_ECL_...\n providers: [ECL_SEARCH_FORM_VALUE_ACCESSOR],\n})\nexport class EclSearchFormComponent extends ECLBaseDirective implements ControlValueAccessor {\n protected eclThemeService = inject(EclThemeService);\n\n /**\n * The current/default search text.\n */\n @Input() searchInputText: string;\n @Input() placeholder: string;\n @Input() searchButtonLabel: string;\n @Input() searchButtonIcon = 'search';\n @Input() buttonExtraClassses = '';\n @Input() inputExtraClassses = '';\n\n /**\n * Applies the base class `ecl-search-form` to the host element.\n */\n @HostBinding('class')\n get cssClasses(): string {\n return [super.getCssClasses('ecl-search-form')].join(' ').trim();\n }\n\n @HostBinding('attr.role') role = 'search';\n\n /**\n * This event is emited, when user performs the search action. Includes the search text from the input field.\n */\n // TODO: this output should be renamed in v20 - breaking change!\n // eslint-disable-next-line @angular-eslint/no-output-native\n @Output() search = new EventEmitter<EclSearchFormEvent>();\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n private onChange: (_: any) => void = noop;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n private onTouched: (_: any) => void = noop;\n\n /**\n * Perform search when user clicks the search button. Emits the search event with the search text.\n */\n onSearchClick(evt: Event): void {\n this.search.next(new EclSearchFormEvent(this.searchInputText));\n evt.preventDefault();\n }\n\n /**\n * Perform search when user clicks Enter when on the input field. Emits the search event with the search text.\n */\n @HostListener('keydown.enter', ['$event'])\n onEnterKeyDown(evt: Event): void {\n this.search.next(new EclSearchFormEvent(this.searchInputText));\n evt.preventDefault();\n }\n\n /**\n * Assigns the new input text value to the 'searchInputText' property, each time the input is changed.\n * @param newValue \n */\n onModelChange(newValue: string): void {\n this.searchInputText = newValue;\n this.onChange(newValue);\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n writeValue(value: any): void {\n this.searchInputText = value;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n registerOnChange(fn: (_: any) => void): void {\n this.onChange = fn;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n registerOnTouched(fn: (_: any) => void): void {\n this.onTouched = fn;\n }\n}\n","<ecl-form-group>\n <input\n eclTextInput\n [(ngModel)]=\"searchInputText\"\n (ngModelChange)=\"onModelChange($event)\"\n type=\"search\"\n name=\"search-input\"\n placeholder=\"{{ placeholder || 'ecl.common.SEARCH' | translate }}\"\n class=\"ecl-search-form__text-input {{inputExtraClassses}}\" />\n</ecl-form-group>\n<button eclButton type=\"submit\" [variant]=\"eclThemeService.isECTheme() ? 'ghost': 'primary'\" (click)=\"onSearchClick($event)\"\n class=\"ecl-search-form__button {{buttonExtraClassses}}\">\n <ecl-icon [icon]=\"searchButtonIcon\" size=\"xs\"></ecl-icon>\n <span eclButtonLabel>\n {{ searchButtonLabel || 'ecl.common.SEARCH' | translate }}\n </span>\n</button>\n","import { NgModule } from '@angular/core';\nimport { EclSearchFormComponent } from './ecl-search-form.component';\n\n/**\n * Module that provides the EclSearchForm component.\n *\n * @deprecated Use {@link EUI_ECL_SEARCH_FORM} instead.\n */\n@NgModule({\n imports: [EclSearchFormComponent],\n exports: [EclSearchFormComponent],\n})\nexport class EclSearchFormModule {}\n","import { EclSearchFormComponent } from './ecl-search-form.component';\n\nexport * from './ecl-search-form.module';\nexport * from './ecl-search-form.component';\nexport * from './events/ecl-search-form.event';\n\nexport const EUI_ECL_SEARCH_FORM = [\n EclSearchFormComponent,\n] as const;","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"eui-ecl-components-ecl-search-form.mjs","sources":["../../components/ecl-search-form/events/ecl-search-form.event.ts","../../components/ecl-search-form/ecl-search-form.component.ts","../../components/ecl-search-form/ecl-search-form.component.html","../../components/ecl-search-form/ecl-search-form.module.ts","../../components/ecl-search-form/index.ts","../../components/ecl-search-form/eui-ecl-components-ecl-search-form.ts"],"sourcesContent":["import { EclBaseEvent } from '@eui/ecl/core';\n\nexport class EclSearchFormEvent extends EclBaseEvent {\n\tconstructor(public keyword: string) {\n\t\tsuper();\n\t}\n}\n","import {\n Component,\n EventEmitter,\n forwardRef,\n HostBinding,\n HostListener,\n Input,\n Output,\n Provider,\n inject,\n} from '@angular/core';\nimport { ControlValueAccessor, FormsModule, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\nimport { EclThemeService } from '@eui/ecl/core';\nimport { EclSearchFormEvent } from './events/ecl-search-form.event';\nimport { EclButtonModule } from '@eui/ecl/components/ecl-button';\nimport { EclFormGroupModule } from '@eui/ecl/components/ecl-form-group';\nimport { EclTextInputModule } from '@eui/ecl/components/ecl-text-input';\nimport { EclIconModule } from '@eui/ecl/components/ecl-icon';\n\nexport const ECL_SEARCH_FORM_VALUE_ACCESSOR: Provider = {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => EclSearchFormComponent),\n multi: true,\n};\n\nconst noop = (): void => {\n /** empty*/\n};\n\n/**\n * Component representing search field - input and button, in a responsive, styled layout.\n */\n@Component({\n selector: 'ecl-search-form',\n templateUrl: 'ecl-search-form.component.html',\n imports: [TranslateModule, FormsModule, EclButtonModule, EclFormGroupModule, EclTextInputModule, EclIconModule], // TODO: replace with new names EUI_ECL_...\n providers: [ECL_SEARCH_FORM_VALUE_ACCESSOR],\n})\nexport class EclSearchFormComponent extends ECLBaseDirective implements ControlValueAccessor {\n protected eclThemeService = inject(EclThemeService);\n\n /**\n * The current/default search text.\n */\n @Input() searchInputText: string;\n @Input() placeholder: string;\n @Input() searchButtonLabel: string;\n @Input() searchButtonIcon = 'search';\n @Input() buttonExtraClassses = '';\n @Input() inputExtraClassses = '';\n\n /**\n * Applies the base class `ecl-search-form` to the host element.\n */\n @HostBinding('class')\n get cssClasses(): string {\n return [super.getCssClasses('ecl-search-form')].join(' ').trim();\n }\n\n @HostBinding('attr.role') role = 'search';\n\n /**\n * This event is emited, when user performs the search action. Includes the search text from the input field.\n */\n // TODO: this output should be renamed in v20 - breaking change!\n // eslint-disable-next-line @angular-eslint/no-output-native\n @Output() search = new EventEmitter<EclSearchFormEvent>();\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n private onChange: (_: any) => void = noop;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n private onTouched: (_: any) => void = noop;\n\n /**\n * Perform search when user clicks the search button. Emits the search event with the search text.\n */\n onSearchClick(evt: Event): void {\n this.search.next(new EclSearchFormEvent(this.searchInputText));\n evt.preventDefault();\n }\n\n /**\n * Perform search when user clicks Enter when on the input field. Emits the search event with the search text.\n */\n @HostListener('keydown.enter', ['$event'])\n onEnterKeyDown(evt: Event): void {\n this.search.next(new EclSearchFormEvent(this.searchInputText));\n evt.preventDefault();\n }\n\n /**\n * Assigns the new input text value to the 'searchInputText' property, each time the input is changed.\n * @param newValue\n */\n onModelChange(newValue: string): void {\n this.searchInputText = newValue;\n this.onChange(newValue);\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n writeValue(value: any): void {\n this.searchInputText = value;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n registerOnChange(fn: (_: any) => void): void {\n this.onChange = fn;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n registerOnTouched(fn: (_: any) => void): void {\n this.onTouched = fn;\n }\n}\n","<ecl-form-group>\n <input\n eclTextInput\n [(ngModel)]=\"searchInputText\"\n (ngModelChange)=\"onModelChange($event)\"\n type=\"search\"\n name=\"search-input\"\n placeholder=\"{{ placeholder || 'ecl.common.SEARCH' | translate }}\"\n class=\"ecl-search-form__text-input {{inputExtraClassses}}\" />\n</ecl-form-group>\n<button eclButton type=\"submit\" [variant]=\"eclThemeService.isECTheme() ? 'ghost': 'primary'\" (click)=\"onSearchClick($event)\"\n class=\"ecl-search-form__button {{buttonExtraClassses}}\">\n <ecl-icon [icon]=\"searchButtonIcon\" size=\"xs\"></ecl-icon>\n <span eclButtonLabel>\n {{ searchButtonLabel || 'ecl.common.SEARCH' | translate }}\n </span>\n</button>\n","import { NgModule } from '@angular/core';\nimport { EclSearchFormComponent } from './ecl-search-form.component';\n\n/**\n * Module that provides the EclSearchForm component.\n *\n * @deprecated Use {@link EUI_ECL_SEARCH_FORM} instead.\n */\n@NgModule({\n imports: [EclSearchFormComponent],\n exports: [EclSearchFormComponent],\n})\nexport class EclSearchFormModule {}\n","import { EclSearchFormComponent } from './ecl-search-form.component';\n\nexport * from './ecl-search-form.module';\nexport * from './ecl-search-form.component';\nexport * from './events/ecl-search-form.event';\n\nexport const EUI_ECL_SEARCH_FORM = [\n EclSearchFormComponent,\n] as const;","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"eui-ecl-components-ecl-site-footer.mjs","sources":["../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-column.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-section.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-link.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-list.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.ts","../../components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.component.html","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-title.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.ts","../../components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.component.html","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-description.directive.ts","../../components/ecl-site-footer/ecl-site-footer.component.ts","../../components/ecl-site-footer/ecl-site-footer.component.html","../../components/ecl-site-footer/ecl-site-footer.module.ts","../../components/ecl-site-footer/index.ts","../../components/ecl-site-footer/eui-ecl-components-ecl-site-footer.ts"],"sourcesContent":["import { Directive, HostBinding } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class to a footer column.\n */\n@Directive({\n selector: '[eclSiteFooterColumn]',\n})\nexport class EclSiteFooterColumnDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__column') cmpClass = true;\n}\n\n/**\n * Directive, that applies a specific class to a footer row.\n */\n@Directive({\n selector: '[eclSiteFooterRow]',\n})\nexport class EclSiteFooterRowDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__row') cmpClass = true;\n}\n\n/**\n * Directive, that applies a specific class to footer content.\n * @deprecated - use 'eclSiteFooterTitle' instead.\n */\n@Directive({\n selector: '[eclSiteFooterContent]',\n})\nexport class EclSiteFooterContentDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__title') cmpClass = true;\n}\n","import { Directive, HostBinding, Input, booleanAttribute } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies specific classes to the section element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterSection]',\n})\nexport class EclSiteFooterSectionDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__section') cmpClass = true;\n /**\n * @deprecated - not used anymore. Will be removed in v20\n */\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__section--condensed') isCondensed = false;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__section--site-info') isSiteInfo = false;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__section--split-list') isSplitList = false;\n /**\n * If there should be a <hr> as separator with the next section.\n */\n @HostBinding('class.ecl-site-footer__section--separator') @Input({ transform: booleanAttribute }) hasSeparator = false;\n}\n","import { Directive, HostBinding } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class to a <a> element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterLink]',\n})\nexport class EclSiteFooterLinkDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__link') className = true;\n}\n\n/**\n * Directive, that applies a specific class to the <a> element for the logo in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterLogoLink]',\n})\nexport class EclSiteFooterLogoLinkDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-link') className = true;\n}\n\n/**\n * Directive, that applies a specific class to the <a> element for the logo in site footer.\n */\n@Directive({\n selector: 'img[eclSiteFooterLogoImage]',\n})\nexport class EclSiteFooterLogoImageDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-image') className = true;\n}\n\n/**\n * Directive, that applies a specific class to the <img> element for the logo in site footer.\n */\n@Directive({\n selector: 'picture[eclSiteFooterPicture]',\n})\nexport class EclSiteFooterPictureDirective extends ECLBaseDirective {\n @HostBinding('class') classNames = 'ecl-picture ecl-site-footer__picture';\n}\n","import { Directive, HostBinding, Input, booleanAttribute } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies specific classes to the list element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterList]',\n})\nexport class EclSiteFooterListDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__list') cmpClass = true;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__list--inline') isInline: boolean;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__list--columns') isColumns: boolean;\n}\n\n/**\n * Directive, that applies specific classes to the list item element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterListItem]',\n})\nexport class EclSiteFooterListItemDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__list-item') cmpClass = true;\n}\n\n/**\n * @deprecated - this directive is deprecated and will be removed in v20. Not used anymore.\n */\n@Directive({\n selector: '[eclSiteFooterLogoList]',\n})\nexport class EclSiteFooterLogoListDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-list') cmpClass = true;\n}\n\n/**\n * @deprecated - this directive is deprecated and will be removed in v20. Not used anymore.\n */\n@Directive({\n selector: '[eclSiteFooterLogoItem]',\n})\nexport class EclSiteFooterLogoItemDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-item') cmpClass = true;\n}\n\n/**\n * @deprecated - this directive is deprecated and will be removed in v20. Not used anymore.\n */\n@Directive({\n selector: '[eclSiteFooterLogo]',\n})\nexport class EclSiteFooterLogoDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo') cmpClass = true;\n}\n","import { Component, Input, booleanAttribute } from '@angular/core';\nimport { NgTemplateOutlet } from '@angular/common';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\nimport { EclLinkModule } from '@eui/ecl/components/ecl-link';\nimport { EclSiteFooterColumnDirective, EclSiteFooterRowDirective } from '../ecl-site-footer-column.directive';\nimport { EclSiteFooterSectionDirective } from '../ecl-site-footer-section.directive';\nimport { EclSiteFooterLinkDirective, EclSiteFooterLogoImageDirective, EclSiteFooterPictureDirective } from '../ecl-site-footer-link.directive';\nimport { EclSiteFooterListDirective, EclSiteFooterListItemDirective } from '../ecl-site-footer-list.directive';\n\n/**\n * There is some fixed content in the site footer, that cannot be changed by the user and is mandatory.\n * This component represents this fixed content.\n */\n@Component({\n selector: 'ecl-site-footer-fixed-content-ec',\n templateUrl: './ecl-site-footer-fixed-content.component.html',\n imports: [NgTemplateOutlet, TranslateModule, EclLinkModule, EclSiteFooterRowDirective, EclSiteFooterColumnDirective,\n EclSiteFooterSectionDirective, EclSiteFooterPictureDirective, EclSiteFooterLogoImageDirective,\n EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLinkDirective,\n ],\n})\nexport class EclSiteFooterFixedContentECComponent extends ECLBaseDirective {\n /**\n * The component is showing different content, depending if it's core site footer or not.\n */\n @Input({ transform: booleanAttribute }) isCore = false;\n /**\n * The code of the current language. Used to translate the content.\n */\n @Input() languageCode: string;\n /**\n * The code of the current language for the logo. If there is no logo for the current language, a default logo will be displayed.\n */\n @Input() ecLogoLanguageCode: string;\n /**\n * The rest of the content of the site footer.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n @Input() content: any;\n}\n","@if(isCore){\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n routerLink=\"/\"\n variant=\"standalone\"\n class=\"ecl-site-footer__logo-link\"\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <source\n srcset=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Commission\" />\n </picture>\n </a>\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </div>\n </div>\n\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STRATEGY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/strategy-and-policy_{{ languageCode }}\">\n {{ 'ecl.footer.STRATEGY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ABOUT-EUROPEAN-COMMISSION' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/about-european-commission_{{ languageCode }}\">\n {{ 'ecl.footer.ABOUT-EUROPEAN-COMMISSION' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.BUSINESS-ECONOMY-EURO' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/business-economy-euro_{{ languageCode }}\">\n {{ 'ecl.footer.BUSINESS-ECONOMY-EURO' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LIVE-WORK-TRAVEL' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/live-work-travel-eu_{{ languageCode }}\">\n {{ 'ecl.footer.LIVE-WORK-TRAVEL' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LAW' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/law_{{ languageCode }}\">\n {{ 'ecl.footer.LAW' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FUNDING-TENDERS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/funding-tenders_{{ languageCode }}\">\n {{ 'ecl.footer.FUNDING-TENDERS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.RESEARCH-INNOVATION' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/research-and-innovation_{{ languageCode }}\">\n {{ 'ecl.footer.RESEARCH-INNOVATION' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ENERGY-CLIMATE' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/energy-climate-change-environment_{{ languageCode }}\">\n {{ 'ecl.footer.ENERGY-CLIMATE' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.EDUCATION' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/education_{{ languageCode }}\">\n {{ 'ecl.footer.EDUCATION' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.AID-DEVELOPMENT' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/aid-development-cooperation-fundamental-rights_{{ languageCode }}\">\n {{ 'ecl.footer.AID-DEVELOPMENT' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FOOD' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/food-farming-fisheries_{{ languageCode }}\">\n {{ 'ecl.footer.FOOD' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.EU-REGIONAL' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/eu-regional-and-urban-development_{{ languageCode }}\">\n {{ 'ecl.footer.EU-REGIONAL' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.JOBS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/jobs-european-commission_{{ languageCode }}\">\n {{ 'ecl.footer.JOBS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STATS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/statistics_{{ languageCode }}\">\n {{ 'ecl.footer.STATS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.NEWS' | translate\"\n variant=\"standalone\"\n href=\"https://ec.europa.eu/commission/presscorner/home/{{ languageCode }}\">\n {{ 'ecl.footer.PRESS-CORNER' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.EVENTS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/events_{{ languageCode }}\">\n {{ 'ecl.footer.EVENTS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PUBLICATIONS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/publications_{{ languageCode }}\">\n {{ 'ecl.footer.PUBLICATIONS' | translate }}\n </a>\n </li>\n </ul>\n </div>\n\n <div eclSiteFooterSection>\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.CONTACT-EC' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/about-european-commission/contact_{{ languageCode }}\">\n {{ 'ecl.footer.CONTACT-EC' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ACCESSIBILITY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/accessibility-statement_{{ languageCode }}\">\n {{ 'ecl.footer.ACCESSIBILITY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://europa.eu/european-union/contact-eu/social-media-channels_{{ languageCode }}/#search?page=0&institutions=european_commission\">\n {{ 'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.RESOURCES-FOR-PARTNERS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/resources-partners_{{ languageCode }}\">\n {{ 'ecl.footer.RESOURCES-FOR-PARTNERS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.REPORT-IT-VULNERABILITY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice/vulnerability-disclosure-policy_{{ languageCode }}\">\n {{ 'ecl.footer.REPORT-IT-VULNERABILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n\n <div eclSiteFooterSection [isSplitList]=\"true\">\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n }\n@if(!isCore){\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n href=\"https://commission.europa.eu/index_{{ languageCode }}\"\n eclSiteFooterLogoLink\n variant=\"standalone\"\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <source\n srcset=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Commission\" />\n </picture>\n </a>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [isSplitList]=\"true\">\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.CONTACT-EC' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/about-european-commission/contact_{{ languageCode }}\">\n {{ 'ecl.footer.CONTACT-EC' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://europa.eu/european-union/contact-eu/social-media-channels_{{ languageCode }}#/search?page=0&institutions=european_commission\">\n {{ 'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.RESOURCES-FOR-PARTNERS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/resources-partners_{{ languageCode }}\">\n {{ 'ecl.footer.RESOURCES-FOR-PARTNERS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.REPORT-IT-VULNERABILITY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice/vulnerability-disclosure-policy_{{ languageCode }}\">\n {{ 'ecl.footer.REPORT-IT-VULNERABILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [isSplitList]=\"true\">\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n}\n","import { Directive, HostBinding, Input, booleanAttribute } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class for a title in ecl-site-footer component.\n */\n@Directive({\n selector: '[eclSiteFooterTitle]',\n})\nexport class EclSiteFooterTitleDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__title') cmpClass = true;\n\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__title--separator') isSeparator = false;\n}\n\n/**\n * Directive, that applies a specific class for the <a> element in a title in ecl-site-footer component.\n */\n@Directive({\n selector: '[eclSiteFooterTitleLink]',\n})\nexport class EclSiteFooterTitleLinkDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__title-link') cmpClass = true;\n}\n","import { Component, Input, booleanAttribute } from '@angular/core';\nimport { NgTemplateOutlet } from '@angular/common';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\nimport { EclLinkModule } from '@eui/ecl/components/ecl-link';\nimport { EclSiteFooterColumnDirective, EclSiteFooterRowDirective } from '../ecl-site-footer-column.directive';\nimport { EclSiteFooterSectionDirective } from '../ecl-site-footer-section.directive';\nimport { EclSiteFooterLinkDirective, EclSiteFooterLogoImageDirective, EclSiteFooterPictureDirective } from '../ecl-site-footer-link.directive';\nimport { EclSiteFooterListDirective, EclSiteFooterListItemDirective } from '../ecl-site-footer-list.directive';\nimport { EclSiteFooterTitleDirective } from '../ecl-site-footer-title.directive';\n\n/**\n * There is some fixed content in the site footer, that cannot be changed by the user and is mandatory.\n * This component represents this fixed content.\n */\n@Component({\n selector: 'ecl-site-footer-fixed-content-eu',\n templateUrl: './ecl-site-footer-fixed-content.component.html',\n imports: [NgTemplateOutlet, TranslateModule, EclLinkModule, EclSiteFooterRowDirective, EclSiteFooterColumnDirective,\n EclSiteFooterSectionDirective, EclSiteFooterPictureDirective, EclSiteFooterLogoImageDirective,\n EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLinkDirective, EclSiteFooterTitleDirective,\n ],\n})\nexport class EclSiteFooterFixedContentEUComponent extends ECLBaseDirective {\n /**\n * The component is showing different content, depending if it's core site footer or not.\n */\n @Input({ transform: booleanAttribute }) isCore = false;\n /**\n * The code of the current language. Used to translate the content.\n */\n @Input() languageCode: string;\n /**\n * The code of the current language for the logo. If there is no logo for the current language, a default logo will be displayed.\n */\n @Input() ecLogoLanguageCode: string;\n /**\n * The rest of the content of the site footer.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n @Input() content: any;\n\n private readonly availableLanguagesForLinkEib: string[] = ['fr', 'de', 'en'];\n private readonly defaultLanguage: string = 'en';\n\n getSupportedLanguageForLinkEib(): string {\n if (this.availableLanguagesForLinkEib.includes(this.languageCode)) {\n return this.languageCode;\n } else {\n return this.defaultLanguage;\n }\n }\n}\n","@if(isCore){\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n href=\"https://european-union.europa.eu/index_{{ ecLogoLanguageCode }}\"\n variant=\"standalone\"\n eclSiteFooterLogoLink\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <source\n srcset=\"./assets/images/ecl/eu/logo/standard-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"./assets/images/ecl/eu/logo/condensed-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Union logo\" />\n </picture>\n </a>\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </div>\n </div>\n\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.CONTACT-EU' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STRATEGY' | translate\"\n variant=\"standalone\"\n href=\"tel:0080067891011\">\n {{ 'ecl.footer.CALL-US' | translate }} 00 800 6 7 8 9 10 11\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/call-us_{{ languageCode }}\">\n {{ 'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.WRITE-TO-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/write-us_{{ languageCode }}\">\n {{ 'ecl.footer.WRITE-TO-US' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.MEET-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/meet-us_{{ languageCode }}\">\n {{ 'ecl.footer.MEET-US' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.SOCIAL-MEDIA' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/social-media-channels_{{ languageCode }}\">\n {{ 'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.LEGAL' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ACCESSIBILITY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/web-accessibility-policy_{{ languageCode }}\">\n {{ 'ecl.footer.ACCESSIBILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.EU-INSTITUTIONS-AND-BODIES' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/institutions-law-budget/institutions-and-bodies/search-all-eu-institutions-and-bodies_{{\n languageCode }}\">\n {{ 'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n}\n@if(!isCore){\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n href=\"https://european-union.europa.eu/index_{{ ecLogoLanguageCode }}\"\n variant=\"standalone\"\n class=\"ecl-site-footer__logo-link\"\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <source\n srcset=\"./assets/images/ecl/eu/logo/standard-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"./assets/images/ecl/eu/logo/condensed-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Union logo\" />\n </picture>\n </a>\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a href=\"https://european-union.europa.eu/index_{{ ecLogoLanguageCode }}\" eclLink variant=\"standalone\" class=\"ecl-site-footer__link\">\n {{ 'ecl.footer.DISCOVER-MORE-ON' | translate }} europa.eu</a>\n </li>\n </ul>\n </div>\n </div>\n\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.CONTACT-EU' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STRATEGY' | translate\"\n variant=\"standalone\"\n href=\"tel:0080067891011\">\n {{ 'ecl.footer.CALL-US' | translate }} 00 800 6 7 8 9 10 11\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/call-us_{{ languageCode }}\">\n {{ 'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.WRITE-TO-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/write-us_{{ languageCode }}\">\n {{ 'ecl.footer.WRITE-TO-US' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.MEET-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/meet-us_{{ languageCode }}\">\n {{ 'ecl.footer.MEET-US' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.SOCIAL-MEDIA' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/social-media-channels_{{ languageCode }}\">\n {{ 'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.LEGAL' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ACCESSIBILITY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/web-accessibility-policy_{{ languageCode }}\">\n {{ 'ecl.footer.ACCESSIBILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.EU-INSTITUTIONS-AND-BODIES' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/institutions-law-budget/institutions-and-bodies/search-all-eu-institutions-and-bodies_{{ languageCode }}\">\n {{ 'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n}\n","import { Directive, HostBinding } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class to footer description.\n */\n@Directive({\n selector: '[eclSiteFooterDescription]',\n})\nexport class EclSiteFooterDescriptionDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__description') cmpClass = true;\n}\n","import { Component, HostBinding, Input, OnDestroy, OnInit, booleanAttribute, inject } from '@angular/core';\nimport { I18nService } from '@eui/core';\nimport { ECLBaseDirective, EclThemeService } from '@eui/ecl/core';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent } from './ecl-footer-elements';\nimport { AsyncPipe } from '@angular/common';\n\n/**\n * The site footer component content provides supplementary information such as a sitemap, copyright and legal notices,\n * privacy and accessibility statements, social media and contact information as well as various links to other\n * important sections within the EC ecosystem.\n */\n@Component({\n selector: 'ecl-site-footer',\n templateUrl: './ecl-site-footer.component.html',\n imports: [AsyncPipe, EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent],\n})\nexport class EclSiteFooterComponent extends ECLBaseDirective implements OnInit, OnDestroy {\n protected i18nService = inject(I18nService);\n eclThemeService = inject(EclThemeService);\n\n /**\n * The current language of the page.\n */\n languageCode = 'en';\n /**\n * If it's a core site footer. The content of the footer for the Core configuration is specific and all items mandatory.\n */\n @Input({ transform: booleanAttribute }) isCore = false;\n\n @HostBinding('class')\n get cssClasses(): string {\n return [super.getCssClasses('ecl-site-footer'), this.isCore ? 'ecl-site-footer--split-columns' : ''].join(' ').trim();\n }\n\n /**\n * The role of the component is 'contentinfo' and should not be changed.\n */\n @HostBinding('attr.role') role = 'contentinfo';\n\n private destroy$: Subject<boolean> = new Subject<boolean>();\n\n ngOnInit(): void {\n this.handleLanguageChangeState();\n }\n\n ngOnDestroy(): void {\n this.destroy$.next(true);\n this.destroy$.unsubscribe();\n }\n\n private handleLanguageChangeState(): void {\n this.i18nService.getState().pipe(takeUntil(this.destroy$)).subscribe((lang) => {\n this.languageCode = lang.activeLang;\n });\n }\n}\n","<div class=\"ecl-container ecl-site-footer__container\">\n @if(eclThemeService.isEC$ | async) {\n <ecl-site-footer-fixed-content-ec\n [isCore]=\"isCore\"\n [languageCode]=\"languageCode\"\n [ecLogoLanguageCode]=\"languageCode\"\n [content]=\"content\">\n </ecl-site-footer-fixed-content-ec>\n }\n @if(eclThemeService.isEU$ | async) {\n <ecl-site-footer-fixed-content-eu\n [isCore]=\"isCore\"\n [languageCode]=\"languageCode\"\n [ecLogoLanguageCode]=\"languageCode\"\n [content]=\"content\">\n </ecl-site-footer-fixed-content-eu>\n }\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n","import { NgModule } from '@angular/core';\nimport { EclSiteFooterColumnDirective, EclSiteFooterContentDirective, EclSiteFooterDescriptionDirective, EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent, EclSiteFooterLinkDirective, EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLogoDirective, EclSiteFooterLogoImageDirective, EclSiteFooterLogoItemDirective, EclSiteFooterLogoLinkDirective, EclSiteFooterLogoListDirective, EclSiteFooterPictureDirective, EclSiteFooterRowDirective, EclSiteFooterSectionDirective, EclSiteFooterTitleDirective, EclSiteFooterTitleLinkDirective } from './ecl-footer-elements';\nimport { EclSiteFooterComponent } from './ecl-site-footer.component';\n\nconst COMPONENTS = [\n EclSiteFooterFixedContentECComponent,\n EclSiteFooterFixedContentEUComponent,\n EclSiteFooterComponent,\n EclSiteFooterSectionDirective,\n EclSiteFooterTitleDirective,\n EclSiteFooterDescriptionDirective,\n EclSiteFooterListDirective,\n EclSiteFooterLinkDirective,\n EclSiteFooterColumnDirective,\n EclSiteFooterLogoListDirective,\n EclSiteFooterLogoItemDirective,\n EclSiteFooterLogoDirective,\n EclSiteFooterListItemDirective,\n EclSiteFooterListDirective,\n EclSiteFooterRowDirective,\n EclSiteFooterContentDirective,\n EclSiteFooterTitleLinkDirective,\n EclSiteFooterLogoLinkDirective,\n EclSiteFooterPictureDirective,\n EclSiteFooterLogoImageDirective,\n];\n\n/**\n * Module that provides the EclSiteFooterComponent and it's dependencies.\n *\n * @deprecated Use {@link EUI_ECL_SITE_FOOTER} instead.\n */\n@NgModule({\n imports: [...COMPONENTS],\n exports: [...COMPONENTS],\n})\nexport class EclSiteFooterModule {}\n","import { EclSiteFooterColumnDirective, EclSiteFooterContentDirective, EclSiteFooterDescriptionDirective, EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent, EclSiteFooterLinkDirective, EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLogoDirective, EclSiteFooterLogoImageDirective, EclSiteFooterLogoItemDirective, EclSiteFooterLogoLinkDirective, EclSiteFooterLogoListDirective, EclSiteFooterPictureDirective, EclSiteFooterRowDirective, EclSiteFooterSectionDirective, EclSiteFooterTitleDirective, EclSiteFooterTitleLinkDirective } from './ecl-footer-elements';\nimport { EclSiteFooterComponent } from './ecl-site-footer.component';\n\nexport * from './ecl-site-footer.module';\nexport * from './ecl-site-footer.component';\nexport * from './ecl-footer-elements/index';\n\nexport const EUI_ECL_SITE_FOOTER = [\n EclSiteFooterFixedContentECComponent,\n EclSiteFooterFixedContentEUComponent,\n EclSiteFooterComponent,\n EclSiteFooterSectionDirective,\n EclSiteFooterTitleDirective,\n EclSiteFooterDescriptionDirective,\n EclSiteFooterListDirective,\n EclSiteFooterLinkDirective,\n EclSiteFooterColumnDirective,\n EclSiteFooterLogoListDirective,\n EclSiteFooterLogoItemDirective,\n EclSiteFooterLogoDirective,\n EclSiteFooterListItemDirective,\n EclSiteFooterListDirective,\n EclSiteFooterRowDirective,\n EclSiteFooterContentDirective,\n EclSiteFooterTitleLinkDirective,\n EclSiteFooterLogoLinkDirective,\n EclSiteFooterPictureDirective,\n EclSiteFooterLogoImageDirective,\n] as const;","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"eui-ecl-components-ecl-site-footer.mjs","sources":["../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-column.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-section.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-link.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-list.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.ts","../../components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.component.html","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-title.directive.ts","../../components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.ts","../../components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.component.html","../../components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-description.directive.ts","../../components/ecl-site-footer/ecl-site-footer.component.ts","../../components/ecl-site-footer/ecl-site-footer.component.html","../../components/ecl-site-footer/ecl-site-footer.module.ts","../../components/ecl-site-footer/index.ts","../../components/ecl-site-footer/eui-ecl-components-ecl-site-footer.ts"],"sourcesContent":["import { Directive, HostBinding } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class to a footer column.\n */\n@Directive({\n selector: '[eclSiteFooterColumn]',\n})\nexport class EclSiteFooterColumnDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__column') cmpClass = true;\n}\n\n/**\n * Directive, that applies a specific class to a footer row.\n */\n@Directive({\n selector: '[eclSiteFooterRow]',\n})\nexport class EclSiteFooterRowDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__row') cmpClass = true;\n}\n\n/**\n * Directive, that applies a specific class to footer content.\n * @deprecated - use 'eclSiteFooterTitle' instead.\n */\n@Directive({\n selector: '[eclSiteFooterContent]',\n})\nexport class EclSiteFooterContentDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__title') cmpClass = true;\n}\n","import { Directive, HostBinding, Input, booleanAttribute } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies specific classes to the section element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterSection]',\n})\nexport class EclSiteFooterSectionDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__section') cmpClass = true;\n /**\n * @deprecated - not used anymore. Will be removed in v20\n */\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__section--condensed') isCondensed = false;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__section--site-info') isSiteInfo = false;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__section--split-list') isSplitList = false;\n /**\n * If there should be a <hr> as separator with the next section.\n */\n @HostBinding('class.ecl-site-footer__section--separator') @Input({ transform: booleanAttribute }) hasSeparator = false;\n}\n","import { Directive, HostBinding } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class to a <a> element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterLink]',\n})\nexport class EclSiteFooterLinkDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__link') className = true;\n}\n\n/**\n * Directive, that applies a specific class to the <a> element for the logo in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterLogoLink]',\n})\nexport class EclSiteFooterLogoLinkDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-link') className = true;\n}\n\n/**\n * Directive, that applies a specific class to the <a> element for the logo in site footer.\n */\n@Directive({\n selector: 'img[eclSiteFooterLogoImage]',\n})\nexport class EclSiteFooterLogoImageDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-image') className = true;\n}\n\n/**\n * Directive, that applies a specific class to the <img> element for the logo in site footer.\n */\n@Directive({\n selector: 'picture[eclSiteFooterPicture]',\n})\nexport class EclSiteFooterPictureDirective extends ECLBaseDirective {\n @HostBinding('class') classNames = 'ecl-picture ecl-site-footer__picture';\n}\n","import { Directive, HostBinding, Input, booleanAttribute } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies specific classes to the list element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterList]',\n})\nexport class EclSiteFooterListDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__list') cmpClass = true;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__list--inline') isInline: boolean;\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__list--columns') isColumns: boolean;\n}\n\n/**\n * Directive, that applies specific classes to the list item element in site footer.\n */\n@Directive({\n selector: '[eclSiteFooterListItem]',\n})\nexport class EclSiteFooterListItemDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__list-item') cmpClass = true;\n}\n\n/**\n * @deprecated - this directive is deprecated and will be removed in v20. Not used anymore.\n */\n@Directive({\n selector: '[eclSiteFooterLogoList]',\n})\nexport class EclSiteFooterLogoListDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-list') cmpClass = true;\n}\n\n/**\n * @deprecated - this directive is deprecated and will be removed in v20. Not used anymore.\n */\n@Directive({\n selector: '[eclSiteFooterLogoItem]',\n})\nexport class EclSiteFooterLogoItemDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo-item') cmpClass = true;\n}\n\n/**\n * @deprecated - this directive is deprecated and will be removed in v20. Not used anymore.\n */\n@Directive({\n selector: '[eclSiteFooterLogo]',\n})\nexport class EclSiteFooterLogoDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__logo') cmpClass = true;\n}\n","import { Component, Input, booleanAttribute } from '@angular/core';\nimport { NgTemplateOutlet } from '@angular/common';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\nimport { EclLinkModule } from '@eui/ecl/components/ecl-link';\nimport { EclSiteFooterColumnDirective, EclSiteFooterRowDirective } from '../ecl-site-footer-column.directive';\nimport { EclSiteFooterSectionDirective } from '../ecl-site-footer-section.directive';\nimport { EclSiteFooterLinkDirective, EclSiteFooterLogoImageDirective, EclSiteFooterPictureDirective } from '../ecl-site-footer-link.directive';\nimport { EclSiteFooterListDirective, EclSiteFooterListItemDirective } from '../ecl-site-footer-list.directive';\n\n/**\n * There is some fixed content in the site footer, that cannot be changed by the user and is mandatory.\n * This component represents this fixed content.\n */\n@Component({\n selector: 'ecl-site-footer-fixed-content-ec',\n templateUrl: './ecl-site-footer-fixed-content.component.html',\n imports: [NgTemplateOutlet, TranslateModule, EclLinkModule, EclSiteFooterRowDirective, EclSiteFooterColumnDirective,\n EclSiteFooterSectionDirective, EclSiteFooterPictureDirective, EclSiteFooterLogoImageDirective,\n EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLinkDirective,\n ],\n})\nexport class EclSiteFooterFixedContentECComponent extends ECLBaseDirective {\n /**\n * The component is showing different content, depending if it's core site footer or not.\n */\n @Input({ transform: booleanAttribute }) isCore = false;\n /**\n * The code of the current language. Used to translate the content.\n */\n @Input() languageCode: string;\n /**\n * The code of the current language for the logo. If there is no logo for the current language, a default logo will be displayed.\n */\n @Input() ecLogoLanguageCode: string;\n /**\n * The rest of the content of the site footer.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n @Input() content: any;\n}\n","@if(isCore){\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n routerLink=\"/\"\n variant=\"standalone\"\n class=\"ecl-site-footer__logo-link\"\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <source\n srcset=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Commission\" />\n </picture>\n </a>\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </div>\n </div>\n\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STRATEGY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/strategy-and-policy_{{ languageCode }}\">\n {{ 'ecl.footer.STRATEGY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ABOUT-EUROPEAN-COMMISSION' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/about-european-commission_{{ languageCode }}\">\n {{ 'ecl.footer.ABOUT-EUROPEAN-COMMISSION' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.BUSINESS-ECONOMY-EURO' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/business-economy-euro_{{ languageCode }}\">\n {{ 'ecl.footer.BUSINESS-ECONOMY-EURO' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LIVE-WORK-TRAVEL' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/live-work-travel-eu_{{ languageCode }}\">\n {{ 'ecl.footer.LIVE-WORK-TRAVEL' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LAW' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/law_{{ languageCode }}\">\n {{ 'ecl.footer.LAW' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FUNDING-TENDERS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/funding-tenders_{{ languageCode }}\">\n {{ 'ecl.footer.FUNDING-TENDERS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.RESEARCH-INNOVATION' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/research-and-innovation_{{ languageCode }}\">\n {{ 'ecl.footer.RESEARCH-INNOVATION' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ENERGY-CLIMATE' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/energy-climate-change-environment_{{ languageCode }}\">\n {{ 'ecl.footer.ENERGY-CLIMATE' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.EDUCATION' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/education_{{ languageCode }}\">\n {{ 'ecl.footer.EDUCATION' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.AID-DEVELOPMENT' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/aid-development-cooperation-fundamental-rights_{{ languageCode }}\">\n {{ 'ecl.footer.AID-DEVELOPMENT' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FOOD' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/food-farming-fisheries_{{ languageCode }}\">\n {{ 'ecl.footer.FOOD' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.EU-REGIONAL' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/eu-regional-and-urban-development_{{ languageCode }}\">\n {{ 'ecl.footer.EU-REGIONAL' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.JOBS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/jobs-european-commission_{{ languageCode }}\">\n {{ 'ecl.footer.JOBS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STATS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/statistics_{{ languageCode }}\">\n {{ 'ecl.footer.STATS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.NEWS' | translate\"\n variant=\"standalone\"\n href=\"https://ec.europa.eu/commission/presscorner/home/{{ languageCode }}\">\n {{ 'ecl.footer.PRESS-CORNER' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.EVENTS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/events_{{ languageCode }}\">\n {{ 'ecl.footer.EVENTS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PUBLICATIONS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/publications_{{ languageCode }}\">\n {{ 'ecl.footer.PUBLICATIONS' | translate }}\n </a>\n </li>\n </ul>\n </div>\n\n <div eclSiteFooterSection>\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.CONTACT-EC' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/about-european-commission/contact_{{ languageCode }}\">\n {{ 'ecl.footer.CONTACT-EC' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ACCESSIBILITY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/accessibility-statement_{{ languageCode }}\">\n {{ 'ecl.footer.ACCESSIBILITY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://europa.eu/european-union/contact-eu/social-media-channels_{{ languageCode }}/#search?page=0&institutions=european_commission\">\n {{ 'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.RESOURCES-FOR-PARTNERS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/resources-partners_{{ languageCode }}\">\n {{ 'ecl.footer.RESOURCES-FOR-PARTNERS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.REPORT-IT-VULNERABILITY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice/vulnerability-disclosure-policy_{{ languageCode }}\">\n {{ 'ecl.footer.REPORT-IT-VULNERABILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n\n <div eclSiteFooterSection [isSplitList]=\"true\">\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n }\n@if(!isCore){\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n href=\"https://commission.europa.eu/index_{{ languageCode }}\"\n eclSiteFooterLogoLink\n variant=\"standalone\"\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-COMMISSION' | translate\">\n <source\n srcset=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"assets/images/ecl/ec/logo/negative/logo-ec--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Commission\" />\n </picture>\n </a>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [isSplitList]=\"true\">\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.CONTACT-EC' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/about-european-commission/contact_{{ languageCode }}\">\n {{ 'ecl.footer.CONTACT-EC' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://europa.eu/european-union/contact-eu/social-media-channels_{{ languageCode }}#/search?page=0&institutions=european_commission\">\n {{ 'ecl.footer.FOLLOW-EUROPEAN-COMMISSION-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.RESOURCES-FOR-PARTNERS' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/resources-partners_{{ languageCode }}\">\n {{ 'ecl.footer.RESOURCES-FOR-PARTNERS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.REPORT-IT-VULNERABILITY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice/vulnerability-disclosure-policy_{{ languageCode }}\">\n {{ 'ecl.footer.REPORT-IT-VULNERABILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [isSplitList]=\"true\">\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES-OUR-WEBSITES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n isInverted\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://commission.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n}\n","import { Directive, HostBinding, Input, booleanAttribute } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class for a title in ecl-site-footer component.\n */\n@Directive({\n selector: '[eclSiteFooterTitle]',\n})\nexport class EclSiteFooterTitleDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__title') cmpClass = true;\n\n @Input({ transform: booleanAttribute }) @HostBinding('class.ecl-site-footer__title--separator') isSeparator = false;\n}\n\n/**\n * Directive, that applies a specific class for the <a> element in a title in ecl-site-footer component.\n */\n@Directive({\n selector: '[eclSiteFooterTitleLink]',\n})\nexport class EclSiteFooterTitleLinkDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__title-link') cmpClass = true;\n}\n","import { Component, Input, booleanAttribute } from '@angular/core';\nimport { NgTemplateOutlet } from '@angular/common';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\nimport { EclLinkModule } from '@eui/ecl/components/ecl-link';\nimport { EclSiteFooterColumnDirective, EclSiteFooterRowDirective } from '../ecl-site-footer-column.directive';\nimport { EclSiteFooterSectionDirective } from '../ecl-site-footer-section.directive';\nimport { EclSiteFooterLinkDirective, EclSiteFooterLogoImageDirective, EclSiteFooterPictureDirective } from '../ecl-site-footer-link.directive';\nimport { EclSiteFooterListDirective, EclSiteFooterListItemDirective } from '../ecl-site-footer-list.directive';\nimport { EclSiteFooterTitleDirective } from '../ecl-site-footer-title.directive';\n\n/**\n * There is some fixed content in the site footer, that cannot be changed by the user and is mandatory.\n * This component represents this fixed content.\n */\n@Component({\n selector: 'ecl-site-footer-fixed-content-eu',\n templateUrl: './ecl-site-footer-fixed-content.component.html',\n imports: [NgTemplateOutlet, TranslateModule, EclLinkModule, EclSiteFooterRowDirective, EclSiteFooterColumnDirective,\n EclSiteFooterSectionDirective, EclSiteFooterPictureDirective, EclSiteFooterLogoImageDirective,\n EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLinkDirective, EclSiteFooterTitleDirective,\n ],\n})\nexport class EclSiteFooterFixedContentEUComponent extends ECLBaseDirective {\n /**\n * The component is showing different content, depending if it's core site footer or not.\n */\n @Input({ transform: booleanAttribute }) isCore = false;\n /**\n * The code of the current language. Used to translate the content.\n */\n @Input() languageCode: string;\n /**\n * The code of the current language for the logo. If there is no logo for the current language, a default logo will be displayed.\n */\n @Input() ecLogoLanguageCode: string;\n /**\n * The rest of the content of the site footer.\n */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n @Input() content: any;\n\n private readonly availableLanguagesForLinkEib: string[] = ['fr', 'de', 'en'];\n private readonly defaultLanguage: string = 'en';\n\n getSupportedLanguageForLinkEib(): string {\n if (this.availableLanguagesForLinkEib.includes(this.languageCode)) {\n return this.languageCode;\n } else {\n return this.defaultLanguage;\n }\n }\n}\n","@if(isCore){\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n href=\"https://european-union.europa.eu/index_{{ ecLogoLanguageCode }}\"\n variant=\"standalone\"\n eclSiteFooterLogoLink\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <source\n srcset=\"./assets/images/ecl/eu/logo/standard-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"./assets/images/ecl/eu/logo/condensed-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Union logo\" />\n </picture>\n </a>\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n </div>\n </div>\n\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.CONTACT-EU' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STRATEGY' | translate\"\n variant=\"standalone\"\n href=\"tel:0080067891011\">\n {{ 'ecl.footer.CALL-US' | translate }} 00 800 6 7 8 9 10 11\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/call-us_{{ languageCode }}\">\n {{ 'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.WRITE-TO-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/write-us_{{ languageCode }}\">\n {{ 'ecl.footer.WRITE-TO-US' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.MEET-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/meet-us_{{ languageCode }}\">\n {{ 'ecl.footer.MEET-US' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.SOCIAL-MEDIA' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/social-media-channels_{{ languageCode }}\">\n {{ 'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.LEGAL' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ACCESSIBILITY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/web-accessibility-policy_{{ languageCode }}\">\n {{ 'ecl.footer.ACCESSIBILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.EU-INSTITUTIONS-AND-BODIES' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/institutions-law-budget/institutions-and-bodies/search-all-eu-institutions-and-bodies_{{\n languageCode }}\">\n {{ 'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n}\n@if(!isCore){\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\n\n <div eclSiteFooterRow>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection>\n <a\n eclLink\n href=\"https://european-union.europa.eu/index_{{ ecLogoLanguageCode }}\"\n variant=\"standalone\"\n class=\"ecl-site-footer__logo-link\"\n [attr.aria-label]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <picture eclSiteFooterPicture [attr.title]=\"'ecl.footer.EUROPEAN-UNION' | translate\">\n <source\n srcset=\"./assets/images/ecl/eu/logo/standard-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n media=\"(min-width: 996px)\" />\n <img\n eclSiteFooterLogoImage\n src=\"./assets/images/ecl/eu/logo/condensed-version/positive/logo-eu--{{ ecLogoLanguageCode }}.svg\"\n alt=\"European Union logo\" />\n </picture>\n </a>\n <ul eclSiteFooterList>\n <li eclSiteFooterListItem>\n <a href=\"https://european-union.europa.eu/index_{{ ecLogoLanguageCode }}\" eclLink variant=\"standalone\" class=\"ecl-site-footer__link\">\n {{ 'ecl.footer.DISCOVER-MORE-ON' | translate }} europa.eu</a>\n </li>\n </ul>\n </div>\n </div>\n\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.CONTACT-EU' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.STRATEGY' | translate\"\n variant=\"standalone\"\n href=\"tel:0080067891011\">\n {{ 'ecl.footer.CALL-US' | translate }} 00 800 6 7 8 9 10 11\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/call-us_{{ languageCode }}\">\n {{ 'ecl.footer.USE-OTHER-TELEPHONE-OPTIONS' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.WRITE-TO-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/write-us_{{ languageCode }}\">\n {{ 'ecl.footer.WRITE-TO-US' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.MEET-US' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/meet-us_{{ languageCode }}\">\n {{ 'ecl.footer.MEET-US' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.SOCIAL-MEDIA' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/contact-eu/social-media-channels_{{ languageCode }}\">\n {{ 'ecl.footer.SEARCH-FOR-EU-SOCIAL-MEDIA' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n <div eclSiteFooterColumn>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.LEGAL' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LANGUAGES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/languages-our-websites_{{ languageCode }}\">\n {{ 'ecl.footer.LANGUAGES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.PRIVACY-POLICY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/privacy-policy_{{ languageCode }}\">\n {{ 'ecl.footer.PRIVACY-POLICY' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.LEGAL-NOTICE' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/legal-notice_{{ languageCode }}\">\n {{ 'ecl.footer.LEGAL-NOTICE' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.COOKIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/cookies_{{ languageCode }}\">\n {{ 'ecl.footer.COOKIES' | translate }}\n </a>\n </li>\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.ACCESSIBILITY' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/web-accessibility-policy_{{ languageCode }}\">\n {{ 'ecl.footer.ACCESSIBILITY' | translate }}\n </a>\n </li>\n </ul>\n </div>\n <div eclSiteFooterSection [hasSeparator]=\"true\">\n <div eclSiteFooterTitle isSeparator>\n {{ 'ecl.footer.EU-INSTITUTIONS-AND-BODIES' | translate }}\n </div>\n <ul eclSiteFooterList [isColumns]=\"true\">\n <li eclSiteFooterListItem>\n <a\n eclLink\n eclSiteFooterLink\n [attr.aria-label]=\"'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate\"\n variant=\"standalone\"\n href=\"https://european-union.europa.eu/institutions-law-budget/institutions-and-bodies/search-all-eu-institutions-and-bodies_{{ languageCode }}\">\n {{ 'ecl.footer.SEARCH-EU-INSTITUTIONS-AND-BODIES' | translate }}\n </a>\n </li>\n </ul>\n </div>\n </div>\n </div>\n}\n","import { Directive, HostBinding } from '@angular/core';\nimport { ECLBaseDirective } from '@eui/ecl/core';\n\n/**\n * Directive, that applies a specific class to footer description.\n */\n@Directive({\n selector: '[eclSiteFooterDescription]',\n})\nexport class EclSiteFooterDescriptionDirective extends ECLBaseDirective {\n @HostBinding('class.ecl-site-footer__description') cmpClass = true;\n}\n","import { Component, HostBinding, Input, OnDestroy, OnInit, booleanAttribute, inject } from '@angular/core';\nimport { AsyncPipe } from '@angular/common';\nimport { I18nService } from '@eui/core';\nimport { ECLBaseDirective, EclThemeService } from '@eui/ecl/core';\nimport { Subject } from 'rxjs';\nimport { takeUntil } from 'rxjs/operators';\nimport { EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent } from './ecl-footer-elements';\n\n/**\n * The site footer component content provides supplementary information such as a sitemap, copyright and legal notices,\n * privacy and accessibility statements, social media and contact information as well as various links to other\n * important sections within the EC ecosystem.\n */\n@Component({\n selector: 'ecl-site-footer',\n templateUrl: './ecl-site-footer.component.html',\n imports: [AsyncPipe, EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent],\n})\nexport class EclSiteFooterComponent extends ECLBaseDirective implements OnInit, OnDestroy {\n protected i18nService = inject(I18nService);\n eclThemeService = inject(EclThemeService);\n\n /**\n * The current language of the page.\n */\n languageCode = 'en';\n /**\n * If it's a core site footer. The content of the footer for the Core configuration is specific and all items mandatory.\n */\n @Input({ transform: booleanAttribute }) isCore = false;\n\n @HostBinding('class')\n get cssClasses(): string {\n return [super.getCssClasses('ecl-site-footer'), this.isCore ? 'ecl-site-footer--split-columns' : ''].join(' ').trim();\n }\n\n /**\n * The role of the component is 'contentinfo' and should not be changed.\n */\n @HostBinding('attr.role') role = 'contentinfo';\n\n private destroy$: Subject<boolean> = new Subject<boolean>();\n\n ngOnInit(): void {\n this.handleLanguageChangeState();\n }\n\n ngOnDestroy(): void {\n this.destroy$.next(true);\n this.destroy$.unsubscribe();\n }\n\n private handleLanguageChangeState(): void {\n this.i18nService.getState().pipe(takeUntil(this.destroy$)).subscribe((lang) => {\n this.languageCode = lang.activeLang;\n });\n }\n}\n","<div class=\"ecl-container ecl-site-footer__container\">\n @if(eclThemeService.isEC$ | async) {\n <ecl-site-footer-fixed-content-ec\n [isCore]=\"isCore\"\n [languageCode]=\"languageCode\"\n [ecLogoLanguageCode]=\"languageCode\"\n [content]=\"content\">\n </ecl-site-footer-fixed-content-ec>\n }\n @if(eclThemeService.isEU$ | async) {\n <ecl-site-footer-fixed-content-eu\n [isCore]=\"isCore\"\n [languageCode]=\"languageCode\"\n [ecLogoLanguageCode]=\"languageCode\"\n [content]=\"content\">\n </ecl-site-footer-fixed-content-eu>\n }\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n","import { NgModule } from '@angular/core';\nimport { EclSiteFooterColumnDirective, EclSiteFooterContentDirective, EclSiteFooterDescriptionDirective, EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent, EclSiteFooterLinkDirective, EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLogoDirective, EclSiteFooterLogoImageDirective, EclSiteFooterLogoItemDirective, EclSiteFooterLogoLinkDirective, EclSiteFooterLogoListDirective, EclSiteFooterPictureDirective, EclSiteFooterRowDirective, EclSiteFooterSectionDirective, EclSiteFooterTitleDirective, EclSiteFooterTitleLinkDirective } from './ecl-footer-elements';\nimport { EclSiteFooterComponent } from './ecl-site-footer.component';\n\nconst COMPONENTS = [\n EclSiteFooterFixedContentECComponent,\n EclSiteFooterFixedContentEUComponent,\n EclSiteFooterComponent,\n EclSiteFooterSectionDirective,\n EclSiteFooterTitleDirective,\n EclSiteFooterDescriptionDirective,\n EclSiteFooterListDirective,\n EclSiteFooterLinkDirective,\n EclSiteFooterColumnDirective,\n EclSiteFooterLogoListDirective,\n EclSiteFooterLogoItemDirective,\n EclSiteFooterLogoDirective,\n EclSiteFooterListItemDirective,\n EclSiteFooterListDirective,\n EclSiteFooterRowDirective,\n EclSiteFooterContentDirective,\n EclSiteFooterTitleLinkDirective,\n EclSiteFooterLogoLinkDirective,\n EclSiteFooterPictureDirective,\n EclSiteFooterLogoImageDirective,\n];\n\n/**\n * Module that provides the EclSiteFooterComponent and it's dependencies.\n *\n * @deprecated Use {@link EUI_ECL_SITE_FOOTER} instead.\n */\n@NgModule({\n imports: [...COMPONENTS],\n exports: [...COMPONENTS],\n})\nexport class EclSiteFooterModule {}\n","import { EclSiteFooterColumnDirective, EclSiteFooterContentDirective, EclSiteFooterDescriptionDirective, EclSiteFooterFixedContentECComponent, EclSiteFooterFixedContentEUComponent, EclSiteFooterLinkDirective, EclSiteFooterListDirective, EclSiteFooterListItemDirective, EclSiteFooterLogoDirective, EclSiteFooterLogoImageDirective, EclSiteFooterLogoItemDirective, EclSiteFooterLogoLinkDirective, EclSiteFooterLogoListDirective, EclSiteFooterPictureDirective, EclSiteFooterRowDirective, EclSiteFooterSectionDirective, EclSiteFooterTitleDirective, EclSiteFooterTitleLinkDirective } from './ecl-footer-elements';\nimport { EclSiteFooterComponent } from './ecl-site-footer.component';\n\nexport * from './ecl-site-footer.module';\nexport * from './ecl-site-footer.component';\nexport * from './ecl-footer-elements/index';\n\nexport const EUI_ECL_SITE_FOOTER = [\n EclSiteFooterFixedContentECComponent,\n EclSiteFooterFixedContentEUComponent,\n EclSiteFooterComponent,\n EclSiteFooterSectionDirective,\n EclSiteFooterTitleDirective,\n EclSiteFooterDescriptionDirective,\n EclSiteFooterListDirective,\n EclSiteFooterLinkDirective,\n EclSiteFooterColumnDirective,\n EclSiteFooterLogoListDirective,\n EclSiteFooterLogoItemDirective,\n EclSiteFooterLogoDirective,\n EclSiteFooterListItemDirective,\n EclSiteFooterListDirective,\n EclSiteFooterRowDirective,\n EclSiteFooterContentDirective,\n EclSiteFooterTitleLinkDirective,\n EclSiteFooterLogoLinkDirective,\n EclSiteFooterPictureDirective,\n EclSiteFooterLogoImageDirective,\n] as const;","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -11,13 +11,13 @@ import * as i3 from '@eui/ecl/components/ecl-button';
11
11
  import { EclButtonModule } from '@eui/ecl/components/ecl-button';
12
12
  import { BreakpointObserver } from '@angular/cdk/layout';
13
13
  import { takeUntil as takeUntil$1 } from 'rxjs/operators';
14
+ import { UpperCasePipe, AsyncPipe } from '@angular/common';
15
+ import * as i4 from '@ngx-translate/core';
16
+ import { TranslateModule } from '@ngx-translate/core';
14
17
  import { GLOBAL_CONFIG_TOKEN, I18nService, EuiEuLanguages } from '@eui/core';
15
18
  import { EclMegaMenuComponent } from '@eui/ecl/components/ecl-mega-menu';
16
19
  import { EclMenuComponent } from '@eui/ecl/components/ecl-menu';
17
20
  import { EclHeaderMenuComunicationService } from '@eui/ecl/shared';
18
- import { UpperCasePipe, AsyncPipe } from '@angular/common';
19
- import * as i4 from '@ngx-translate/core';
20
- import { TranslateModule } from '@ngx-translate/core';
21
21
  import { ScrollDispatcher } from '@angular/cdk/scrolling';
22
22
  import * as i3$1 from '@eui/ecl/components/ecl-link';
23
23
  import { EclLinkModule } from '@eui/ecl/components/ecl-link';