@eui/ecl 21.0.0-alpha.17 → 21.0.0-alpha.19

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.
@@ -276,6 +276,10 @@ Allows customization of layout, alignment, and appearance through inputs.</p>
276
276
  <li>
277
277
  <a href="#onVideoPlay" >onVideoPlay</a>
278
278
  </li>
279
+ <li>
280
+ <span class="modifier"></span>
281
+ <a href="#onWindowResize" >onWindowResize</a>
282
+ </li>
279
283
  <li>
280
284
  <a href="#getCssClasses" >getCssClasses</a>
281
285
  </li>
@@ -347,6 +351,20 @@ Allows customization of layout, alignment, and appearance through inputs.</p>
347
351
  </td>
348
352
  </tr>
349
353
 
354
+ <tr>
355
+ <td class="col-md-4">
356
+ <h6><b>HostListeners</b></h6>
357
+ </td>
358
+ </tr>
359
+ <tr>
360
+ <td class="col-md-4">
361
+ <ul class="index-list">
362
+ <li>
363
+ <a href="#window:resize" >window:resize</a>
364
+ </li>
365
+ </ul>
366
+ </td>
367
+ </tr>
350
368
 
351
369
  <tr>
352
370
  <td class="col-md-4">
@@ -720,7 +738,30 @@ Default: &#39;center&#39;.</p>
720
738
  </table>
721
739
  </section>
722
740
 
741
+ <section data-compodoc="block-methods">
742
+ <h3>HostListeners</h3> <table class="table table-sm table-bordered">
743
+ <tbody>
744
+ <tr>
745
+ <td class="col-md-4">
746
+ <a name="window:resize"></a>
747
+ <span class="name">
748
+ <span ><b>window:resize</b></span>
749
+ <a href="#window:resize"><span class="icon ion-ios-link"></span></a>
750
+ </span>
751
+ </td>
752
+ </tr>
753
+ <tr>
754
+ <td class="col-md-4">
755
+ <code>window:resize()</code>
756
+ </td>
757
+ </tr>
758
+
759
+
723
760
 
761
+
762
+ </tbody>
763
+ </table>
764
+ </section>
724
765
  <section data-compodoc="block-methods">
725
766
 
726
767
  <h3 id="methods">
@@ -862,6 +903,46 @@ Triggered via interaction (e.g., button).</p>
862
903
  </tr>
863
904
  </tbody>
864
905
  </table>
906
+ <table class="table table-sm table-bordered">
907
+ <tbody>
908
+ <tr>
909
+ <td class="col-md-4">
910
+ <a name="onWindowResize"></a>
911
+ <span class="name">
912
+ <span class="modifier"></span>
913
+ <span ><b>onWindowResize</b></span>
914
+ <a href="#onWindowResize"><span class="icon ion-ios-link"></span></a>
915
+ </span>
916
+ </td>
917
+ </tr>
918
+ <tr>
919
+ <td class="col-md-4">
920
+ <span class="modifier-icon icon ion-ios-reset"></span>
921
+ <code>onWindowResize()</code>
922
+ </td>
923
+ </tr>
924
+
925
+ <tr>
926
+ <td class="col-md-4">
927
+ <b>Decorators : </b>
928
+ <br />
929
+ <code>@HostListener(&#x27;window:resize&#x27;)<br /></code>
930
+ </td>
931
+ </tr>
932
+
933
+
934
+
935
+ <tr>
936
+ <td class="col-md-4">
937
+
938
+ <div class="io-description">
939
+ <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
940
+
941
+ </div>
942
+ </td>
943
+ </tr>
944
+ </tbody>
945
+ </table>
865
946
  <table class="table table-sm table-bordered">
866
947
  <tbody>
867
948
  <tr>
@@ -1344,7 +1425,7 @@ Triggered via interaction (e.g., button).</p>
1344
1425
  <script src="../js/libs/htmlparser.js"></script>
1345
1426
  <script src="../js/libs/deep-iterator.js"></script>
1346
1427
  <script>
1347
- var COMPONENT_TEMPLATE = '<div>@if(hasImage) {<figure class="ecl-banner__picture-container"> <ng-content select="[eclBannerPicture]"></ng-content> @if(copyright) { <ng-container *ngTemplateOutlet="bannerFooterTemplate"></ng-container> }</figure>}@if(hasVideo) {<div class="ecl-banner__video-container"> <ng-content select="[eclBannerVideo]"></ng-content> @if(copyright) { <ng-container *ngTemplateOutlet="bannerFooterTemplate"></ng-container> } <button #playBtn eclButton variant="tertiary" isIconOnly class="ecl-banner__play" (click)="onVideoPlay()" [style.display]="isPlaying ? \'none\' : \'block\'" (keydown.enter)="onKeydownEnterPlay()"> <span eclButtonLabel>Play video</span> <ecl-icon icon="play-outline" size="m"></ecl-icon> </button> <button #pauseBtn eclButton variant="tertiary" isIconOnly class="ecl-banner__pause" (click)="onVideoPause()" [style.display]="isPlaying ? \'block\' : \'none\'" (keydown.enter)="onKeydownEnterPause()"> <span eclButtonLabel>Pause video</span> <ecl-icon icon="pause-outline" size="m"></ecl-icon> </button></div>}<div class="ecl-container ecl-banner__info"> <div #bannerContainer class="ecl-banner__container "> <div class="ecl-banner__content"> <ng-content select="[eclBannerTitle]"></ng-content> <ng-content select="[eclBannerDescription]"></ng-content> @if (hasCtaLink) { <div class="ecl-banner__cta"> <ng-content select="[eclLink]"></ng-content> </div> } <ng-content></ng-content> </div> </div></div><ng-template #bannerFooterTemplate> <div #bannerFooter class="ecl-banner__credit"><div class="ecl-container">© {{copyright}}</div></div></ng-template></div>'
1428
+ var COMPONENT_TEMPLATE = '<div>@if(hasImage) {<figure class="ecl-banner__picture-container"> <ng-content select="[eclBannerPicture]"></ng-content> @if(copyright) { <ng-container *ngTemplateOutlet="bannerFooterTemplate"></ng-container> }</figure>}@if(hasVideo) {<div class="ecl-banner__video-container"> <ng-content select="[eclBannerVideo]"></ng-content> @if(copyright) { <ng-container *ngTemplateOutlet="bannerFooterTemplate"></ng-container> } <button #playBtn eclButton variant="tertiary" isIconOnly class="ecl-banner__play" (click)="onVideoPlay()" [style.display]="isPlaying ? \'none\' : \'block\'" (keydown.enter)="onKeydownEnterPlay()"> <span eclButtonLabel>Play video</span> <ecl-icon icon="play-outline" size="m"></ecl-icon> </button> <button #pauseBtn eclButton variant="tertiary" isIconOnly class="ecl-banner__pause" (click)="onVideoPause()" [style.display]="isPlaying ? \'block\' : \'none\'" (keydown.enter)="onKeydownEnterPause()"> <span eclButtonLabel>Pause video</span> <ecl-icon icon="pause-outline" size="m"></ecl-icon> </button></div>}<div class="ecl-container ecl-banner__info"> <div #bannerContainer class="ecl-banner__container "> <div class="ecl-banner__content"> <ng-content select="[eclBannerTitle]"></ng-content> <ng-content select="[eclBannerDescription]"></ng-content> @if (hasCtaLink) { <div class="ecl-banner__cta"> <ng-content select="[eclLink]"></ng-content> </div> } <ng-content></ng-content> </div> </div></div><ng-template #bannerFooterTemplate> <footer #bannerFooter class="ecl-banner__credit"><div class="ecl-container">© {{copyright}}</div></footer></ng-template></div>'
1348
1429
  var COMPONENTS = [{'name': 'EclAccordionComponent', 'selector': 'ecl-accordion'},{'name': 'EclAccordionItemComponent', 'selector': 'ecl-accordion-item'},{'name': 'EclAppComponent', 'selector': 'ecl-app'},{'name': 'EclBannerComponent', 'selector': 'ecl-banner'},{'name': 'EclBlockquoteComponent', 'selector': '[eclBlockquote]'},{'name': 'EclBreadcrumbComponent', 'selector': 'ecl-breadcrumb'},{'name': 'EclBreadcrumbSegmentComponent', 'selector': 'ecl-breadcrumb-segment, li[eclBreadcrumbSegment]'},{'name': 'EclButtonComponent', 'selector': 'button[eclButton], button[ecl-button], a[eclButton]'},{'name': 'EclCardBodyComponent', 'selector': 'ecl-card-body'},{'name': 'EclCardComponent', 'selector': 'ecl-card'},{'name': 'EclCarouselComponent', 'selector': 'ecl-carousel'},{'name': 'EclCarouselItemComponent', 'selector': 'ecl-carousel-item'},{'name': 'EclCategoryFilterComponent', 'selector': 'ecl-category-filter'},{'name': 'EclCategoryFilterItemComponent', 'selector': 'ecl-category-filter-item'},{'name': 'EclCategoryFilterListComponent', 'selector': 'ecl-category-filter-list'},{'name': 'EclCheckboxHelpComponent', 'selector': '[eclCheckboxHelp]'},{'name': 'EclCheckboxLabelComponent', 'selector': 'label[eclCheckboxLabel]'},{'name': 'EclContentBlockComponent', 'selector': 'ecl-content-block'},{'name': 'EclContentItemComponent', 'selector': 'ecl-content-item'},{'name': 'EclDateBlockComponent', 'selector': 'time[eclDateBlock]'},{'name': 'EclDescriptionListDefinitionComponent', 'selector': '[eclDescriptionListDefinition]'},{'name': 'EclExpandableComponent', 'selector': 'ecl-expandable'},{'name': 'EclFactFiguresComponent', 'selector': 'ecl-fact-figures'},{'name': 'EclFactFiguresDescriptionComponent', 'selector': 'ecl-fact-figures-description'},{'name': 'EclFactFiguresItemComponent', 'selector': 'ecl-fact-figures-item'},{'name': 'EclFactFiguresTitleComponent', 'selector': 'ecl-fact-figures-title'},{'name': 'EclFactFiguresValueComponent', 'selector': 'ecl-fact-figures-value'},{'name': 'EclFactFiguresViewAllComponent', 'selector': 'ecl-fact-figures-view-all'},{'name': 'EclFeaturedComponent', 'selector': 'ecl-featured'},{'name': 'EclFeaturedItemComponent', 'selector': 'ecl-featured-item'},{'name': 'EclFeaturedItemDescriptionComponent', 'selector': 'ecl-featured-item-description'},{'name': 'EclFeaturedItemFooterComponent', 'selector': '[eclFeaturedItemFooter]'},{'name': 'EclFileComponent', 'selector': 'ecl-file'},{'name': 'EclFileItemComponent', 'selector': 'ecl-file-item'},{'name': 'EclFileItemsComponent', 'selector': 'ecl-file-items'},{'name': 'EclFileTaxonomyComponent', 'selector': 'ecl-file-taxonomy'},{'name': 'EclFormGroupComponent', 'selector': '[eclFormGroup], ecl-form-group'},{'name': 'EclFormLabelComponent', 'selector': '[eclFormLabel]'},{'name': 'EclGalleryComponent', 'selector': 'ecl-gallery'},{'name': 'EclGalleryFooterComponent', 'selector': 'ecl-gallery-footer'},{'name': 'EclGalleryItemComponent', 'selector': 'ecl-gallery-item'},{'name': 'EclIconComponent', 'selector': 'ecl-icon'},{'name': 'EclInpageNavigationComponent', 'selector': 'ecl-inpage-navigation'},{'name': 'EclInpageNavigationItemComponent', 'selector': 'ecl-inpage-navigation-item, li[eclInpageNavigationItem]'},{'name': 'EclListIllustrationComponent', 'selector': 'ecl-list-illustration'},{'name': 'EclListIllustrationItemComponent', 'selector': 'ecl-list-illustration-item'},{'name': 'EclLoadingIndicatorComponent', 'selector': 'ecl-loading-indicator'},{'name': 'EclMediaContainerComponent', 'selector': 'ecl-media-container'},{'name': 'EclMegaMenuComponent', 'selector': 'nav[eclMegaMenu]'},{'name': 'EclMegaMenuFeaturedComponent', 'selector': 'div[eclMegaMenuFeatured]'},{'name': 'EclMegaMenuInfoComponent', 'selector': 'div[eclMegaMenuInfo]'},{'name': 'EclMegaMenuItemComponent', 'selector': 'li[eclMegaMenuItem]'},{'name': 'EclMegaMenuSubitemComponent', 'selector': 'li[eclMegaMenuSubitem]'},{'name': 'EclMenuComponent', 'selector': 'ecl-menu'},{'name': 'EclMenuItemComponent', 'selector': 'ecl-menu-item'},{'name': 'EclMenuMegaComponent', 'selector': 'ecl-menu-mega'},{'name': 'EclMenuMegaItemComponent', 'selector': 'ecl-menu-mega-item'},{'name': 'EclModalBodyComponent', 'selector': '[eclModalBody]'},{'name': 'EclModalComponent', 'selector': 'dialog[eclModal]'},{'name': 'EclModalFooterComponent', 'selector': '[eclModalFooter]'},{'name': 'EclModalHeaderComponent', 'selector': '[eclModalHeader]'},{'name': 'EclMultiselectComponent', 'selector': 'select[eclMultiselect]'},{'name': 'EclMultiselectDropdownComponent', 'selector': 'div[eclMultiselectDropdown]'},{'name': 'EclMultiselectInputComponent', 'selector': 'div[eclMultiselectInput]'},{'name': 'EclMultiselectOptgroupComponent', 'selector': 'fieldset[eclMultiselectOptgroup]'},{'name': 'EclMultiselectOptionComponent', 'selector': 'div[eclMultiselectOption]'},{'name': 'EclNavigationListComponent', 'selector': 'ecl-navigation-list'},{'name': 'EclNavigationListItemComponent', 'selector': 'ecl-navigation-list-item'},{'name': 'EclNewsTickerComponent', 'selector': 'ecl-news-ticker'},{'name': 'EclNewsTickerItemComponent', 'selector': 'ecl-news-ticker-item'},{'name': 'EclNotificationComponent', 'selector': 'ecl-notification'},{'name': 'EclPageHeaderComponent', 'selector': 'ecl-page-header'},{'name': 'EclPaginationComponent', 'selector': 'ecl-pagination'},{'name': 'EclPaginationItemComponent', 'selector': 'ecl-pagination-item, li[eclPaginationItem]'},{'name': 'EclPopoverComponent', 'selector': 'ecl-popover'},{'name': 'EclRadioHelpComponent', 'selector': '[eclRadioHelp]'},{'name': 'EclRadioLabelComponent', 'selector': '[eclRadioLabel]'},{'name': 'EclRangeBubbleComponent', 'selector': 'ecl-range-bubble'},{'name': 'EclRangeValueComponent', 'selector': 'ecl-range-value'},{'name': 'EclRatingFieldComponent', 'selector': 'ecl-rating-field'},{'name': 'EclSearchFormComponent', 'selector': 'ecl-search-form'},{'name': 'EclSelectContainerComponent', 'selector': 'ecl-select-container'},{'name': 'EclSiteFooterComponent', 'selector': 'ecl-site-footer'},{'name': 'EclSiteFooterFixedContentECComponent', 'selector': 'ecl-site-footer-fixed-content-ec'},{'name': 'EclSiteFooterFixedContentEUComponent', 'selector': 'ecl-site-footer-fixed-content-eu'},{'name': 'EclSiteHeaderActionComponent', 'selector': 'ecl-site-header-action'},{'name': 'EclSiteHeaderBannerTopComponent', 'selector': 'ecl-site-header-banner-top'},{'name': 'EclSiteHeaderComponent', 'selector': 'ecl-site-header'},{'name': 'EclSiteHeaderCustomActionComponent', 'selector': 'div[eclSiteHeaderCustomAction]'},{'name': 'EclSiteHeaderEnvironmentComponent', 'selector': '[eclSiteHeaderEnvironment]'},{'name': 'EclSiteHeaderLanguageComponent', 'selector': 'ecl-site-header-language'},{'name': 'EclSiteHeaderLanguagePopoverComponent', 'selector': 'ecl-site-header-language-popover'},{'name': 'EclSiteHeaderLoginComponent', 'selector': 'ecl-site-header-login'},{'name': 'EclSiteHeaderNotificationComponent', 'selector': 'ecl-site-header-notification'},{'name': 'EclSiteHeaderSearchComponent', 'selector': 'ecl-site-header-search'},{'name': 'EclSocialMediaFollowComponent', 'selector': 'ecl-social-media-follow'},{'name': 'EclSocialMediaFollowItemComponent', 'selector': 'ecl-social-media-follow-item'},{'name': 'EclSocialMediaShareComponent', 'selector': 'ecl-social-media-share'},{'name': 'EclSocialMediaShareItemComponent', 'selector': 'ecl-social-media-share-item'},{'name': 'EclSplashPageComponent', 'selector': 'div[eclSplashPage]'},{'name': 'EclSplashPageLanguageCategoryComponent', 'selector': 'div[eclSplashPageLanguageCategory]'},{'name': 'EclSplashPageLanguageContainerComponent', 'selector': '[eclSplashPageLanguageContainer]'},{'name': 'EclSplashPageLanguageLinkComponent', 'selector': 'a[eclSplashPageLanguageLink]'},{'name': 'EclStickyContainerComponent', 'selector': 'ecl-sticky-container'},{'name': 'EclTabComponent', 'selector': 'ecl-tab, div[eclTab]'},{'name': 'EclTabLabelComponent', 'selector': 'ecl-tab-label'},{'name': 'EclTableSortButtonComponent', 'selector': 'button[eclTableSortButton]'},{'name': 'EclTabMoreComponent', 'selector': 'ecl-tab-more'},{'name': 'EclTabsComponent', 'selector': 'div[eclTabs], ecl-tabs'},{'name': 'EclTagComponent', 'selector': 'ecl-tag, [eclTag]'},{'name': 'EclTimelineComponent', 'selector': 'ecl-timeline'},{'name': 'EclTimelineItemComponent', 'selector': 'ecl-timeline-item'},{'name': 'EclTimelineItemTogglerComponent', 'selector': 'ecl-timeline-item-toggler'}];
1349
1430
  var DIRECTIVES = [{'name': 'EclBannerDescriptionDirective', 'selector': '[eclBannerDescription]'},{'name': 'EclBannerDescriptionLinkDirective', 'selector': '[eclBannerDescriptionLink]'},{'name': 'EclBannerDescriptionTextDirective', 'selector': '[eclBannerDescriptionText]'},{'name': 'EclBannerImageDirective', 'selector': 'img[eclBannerImage]'},{'name': 'EclBannerPictureDirective', 'selector': 'picture[eclBannerPicture]'},{'name': 'EclBannerTitleDirective', 'selector': '[eclBannerTitle]'},{'name': 'EclBannerTitleLinkDirective', 'selector': '[eclBannerTitleLink]'},{'name': 'EclBannerTitleTextDirective', 'selector': '[eclBannerTitleText]'},{'name': 'EclBannerVideoDirective', 'selector': 'video[eclBannerVideo]'},{'name': 'ECLBaseDirective', 'selector': '[eclBase]'},{'name': 'EclBlockquoteImageDirective', 'selector': 'img[eclBlockquoteImage]'},{'name': 'EclBlockquotePictureDirective', 'selector': 'picture[eclBlockquotePicture]'},{'name': 'EclBreadcrumbContainerDirective', 'selector': '[eclBreadcrumbContainer]'},{'name': 'EclButtonIconContainerDirective', 'selector': '[eclButtonIconContainer]'},{'name': 'EclButtonLabelDirective', 'selector': '[eclButtonLabel]'},{'name': 'EclCardImageDirective', 'selector': 'img[eclCardImage]'},{'name': 'EclCardPictureDirective', 'selector': 'picture[eclCardPicture]'},{'name': 'EclCheckboxDirective', 'selector': '[eclCheckbox]'},{'name': 'EclCheckboxInputDirective', 'selector': 'input[eclCheckboxInput]'},{'name': 'ECLClickOutsideDirective', 'selector': '[eclClickOutside]'},{'name': 'EclContentBlockDescriptionDirective', 'selector': '[eclContentBlockDescription]'},{'name': 'EclContentBlockLabelDirective', 'selector': '[eclContentBlockLabel]'},{'name': 'EclContentBlockLabelsDirective', 'selector': '[eclContentBlockLabels]'},{'name': 'EclContentBlockLinkDirective', 'selector': '[eclContentBlockLink]'},{'name': 'EclContentBlockLinksContainerDirective', 'selector': '[eclContentBlockLinksContainer]'},{'name': 'EclContentBlockLinksDirective', 'selector': '[eclContentBlockLinks]'},{'name': 'EclContentBlockListContainerDirective', 'selector': '[eclContentBlockListContainer]'},{'name': 'EclContentBlockListDirective', 'selector': '[eclContentBlockList]'},{'name': 'EclContentBlockPrimaryMetaDirective', 'selector': '[eclContentBlockPrimaryMeta]'},{'name': 'EclContentBlockPrimaryMetasDirective', 'selector': '[eclContentBlockPrimaryMetas]'},{'name': 'EclContentBlockSecondaryMetaDirective', 'selector': '[eclContentBlockSecondaryMeta]'},{'name': 'EclContentBlockSecondaryMetaIconDirective', 'selector': '[eclContentBlockSecondaryMetaIcon]'},{'name': 'EclContentBlockSecondaryMetaLabelDirective', 'selector': '[eclContentBlockSecondaryMetaLabel]'},{'name': 'EclContentBlockSecondaryMetasDirective', 'selector': '[eclContentBlockSecondaryMetas]'},{'name': 'EclContentBlockTagDirective', 'selector': '[eclContentBlockTag]'},{'name': 'EclContentBlockTagsDirective', 'selector': '[eclContentBlockTags]'},{'name': 'EclContentBlockTitleDirective', 'selector': '[eclContentBlockTitle]'},{'name': 'EclContentItemImageDirective', 'selector': '[eclContentItemImage]'},{'name': 'EclContentItemPictureDirective', 'selector': '[eclContentItemPicture]'},{'name': 'EclDatePickerDirective', 'selector': 'input[eclDatePicker]'},{'name': 'EclDescriptionListDefinitionItemDirective', 'selector': '[eclDescriptionListDefinitionItem]'},{'name': 'EclDescriptionListDefinitionListDirective', 'selector': '[eclDescriptionListDefinitionList]'},{'name': 'EclDescriptionListDirective', 'selector': '[eclDescriptionList]'},{'name': 'EclDescriptionListTermDirective', 'selector': '[eclDescriptionListTerm]'},{'name': 'EclFeaturedItemFooterLinkDirective', 'selector': '[eclFeaturedItemFooterLink]'},{'name': 'EclFeaturedItemFooterPictureDirective', 'selector': 'picture[eclFeaturedItemFooterPicture]'},{'name': 'EclFeaturedItemLinkDirective', 'selector': '[eclFeaturedItemLink]'},{'name': 'EclFeedbackMessageDirective', 'selector': '[eclFeedbackMessage]'},{'name': 'EclFileDownloadDirective', 'selector': '[eclFileDownload]'},{'name': 'EclFileImageDirective', 'selector': 'img[eclFileImage]'},{'name': 'EclFilePictureDirective', 'selector': 'picture[eclFilePicture]'},{'name': 'EclFilePreviewDirective', 'selector': '[eclFilePreview]'},{'name': 'EclFileTitleDirective', 'selector': '[eclFileTitle]'},{'name': 'EclFileTranslationDownloadDirective', 'selector': '[eclFileTranslationDownload]'},{'name': 'EclFileUploadDirective', 'selector': '[eclFileUpload]'},{'name': 'ECLFormLabelOptionalDirective', 'selector': '[eclFormLabelOptional]'},{'name': 'EclGalleryMediaDirective', 'selector': '[eclGalleryMedia], [eclGalleryImage]'},{'name': 'EclGalleryPictureDirective', 'selector': 'picture[eclGalleryPicture]'},{'name': 'EclGalleryThumbnailDirective', 'selector': 'picture[eclGalleryThumbnail]'},{'name': 'EclHelpBlockDirective', 'selector': '[eclHelpBlock]'},{'name': 'EclHiddenDirective', 'selector': '[eclHidden]'},{'name': 'EclIndicatorDirective', 'selector': '[eclIndicator]'},{'name': 'EclInpageNavigationListDirective', 'selector': 'ul[eclInpageNavigationList]'},{'name': 'EclLabelDirective', 'selector': '[eclLabel]'},{'name': 'EclLinkDirective', 'selector': '[eclLink]'},{'name': 'EclLinkIconContainerDirective', 'selector': '[eclLinkIconContainer]'},{'name': 'EclLinkIndicatorDirective', 'selector': '[eclIndicator]'},{'name': 'EclLinkLabelDirective', 'selector': '[eclLinkLabel]'},{'name': 'EclListIllustrationIconDirective', 'selector': '[eclListIllustrationIcon]'},{'name': 'EclListIllustrationImageDirective', 'selector': 'img[eclListIllustrationImage]'},{'name': 'EclListIllustrationPictureDirective', 'selector': 'picture[eclListIllustrationPicture]'},{'name': 'EclLoadingIndicatorLabelDirective', 'selector': '[eclLoadingIndicatorLabel]'},{'name': 'EclLoadingIndicatorOverlayDirective', 'selector': '[eclLoadingIndicatorOverlay]'},{'name': 'EclMediaContainerIframeDirective', 'selector': 'iframe[eclMediaContainerIframe]'},{'name': 'EclMediaContainerItemAudioDescriptionDirective', 'selector': '[eclMediaContainerItemAudioDescription]'},{'name': 'EclMediaContainerItemDirective', 'selector': '[eclMediaContainerItem], img[eclMediaContainerImage]'},{'name': 'EclMediaContainerPictureDirective', 'selector': 'picture[eclMediaContainerPicture]'},{'name': 'EclMegaMenuContainerDirective', 'selector': 'div[eclMegaMenuContainer]'},{'name': 'EclMegaMenuFeaturedImageDirective', 'selector': '[eclMegaMenuFeaturedImage]'},{'name': 'EclMegaMenuFeaturedListDirective', 'selector': '[eclMegaMenuFeaturedList]'},{'name': 'EclMegaMenuFeaturedListItemDirective', 'selector': '[eclMegaMenuFeaturedListItem]'},{'name': 'EclMegaMenuFeaturedPictureDirective', 'selector': '[eclMegaMenuFeaturedPicture]'},{'name': 'EclMegaMenuListDirective', 'selector': 'ul[eclMegaMenuList]'},{'name': 'EclMegaMenuSpacerDirective', 'selector': 'ul[eclMegaMenuSpacer]'},{'name': 'EclMegaMenuSublistDirective', 'selector': 'ul[eclMegaMenuSublist]'},{'name': 'EclModalBodyFixedContentDirective', 'selector': '[eclModalBodyFixedContent]'},{'name': 'EclModalCloseDirective', 'selector': '[eclModalClose]'},{'name': 'EclModalTriggerDirective', 'selector': '[eclModalTriggerFor]'},{'name': 'EclMultiselectOptionDirective', 'selector': 'optgroup[eclMultiselectOptgroup], option[eclMultiselectOption]'},{'name': 'EclNavigationListImageDirective', 'selector': 'img[eclNavigationListImage]'},{'name': 'EclNavigationListPictureDirective', 'selector': 'picture[eclNavigationListPicture]'},{'name': 'EclNewsTickerIconDirective', 'selector': '[eclNewsTickerIcon]'},{'name': 'EclNotificationTitleDirective', 'selector': '[eclNotificationTitle]'},{'name': 'EclOrderedListDirective', 'selector': '[eclOrderedList]'},{'name': 'EclOrderedListItemDirective', 'selector': '[eclOrderedListItem]'},{'name': 'EclPageHeaderBackgroundImageDirective', 'selector': '[eclPageHeaderBackgroundImage]'},{'name': 'EclPageHeaderBackgroundPictureDirective', 'selector': '[eclPageHeaderBackgroundPicture]'},{'name': 'EclPageHeaderDescriptionContainerDirective', 'selector': '[eclPageHeaderDescriptionContainer]'},{'name': 'EclPageHeaderDescriptionDirective', 'selector': '[eclPageHeaderDescription]'},{'name': 'EclPageHeaderDescriptionPictureDirective', 'selector': '[eclPageHeaderDescriptionPicture]'},{'name': 'EclPageHeaderDescriptionThumbnailDirective', 'selector': '[eclPageHeaderDescriptionThumbnail], img[eclPageHeaderDescriptionImage]'},{'name': 'EclPageHeaderInfoDirective', 'selector': '[eclPageHeaderInfo]'},{'name': 'EclPageHeaderMetaDirective', 'selector': '[eclPageHeaderMeta]'},{'name': 'EclPageHeaderMetaItemDirective', 'selector': '[eclPageHeaderMetaItem]'},{'name': 'EclPageHeaderTitleDirective', 'selector': '[eclPageHeaderTitle]'},{'name': 'EclPaginationListDirective', 'selector': '[eclPaginationList]'},{'name': 'EclPopoverContentDirective', 'selector': '[eclPopoverContent]'},{'name': 'EclPopoverToggleDirective', 'selector': '[eclPopoverToggle]'},{'name': 'EclRadioDirective', 'selector': '[eclRadio]'},{'name': 'EclRadioInputDirective', 'selector': 'input[eclRadioInput]'},{'name': 'EclRangeDirective', 'selector': 'input[eclRange]'},{'name': 'EclSelectDirective', 'selector': 'select[eclSelect]'},{'name': 'EclSeparatorDirective', 'selector': 'hr[eclSeparator]'},{'name': 'EclSiteFooterColumnDirective', 'selector': '[eclSiteFooterColumn]'},{'name': 'EclSiteFooterContentDirective', 'selector': '[eclSiteFooterContent]'},{'name': 'EclSiteFooterDescriptionDirective', 'selector': '[eclSiteFooterDescription]'},{'name': 'EclSiteFooterLinkDirective', 'selector': '[eclSiteFooterLink]'},{'name': 'EclSiteFooterListDirective', 'selector': '[eclSiteFooterList]'},{'name': 'EclSiteFooterListItemDirective', 'selector': '[eclSiteFooterListItem]'},{'name': 'EclSiteFooterLogoDirective', 'selector': '[eclSiteFooterLogo]'},{'name': 'EclSiteFooterLogoImageDirective', 'selector': 'img[eclSiteFooterLogoImage]'},{'name': 'EclSiteFooterLogoItemDirective', 'selector': '[eclSiteFooterLogoItem]'},{'name': 'EclSiteFooterLogoLinkDirective', 'selector': '[eclSiteFooterLogoLink]'},{'name': 'EclSiteFooterLogoListDirective', 'selector': '[eclSiteFooterLogoList]'},{'name': 'EclSiteFooterPictureDirective', 'selector': 'picture[eclSiteFooterPicture]'},{'name': 'EclSiteFooterRowDirective', 'selector': '[eclSiteFooterRow]'},{'name': 'EclSiteFooterSectionDirective', 'selector': '[eclSiteFooterSection]'},{'name': 'EclSiteFooterTitleDirective', 'selector': '[eclSiteFooterTitle]'},{'name': 'EclSiteFooterTitleLinkDirective', 'selector': '[eclSiteFooterTitleLink]'},{'name': 'EclSiteHeaderCtaDirective', 'selector': '[eclSiteHeaderCta]'},{'name': 'EclSiteHeaderCustomActionContentDirective', 'selector': 'div[eclSiteHeaderCustomActionContent]'},{'name': 'EclSiteHeaderCustomActionLinkDirective', 'selector': 'a[eclSiteHeaderCustomActionLink]'},{'name': 'EclSiteHeaderCustomActionTitleDirective', 'selector': 'div[eclSiteHeaderCustomActionTitle]'},{'name': 'EclSiteHeaderImageDirective', 'selector': '[eclSiteHeaderImage]'},{'name': 'EclSiteHeaderLinkDirective', 'selector': '[eclSiteHeaderLink]'},{'name': 'EclSiteHeaderLoginDescriptionDirective', 'selector': '[eclSiteHeaderLoginDescription]'},{'name': 'EclSiteHeaderLoginSeparatorDirective', 'selector': '[eclSiteHeaderLoginSeparator]'},{'name': 'EclSiteHeaderPictureDirective', 'selector': '[eclSiteHeaderPicture]'},{'name': 'EclSocialMediaFollowLinkDirective', 'selector': '[eclSocialMediaFollowLink]'},{'name': 'EclSocialMediaShareLinkDirective', 'selector': '[eclSocialMediaShareLink]'},{'name': 'EclSplashPageLanguageItemDirective', 'selector': '[eclSplashPageLanguageItem]'},{'name': 'EclSplashPageLanguageListDirective', 'selector': '[eclSplashPageLanguageList]'},{'name': 'EclSplashPageLogoImageDirective', 'selector': 'img[eclSplashPageLogoImage]'},{'name': 'EclSplashPageLogoLinkDirective', 'selector': 'img[eclSplashPageLogoLink]'},{'name': 'EclSplashPagePictureDirective', 'selector': 'picture[eclSplashPagePicture]'},{'name': 'EclTableBodyDirective', 'selector': '[eclTableBody]'},{'name': 'EclTableCaptionDirective', 'selector': 'caption[eclTableCaption]'},{'name': 'EclTableCellDirective', 'selector': '[eclTableCell]'},{'name': 'EclTableCellGroupDirective', 'selector': '[eclTableCellGroup]'},{'name': 'EclTableDirective', 'selector': '[eclTable]'},{'name': 'EclTableHeadDirective', 'selector': '[eclTableHead]'},{'name': 'EclTableHeaderDirective', 'selector': '[eclTableHeader]'},{'name': 'EclTableResponsiveDirective', 'selector': '[eclTableResponsive]'},{'name': 'EclTableRowDirective', 'selector': '[eclTableRow]'},{'name': 'EclTagIconExternalDirective', 'selector': '[eclTagIconExternal]'},{'name': 'EclTagSetDirective', 'selector': '[eclTagSet]'},{'name': 'EclTagSetItemDirective', 'selector': '[eclTagSetItem]'},{'name': 'EclTextAreaDirective', 'selector': 'textarea[eclTextArea]'},{'name': 'EclTextInputDirective', 'selector': 'input[eclTextInput]'},{'name': 'EclTimelineItemLabelDirective', 'selector': '[eclTimelineItemLabel]'},{'name': 'EclTimelineItemTitleDirective', 'selector': '[eclTimelineItemTitle]'},{'name': 'EclUnorderedListDirective', 'selector': '[eclUnorderedList]'},{'name': 'EclUnorderedListItemDirective', 'selector': '[eclUnorderedListItem]'}];
1350
1431
  var ACTUAL_COMPONENT = {'name': 'EclBannerComponent'};
@@ -353,6 +353,10 @@ and support for RTL layouts. Extends the ECLBaseDirective for consistent styling
353
353
  <li>
354
354
  <a href="#onSlideHoverout" >onSlideHoverout</a>
355
355
  </li>
356
+ <li>
357
+ <span class="modifier"></span>
358
+ <a href="#onWindowResize" >onWindowResize</a>
359
+ </li>
356
360
  <li>
357
361
  <a href="#getCssClasses" >getCssClasses</a>
358
362
  </li>
@@ -423,6 +427,20 @@ and support for RTL layouts. Extends the ECLBaseDirective for consistent styling
423
427
  </td>
424
428
  </tr>
425
429
 
430
+ <tr>
431
+ <td class="col-md-4">
432
+ <h6><b>HostListeners</b></h6>
433
+ </td>
434
+ </tr>
435
+ <tr>
436
+ <td class="col-md-4">
437
+ <ul class="index-list">
438
+ <li>
439
+ <a href="#window:resize" >window:resize</a>
440
+ </li>
441
+ </ul>
442
+ </td>
443
+ </tr>
426
444
 
427
445
  <tr>
428
446
  <td class="col-md-4">
@@ -670,7 +688,30 @@ and support for RTL layouts. Extends the ECLBaseDirective for consistent styling
670
688
  </table>
671
689
  </section>
672
690
 
691
+ <section data-compodoc="block-methods">
692
+ <h3>HostListeners</h3> <table class="table table-sm table-bordered">
693
+ <tbody>
694
+ <tr>
695
+ <td class="col-md-4">
696
+ <a name="window:resize"></a>
697
+ <span class="name">
698
+ <span ><b>window:resize</b></span>
699
+ <a href="#window:resize"><span class="icon ion-ios-link"></span></a>
700
+ </span>
701
+ </td>
702
+ </tr>
703
+ <tr>
704
+ <td class="col-md-4">
705
+ <code>window:resize()</code>
706
+ </td>
707
+ </tr>
708
+
709
+
673
710
 
711
+
712
+ </tbody>
713
+ </table>
714
+ </section>
674
715
  <section data-compodoc="block-methods">
675
716
 
676
717
  <h3 id="methods">
@@ -1502,6 +1543,46 @@ Corrects index for internal structure with hidden buffer slides.</p>
1502
1543
  </tr>
1503
1544
  </tbody>
1504
1545
  </table>
1546
+ <table class="table table-sm table-bordered">
1547
+ <tbody>
1548
+ <tr>
1549
+ <td class="col-md-4">
1550
+ <a name="onWindowResize"></a>
1551
+ <span class="name">
1552
+ <span class="modifier"></span>
1553
+ <span ><b>onWindowResize</b></span>
1554
+ <a href="#onWindowResize"><span class="icon ion-ios-link"></span></a>
1555
+ </span>
1556
+ </td>
1557
+ </tr>
1558
+ <tr>
1559
+ <td class="col-md-4">
1560
+ <span class="modifier-icon icon ion-ios-reset"></span>
1561
+ <code>onWindowResize()</code>
1562
+ </td>
1563
+ </tr>
1564
+
1565
+ <tr>
1566
+ <td class="col-md-4">
1567
+ <b>Decorators : </b>
1568
+ <br />
1569
+ <code>@HostListener(&#x27;window:resize&#x27;)<br /></code>
1570
+ </td>
1571
+ </tr>
1572
+
1573
+
1574
+
1575
+ <tr>
1576
+ <td class="col-md-4">
1577
+
1578
+ <div class="io-description">
1579
+ <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
1580
+
1581
+ </div>
1582
+ </td>
1583
+ </tr>
1584
+ </tbody>
1585
+ </table>
1505
1586
  <table class="table table-sm table-bordered">
1506
1587
  <tbody>
1507
1588
  <tr>