@eui/components 18.0.3-snapshot-1720142339568 → 18.0.3-snapshot-1721223415730

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 (46) hide show
  1. package/docs/components/EuiMenuComponent.html +1 -1
  2. package/docs/components/EuiMenuItemComponent.html +25 -1
  3. package/docs/components/EuiNotificationItemComponent.html +1 -1
  4. package/docs/components/EuiNotificationsComponent.html +1 -1
  5. package/docs/components/EuiTreeListToolbarComponent.html +100 -1
  6. package/docs/dependencies.html +2 -2
  7. package/docs/js/menu-wc.js +6 -6
  8. package/docs/js/menu-wc_es5.js +1 -1
  9. package/docs/js/search/search_index.js +2 -2
  10. package/docs/modules/EuiTreeListModule.html +2 -2
  11. package/esm2022/eui-input-checkbox/eui-input-checkbox.component.mjs +2 -2
  12. package/esm2022/eui-input-number/eui-input-number.component.mjs +3 -2
  13. package/esm2022/eui-menu/eui-menu-item.component.mjs +6 -3
  14. package/esm2022/eui-menu/eui-menu.component.mjs +36 -5
  15. package/esm2022/eui-table-v2/eui-table-v2.component.mjs +2 -2
  16. package/esm2022/eui-tree-list/eui-tree-list.component.mjs +2 -2
  17. package/esm2022/eui-tree-list/eui-tree-list.module.mjs +7 -10
  18. package/esm2022/eui-tree-list/toolbar/toolbar.component.mjs +17 -15
  19. package/esm2022/layout/eui-notifications/eui-notification-item.component.mjs +3 -3
  20. package/esm2022/layout/eui-notifications/eui-notifications.component.mjs +10 -11
  21. package/esm2022/shared/base/base-states.directive.mjs +20 -20
  22. package/eui-input-number/eui-input-number.component.d.ts.map +1 -1
  23. package/eui-menu/eui-menu-item.component.d.ts +2 -1
  24. package/eui-menu/eui-menu-item.component.d.ts.map +1 -1
  25. package/eui-menu/eui-menu.component.d.ts +17 -0
  26. package/eui-menu/eui-menu.component.d.ts.map +1 -1
  27. package/eui-tree-list/eui-tree-list.module.d.ts +4 -4
  28. package/eui-tree-list/eui-tree-list.module.d.ts.map +1 -1
  29. package/eui-tree-list/toolbar/toolbar.component.d.ts +3 -2
  30. package/eui-tree-list/toolbar/toolbar.component.d.ts.map +1 -1
  31. package/fesm2022/eui-components-eui-input-checkbox.mjs +2 -2
  32. package/fesm2022/eui-components-eui-input-checkbox.mjs.map +1 -1
  33. package/fesm2022/eui-components-eui-input-number.mjs +2 -1
  34. package/fesm2022/eui-components-eui-input-number.mjs.map +1 -1
  35. package/fesm2022/eui-components-eui-menu.mjs +40 -6
  36. package/fesm2022/eui-components-eui-menu.mjs.map +1 -1
  37. package/fesm2022/eui-components-eui-table-v2.mjs +2 -2
  38. package/fesm2022/eui-components-eui-table-v2.mjs.map +1 -1
  39. package/fesm2022/eui-components-eui-tree-list.mjs +23 -22
  40. package/fesm2022/eui-components-eui-tree-list.mjs.map +1 -1
  41. package/fesm2022/eui-components-layout.mjs +17 -17
  42. package/fesm2022/eui-components-layout.mjs.map +1 -1
  43. package/fesm2022/eui-components-shared.mjs +19 -19
  44. package/fesm2022/eui-components-shared.mjs.map +1 -1
  45. package/package.json +9 -9
  46. package/shared/base/base-states.directive.d.ts.map +1 -1
@@ -992,7 +992,7 @@ e.g. items = [{label: test, expanded: true}, {label: test2, expanded: false}, {l
992
992
  <script src="../js/libs/htmlparser.js"></script>
993
993
  <script src="../js/libs/deep-iterator.js"></script>
994
994
  <script>
995
- var COMPONENT_TEMPLATE = '<div>@if (hasFilter) { <div class="eui-menu-filter" [class.eui-menu-filter--collapsed]="isCollapsed" (click)="onMenuFilterClick($event)"> <eui-icon-input> <eui-icon-svg icon="eui-ecl-search" fillColor="neutral-lighter" aria-label="Search Icon"></eui-icon-svg> <input #filterInput euiInputText [euiClearable]="true" (input)="onFilter($event)" [placeholder]="searchFilterLabel" [attr.aria-label]="searchFilterLabel" [value]="filterValue" /> </eui-icon-input> </div>}<ul euiList class="eui-menu" role="menubar" aria-orientation="vertical" tabindex="0" (keydown)="onKeydown($event)"> @if (items) { @for (item of items; track item.id; let index = $index) { <ng-template [ngTemplateOutlet]="menuItemTemplateRef" [ngTemplateOutletContext]="{ menuItem: item, index: index }"></ng-template> } } @else { <span class="eui-menu--no-items">No menu items defined</span> }</ul><!-- describe the recursive template of the menu item --><ng-template #menuItemTemplateRef let-item="menuItem" let-parent="parent" let-i="index"> <!-- render the menu item--> <eui-menu-item *ngIf="item.filtered" [item]="item" [parent]="parent" [hasIcon]="hasIcons" [hasTooltip]="hasTooltip" [isCollapsed]="isCollapsed" [hasBoldRootLevel]="hasBoldRootLevel" [hasCollapsedInitials]="hasCollapsedInitials" (expandToggle)="onExpandToggle($event)" (itemClick)="onClick($event)"> <!-- if the menu item has children, render the children --> @if (item.children && (item.expanded || (hasFilter && item.filtered && filterInput?.nativeElement?.value.length > 0))) { <ul euiList class="eui-menu eui-menu-sub" role="menu" [attr.aria-label]="item.label" tabindex="-1"> @for (child of item.children; track child.id; let childIndex = $index) { <ng-template [ngTemplateOutlet]="menuItemTemplateRef" [ngTemplateOutletContext]="{ menuItem: child, index: childIndex, parent: item }"> </ng-template> } </ul> } </eui-menu-item></ng-template></div>'
995
+ var COMPONENT_TEMPLATE = '<div>@if (hasFilter) { <div class="eui-menu-filter" [class.eui-menu-filter--collapsed]="isCollapsed" (click)="onMenuFilterClick($event)"> <eui-icon-input> <eui-icon-svg icon="eui-ecl-search" fillColor="neutral-lighter" aria-label="Search Icon"></eui-icon-svg> <input #filterInput euiInputText [euiClearable]="true" (input)="onFilter($event)" [placeholder]="searchFilterLabel" [attr.aria-label]="searchFilterLabel" [value]="filterValue" /> </eui-icon-input> </div>}<ul euiList class="eui-menu" role="menubar" aria-orientation="vertical" tabindex="0" (keydown)="onKeydown($event)"> @if (items) { @for (item of items; track item.id; let index = $index) { <ng-template [ngTemplateOutlet]="menuItemTemplateRef" [ngTemplateOutletContext]="{ menuItem: item, index: index }"></ng-template> } } @else { <span class="eui-menu--no-items">No menu items defined</span> }</ul><!-- describe the recursive template of the menu item --><ng-template #menuItemTemplateRef let-item="menuItem" let-parent="parent" let-i="index"> <!-- render the menu item--> <eui-menu-item *ngIf="item.filtered" [item]="item" [parent]="parent" [hasIcon]="hasIcons" [hasTooltip]="hasTooltip" [isCollapsed]="isCollapsed" [hasBoldRootLevel]="hasBoldRootLevel" [hasCollapsedInitials]="hasCollapsedInitials" (expandToggle)="onExpandToggle($event)" (itemClick)="onClick($event)" [hasExpandIcon]="hasExpandIcon"> <!-- if the menu item has children, render the children --> @if (shouldRenderChild(item)) { <ul euiList class="eui-menu eui-menu-sub" role="menu" [attr.aria-label]="item.label" tabindex="-1"> @for (child of item.children; track child.id; let childIndex = $index) { <ng-template [ngTemplateOutlet]="menuItemTemplateRef" [ngTemplateOutletContext]="{ menuItem: child, index: childIndex, parent: item }"> </ng-template> } </ul> } </eui-menu-item></ng-template></div>'
996
996
  var COMPONENTS = [{'name': 'ChartComponent', 'selector': 'eui-apex-chart'},{'name': 'DefaultComponent', 'selector': ''},{'name': 'DefaultComponent', 'selector': ''},{'name': 'EuiAccordionComponent', 'selector': 'eui-accordion'},{'name': 'EuiAccordionItemComponent', 'selector': 'eui-accordion-item'},{'name': 'EuiAlertComponent', 'selector': 'div[euiAlert], eui-alert'},{'name': 'EuiAlertTitleComponent', 'selector': 'eui-alert-title'},{'name': 'EuiAppBreadcrumbComponent', 'selector': 'eui-app-breadcrumb'},{'name': 'EuiAppComponent', 'selector': 'eui-app'},{'name': 'EuiAppFooterComponent', 'selector': 'eui-app-footer'},{'name': 'EuiAppHeaderComponent', 'selector': 'eui-app-header'},{'name': 'EuiAppSidebarBodyComponent', 'selector': 'eui-app-sidebar-body'},{'name': 'EuiAppSidebarComponent', 'selector': 'eui-app-sidebar'},{'name': 'EuiAppSidebarDrawerComponent', 'selector': 'eui-app-sidebar-drawer'},{'name': 'EuiAppSidebarFooterComponent', 'selector': 'eui-app-sidebar-footer'},{'name': 'EuiAppSidebarHeaderComponent', 'selector': 'eui-app-sidebar-header'},{'name': 'EuiAppSidebarHeaderUserProfileComponent', 'selector': 'eui-app-sidebar-header-user-profile'},{'name': 'EuiAppSidebarMenuComponent', 'selector': 'eui-app-sidebar-menu'},{'name': 'EuiAppToolbarComponent', 'selector': 'eui-app-toolbar'},{'name': 'EuiAppTopMessageComponent', 'selector': 'eui-app-top-message'},{'name': 'EuiAutocompleteAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteComponent', 'selector': 'eui-autocomplete, input[euiAutocomplete]'},{'name': 'EuiAutocompleteOptionComponent', 'selector': 'eui-autocomplete-option'},{'name': 'EuiAutocompleteOptionGroupComponent', 'selector': 'eui-autocomplete-option-group'},{'name': 'EuiAutocompleteTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAvatarBadgeComponent', 'selector': 'eui-avatar-badge'},{'name': 'EuiAvatarComponent', 'selector': 'div[euiAvatar], span[euiAvatar], eui-avatar'},{'name': 'EuiAvatarIconComponent', 'selector': 'eui-avatar-icon'},{'name': 'EuiAvatarImageComponent', 'selector': 'eui-avatar-image'},{'name': 'EuiAvatarListComponent', 'selector': 'eui-avatar-list'},{'name': 'EuiAvatarTextComponent', 'selector': 'eui-avatar-text'},{'name': 'EuiBadgeComponent', 'selector': 'div[euiBadge], span[euiBadge], eui-badge'},{'name': 'EuiBlockContentComponent', 'selector': 'eui-block-content'},{'name': 'EuiBlockDocumentComponent', 'selector': 'eui-block-document'},{'name': 'EuiBreadcrumbComponent', 'selector': 'eui-breadcrumb'},{'name': 'EuiBreadcrumbItemComponent', 'selector': 'eui-breadcrumb-item'},{'name': 'EuiButtonComponent', 'selector': 'button[euiButton], a[euiButton]'},{'name': 'EuiButtonGroupComponent', 'selector': 'eui-button-group'},{'name': 'EuiButtonV2Component', 'selector': 'eui-button-v2'},{'name': 'EuiCardComponent', 'selector': 'eui-card'},{'name': 'EuiCardContentComponent', 'selector': 'eui-card-content'},{'name': 'EuiCardFooterActionButtonsComponent', 'selector': 'eui-card-footer-action-buttons'},{'name': 'EuiCardFooterActionIconsComponent', 'selector': 'eui-card-footer-action-icons'},{'name': 'EuiCardFooterComponent', 'selector': 'eui-card-footer'},{'name': 'EuiCardFooterMenuComponent', 'selector': 'eui-card-footer-menu'},{'name': 'EuiCardFooterMenuContentComponent', 'selector': 'eui-card-footer-menu-content'},{'name': 'EuiCardHeaderBodyComponent', 'selector': 'eui-card-header-body'},{'name': 'EuiCardHeaderComponent', 'selector': 'eui-card-header'},{'name': 'EuiCardHeaderLeftContentComponent', 'selector': 'eui-card-header-left-content'},{'name': 'EuiCardHeaderRightContentComponent', 'selector': 'eui-card-header-right-content'},{'name': 'EuiCardHeaderSubtitleComponent', 'selector': 'eui-card-header-subtitle'},{'name': 'EuiCardHeaderTitleComponent', 'selector': 'eui-card-header-title'},{'name': 'EuiCardMediaComponent', 'selector': 'eui-card-media'},{'name': 'EuiChipComponent', 'selector': 'eui-chip, span[euiChip], li[euiChip]'},{'name': 'EuiChipListComponent', 'selector': 'eui-chip-list, div[euiChipList], ul[euiChipList]'},{'name': 'EuiDashboardButtonComponent', 'selector': 'eui-dashboard-button'},{'name': 'EuiDashboardCardComponent', 'selector': 'eui-dashboard-card'},{'name': 'EuiDashboardCardContentComponent', 'selector': 'eui-dashboard-card-content'},{'name': 'EuiDatepickerComponent', 'selector': 'eui-datepicker'},{'name': 'EuiDateRangeSelectorComponent', 'selector': 'eui-date-range-selector'},{'name': 'EuiDialogComponent', 'selector': 'eui-dialog'},{'name': 'EuiDialogContainerComponent', 'selector': 'eui-dialog-container'},{'name': 'EuiDimmerComponent', 'selector': 'eui-dimmer'},{'name': 'EuiDisableContentComponent', 'selector': 'eui-disable-content'},{'name': 'EuiDiscussionThreadComponent', 'selector': 'eui-discussion-thread'},{'name': 'EuiDiscussionThreadItemComponent', 'selector': 'eui-discussion-thread-item'},{'name': 'EuiDropdownComponent', 'selector': 'eui-dropdown'},{'name': 'EuiDropdownItemComponent', 'selector': 'eui-dropdown-item, [euiDropdownItem]'},{'name': 'EuiEditorComponent', 'selector': 'eui-editor'},{'name': 'EuiEditorCountersComponent', 'selector': 'eui-editor-counters'},{'name': 'EuiEditorHtmlViewComponent', 'selector': 'eui-editor-html-view'},{'name': 'EuiEditorImageDialogComponent', 'selector': ''},{'name': 'EuiEditorJsonViewComponent', 'selector': 'eui-editor-json-view'},{'name': 'EuiFeedbackMessageComponent', 'selector': 'eui-feedback-message'},{'name': 'EuiFieldsetComponent', 'selector': 'eui-fieldset'},{'name': 'EuiFilePreviewComponent', 'selector': 'eui-file-preview'},{'name': 'EuiFileUploadComponent', 'selector': 'eui-file-upload'},{'name': 'EuiFileUploadProgressComponent', 'selector': 'eui-file-upload-progress'},{'name': 'EuiFooterComponent', 'selector': 'eui-footer'},{'name': 'EuiGrowlComponent', 'selector': 'eui-growl'},{'name': 'EuiHeaderAppComponent', 'selector': 'eui-header-app'},{'name': 'EuiHeaderAppNameComponent', 'selector': 'eui-header-app-name'},{'name': 'EuiHeaderAppNameLogoComponent', 'selector': 'eui-header-app-name-logo'},{'name': 'EuiHeaderAppSubtitleComponent', 'selector': 'eui-header-app-subtitle'},{'name': 'EuiHeaderComponent', 'selector': 'eui-header'},{'name': 'EuiHeaderEnvironmentComponent', 'selector': 'eui-header-environment'},{'name': 'EuiHeaderLogoComponent', 'selector': 'eui-header-logo'},{'name': 'EuiHeaderRightContentComponent', 'selector': 'eui-header-right-content'},{'name': 'EuiHeaderSearchComponent', 'selector': 'eui-header-search'},{'name': 'EuiHeaderUserProfileComponent', 'selector': 'eui-header-user-profile'},{'name': 'EuiIconButtonComponent', 'selector': 'eui-icon-button'},{'name': 'EuiIconButtonExpanderComponent', 'selector': 'eui-icon-button-expander'},{'name': 'EuiIconColorComponent', 'selector': 'eui-icon-colored, span[euiIconColored], [euiIconColored]'},{'name': 'EuiIconInputComponent', 'selector': 'eui-icon-input'},{'name': 'EuiIconStateComponent', 'selector': 'eui-icon-state'},{'name': 'EuiIconSvgComponent', 'selector': 'eui-icon-svg, span[euiIconSvg], i[euiIconSvg]'},{'name': 'EuiIconToggleComponent', 'selector': 'eui-icon-toggle'},{'name': 'EuiInputCheckboxComponent', 'selector': 'input[euiInputCheckBox]'},{'name': 'EuiInputGroupComponent', 'selector': 'div[euiInputGroup]'},{'name': 'EuiInputNumberComponent', 'selector': 'input[euiInputNumber]'},{'name': 'EuiInputRadioComponent', 'selector': 'input[euiInputRadio]'},{'name': 'EuiInputTextComponent', 'selector': 'input[euiInputText]'},{'name': 'EuiLabelComponent', 'selector': 'label[euiLabel], span[euiLabel], div[euiLabel], a[euiLabel], eui-label,
997
997
  label[euiSublabel], span[euiSublabel], div[euiSublabel], a[euiSublabel], eui-sublabel'},{'name': 'EuiLanguageSelectorComponent', 'selector': 'eui-language-selector'},{'name': 'EuiListComponent', 'selector': '[euiList], eui-list'},{'name': 'EuiListItemComponent', 'selector': '[euiListItem], eui-list-item'},{'name': 'EuiMenuComponent', 'selector': 'eui-menu'},{'name': 'EuiMenuItemComponent', 'selector': 'eui-menu-item'},{'name': 'EuiMessageBoxComponent', 'selector': 'eui-message-box'},{'name': 'EuiModalSelectorComponent', 'selector': 'eui-modal-selector'},{'name': 'EuiNotificationItemComponent', 'selector': 'eui-notification-item'},{'name': 'EuiNotificationItemV2Component', 'selector': 'eui-notification-item-v2'},{'name': 'EuiNotificationsComponent', 'selector': 'eui-notifications'},{'name': 'EuiNotificationsV2Component', 'selector': 'eui-notifications-v2'},{'name': 'EuiOverlayBodyComponent', 'selector': 'eui-overlay-body'},{'name': 'EuiOverlayComponent', 'selector': 'eui-overlay'},{'name': 'EuiOverlayFooterComponent', 'selector': 'eui-overlay-footer'},{'name': 'EuiOverlayHeaderComponent', 'selector': 'eui-overlay-header'},{'name': 'EuiOverlayHeaderTitleComponent', 'selector': 'eui-overlay-header-title'},{'name': 'EuiPageBreadcrumbComponent', 'selector': 'eui-page-breadcrumb'},{'name': 'EuiPageColumnComponent', 'selector': 'eui-page-column'},{'name': 'EuiPageColumnsComponent', 'selector': 'eui-page-columns'},{'name': 'EuiPageComponent', 'selector': 'eui-page'},{'name': 'EuiPageContentComponent', 'selector': 'eui-page-content'},{'name': 'EuiPageFooterComponent', 'selector': 'eui-page-footer'},{'name': 'EuiPageHeaderActionItemsComponent', 'selector': 'eui-page-header-action-items'},{'name': 'EuiPageHeaderBodyComponent', 'selector': 'eui-page-header-body'},{'name': 'EuiPageHeaderComponent', 'selector': 'eui-page-header'},{'name': 'EuiPageHeaderSubLabelComponent', 'selector': 'eui-page-header-sub-label'},{'name': 'EuiPageHeroHeaderComponent', 'selector': 'eui-page-hero-header'},{'name': 'EuiPageTopContentComponent', 'selector': 'eui-page-top-content'},{'name': 'EuiPaginatorComponent', 'selector': 'eui-paginator'},{'name': 'EuiPopoverComponent', 'selector': 'eui-popover'},{'name': 'EuiProgressBarComponent', 'selector': 'eui-progress-bar'},{'name': 'EuiProgressCircleComponent', 'selector': 'eui-progress-circle'},{'name': 'EuiResizableComponent', 'selector': 'eui-resizable'},{'name': 'EuiSelectComponent', 'selector': 'select[euiSelect]'},{'name': 'EuiSidebarMenuComponent', 'selector': 'eui-sidebar-menu'},{'name': 'EuiSidebarToggleComponent', 'selector': 'eui-sidebar-toggle'},{'name': 'EuiSkeletonComponent', 'selector': 'eui-skeleton'},{'name': 'EuiSlideToggleComponent', 'selector': 'eui-slide-toggle'},{'name': 'EuiSlideToggleTestComponent', 'selector': 'eui-slide-toggle-test-component'},{'name': 'EuiSplitButtonComponent', 'selector': 'eui-split-button'},{'name': 'EuiTabComponent', 'selector': 'eui-tab'},{'name': 'EuiTabContentComponent', 'selector': 'eui-tab-content, euiTabContent'},{'name': 'EuiTabLabelComponent', 'selector': 'eui-tab-label, euiTabLabel'},{'name': 'EuiTableComponent', 'selector': 'eui-table, table[euiTable]'},{'name': 'EuiTableExpandableRowComponent', 'selector': 'tr[euiTableExpandableRow]'},{'name': 'EuiTableFilterComponent', 'selector': 'eui-table-filter'},{'name': 'EuiTableSelectableHeaderComponent', 'selector': 'tr[isSelectableHeader]'},{'name': 'EuiTableSelectableRowComponent', 'selector': 'tr[isSelectable]'},{'name': 'EuiTableSortableColComponent', 'selector': 'th[sortable]'},{'name': 'EuiTableV2Component', 'selector': 'eui-table-v2, table[euiTableV2]'},{'name': 'EuiTableV2FilterComponent', 'selector': 'eui-table-v2-filter'},{'name': 'EuiTableV2SelectableHeaderComponent', 'selector': 'tr[isHeaderSelectable]'},{'name': 'EuiTableV2SelectableRowComponent', 'selector': 'tr[isDataSelectable]'},{'name': 'EuiTableV2SortableColComponent', 'selector': 'th[isSortable]'},{'name': 'EuiTabsComponent', 'selector': 'eui-tabs'},{'name': 'EuiTextareaComponent', 'selector': 'textarea[euiTextArea]'},{'name': 'EuiTimebarComponent', 'selector': 'eui-timebar'},{'name': 'EuiTimelineComponent', 'selector': 'eui-timeline'},{'name': 'EuiTimelineItemComponent', 'selector': 'eui-timeline-item'},{'name': 'EuiTimepickerComponent', 'selector': 'eui-timepicker'},{'name': 'EuiToolbarAppComponent', 'selector': 'eui-toolbar-app'},{'name': 'EuiToolbarCenterComponent', 'selector': 'eui-toolbar-center'},{'name': 'EuiToolbarComponent', 'selector': 'eui-toolbar'},{'name': 'EuiToolbarEnvironmentComponent', 'selector': 'eui-toolbar-environment'},{'name': 'EuiToolbarItemComponent', 'selector': 'eui-toolbar-item'},{'name': 'EuiToolbarItemsComponent', 'selector': 'eui-toolbar-items'},{'name': 'EuiToolbarLogoComponent', 'selector': 'eui-toolbar-logo'},{'name': 'EuiToolbarMenuComponent', 'selector': 'eui-toolbar-menu'},{'name': 'EuiToolbarNavbarComponent', 'selector': 'eui-toolbar-navbar'},{'name': 'EuiToolbarNavbarItemComponent', 'selector': 'eui-toolbar-navbar-item'},{'name': 'EuiToolbarSearchComponent', 'selector': 'eui-toolbar-search'},{'name': 'EuiToolbarSelectorComponent', 'selector': 'eui-toolbar-selector'},{'name': 'EuiTooltipContainerComponent', 'selector': 'eui-tooltip-container.component'},{'name': 'EuiTreeComponent', 'selector': 'eui-tree'},{'name': 'EuiTreeListComponent', 'selector': 'eui-tree-list'},{'name': 'EuiTreeListItemComponent', 'selector': 'eui-tree-list-item'},{'name': 'EuiTreeListItemContentComponent', 'selector': 'eui-tree-list-item-content'},{'name': 'EuiTreeListToolbarComponent', 'selector': 'eui-tree-list-toolbar'},{'name': 'EuiUserProfileCardComponent', 'selector': 'eui-user-profile-card'},{'name': 'EuiUserProfileComponent', 'selector': 'eui-user-profile'},{'name': 'EuiUserProfileMenuComponent', 'selector': 'eui-user-profile-menu'},{'name': 'EuiUserProfileMenuItemComponent', 'selector': 'eui-user-profile-menu-item'},{'name': 'EuiWizardComponent', 'selector': 'eui-wizard'},{'name': 'EuiWizardStepComponent', 'selector': 'eui-wizard-step'},{'name': 'PaginationComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundStickyLastColumnComponent', 'selector': ''},{'name': 'QuillEditorComponent', 'selector': 'quill-editor'},{'name': 'VirtualScrollAsyncComponent', 'selector': ''},{'name': 'VirtualScrollComponent', 'selector': ''}];
998
998
  var DIRECTIVES = [{'name': 'AutoResizeDirective', 'selector': 'textarea[autoResize]'},{'name': 'BaseStatesDirective', 'selector': '[euiBase]'},{'name': 'EuiAccordionItemHeaderDirective', 'selector': 'eui-accordion-item-header'},{'name': 'EuiActionButtonsDirective', 'selector': 'eui-action-buttons'},{'name': 'EuiAppPageWrapperDirective', 'selector': 'eui-app-page-wrapper'},{'name': 'EuiArrowKeyNavigableDirective', 'selector': '[euiArrowKeyNavigable]'},{'name': 'EuiChipListAppendContentDirective', 'selector': 'euiChipListAppendContent'},{'name': 'EuiClearableDirective', 'selector': 'input[euiClearable]'},{'name': 'EuiDashboardButtonIconDirective', 'selector': 'eui-dashboard-button-icon'},{'name': 'EuiDashboardButtonLabelDirective', 'selector': 'eui-dashboard-button-label'},{'name': 'EuiDialogFooterDirective', 'selector': 'eui-dialog-footer'},{'name': 'EuiDialogHeaderDirective', 'selector': 'eui-dialog-header'},{'name': 'EuiDropdownContentDirective', 'selector': 'eui-dropdown-content'},{'name': 'EuiDropdownTreeDirective', 'selector': 'eui-dropdown[euiDropdownTree]'},{'name': 'EuiEditorCustomToolbarTagDirective', 'selector': 'euiEditorCustomToolbar'},{'name': 'EuiEditorMaxlengthDirective', 'selector': '[formControlName][euiEditorMaxlength]'},{'name': 'EuiFieldsetLabelExtraContentTagDirective', 'selector': 'euiFieldsetLabelExtraContent'},{'name': 'EuiFieldsetLabelRightContentTagDirective', 'selector': 'euiFieldsetLabelRightContent'},{'name': 'EuiHasPermissionDirective', 'selector': '[euiHasPermission]'},{'name': 'EuiInputNumberDirective', 'selector': 'input[euiInputNumber][formControl],input[euiInputNumber][formControlName],input[euiInputNumber][ngModel]'},{'name': 'EuiLetterFormatDirective', 'selector': '[euiLetterFormat]'},{'name': 'EuiLoadingDirective', 'selector': '[euiLoading]'},{'name': 'EuiMaxLengthDirective', 'selector': '
@@ -291,6 +291,9 @@
291
291
  <li>
292
292
  <a href="#hasCollapsedInitials" >hasCollapsedInitials</a>
293
293
  </li>
294
+ <li>
295
+ <a href="#hasExpandIcon" >hasExpandIcon</a>
296
+ </li>
294
297
  <li>
295
298
  <a href="#hasIcon" >hasIcon</a>
296
299
  </li>
@@ -484,6 +487,27 @@
484
487
  </tr>
485
488
  </tbody>
486
489
  </table>
490
+ <table class="table table-sm table-bordered">
491
+ <tbody>
492
+ <tr>
493
+ <td class="col-md-4">
494
+ <a name="hasExpandIcon"></a>
495
+ <b>hasExpandIcon</b>
496
+ </td>
497
+ </tr>
498
+ <tr>
499
+ <td class="col-md-4">
500
+ <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
501
+
502
+ </td>
503
+ </tr>
504
+ <tr>
505
+ <td class="col-md-4">
506
+ <i>Default value : </i><code>true</code>
507
+ </td>
508
+ </tr>
509
+ </tbody>
510
+ </table>
487
511
  <table class="table table-sm table-bordered">
488
512
  <tbody>
489
513
  <tr>
@@ -1931,7 +1955,7 @@
1931
1955
  <script src="../js/libs/htmlparser.js"></script>
1932
1956
  <script src="../js/libs/deep-iterator.js"></script>
1933
1957
  <script>
1934
- var COMPONENT_TEMPLATE = '<div>@if (item.visible && item.filtered) { @if (isLabelItem) { <li role="none" id="{{item.id}}" class="eui-menu-item__content" [attr.data-e2e]="item.e2eAttr" [class.eui-menu-item--disabled]="item.disabled" [attr.aria-disabled]="item.disabled" [euiTooltip]="menuItemTooltip" tabindex="-1" position="after"> <a (click)="onClick($event)" tabindex="-1" class="eui-menu-item__link eui-menu-item__link-category" [class.eui-menu-item__link--disabled]="item.disabled" [class.eui-menu-item__link--active]="item.active" [class.eui-menu-item__link--has-sub]="item.children?.length > 0" href="javascript:void(0)" [euiTooltip]="menuItemTooltip" position="after"> <div class="eui-menu-item__link-start-block"> <ng-template *ngTemplateOutlet="itemIconContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div> <div class="eui-menu-item__link-content-block"> <div class="eui-menu-item__link-label-container"> <span class="eui-menu-item__link-label-category">{{ item.label }}</span> </div> </div> <div class="eui-menu-item__link-end-block"> <ng-template *ngTemplateOutlet="itemEndContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div> </a> </li> } @if (isUrlItem) { <li role="none" id="{{item.id}}" [attr.data-e2e]="item.e2eAttr" class="eui-menu-item__content" [class.eui-menu-item--disabled]="item.disabled" [class.eui-menu-item--expanded]="item.expanded || item.filtered" [attr.aria-disabled]="item.disabled"> <a (click)="onClick($event)" class="eui-menu-item__link" [class.eui-menu-item__link--disabled]="item.disabled" [class.eui-menu-item__link--active]="item.active" [class.eui-menu-item__link--has-sub]="item.children?.length > 0" [routerLink]="item.url ? item.url : null" [routerLinkActive]="item.url ? \'eui-menu-item__link--active\' : \'\'" [euiTooltip]="menuItemTooltip" position="after" tabindex="-1"> <ng-template *ngTemplateOutlet="linkContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </a> <ng-template *ngTemplateOutlet="content"></ng-template> </li> } @if (isLinkItem) { <li role="none" id="{{item.id}}" [attr.data-e2e]="item.e2eAttr" class="eui-menu-item__content" [class.eui-menu-item--disabled]="item.disabled" [class.eui-menu-item--expanded]="item.expanded || item.filtered" [attr.aria-disabled]="item.disabled"> <a (click)="onClick($event)" tabindex="-1" class="eui-menu-item__link" [class.eui-menu-item__link--disabled]="item.disabled" [class.eui-menu-item__link--active]="item.active" [class.eui-menu-item__link--has-sub]="item.children?.length > 0" href="javascript:void(0)" [euiTooltip]="menuItemTooltip" position="after"> <ng-template *ngTemplateOutlet="linkContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </a> <ng-template *ngTemplateOutlet="content"></ng-template> </li> }}<ng-template #linkContent> <div class="eui-menu-item__link-start-block"> <ng-template *ngTemplateOutlet="itemIconContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div> <div class="eui-menu-item__link-content-block"> <div class="eui-menu-item__link-label-container"> <span class="eui-menu-item__link-label">{{ item.label }}</span> <eui-icon-svg *ngIf="item.urlExternal && item.urlExternalTarget === \'_blank\'" class="eui-menu-item__label-external" icon="eui-ecl-external" size="2xs" aria-label="external link icon" euiEnd> </eui-icon-svg> </div> </div> <div class="eui-menu-item__link-end-block"> <ng-template *ngTemplateOutlet="itemEndContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div></ng-template><!-- PROJECTED CONTENT BLOCK --><ng-template #content> <ng-content></ng-content></ng-template><!-- PROJECTED START BLOCK --><ng-template #itemIconContent> @if (!isCollapsed) { @if (hasIcon) { @if (item.iconSvgName) { <!-- SVG --> <eui-icon-svg class="eui-menu-item__link-icon" icon="{{ item.iconSvgName }}" fillColor="{{ item.iconTypeClass }}"> </eui-icon-svg> } @else if (item.hasMarker) { <!-- MARKER --> <eui-icon-svg class="eui-menu-item__link-marker" fillColor="{{ item?.markerTypeClass }}" icon="ellipse:sharp" size="2xs" [aria-label]="item.markerTypeClass + \' \' + \'marker\'"> </eui-icon-svg> } @else if (!isLabelItem) { <!-- DEFAULT for non category items --> <eui-icon-svg class="eui-menu-item__link-icon" icon="ellipse:sharp" fillColor="neutral-light" size="2xs"> </eui-icon-svg> } } @else if (item.hasMarker) { <eui-icon-svg class="eui-menu-item__link-marker" fillColor="{{ item?.markerTypeClass }}" icon="ellipse:sharp" size="2xs" [aria-label]="item.markerTypeClass + \' \' + \'marker\'"> </eui-icon-svg> } } @else { @if (hasCollapsedInitials) { <span class="eui-menu-item__link-initials eui-u-c-bg-{{item.iconTypeClass}}"> {{ item.initials }} </span> } @else { @if (hasIcon) { @if (item.iconSvgName) { <!-- SVG --> <eui-icon-svg class="eui-menu-item__link-icon" icon="{{ item.iconSvgName }}" fillColor="{{ item.iconTypeClass }}"> </eui-icon-svg> } @else if (item.hasMarker) { <!-- MARKER --> <eui-icon-svg class="eui-menu-item__link-marker" fillColor="{{ item?.markerTypeClass }}" icon="ellipse:sharp" size="2xs" [aria-label]="item.markerTypeClass + \' \' + \'marker\'"> </eui-icon-svg> } @else { <!-- DEFAULT --> <eui-icon-svg class="eui-menu-item__link-icon" icon="ellipse:sharp" fillColor="neutral-light" size="2xs" [aria-label]="item.iconLabel"> </eui-icon-svg> } } @else { <eui-icon-svg class="eui-menu-item__link-icon eui-u-ml-2xs" icon="square:sharp" fillColor="neutral-light" size="2xs"> </eui-icon-svg> } } }</ng-template><!-- PROJECTED END BLOCK --><ng-template #itemEndContent> @if (item.tagLabel) { @if (isCollapsed) { <eui-badge [euiVariant]="item.tagTypeClass" class="eui-menu-item__link-dotted-badge"></eui-badge> } @else { <eui-badge [euiVariant]="item.tagTypeClass"> {{ item.tagLabel }} </eui-badge> } } <button *ngIf="item.actionIcon" euiButton euiRounded euiIconButton euiSizeS euiBasicButton type="button" tabindex="-1" (keydown)="onActionIconKeyDown($event)" (focusout)="onActionIconFocusOut()" (focus)="focusActionIcon()" class="eui-menu-item__link-action-icon" [euiDisabled]="item.disabled" [attr.aria-label]="item.actionIcon?.label" (click)="onActionIconClick($event)"> <eui-icon-svg [icon]="item.actionIcon?.icon" [fillColor]="item.actionIcon?.color"></eui-icon-svg> </button> <eui-icon-button *ngIf="item.children?.length > 0" class="eui-menu-item__link-toggle" [icon]="item.expanded ? \'chevron-up:sharp\': \'chevron-down:sharp\'" (buttonClick)="onExpandToggle($event)" [ariaLabel]="item.expanded ? collapseMenuLabel : expandMenuLabel" euiRounded size="s" [tabindex]="-1" [euiDisabled]="item.disabled"/></ng-template></div>'
1958
+ var COMPONENT_TEMPLATE = '<div>@if (item.visible && item.filtered) { @if (isLabelItem) { <li role="none" id="{{item.id}}" class="eui-menu-item__content" [attr.data-e2e]="item.e2eAttr" [class.eui-menu-item--disabled]="item.disabled" [attr.aria-disabled]="item.disabled" [euiTooltip]="menuItemTooltip" tabindex="-1" position="after"> <a (click)="onClick($event)" tabindex="-1" class="eui-menu-item__link eui-menu-item__link-category" [class.eui-menu-item__link--disabled]="item.disabled" [class.eui-menu-item__link--active]="item.active" [class.eui-menu-item__link--has-sub]="item.children?.length > 0" href="javascript:void(0)" [euiTooltip]="menuItemTooltip" position="after"> <div class="eui-menu-item__link-start-block"> <ng-template *ngTemplateOutlet="itemIconContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div> <div class="eui-menu-item__link-content-block"> <div class="eui-menu-item__link-label-container"> <span class="eui-menu-item__link-label-category">{{ item.label }}</span> </div> </div> <div class="eui-menu-item__link-end-block"> <ng-template *ngTemplateOutlet="itemEndContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div> </a> </li> } @if (isUrlItem) { <li role="none" id="{{item.id}}" [attr.data-e2e]="item.e2eAttr" class="eui-menu-item__content" [class.eui-menu-item--disabled]="item.disabled" [class.eui-menu-item--expanded]="item.expanded || item.filtered" [attr.aria-disabled]="item.disabled"> <a (click)="onClick($event)" class="eui-menu-item__link" [class.eui-menu-item__link--disabled]="item.disabled" [class.eui-menu-item__link--active]="item.active" [class.eui-menu-item__link--has-sub]="item.children?.length > 0" [routerLink]="item.url ? item.url : null" [routerLinkActive]="item.url ? \'eui-menu-item__link--active\' : \'\'" [euiTooltip]="menuItemTooltip" position="after" tabindex="-1"> <ng-template *ngTemplateOutlet="linkContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </a> <ng-template *ngTemplateOutlet="content"></ng-template> </li> } @if (isLinkItem) { <li role="none" id="{{item.id}}" [attr.data-e2e]="item.e2eAttr" class="eui-menu-item__content" [class.eui-menu-item--disabled]="item.disabled" [class.eui-menu-item--expanded]="item.expanded || item.filtered" [attr.aria-disabled]="item.disabled"> <a (click)="onClick($event)" tabindex="-1" class="eui-menu-item__link" [class.eui-menu-item__link--disabled]="item.disabled" [class.eui-menu-item__link--active]="item.active" [class.eui-menu-item__link--has-sub]="item.children?.length > 0" href="javascript:void(0)" [euiTooltip]="menuItemTooltip" position="after"> <ng-template *ngTemplateOutlet="linkContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </a> <ng-template *ngTemplateOutlet="content"></ng-template> </li> }}<ng-template #linkContent> <div class="eui-menu-item__link-start-block"> <ng-template *ngTemplateOutlet="itemIconContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div> <div class="eui-menu-item__link-content-block"> <div class="eui-menu-item__link-label-container"> <span class="eui-menu-item__link-label">{{ item.label }}</span> <eui-icon-svg *ngIf="item.urlExternal && item.urlExternalTarget === \'_blank\'" class="eui-menu-item__label-external" icon="eui-ecl-external" size="2xs" aria-label="external link icon" euiEnd> </eui-icon-svg> </div> </div> <div class="eui-menu-item__link-end-block"> <ng-template *ngTemplateOutlet="itemEndContent" [ngTemplateOutletContext]="{ $implicit: item }"></ng-template> </div></ng-template><!-- PROJECTED CONTENT BLOCK --><ng-template #content> <ng-content></ng-content></ng-template><!-- PROJECTED START BLOCK --><ng-template #itemIconContent> @if (!isCollapsed) { @if (hasIcon) { @if (item.iconSvgName) { <!-- SVG --> <eui-icon-svg class="eui-menu-item__link-icon" icon="{{ item.iconSvgName }}" fillColor="{{ item.iconTypeClass }}"> </eui-icon-svg> } @else if (item.hasMarker) { <!-- MARKER --> <eui-icon-svg class="eui-menu-item__link-marker" fillColor="{{ item?.markerTypeClass }}" icon="ellipse:sharp" size="2xs" [aria-label]="item.markerTypeClass + \' \' + \'marker\'"> </eui-icon-svg> } @else if (!isLabelItem) { <!-- DEFAULT for non category items --> <eui-icon-svg class="eui-menu-item__link-icon" icon="ellipse:sharp" fillColor="neutral-light" size="2xs"> </eui-icon-svg> } } @else if (item.hasMarker) { <eui-icon-svg class="eui-menu-item__link-marker" fillColor="{{ item?.markerTypeClass }}" icon="ellipse:sharp" size="2xs" [aria-label]="item.markerTypeClass + \' \' + \'marker\'"> </eui-icon-svg> } } @else { @if (hasCollapsedInitials) { <span class="eui-menu-item__link-initials eui-u-c-bg-{{item.iconTypeClass}}"> {{ item.initials }} </span> } @else { @if (hasIcon) { @if (item.iconSvgName) { <!-- SVG --> <eui-icon-svg class="eui-menu-item__link-icon" icon="{{ item.iconSvgName }}" fillColor="{{ item.iconTypeClass }}"> </eui-icon-svg> } @else if (item.hasMarker) { <!-- MARKER --> <eui-icon-svg class="eui-menu-item__link-marker" fillColor="{{ item?.markerTypeClass }}" icon="ellipse:sharp" size="2xs" [aria-label]="item.markerTypeClass + \' \' + \'marker\'"> </eui-icon-svg> } @else { <!-- DEFAULT --> <eui-icon-svg class="eui-menu-item__link-icon" icon="ellipse:sharp" fillColor="neutral-light" size="2xs" [aria-label]="item.iconLabel"> </eui-icon-svg> } } @else { <eui-icon-svg class="eui-menu-item__link-icon eui-u-ml-2xs" icon="square:sharp" fillColor="neutral-light" size="2xs"> </eui-icon-svg> } } }</ng-template><!-- PROJECTED END BLOCK --><ng-template #itemEndContent> @if (item.tagLabel) { @if (isCollapsed) { <eui-badge [euiVariant]="item.tagTypeClass" class="eui-menu-item__link-dotted-badge"></eui-badge> } @else { <eui-badge [euiVariant]="item.tagTypeClass"> {{ item.tagLabel }} </eui-badge> } } <button *ngIf="item.actionIcon" euiButton euiRounded euiIconButton euiSizeS euiBasicButton type="button" tabindex="-1" (keydown)="onActionIconKeyDown($event)" (focusout)="onActionIconFocusOut()" (focus)="focusActionIcon()" class="eui-menu-item__link-action-icon" [euiDisabled]="item.disabled" [attr.aria-label]="item.actionIcon?.label" (click)="onActionIconClick($event)"> <eui-icon-svg [icon]="item.actionIcon?.icon" [fillColor]="item.actionIcon?.color"></eui-icon-svg> </button> @if (hasExpandIcon) { <eui-icon-button *ngIf="item.children?.length > 0" class="eui-menu-item__link-toggle" [icon]="item.expanded ? \'chevron-up:sharp\': \'chevron-down:sharp\'" (buttonClick)="onExpandToggle($event)" [ariaLabel]="item.expanded ? collapseMenuLabel : expandMenuLabel" euiRounded size="s" [tabindex]="-1" [euiDisabled]="item.disabled"/> }</ng-template></div>'
1935
1959
  var COMPONENTS = [{'name': 'ChartComponent', 'selector': 'eui-apex-chart'},{'name': 'DefaultComponent', 'selector': ''},{'name': 'DefaultComponent', 'selector': ''},{'name': 'EuiAccordionComponent', 'selector': 'eui-accordion'},{'name': 'EuiAccordionItemComponent', 'selector': 'eui-accordion-item'},{'name': 'EuiAlertComponent', 'selector': 'div[euiAlert], eui-alert'},{'name': 'EuiAlertTitleComponent', 'selector': 'eui-alert-title'},{'name': 'EuiAppBreadcrumbComponent', 'selector': 'eui-app-breadcrumb'},{'name': 'EuiAppComponent', 'selector': 'eui-app'},{'name': 'EuiAppFooterComponent', 'selector': 'eui-app-footer'},{'name': 'EuiAppHeaderComponent', 'selector': 'eui-app-header'},{'name': 'EuiAppSidebarBodyComponent', 'selector': 'eui-app-sidebar-body'},{'name': 'EuiAppSidebarComponent', 'selector': 'eui-app-sidebar'},{'name': 'EuiAppSidebarDrawerComponent', 'selector': 'eui-app-sidebar-drawer'},{'name': 'EuiAppSidebarFooterComponent', 'selector': 'eui-app-sidebar-footer'},{'name': 'EuiAppSidebarHeaderComponent', 'selector': 'eui-app-sidebar-header'},{'name': 'EuiAppSidebarHeaderUserProfileComponent', 'selector': 'eui-app-sidebar-header-user-profile'},{'name': 'EuiAppSidebarMenuComponent', 'selector': 'eui-app-sidebar-menu'},{'name': 'EuiAppToolbarComponent', 'selector': 'eui-app-toolbar'},{'name': 'EuiAppTopMessageComponent', 'selector': 'eui-app-top-message'},{'name': 'EuiAutocompleteAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteComponent', 'selector': 'eui-autocomplete, input[euiAutocomplete]'},{'name': 'EuiAutocompleteOptionComponent', 'selector': 'eui-autocomplete-option'},{'name': 'EuiAutocompleteOptionGroupComponent', 'selector': 'eui-autocomplete-option-group'},{'name': 'EuiAutocompleteTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAvatarBadgeComponent', 'selector': 'eui-avatar-badge'},{'name': 'EuiAvatarComponent', 'selector': 'div[euiAvatar], span[euiAvatar], eui-avatar'},{'name': 'EuiAvatarIconComponent', 'selector': 'eui-avatar-icon'},{'name': 'EuiAvatarImageComponent', 'selector': 'eui-avatar-image'},{'name': 'EuiAvatarListComponent', 'selector': 'eui-avatar-list'},{'name': 'EuiAvatarTextComponent', 'selector': 'eui-avatar-text'},{'name': 'EuiBadgeComponent', 'selector': 'div[euiBadge], span[euiBadge], eui-badge'},{'name': 'EuiBlockContentComponent', 'selector': 'eui-block-content'},{'name': 'EuiBlockDocumentComponent', 'selector': 'eui-block-document'},{'name': 'EuiBreadcrumbComponent', 'selector': 'eui-breadcrumb'},{'name': 'EuiBreadcrumbItemComponent', 'selector': 'eui-breadcrumb-item'},{'name': 'EuiButtonComponent', 'selector': 'button[euiButton], a[euiButton]'},{'name': 'EuiButtonGroupComponent', 'selector': 'eui-button-group'},{'name': 'EuiButtonV2Component', 'selector': 'eui-button-v2'},{'name': 'EuiCardComponent', 'selector': 'eui-card'},{'name': 'EuiCardContentComponent', 'selector': 'eui-card-content'},{'name': 'EuiCardFooterActionButtonsComponent', 'selector': 'eui-card-footer-action-buttons'},{'name': 'EuiCardFooterActionIconsComponent', 'selector': 'eui-card-footer-action-icons'},{'name': 'EuiCardFooterComponent', 'selector': 'eui-card-footer'},{'name': 'EuiCardFooterMenuComponent', 'selector': 'eui-card-footer-menu'},{'name': 'EuiCardFooterMenuContentComponent', 'selector': 'eui-card-footer-menu-content'},{'name': 'EuiCardHeaderBodyComponent', 'selector': 'eui-card-header-body'},{'name': 'EuiCardHeaderComponent', 'selector': 'eui-card-header'},{'name': 'EuiCardHeaderLeftContentComponent', 'selector': 'eui-card-header-left-content'},{'name': 'EuiCardHeaderRightContentComponent', 'selector': 'eui-card-header-right-content'},{'name': 'EuiCardHeaderSubtitleComponent', 'selector': 'eui-card-header-subtitle'},{'name': 'EuiCardHeaderTitleComponent', 'selector': 'eui-card-header-title'},{'name': 'EuiCardMediaComponent', 'selector': 'eui-card-media'},{'name': 'EuiChipComponent', 'selector': 'eui-chip, span[euiChip], li[euiChip]'},{'name': 'EuiChipListComponent', 'selector': 'eui-chip-list, div[euiChipList], ul[euiChipList]'},{'name': 'EuiDashboardButtonComponent', 'selector': 'eui-dashboard-button'},{'name': 'EuiDashboardCardComponent', 'selector': 'eui-dashboard-card'},{'name': 'EuiDashboardCardContentComponent', 'selector': 'eui-dashboard-card-content'},{'name': 'EuiDatepickerComponent', 'selector': 'eui-datepicker'},{'name': 'EuiDateRangeSelectorComponent', 'selector': 'eui-date-range-selector'},{'name': 'EuiDialogComponent', 'selector': 'eui-dialog'},{'name': 'EuiDialogContainerComponent', 'selector': 'eui-dialog-container'},{'name': 'EuiDimmerComponent', 'selector': 'eui-dimmer'},{'name': 'EuiDisableContentComponent', 'selector': 'eui-disable-content'},{'name': 'EuiDiscussionThreadComponent', 'selector': 'eui-discussion-thread'},{'name': 'EuiDiscussionThreadItemComponent', 'selector': 'eui-discussion-thread-item'},{'name': 'EuiDropdownComponent', 'selector': 'eui-dropdown'},{'name': 'EuiDropdownItemComponent', 'selector': 'eui-dropdown-item, [euiDropdownItem]'},{'name': 'EuiEditorComponent', 'selector': 'eui-editor'},{'name': 'EuiEditorCountersComponent', 'selector': 'eui-editor-counters'},{'name': 'EuiEditorHtmlViewComponent', 'selector': 'eui-editor-html-view'},{'name': 'EuiEditorImageDialogComponent', 'selector': ''},{'name': 'EuiEditorJsonViewComponent', 'selector': 'eui-editor-json-view'},{'name': 'EuiFeedbackMessageComponent', 'selector': 'eui-feedback-message'},{'name': 'EuiFieldsetComponent', 'selector': 'eui-fieldset'},{'name': 'EuiFilePreviewComponent', 'selector': 'eui-file-preview'},{'name': 'EuiFileUploadComponent', 'selector': 'eui-file-upload'},{'name': 'EuiFileUploadProgressComponent', 'selector': 'eui-file-upload-progress'},{'name': 'EuiFooterComponent', 'selector': 'eui-footer'},{'name': 'EuiGrowlComponent', 'selector': 'eui-growl'},{'name': 'EuiHeaderAppComponent', 'selector': 'eui-header-app'},{'name': 'EuiHeaderAppNameComponent', 'selector': 'eui-header-app-name'},{'name': 'EuiHeaderAppNameLogoComponent', 'selector': 'eui-header-app-name-logo'},{'name': 'EuiHeaderAppSubtitleComponent', 'selector': 'eui-header-app-subtitle'},{'name': 'EuiHeaderComponent', 'selector': 'eui-header'},{'name': 'EuiHeaderEnvironmentComponent', 'selector': 'eui-header-environment'},{'name': 'EuiHeaderLogoComponent', 'selector': 'eui-header-logo'},{'name': 'EuiHeaderRightContentComponent', 'selector': 'eui-header-right-content'},{'name': 'EuiHeaderSearchComponent', 'selector': 'eui-header-search'},{'name': 'EuiHeaderUserProfileComponent', 'selector': 'eui-header-user-profile'},{'name': 'EuiIconButtonComponent', 'selector': 'eui-icon-button'},{'name': 'EuiIconButtonExpanderComponent', 'selector': 'eui-icon-button-expander'},{'name': 'EuiIconColorComponent', 'selector': 'eui-icon-colored, span[euiIconColored], [euiIconColored]'},{'name': 'EuiIconInputComponent', 'selector': 'eui-icon-input'},{'name': 'EuiIconStateComponent', 'selector': 'eui-icon-state'},{'name': 'EuiIconSvgComponent', 'selector': 'eui-icon-svg, span[euiIconSvg], i[euiIconSvg]'},{'name': 'EuiIconToggleComponent', 'selector': 'eui-icon-toggle'},{'name': 'EuiInputCheckboxComponent', 'selector': 'input[euiInputCheckBox]'},{'name': 'EuiInputGroupComponent', 'selector': 'div[euiInputGroup]'},{'name': 'EuiInputNumberComponent', 'selector': 'input[euiInputNumber]'},{'name': 'EuiInputRadioComponent', 'selector': 'input[euiInputRadio]'},{'name': 'EuiInputTextComponent', 'selector': 'input[euiInputText]'},{'name': 'EuiLabelComponent', 'selector': 'label[euiLabel], span[euiLabel], div[euiLabel], a[euiLabel], eui-label,
1936
1960
  label[euiSublabel], span[euiSublabel], div[euiSublabel], a[euiSublabel], eui-sublabel'},{'name': 'EuiLanguageSelectorComponent', 'selector': 'eui-language-selector'},{'name': 'EuiListComponent', 'selector': '[euiList], eui-list'},{'name': 'EuiListItemComponent', 'selector': '[euiListItem], eui-list-item'},{'name': 'EuiMenuComponent', 'selector': 'eui-menu'},{'name': 'EuiMenuItemComponent', 'selector': 'eui-menu-item'},{'name': 'EuiMessageBoxComponent', 'selector': 'eui-message-box'},{'name': 'EuiModalSelectorComponent', 'selector': 'eui-modal-selector'},{'name': 'EuiNotificationItemComponent', 'selector': 'eui-notification-item'},{'name': 'EuiNotificationItemV2Component', 'selector': 'eui-notification-item-v2'},{'name': 'EuiNotificationsComponent', 'selector': 'eui-notifications'},{'name': 'EuiNotificationsV2Component', 'selector': 'eui-notifications-v2'},{'name': 'EuiOverlayBodyComponent', 'selector': 'eui-overlay-body'},{'name': 'EuiOverlayComponent', 'selector': 'eui-overlay'},{'name': 'EuiOverlayFooterComponent', 'selector': 'eui-overlay-footer'},{'name': 'EuiOverlayHeaderComponent', 'selector': 'eui-overlay-header'},{'name': 'EuiOverlayHeaderTitleComponent', 'selector': 'eui-overlay-header-title'},{'name': 'EuiPageBreadcrumbComponent', 'selector': 'eui-page-breadcrumb'},{'name': 'EuiPageColumnComponent', 'selector': 'eui-page-column'},{'name': 'EuiPageColumnsComponent', 'selector': 'eui-page-columns'},{'name': 'EuiPageComponent', 'selector': 'eui-page'},{'name': 'EuiPageContentComponent', 'selector': 'eui-page-content'},{'name': 'EuiPageFooterComponent', 'selector': 'eui-page-footer'},{'name': 'EuiPageHeaderActionItemsComponent', 'selector': 'eui-page-header-action-items'},{'name': 'EuiPageHeaderBodyComponent', 'selector': 'eui-page-header-body'},{'name': 'EuiPageHeaderComponent', 'selector': 'eui-page-header'},{'name': 'EuiPageHeaderSubLabelComponent', 'selector': 'eui-page-header-sub-label'},{'name': 'EuiPageHeroHeaderComponent', 'selector': 'eui-page-hero-header'},{'name': 'EuiPageTopContentComponent', 'selector': 'eui-page-top-content'},{'name': 'EuiPaginatorComponent', 'selector': 'eui-paginator'},{'name': 'EuiPopoverComponent', 'selector': 'eui-popover'},{'name': 'EuiProgressBarComponent', 'selector': 'eui-progress-bar'},{'name': 'EuiProgressCircleComponent', 'selector': 'eui-progress-circle'},{'name': 'EuiResizableComponent', 'selector': 'eui-resizable'},{'name': 'EuiSelectComponent', 'selector': 'select[euiSelect]'},{'name': 'EuiSidebarMenuComponent', 'selector': 'eui-sidebar-menu'},{'name': 'EuiSidebarToggleComponent', 'selector': 'eui-sidebar-toggle'},{'name': 'EuiSkeletonComponent', 'selector': 'eui-skeleton'},{'name': 'EuiSlideToggleComponent', 'selector': 'eui-slide-toggle'},{'name': 'EuiSlideToggleTestComponent', 'selector': 'eui-slide-toggle-test-component'},{'name': 'EuiSplitButtonComponent', 'selector': 'eui-split-button'},{'name': 'EuiTabComponent', 'selector': 'eui-tab'},{'name': 'EuiTabContentComponent', 'selector': 'eui-tab-content, euiTabContent'},{'name': 'EuiTabLabelComponent', 'selector': 'eui-tab-label, euiTabLabel'},{'name': 'EuiTableComponent', 'selector': 'eui-table, table[euiTable]'},{'name': 'EuiTableExpandableRowComponent', 'selector': 'tr[euiTableExpandableRow]'},{'name': 'EuiTableFilterComponent', 'selector': 'eui-table-filter'},{'name': 'EuiTableSelectableHeaderComponent', 'selector': 'tr[isSelectableHeader]'},{'name': 'EuiTableSelectableRowComponent', 'selector': 'tr[isSelectable]'},{'name': 'EuiTableSortableColComponent', 'selector': 'th[sortable]'},{'name': 'EuiTableV2Component', 'selector': 'eui-table-v2, table[euiTableV2]'},{'name': 'EuiTableV2FilterComponent', 'selector': 'eui-table-v2-filter'},{'name': 'EuiTableV2SelectableHeaderComponent', 'selector': 'tr[isHeaderSelectable]'},{'name': 'EuiTableV2SelectableRowComponent', 'selector': 'tr[isDataSelectable]'},{'name': 'EuiTableV2SortableColComponent', 'selector': 'th[isSortable]'},{'name': 'EuiTabsComponent', 'selector': 'eui-tabs'},{'name': 'EuiTextareaComponent', 'selector': 'textarea[euiTextArea]'},{'name': 'EuiTimebarComponent', 'selector': 'eui-timebar'},{'name': 'EuiTimelineComponent', 'selector': 'eui-timeline'},{'name': 'EuiTimelineItemComponent', 'selector': 'eui-timeline-item'},{'name': 'EuiTimepickerComponent', 'selector': 'eui-timepicker'},{'name': 'EuiToolbarAppComponent', 'selector': 'eui-toolbar-app'},{'name': 'EuiToolbarCenterComponent', 'selector': 'eui-toolbar-center'},{'name': 'EuiToolbarComponent', 'selector': 'eui-toolbar'},{'name': 'EuiToolbarEnvironmentComponent', 'selector': 'eui-toolbar-environment'},{'name': 'EuiToolbarItemComponent', 'selector': 'eui-toolbar-item'},{'name': 'EuiToolbarItemsComponent', 'selector': 'eui-toolbar-items'},{'name': 'EuiToolbarLogoComponent', 'selector': 'eui-toolbar-logo'},{'name': 'EuiToolbarMenuComponent', 'selector': 'eui-toolbar-menu'},{'name': 'EuiToolbarNavbarComponent', 'selector': 'eui-toolbar-navbar'},{'name': 'EuiToolbarNavbarItemComponent', 'selector': 'eui-toolbar-navbar-item'},{'name': 'EuiToolbarSearchComponent', 'selector': 'eui-toolbar-search'},{'name': 'EuiToolbarSelectorComponent', 'selector': 'eui-toolbar-selector'},{'name': 'EuiTooltipContainerComponent', 'selector': 'eui-tooltip-container.component'},{'name': 'EuiTreeComponent', 'selector': 'eui-tree'},{'name': 'EuiTreeListComponent', 'selector': 'eui-tree-list'},{'name': 'EuiTreeListItemComponent', 'selector': 'eui-tree-list-item'},{'name': 'EuiTreeListItemContentComponent', 'selector': 'eui-tree-list-item-content'},{'name': 'EuiTreeListToolbarComponent', 'selector': 'eui-tree-list-toolbar'},{'name': 'EuiUserProfileCardComponent', 'selector': 'eui-user-profile-card'},{'name': 'EuiUserProfileComponent', 'selector': 'eui-user-profile'},{'name': 'EuiUserProfileMenuComponent', 'selector': 'eui-user-profile-menu'},{'name': 'EuiUserProfileMenuItemComponent', 'selector': 'eui-user-profile-menu-item'},{'name': 'EuiWizardComponent', 'selector': 'eui-wizard'},{'name': 'EuiWizardStepComponent', 'selector': 'eui-wizard-step'},{'name': 'PaginationComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundStickyLastColumnComponent', 'selector': ''},{'name': 'QuillEditorComponent', 'selector': 'quill-editor'},{'name': 'VirtualScrollAsyncComponent', 'selector': ''},{'name': 'VirtualScrollComponent', 'selector': ''}];
1937
1961
  var DIRECTIVES = [{'name': 'AutoResizeDirective', 'selector': 'textarea[autoResize]'},{'name': 'BaseStatesDirective', 'selector': '[euiBase]'},{'name': 'EuiAccordionItemHeaderDirective', 'selector': 'eui-accordion-item-header'},{'name': 'EuiActionButtonsDirective', 'selector': 'eui-action-buttons'},{'name': 'EuiAppPageWrapperDirective', 'selector': 'eui-app-page-wrapper'},{'name': 'EuiArrowKeyNavigableDirective', 'selector': '[euiArrowKeyNavigable]'},{'name': 'EuiChipListAppendContentDirective', 'selector': 'euiChipListAppendContent'},{'name': 'EuiClearableDirective', 'selector': 'input[euiClearable]'},{'name': 'EuiDashboardButtonIconDirective', 'selector': 'eui-dashboard-button-icon'},{'name': 'EuiDashboardButtonLabelDirective', 'selector': 'eui-dashboard-button-label'},{'name': 'EuiDialogFooterDirective', 'selector': 'eui-dialog-footer'},{'name': 'EuiDialogHeaderDirective', 'selector': 'eui-dialog-header'},{'name': 'EuiDropdownContentDirective', 'selector': 'eui-dropdown-content'},{'name': 'EuiDropdownTreeDirective', 'selector': 'eui-dropdown[euiDropdownTree]'},{'name': 'EuiEditorCustomToolbarTagDirective', 'selector': 'euiEditorCustomToolbar'},{'name': 'EuiEditorMaxlengthDirective', 'selector': '[formControlName][euiEditorMaxlength]'},{'name': 'EuiFieldsetLabelExtraContentTagDirective', 'selector': 'euiFieldsetLabelExtraContent'},{'name': 'EuiFieldsetLabelRightContentTagDirective', 'selector': 'euiFieldsetLabelRightContent'},{'name': 'EuiHasPermissionDirective', 'selector': '[euiHasPermission]'},{'name': 'EuiInputNumberDirective', 'selector': 'input[euiInputNumber][formControl],input[euiInputNumber][formControlName],input[euiInputNumber][ngModel]'},{'name': 'EuiLetterFormatDirective', 'selector': '[euiLetterFormat]'},{'name': 'EuiLoadingDirective', 'selector': '[euiLoading]'},{'name': 'EuiMaxLengthDirective', 'selector': '
@@ -621,7 +621,7 @@
621
621
  <script src="../js/libs/htmlparser.js"></script>
622
622
  <script src="../js/libs/deep-iterator.js"></script>
623
623
  <script>
624
- var COMPONENT_TEMPLATE = '<div><div class="eui-notification-item-content" (click)="onItemClick()" [ngClass]="{ \'eui-u-c-bg-white\': item.metadata?.read || !item.metadata }"> <div class="eui-notification-item-content-top eui-u-f-s"> <div *ngIf="item.metadata?.date" class="eui-notification-item-content-top__date"> <span class="eui-notification-item-content-top__date-icon eui-u-mr-s"> <eui-icon-svg icon="notifications:sharp" size="m" [fillColor]="iconColor"></eui-icon-svg> <span *ngIf="item.metadata?.new" class="eui-notification-item-content-top__date-dot eui-u-c-danger-light eui-u-f-s eui-icon eui-icon-circle"></span> </span> <span>{{ item.metadata?.date | date: dateFormat }}</span> </div> <div *ngIf="item.metadata?.important" class="eui-u-f-m-bold"> <eui-icon-svg icon="alert:sharp" fillColor="danger" class="eui-u-ml-xs"></eui-icon-svg> </div> </div> <span class="eui-notification-item-content-middle eui-u-cursor-pointer"> <ng-template [ngIf]="item.metadata?.url"> <a class="eui-u-text-link" href="{{ item.metadata.url }}"> <div class="eui-notification-item-content-middle__label" [ngClass]="{ \'eui-u-f-m-bold\': !item.metadata || (item.metadata && !item.metadata.read) }"> {{ item.label | translate | euiTruncate: 200 }} </div> <div *ngIf="item.subLabel" class="eui-notification-item-content-middle__sub-label" [innerHTML]="item.subLabel | translate | euiTruncate: 200"></div> </a> </ng-template> <ng-template [ngIf]="item.metadata?.urlExternal"> <a class="eui-u-text-link-external" href="{{ item.metadata.urlExternal }}" [target]="!item.metadata.urlExternalTarget ? \'_blank\' : item.metadata.urlExternalTarget"> <div class="eui-notification-item-content-middle__label" [ngClass]="{ \'eui-u-f-m-bold\': !item.metadata || (item.metadata && !item.metadata.read) }"> {{ item.label | translate | euiTruncate: 200 }} </div> <div *ngIf="item.subLabel" class="eui-notification-item-content-middle__sub-label" [innerHTML]="item.subLabel | translate | euiTruncate: 200"></div> </a> </ng-template> <ng-template [ngIf]="!item.metadata?.url && !item.metadata?.urlExternal"> <div class="eui-notification-item-content-middle__label" [ngClass]="{ \'eui-u-f-m-bold\': !item.metadata || (item.metadata && !item.metadata.read) }"> {{ item.label | translate | euiTruncate: 200 }} </div> <div *ngIf="item.subLabel" class="eui-notification-item-content-middle__sub-label" [innerHTML]="item.subLabel | translate | euiTruncate: 200"></div> </ng-template> </span> <div class="eui-notification-item-content-bottom"> <a *ngIf="isShowMarkAsRead && item.metadata && !item.metadata.read" href="javascript:void(0)" class="eui-u-text-link" (click)="onItemMarkAsRead($event)"> {{ markAsReadLabel ? markAsReadLabel : (\'eui.NOTIFICATIONMARKASREAD\' | translate) }} </a> </div></div></div>'
624
+ var COMPONENT_TEMPLATE = '<div><div class="eui-notification-item-content" (click)="onItemClick()" [ngClass]="{ \'eui-u-c-bg-white\': item.metadata?.read || !item.metadata }"> <div class="eui-notification-item-content-top eui-u-f-s"> @if (item.metadata?.date) { <div class="eui-notification-item-content-top__date"> <span class="eui-notification-item-content-top__date-icon eui-u-mr-s"> <eui-icon-svg icon="notifications:sharp" size="m" [fillColor]="iconColor"></eui-icon-svg> @if (item.metadata?.new) { <span class="eui-notification-item-content-top__date-dot eui-u-c-danger-light eui-u-f-s eui-icon eui-icon-circle"></span> } </span> <span>{{ item.metadata?.date | date: dateFormat }}</span> </div> } @if (item.metadata?.important) { <div class="eui-u-f-m-bold"> <eui-icon-svg icon="alert:sharp" fillColor="danger" class="eui-u-ml-xs"></eui-icon-svg> </div> } </div> <span class="eui-notification-item-content-middle eui-u-cursor-pointer"> @if (item.metadata?.url) { <a class="eui-u-text-link" href="{{ item.metadata.url }}"> <div class="eui-notification-item-content-middle__label" [ngClass]="{ \'eui-u-f-m-bold\': !item.metadata || (item.metadata && !item.metadata.read) }"> {{ item.label | translate | euiTruncate: 200 }} </div> @if (item.subLabel) { <div class="eui-notification-item-content-middle__sub-label" [innerHTML]="item.subLabel | translate | euiTruncate: 200"> </div> } </a> } @if (item.metadata?.urlExternal) { <a class="eui-u-text-link-external" href="{{ item.metadata.urlExternal }}" [target]="!item.metadata.urlExternalTarget ? \'_blank\' : item.metadata.urlExternalTarget"> <div class="eui-notification-item-content-middle__label" [ngClass]="{ \'eui-u-f-m-bold\': !item.metadata || (item.metadata && !item.metadata.read) }"> {{ item.label | translate | euiTruncate: 200 }} </div> @if (item.subLabel) { <div class="eui-notification-item-content-middle__sub-label" [innerHTML]="item.subLabel | translate | euiTruncate: 200"> </div> } </a> } @if (!item.metadata?.url && !item.metadata?.urlExternal) { <div class="eui-notification-item-content-middle__label" [ngClass]="{ \'eui-u-f-m-bold\': !item.metadata || (item.metadata && !item.metadata.read) }"> {{ item.label | translate | euiTruncate: 200 }} </div> @if (item.subLabel) { <div class="eui-notification-item-content-middle__sub-label" [innerHTML]="item.subLabel | translate | euiTruncate: 200"> </div> } } </span> <div class="eui-notification-item-content-bottom"> @if (isShowMarkAsRead && item.metadata && !item.metadata.read) { <a href="javascript:void(0)" class="eui-u-text-link" (click)="onItemMarkAsRead($event)"> {{ markAsReadLabel ? markAsReadLabel : (\'eui.NOTIFICATIONMARKASREAD\' | translate) }} </a> } </div></div></div>'
625
625
  var COMPONENTS = [{'name': 'ChartComponent', 'selector': 'eui-apex-chart'},{'name': 'DefaultComponent', 'selector': ''},{'name': 'DefaultComponent', 'selector': ''},{'name': 'EuiAccordionComponent', 'selector': 'eui-accordion'},{'name': 'EuiAccordionItemComponent', 'selector': 'eui-accordion-item'},{'name': 'EuiAlertComponent', 'selector': 'div[euiAlert], eui-alert'},{'name': 'EuiAlertTitleComponent', 'selector': 'eui-alert-title'},{'name': 'EuiAppBreadcrumbComponent', 'selector': 'eui-app-breadcrumb'},{'name': 'EuiAppComponent', 'selector': 'eui-app'},{'name': 'EuiAppFooterComponent', 'selector': 'eui-app-footer'},{'name': 'EuiAppHeaderComponent', 'selector': 'eui-app-header'},{'name': 'EuiAppSidebarBodyComponent', 'selector': 'eui-app-sidebar-body'},{'name': 'EuiAppSidebarComponent', 'selector': 'eui-app-sidebar'},{'name': 'EuiAppSidebarDrawerComponent', 'selector': 'eui-app-sidebar-drawer'},{'name': 'EuiAppSidebarFooterComponent', 'selector': 'eui-app-sidebar-footer'},{'name': 'EuiAppSidebarHeaderComponent', 'selector': 'eui-app-sidebar-header'},{'name': 'EuiAppSidebarHeaderUserProfileComponent', 'selector': 'eui-app-sidebar-header-user-profile'},{'name': 'EuiAppSidebarMenuComponent', 'selector': 'eui-app-sidebar-menu'},{'name': 'EuiAppToolbarComponent', 'selector': 'eui-app-toolbar'},{'name': 'EuiAppTopMessageComponent', 'selector': 'eui-app-top-message'},{'name': 'EuiAutocompleteAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteComponent', 'selector': 'eui-autocomplete, input[euiAutocomplete]'},{'name': 'EuiAutocompleteOptionComponent', 'selector': 'eui-autocomplete-option'},{'name': 'EuiAutocompleteOptionGroupComponent', 'selector': 'eui-autocomplete-option-group'},{'name': 'EuiAutocompleteTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAvatarBadgeComponent', 'selector': 'eui-avatar-badge'},{'name': 'EuiAvatarComponent', 'selector': 'div[euiAvatar], span[euiAvatar], eui-avatar'},{'name': 'EuiAvatarIconComponent', 'selector': 'eui-avatar-icon'},{'name': 'EuiAvatarImageComponent', 'selector': 'eui-avatar-image'},{'name': 'EuiAvatarListComponent', 'selector': 'eui-avatar-list'},{'name': 'EuiAvatarTextComponent', 'selector': 'eui-avatar-text'},{'name': 'EuiBadgeComponent', 'selector': 'div[euiBadge], span[euiBadge], eui-badge'},{'name': 'EuiBlockContentComponent', 'selector': 'eui-block-content'},{'name': 'EuiBlockDocumentComponent', 'selector': 'eui-block-document'},{'name': 'EuiBreadcrumbComponent', 'selector': 'eui-breadcrumb'},{'name': 'EuiBreadcrumbItemComponent', 'selector': 'eui-breadcrumb-item'},{'name': 'EuiButtonComponent', 'selector': 'button[euiButton], a[euiButton]'},{'name': 'EuiButtonGroupComponent', 'selector': 'eui-button-group'},{'name': 'EuiButtonV2Component', 'selector': 'eui-button-v2'},{'name': 'EuiCardComponent', 'selector': 'eui-card'},{'name': 'EuiCardContentComponent', 'selector': 'eui-card-content'},{'name': 'EuiCardFooterActionButtonsComponent', 'selector': 'eui-card-footer-action-buttons'},{'name': 'EuiCardFooterActionIconsComponent', 'selector': 'eui-card-footer-action-icons'},{'name': 'EuiCardFooterComponent', 'selector': 'eui-card-footer'},{'name': 'EuiCardFooterMenuComponent', 'selector': 'eui-card-footer-menu'},{'name': 'EuiCardFooterMenuContentComponent', 'selector': 'eui-card-footer-menu-content'},{'name': 'EuiCardHeaderBodyComponent', 'selector': 'eui-card-header-body'},{'name': 'EuiCardHeaderComponent', 'selector': 'eui-card-header'},{'name': 'EuiCardHeaderLeftContentComponent', 'selector': 'eui-card-header-left-content'},{'name': 'EuiCardHeaderRightContentComponent', 'selector': 'eui-card-header-right-content'},{'name': 'EuiCardHeaderSubtitleComponent', 'selector': 'eui-card-header-subtitle'},{'name': 'EuiCardHeaderTitleComponent', 'selector': 'eui-card-header-title'},{'name': 'EuiCardMediaComponent', 'selector': 'eui-card-media'},{'name': 'EuiChipComponent', 'selector': 'eui-chip, span[euiChip], li[euiChip]'},{'name': 'EuiChipListComponent', 'selector': 'eui-chip-list, div[euiChipList], ul[euiChipList]'},{'name': 'EuiDashboardButtonComponent', 'selector': 'eui-dashboard-button'},{'name': 'EuiDashboardCardComponent', 'selector': 'eui-dashboard-card'},{'name': 'EuiDashboardCardContentComponent', 'selector': 'eui-dashboard-card-content'},{'name': 'EuiDatepickerComponent', 'selector': 'eui-datepicker'},{'name': 'EuiDateRangeSelectorComponent', 'selector': 'eui-date-range-selector'},{'name': 'EuiDialogComponent', 'selector': 'eui-dialog'},{'name': 'EuiDialogContainerComponent', 'selector': 'eui-dialog-container'},{'name': 'EuiDimmerComponent', 'selector': 'eui-dimmer'},{'name': 'EuiDisableContentComponent', 'selector': 'eui-disable-content'},{'name': 'EuiDiscussionThreadComponent', 'selector': 'eui-discussion-thread'},{'name': 'EuiDiscussionThreadItemComponent', 'selector': 'eui-discussion-thread-item'},{'name': 'EuiDropdownComponent', 'selector': 'eui-dropdown'},{'name': 'EuiDropdownItemComponent', 'selector': 'eui-dropdown-item, [euiDropdownItem]'},{'name': 'EuiEditorComponent', 'selector': 'eui-editor'},{'name': 'EuiEditorCountersComponent', 'selector': 'eui-editor-counters'},{'name': 'EuiEditorHtmlViewComponent', 'selector': 'eui-editor-html-view'},{'name': 'EuiEditorImageDialogComponent', 'selector': ''},{'name': 'EuiEditorJsonViewComponent', 'selector': 'eui-editor-json-view'},{'name': 'EuiFeedbackMessageComponent', 'selector': 'eui-feedback-message'},{'name': 'EuiFieldsetComponent', 'selector': 'eui-fieldset'},{'name': 'EuiFilePreviewComponent', 'selector': 'eui-file-preview'},{'name': 'EuiFileUploadComponent', 'selector': 'eui-file-upload'},{'name': 'EuiFileUploadProgressComponent', 'selector': 'eui-file-upload-progress'},{'name': 'EuiFooterComponent', 'selector': 'eui-footer'},{'name': 'EuiGrowlComponent', 'selector': 'eui-growl'},{'name': 'EuiHeaderAppComponent', 'selector': 'eui-header-app'},{'name': 'EuiHeaderAppNameComponent', 'selector': 'eui-header-app-name'},{'name': 'EuiHeaderAppNameLogoComponent', 'selector': 'eui-header-app-name-logo'},{'name': 'EuiHeaderAppSubtitleComponent', 'selector': 'eui-header-app-subtitle'},{'name': 'EuiHeaderComponent', 'selector': 'eui-header'},{'name': 'EuiHeaderEnvironmentComponent', 'selector': 'eui-header-environment'},{'name': 'EuiHeaderLogoComponent', 'selector': 'eui-header-logo'},{'name': 'EuiHeaderRightContentComponent', 'selector': 'eui-header-right-content'},{'name': 'EuiHeaderSearchComponent', 'selector': 'eui-header-search'},{'name': 'EuiHeaderUserProfileComponent', 'selector': 'eui-header-user-profile'},{'name': 'EuiIconButtonComponent', 'selector': 'eui-icon-button'},{'name': 'EuiIconButtonExpanderComponent', 'selector': 'eui-icon-button-expander'},{'name': 'EuiIconColorComponent', 'selector': 'eui-icon-colored, span[euiIconColored], [euiIconColored]'},{'name': 'EuiIconInputComponent', 'selector': 'eui-icon-input'},{'name': 'EuiIconStateComponent', 'selector': 'eui-icon-state'},{'name': 'EuiIconSvgComponent', 'selector': 'eui-icon-svg, span[euiIconSvg], i[euiIconSvg]'},{'name': 'EuiIconToggleComponent', 'selector': 'eui-icon-toggle'},{'name': 'EuiInputCheckboxComponent', 'selector': 'input[euiInputCheckBox]'},{'name': 'EuiInputGroupComponent', 'selector': 'div[euiInputGroup]'},{'name': 'EuiInputNumberComponent', 'selector': 'input[euiInputNumber]'},{'name': 'EuiInputRadioComponent', 'selector': 'input[euiInputRadio]'},{'name': 'EuiInputTextComponent', 'selector': 'input[euiInputText]'},{'name': 'EuiLabelComponent', 'selector': 'label[euiLabel], span[euiLabel], div[euiLabel], a[euiLabel], eui-label,
626
626
  label[euiSublabel], span[euiSublabel], div[euiSublabel], a[euiSublabel], eui-sublabel'},{'name': 'EuiLanguageSelectorComponent', 'selector': 'eui-language-selector'},{'name': 'EuiListComponent', 'selector': '[euiList], eui-list'},{'name': 'EuiListItemComponent', 'selector': '[euiListItem], eui-list-item'},{'name': 'EuiMenuComponent', 'selector': 'eui-menu'},{'name': 'EuiMenuItemComponent', 'selector': 'eui-menu-item'},{'name': 'EuiMessageBoxComponent', 'selector': 'eui-message-box'},{'name': 'EuiModalSelectorComponent', 'selector': 'eui-modal-selector'},{'name': 'EuiNotificationItemComponent', 'selector': 'eui-notification-item'},{'name': 'EuiNotificationItemV2Component', 'selector': 'eui-notification-item-v2'},{'name': 'EuiNotificationsComponent', 'selector': 'eui-notifications'},{'name': 'EuiNotificationsV2Component', 'selector': 'eui-notifications-v2'},{'name': 'EuiOverlayBodyComponent', 'selector': 'eui-overlay-body'},{'name': 'EuiOverlayComponent', 'selector': 'eui-overlay'},{'name': 'EuiOverlayFooterComponent', 'selector': 'eui-overlay-footer'},{'name': 'EuiOverlayHeaderComponent', 'selector': 'eui-overlay-header'},{'name': 'EuiOverlayHeaderTitleComponent', 'selector': 'eui-overlay-header-title'},{'name': 'EuiPageBreadcrumbComponent', 'selector': 'eui-page-breadcrumb'},{'name': 'EuiPageColumnComponent', 'selector': 'eui-page-column'},{'name': 'EuiPageColumnsComponent', 'selector': 'eui-page-columns'},{'name': 'EuiPageComponent', 'selector': 'eui-page'},{'name': 'EuiPageContentComponent', 'selector': 'eui-page-content'},{'name': 'EuiPageFooterComponent', 'selector': 'eui-page-footer'},{'name': 'EuiPageHeaderActionItemsComponent', 'selector': 'eui-page-header-action-items'},{'name': 'EuiPageHeaderBodyComponent', 'selector': 'eui-page-header-body'},{'name': 'EuiPageHeaderComponent', 'selector': 'eui-page-header'},{'name': 'EuiPageHeaderSubLabelComponent', 'selector': 'eui-page-header-sub-label'},{'name': 'EuiPageHeroHeaderComponent', 'selector': 'eui-page-hero-header'},{'name': 'EuiPageTopContentComponent', 'selector': 'eui-page-top-content'},{'name': 'EuiPaginatorComponent', 'selector': 'eui-paginator'},{'name': 'EuiPopoverComponent', 'selector': 'eui-popover'},{'name': 'EuiProgressBarComponent', 'selector': 'eui-progress-bar'},{'name': 'EuiProgressCircleComponent', 'selector': 'eui-progress-circle'},{'name': 'EuiResizableComponent', 'selector': 'eui-resizable'},{'name': 'EuiSelectComponent', 'selector': 'select[euiSelect]'},{'name': 'EuiSidebarMenuComponent', 'selector': 'eui-sidebar-menu'},{'name': 'EuiSidebarToggleComponent', 'selector': 'eui-sidebar-toggle'},{'name': 'EuiSkeletonComponent', 'selector': 'eui-skeleton'},{'name': 'EuiSlideToggleComponent', 'selector': 'eui-slide-toggle'},{'name': 'EuiSlideToggleTestComponent', 'selector': 'eui-slide-toggle-test-component'},{'name': 'EuiSplitButtonComponent', 'selector': 'eui-split-button'},{'name': 'EuiTabComponent', 'selector': 'eui-tab'},{'name': 'EuiTabContentComponent', 'selector': 'eui-tab-content, euiTabContent'},{'name': 'EuiTabLabelComponent', 'selector': 'eui-tab-label, euiTabLabel'},{'name': 'EuiTableComponent', 'selector': 'eui-table, table[euiTable]'},{'name': 'EuiTableExpandableRowComponent', 'selector': 'tr[euiTableExpandableRow]'},{'name': 'EuiTableFilterComponent', 'selector': 'eui-table-filter'},{'name': 'EuiTableSelectableHeaderComponent', 'selector': 'tr[isSelectableHeader]'},{'name': 'EuiTableSelectableRowComponent', 'selector': 'tr[isSelectable]'},{'name': 'EuiTableSortableColComponent', 'selector': 'th[sortable]'},{'name': 'EuiTableV2Component', 'selector': 'eui-table-v2, table[euiTableV2]'},{'name': 'EuiTableV2FilterComponent', 'selector': 'eui-table-v2-filter'},{'name': 'EuiTableV2SelectableHeaderComponent', 'selector': 'tr[isHeaderSelectable]'},{'name': 'EuiTableV2SelectableRowComponent', 'selector': 'tr[isDataSelectable]'},{'name': 'EuiTableV2SortableColComponent', 'selector': 'th[isSortable]'},{'name': 'EuiTabsComponent', 'selector': 'eui-tabs'},{'name': 'EuiTextareaComponent', 'selector': 'textarea[euiTextArea]'},{'name': 'EuiTimebarComponent', 'selector': 'eui-timebar'},{'name': 'EuiTimelineComponent', 'selector': 'eui-timeline'},{'name': 'EuiTimelineItemComponent', 'selector': 'eui-timeline-item'},{'name': 'EuiTimepickerComponent', 'selector': 'eui-timepicker'},{'name': 'EuiToolbarAppComponent', 'selector': 'eui-toolbar-app'},{'name': 'EuiToolbarCenterComponent', 'selector': 'eui-toolbar-center'},{'name': 'EuiToolbarComponent', 'selector': 'eui-toolbar'},{'name': 'EuiToolbarEnvironmentComponent', 'selector': 'eui-toolbar-environment'},{'name': 'EuiToolbarItemComponent', 'selector': 'eui-toolbar-item'},{'name': 'EuiToolbarItemsComponent', 'selector': 'eui-toolbar-items'},{'name': 'EuiToolbarLogoComponent', 'selector': 'eui-toolbar-logo'},{'name': 'EuiToolbarMenuComponent', 'selector': 'eui-toolbar-menu'},{'name': 'EuiToolbarNavbarComponent', 'selector': 'eui-toolbar-navbar'},{'name': 'EuiToolbarNavbarItemComponent', 'selector': 'eui-toolbar-navbar-item'},{'name': 'EuiToolbarSearchComponent', 'selector': 'eui-toolbar-search'},{'name': 'EuiToolbarSelectorComponent', 'selector': 'eui-toolbar-selector'},{'name': 'EuiTooltipContainerComponent', 'selector': 'eui-tooltip-container.component'},{'name': 'EuiTreeComponent', 'selector': 'eui-tree'},{'name': 'EuiTreeListComponent', 'selector': 'eui-tree-list'},{'name': 'EuiTreeListItemComponent', 'selector': 'eui-tree-list-item'},{'name': 'EuiTreeListItemContentComponent', 'selector': 'eui-tree-list-item-content'},{'name': 'EuiTreeListToolbarComponent', 'selector': 'eui-tree-list-toolbar'},{'name': 'EuiUserProfileCardComponent', 'selector': 'eui-user-profile-card'},{'name': 'EuiUserProfileComponent', 'selector': 'eui-user-profile'},{'name': 'EuiUserProfileMenuComponent', 'selector': 'eui-user-profile-menu'},{'name': 'EuiUserProfileMenuItemComponent', 'selector': 'eui-user-profile-menu-item'},{'name': 'EuiWizardComponent', 'selector': 'eui-wizard'},{'name': 'EuiWizardStepComponent', 'selector': 'eui-wizard-step'},{'name': 'PaginationComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundStickyLastColumnComponent', 'selector': ''},{'name': 'QuillEditorComponent', 'selector': 'quill-editor'},{'name': 'VirtualScrollAsyncComponent', 'selector': ''},{'name': 'VirtualScrollComponent', 'selector': ''}];
627
627
  var DIRECTIVES = [{'name': 'AutoResizeDirective', 'selector': 'textarea[autoResize]'},{'name': 'BaseStatesDirective', 'selector': '[euiBase]'},{'name': 'EuiAccordionItemHeaderDirective', 'selector': 'eui-accordion-item-header'},{'name': 'EuiActionButtonsDirective', 'selector': 'eui-action-buttons'},{'name': 'EuiAppPageWrapperDirective', 'selector': 'eui-app-page-wrapper'},{'name': 'EuiArrowKeyNavigableDirective', 'selector': '[euiArrowKeyNavigable]'},{'name': 'EuiChipListAppendContentDirective', 'selector': 'euiChipListAppendContent'},{'name': 'EuiClearableDirective', 'selector': 'input[euiClearable]'},{'name': 'EuiDashboardButtonIconDirective', 'selector': 'eui-dashboard-button-icon'},{'name': 'EuiDashboardButtonLabelDirective', 'selector': 'eui-dashboard-button-label'},{'name': 'EuiDialogFooterDirective', 'selector': 'eui-dialog-footer'},{'name': 'EuiDialogHeaderDirective', 'selector': 'eui-dialog-header'},{'name': 'EuiDropdownContentDirective', 'selector': 'eui-dropdown-content'},{'name': 'EuiDropdownTreeDirective', 'selector': 'eui-dropdown[euiDropdownTree]'},{'name': 'EuiEditorCustomToolbarTagDirective', 'selector': 'euiEditorCustomToolbar'},{'name': 'EuiEditorMaxlengthDirective', 'selector': '[formControlName][euiEditorMaxlength]'},{'name': 'EuiFieldsetLabelExtraContentTagDirective', 'selector': 'euiFieldsetLabelExtraContent'},{'name': 'EuiFieldsetLabelRightContentTagDirective', 'selector': 'euiFieldsetLabelRightContent'},{'name': 'EuiHasPermissionDirective', 'selector': '[euiHasPermission]'},{'name': 'EuiInputNumberDirective', 'selector': 'input[euiInputNumber][formControl],input[euiInputNumber][formControlName],input[euiInputNumber][ngModel]'},{'name': 'EuiLetterFormatDirective', 'selector': '[euiLetterFormat]'},{'name': 'EuiLoadingDirective', 'selector': '[euiLoading]'},{'name': 'EuiMaxLengthDirective', 'selector': '
@@ -1730,7 +1730,7 @@
1730
1730
  <script src="../js/libs/htmlparser.js"></script>
1731
1731
  <script src="../js/libs/deep-iterator.js"></script>
1732
1732
  <script>
1733
- var COMPONENT_TEMPLATE = '<div><eui-icon-button class="eui-notifications__trigger" icon="notifications:outline" fillColor="white" (click)="onClicked($event)" (keydown.enter)="onClicked($event)" (keydown.esc)="onHide()"> <eui-badge *ngIf="count" euiDanger [maxCharCount]="2">{{ count }}</eui-badge></eui-icon-button><eui-overlay [isActive]="isOverlayActive" class="eui-overlay-offset--width-30"> <eui-overlay-header> <div class="eui-notifications__header-title"> <div class="eui-notifications__header-title-label"> {{ headerTitleLabel ? headerTitleLabel : (\'eui.MYNOTIFICATIONS\' | translate) }} <span *ngIf="items" class="eui-u-cursor-help eui-u-ml-s" attr.aria-label="{{ unreadLabel ? unreadLabel : (\'eui.NOTIFICATIONSUNREAD\' | translate) }}" title="{{ unreadLabel ? unreadLabel : (\'eui.NOTIFICATIONSUNREAD\' | translate) }}"> </span> <eui-badge *ngIf="count">{{ count }}</eui-badge> <eui-badge *ngIf="!count">{{ items.length }}</eui-badge> </div> </div> <div *ngIf="items" class="eui-notifications__header-actions"> <button euiButton euiPrimary euiRounded euiIconButton euiBasicButton euiSizeS type="button" *ngIf="isShowMarkAllAsReadButton" [attr.aria-label]="markAllAsReadLabel ? markAllAsReadLabel : (\'eui.NOTIFICATIONMARKALLASREAD\' | translate)" title="{{ markAllAsReadLabel ? markAllAsReadLabel : (\'eui.NOTIFICATIONMARKALLASREAD\' | translate) }}" (click)="onMarkAllAsRead($event)"> <eui-icon-svg icon="checkmark-done:outline" fillColor="neutral"></eui-icon-svg> </button> <button euiButton euiPrimary euiRounded euiIconButton euiBasicButton euiSizeS type="button" *ngIf="isShowSettingsButton" [attr.aria-label]="settingsLabel ? settingsLabel : (\'eui.SETTINGS\' | translate)" title="{{ settingsLabel ? settingsLabel : (\'eui.SETTINGS\' | translate) }}" (click)="onSettings($event)"> <eui-icon-svg icon="settings:outline" fillColor="neutral"></eui-icon-svg> </button> <button euiButton euiPrimary euiRounded euiIconButton euiBasicButton euiSizeS type="button" *ngIf="isShowRefreshButton" [attr.aria-label]="refreshLabel ? refreshLabel : (\'eui.REFRESH\' | translate)" title="{{ refreshLabel ? refreshLabel : (\'eui.REFRESH\' | translate) }}" (click)="onRefresh($event)"> <eui-icon-svg icon="refresh:outline" fillColor="neutral"></eui-icon-svg> </button> </div> </eui-overlay-header> <eui-overlay-body> <ul class="eui-notifications-items" *ngIf="items"> <eui-notification-item *ngFor="let item of items; trackBy: trackByFn" [item]="item" [dateFormat]="dateFormat" [markAsReadLabel]="markAsReadLabel" [isShowMarkAsRead]="isShowMarkAsRead" (itemClick)="onItemClick($event)" (itemMarkAsRead)="onItemMarkAsRead($event)"> </eui-notification-item> </ul> </eui-overlay-body> <eui-overlay-footer> <ng-template [ngIf]="items?.length > 0"> <a (click)="onViewAllClick($event)" class="eui-u-text-link"> <strong>{{ viewAllNotificationsLabel ? viewAllNotificationsLabel : (\'eui.VIEWALLNOTIFICATIONS\' | translate) }}</strong> </a> </ng-template> <ng-template [ngIf]="items?.length === 0"> <div class="ux-notification__item-content" *ngIf="!noNotificationFoundLink"> {{ noNotificationFoundLabel ? noNotificationFoundLabel : (\'eui.NONOTIFICATIONFOUND\' | translate) }} </div> <div class="ux-notification__item-content" *ngIf="noNotificationFoundLink"> <a (click)="onNoNotificationFoundClick()" class="eui-u-text-link"> {{ noNotificationFoundLabel ? noNotificationFoundLabel : (\'eui.NONOTIFICATIONFOUND\' | translate) }} </a> </div> </ng-template> </eui-overlay-footer></eui-overlay></div>'
1733
+ var COMPONENT_TEMPLATE = '<div><eui-icon-button class="eui-notifications__trigger" icon="notifications:outline" fillColor="white" (click)="onClicked($event)" (keydown.enter)="onClicked($event)" (keydown.esc)="onHide()"> @if (count) { <eui-badge euiDanger [maxCharCount]="2">{{ count }}</eui-badge> }</eui-icon-button><eui-overlay [isActive]="isOverlayActive" class="eui-overlay-offset--width-30"> <eui-overlay-header> <div class="eui-notifications__header-title"> <div class="eui-notifications__header-title-label"> {{ headerTitleLabel ? headerTitleLabel : (\'eui.MYNOTIFICATIONS\' | translate) }} @if (items) { <span class="eui-u-cursor-help eui-u-ml-s" attr.aria-label="{{ unreadLabel ? unreadLabel : (\'eui.NOTIFICATIONSUNREAD\' | translate) }}" title="{{ unreadLabel ? unreadLabel : (\'eui.NOTIFICATIONSUNREAD\' | translate) }}"> </span> } <eui-badge>{{ items.length }}</eui-badge> </div> </div> @if (items) { <div class="eui-notifications__header-actions"> @if (isShowMarkAllAsReadButton) { <button euiButton euiPrimary euiRounded euiIconButton euiBasicButton euiSizeS type="button" [attr.aria-label]="markAllAsReadLabel ? markAllAsReadLabel : (\'eui.NOTIFICATIONMARKALLASREAD\' | translate)" title="{{ markAllAsReadLabel ? markAllAsReadLabel : (\'eui.NOTIFICATIONMARKALLASREAD\' | translate) }}" (click)="onMarkAllAsRead($event)"> <eui-icon-svg icon="checkmark-done:outline" fillColor="neutral"></eui-icon-svg> </button> } @if (isShowSettingsButton) { <button euiButton euiPrimary euiRounded euiIconButton euiBasicButton euiSizeS type="button" [attr.aria-label]="settingsLabel ? settingsLabel : (\'eui.SETTINGS\' | translate)" title="{{ settingsLabel ? settingsLabel : (\'eui.SETTINGS\' | translate) }}" (click)="onSettings($event)"> <eui-icon-svg icon="settings:outline" fillColor="neutral"></eui-icon-svg> </button> } @if (isShowRefreshButton) { <button euiButton euiPrimary euiRounded euiIconButton euiBasicButton euiSizeS type="button" [attr.aria-label]="refreshLabel ? refreshLabel : (\'eui.REFRESH\' | translate)" title="{{ refreshLabel ? refreshLabel : (\'eui.REFRESH\' | translate) }}" (click)="onRefresh($event)"> <eui-icon-svg icon="refresh:outline" fillColor="neutral"></eui-icon-svg> </button> } </div> } </eui-overlay-header> <eui-overlay-body> @if (items) { <ul class="eui-notifications-items"> @for (item of items; track item) { <eui-notification-item [item]="item" [dateFormat]="dateFormat" [markAsReadLabel]="markAsReadLabel" [isShowMarkAsRead]="isShowMarkAsRead" (itemClick)="onItemClick($event)" (itemMarkAsRead)="onItemMarkAsRead($event)"> </eui-notification-item> } </ul> } </eui-overlay-body> @if ((items?.length > 0 && isShowViewAllAction) || items?.length === 0) { <eui-overlay-footer> @if (items?.length > 0 && isShowViewAllAction) { <a (click)="onViewAllClick($event)" class="eui-u-text-link"> <strong>{{ viewAllNotificationsLabel ? viewAllNotificationsLabel : (\'eui.VIEWALLNOTIFICATIONS\' | translate) }}</strong> </a> } @if (items?.length === 0) { @if (!noNotificationFoundLink) { <div class="ux-notification__item-content"> {{ noNotificationFoundLabel ? noNotificationFoundLabel : (\'eui.NONOTIFICATIONFOUND\' | translate) }} </div> } @if (noNotificationFoundLink) { <div class="ux-notification__item-content"> <a (click)="onNoNotificationFoundClick()" class="eui-u-text-link"> {{ noNotificationFoundLabel ? noNotificationFoundLabel : (\'eui.NONOTIFICATIONFOUND\' | translate) }} </a> </div> } } </eui-overlay-footer> }</eui-overlay></div>'
1734
1734
  var COMPONENTS = [{'name': 'ChartComponent', 'selector': 'eui-apex-chart'},{'name': 'DefaultComponent', 'selector': ''},{'name': 'DefaultComponent', 'selector': ''},{'name': 'EuiAccordionComponent', 'selector': 'eui-accordion'},{'name': 'EuiAccordionItemComponent', 'selector': 'eui-accordion-item'},{'name': 'EuiAlertComponent', 'selector': 'div[euiAlert], eui-alert'},{'name': 'EuiAlertTitleComponent', 'selector': 'eui-alert-title'},{'name': 'EuiAppBreadcrumbComponent', 'selector': 'eui-app-breadcrumb'},{'name': 'EuiAppComponent', 'selector': 'eui-app'},{'name': 'EuiAppFooterComponent', 'selector': 'eui-app-footer'},{'name': 'EuiAppHeaderComponent', 'selector': 'eui-app-header'},{'name': 'EuiAppSidebarBodyComponent', 'selector': 'eui-app-sidebar-body'},{'name': 'EuiAppSidebarComponent', 'selector': 'eui-app-sidebar'},{'name': 'EuiAppSidebarDrawerComponent', 'selector': 'eui-app-sidebar-drawer'},{'name': 'EuiAppSidebarFooterComponent', 'selector': 'eui-app-sidebar-footer'},{'name': 'EuiAppSidebarHeaderComponent', 'selector': 'eui-app-sidebar-header'},{'name': 'EuiAppSidebarHeaderUserProfileComponent', 'selector': 'eui-app-sidebar-header-user-profile'},{'name': 'EuiAppSidebarMenuComponent', 'selector': 'eui-app-sidebar-menu'},{'name': 'EuiAppToolbarComponent', 'selector': 'eui-app-toolbar'},{'name': 'EuiAppTopMessageComponent', 'selector': 'eui-app-top-message'},{'name': 'EuiAutocompleteAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsAsyncTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteChipsTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAutocompleteComponent', 'selector': 'eui-autocomplete, input[euiAutocomplete]'},{'name': 'EuiAutocompleteOptionComponent', 'selector': 'eui-autocomplete-option'},{'name': 'EuiAutocompleteOptionGroupComponent', 'selector': 'eui-autocomplete-option-group'},{'name': 'EuiAutocompleteTestComponent', 'selector': 'eui-autocomplete-test-component'},{'name': 'EuiAvatarBadgeComponent', 'selector': 'eui-avatar-badge'},{'name': 'EuiAvatarComponent', 'selector': 'div[euiAvatar], span[euiAvatar], eui-avatar'},{'name': 'EuiAvatarIconComponent', 'selector': 'eui-avatar-icon'},{'name': 'EuiAvatarImageComponent', 'selector': 'eui-avatar-image'},{'name': 'EuiAvatarListComponent', 'selector': 'eui-avatar-list'},{'name': 'EuiAvatarTextComponent', 'selector': 'eui-avatar-text'},{'name': 'EuiBadgeComponent', 'selector': 'div[euiBadge], span[euiBadge], eui-badge'},{'name': 'EuiBlockContentComponent', 'selector': 'eui-block-content'},{'name': 'EuiBlockDocumentComponent', 'selector': 'eui-block-document'},{'name': 'EuiBreadcrumbComponent', 'selector': 'eui-breadcrumb'},{'name': 'EuiBreadcrumbItemComponent', 'selector': 'eui-breadcrumb-item'},{'name': 'EuiButtonComponent', 'selector': 'button[euiButton], a[euiButton]'},{'name': 'EuiButtonGroupComponent', 'selector': 'eui-button-group'},{'name': 'EuiButtonV2Component', 'selector': 'eui-button-v2'},{'name': 'EuiCardComponent', 'selector': 'eui-card'},{'name': 'EuiCardContentComponent', 'selector': 'eui-card-content'},{'name': 'EuiCardFooterActionButtonsComponent', 'selector': 'eui-card-footer-action-buttons'},{'name': 'EuiCardFooterActionIconsComponent', 'selector': 'eui-card-footer-action-icons'},{'name': 'EuiCardFooterComponent', 'selector': 'eui-card-footer'},{'name': 'EuiCardFooterMenuComponent', 'selector': 'eui-card-footer-menu'},{'name': 'EuiCardFooterMenuContentComponent', 'selector': 'eui-card-footer-menu-content'},{'name': 'EuiCardHeaderBodyComponent', 'selector': 'eui-card-header-body'},{'name': 'EuiCardHeaderComponent', 'selector': 'eui-card-header'},{'name': 'EuiCardHeaderLeftContentComponent', 'selector': 'eui-card-header-left-content'},{'name': 'EuiCardHeaderRightContentComponent', 'selector': 'eui-card-header-right-content'},{'name': 'EuiCardHeaderSubtitleComponent', 'selector': 'eui-card-header-subtitle'},{'name': 'EuiCardHeaderTitleComponent', 'selector': 'eui-card-header-title'},{'name': 'EuiCardMediaComponent', 'selector': 'eui-card-media'},{'name': 'EuiChipComponent', 'selector': 'eui-chip, span[euiChip], li[euiChip]'},{'name': 'EuiChipListComponent', 'selector': 'eui-chip-list, div[euiChipList], ul[euiChipList]'},{'name': 'EuiDashboardButtonComponent', 'selector': 'eui-dashboard-button'},{'name': 'EuiDashboardCardComponent', 'selector': 'eui-dashboard-card'},{'name': 'EuiDashboardCardContentComponent', 'selector': 'eui-dashboard-card-content'},{'name': 'EuiDatepickerComponent', 'selector': 'eui-datepicker'},{'name': 'EuiDateRangeSelectorComponent', 'selector': 'eui-date-range-selector'},{'name': 'EuiDialogComponent', 'selector': 'eui-dialog'},{'name': 'EuiDialogContainerComponent', 'selector': 'eui-dialog-container'},{'name': 'EuiDimmerComponent', 'selector': 'eui-dimmer'},{'name': 'EuiDisableContentComponent', 'selector': 'eui-disable-content'},{'name': 'EuiDiscussionThreadComponent', 'selector': 'eui-discussion-thread'},{'name': 'EuiDiscussionThreadItemComponent', 'selector': 'eui-discussion-thread-item'},{'name': 'EuiDropdownComponent', 'selector': 'eui-dropdown'},{'name': 'EuiDropdownItemComponent', 'selector': 'eui-dropdown-item, [euiDropdownItem]'},{'name': 'EuiEditorComponent', 'selector': 'eui-editor'},{'name': 'EuiEditorCountersComponent', 'selector': 'eui-editor-counters'},{'name': 'EuiEditorHtmlViewComponent', 'selector': 'eui-editor-html-view'},{'name': 'EuiEditorImageDialogComponent', 'selector': ''},{'name': 'EuiEditorJsonViewComponent', 'selector': 'eui-editor-json-view'},{'name': 'EuiFeedbackMessageComponent', 'selector': 'eui-feedback-message'},{'name': 'EuiFieldsetComponent', 'selector': 'eui-fieldset'},{'name': 'EuiFilePreviewComponent', 'selector': 'eui-file-preview'},{'name': 'EuiFileUploadComponent', 'selector': 'eui-file-upload'},{'name': 'EuiFileUploadProgressComponent', 'selector': 'eui-file-upload-progress'},{'name': 'EuiFooterComponent', 'selector': 'eui-footer'},{'name': 'EuiGrowlComponent', 'selector': 'eui-growl'},{'name': 'EuiHeaderAppComponent', 'selector': 'eui-header-app'},{'name': 'EuiHeaderAppNameComponent', 'selector': 'eui-header-app-name'},{'name': 'EuiHeaderAppNameLogoComponent', 'selector': 'eui-header-app-name-logo'},{'name': 'EuiHeaderAppSubtitleComponent', 'selector': 'eui-header-app-subtitle'},{'name': 'EuiHeaderComponent', 'selector': 'eui-header'},{'name': 'EuiHeaderEnvironmentComponent', 'selector': 'eui-header-environment'},{'name': 'EuiHeaderLogoComponent', 'selector': 'eui-header-logo'},{'name': 'EuiHeaderRightContentComponent', 'selector': 'eui-header-right-content'},{'name': 'EuiHeaderSearchComponent', 'selector': 'eui-header-search'},{'name': 'EuiHeaderUserProfileComponent', 'selector': 'eui-header-user-profile'},{'name': 'EuiIconButtonComponent', 'selector': 'eui-icon-button'},{'name': 'EuiIconButtonExpanderComponent', 'selector': 'eui-icon-button-expander'},{'name': 'EuiIconColorComponent', 'selector': 'eui-icon-colored, span[euiIconColored], [euiIconColored]'},{'name': 'EuiIconInputComponent', 'selector': 'eui-icon-input'},{'name': 'EuiIconStateComponent', 'selector': 'eui-icon-state'},{'name': 'EuiIconSvgComponent', 'selector': 'eui-icon-svg, span[euiIconSvg], i[euiIconSvg]'},{'name': 'EuiIconToggleComponent', 'selector': 'eui-icon-toggle'},{'name': 'EuiInputCheckboxComponent', 'selector': 'input[euiInputCheckBox]'},{'name': 'EuiInputGroupComponent', 'selector': 'div[euiInputGroup]'},{'name': 'EuiInputNumberComponent', 'selector': 'input[euiInputNumber]'},{'name': 'EuiInputRadioComponent', 'selector': 'input[euiInputRadio]'},{'name': 'EuiInputTextComponent', 'selector': 'input[euiInputText]'},{'name': 'EuiLabelComponent', 'selector': 'label[euiLabel], span[euiLabel], div[euiLabel], a[euiLabel], eui-label,
1735
1735
  label[euiSublabel], span[euiSublabel], div[euiSublabel], a[euiSublabel], eui-sublabel'},{'name': 'EuiLanguageSelectorComponent', 'selector': 'eui-language-selector'},{'name': 'EuiListComponent', 'selector': '[euiList], eui-list'},{'name': 'EuiListItemComponent', 'selector': '[euiListItem], eui-list-item'},{'name': 'EuiMenuComponent', 'selector': 'eui-menu'},{'name': 'EuiMenuItemComponent', 'selector': 'eui-menu-item'},{'name': 'EuiMessageBoxComponent', 'selector': 'eui-message-box'},{'name': 'EuiModalSelectorComponent', 'selector': 'eui-modal-selector'},{'name': 'EuiNotificationItemComponent', 'selector': 'eui-notification-item'},{'name': 'EuiNotificationItemV2Component', 'selector': 'eui-notification-item-v2'},{'name': 'EuiNotificationsComponent', 'selector': 'eui-notifications'},{'name': 'EuiNotificationsV2Component', 'selector': 'eui-notifications-v2'},{'name': 'EuiOverlayBodyComponent', 'selector': 'eui-overlay-body'},{'name': 'EuiOverlayComponent', 'selector': 'eui-overlay'},{'name': 'EuiOverlayFooterComponent', 'selector': 'eui-overlay-footer'},{'name': 'EuiOverlayHeaderComponent', 'selector': 'eui-overlay-header'},{'name': 'EuiOverlayHeaderTitleComponent', 'selector': 'eui-overlay-header-title'},{'name': 'EuiPageBreadcrumbComponent', 'selector': 'eui-page-breadcrumb'},{'name': 'EuiPageColumnComponent', 'selector': 'eui-page-column'},{'name': 'EuiPageColumnsComponent', 'selector': 'eui-page-columns'},{'name': 'EuiPageComponent', 'selector': 'eui-page'},{'name': 'EuiPageContentComponent', 'selector': 'eui-page-content'},{'name': 'EuiPageFooterComponent', 'selector': 'eui-page-footer'},{'name': 'EuiPageHeaderActionItemsComponent', 'selector': 'eui-page-header-action-items'},{'name': 'EuiPageHeaderBodyComponent', 'selector': 'eui-page-header-body'},{'name': 'EuiPageHeaderComponent', 'selector': 'eui-page-header'},{'name': 'EuiPageHeaderSubLabelComponent', 'selector': 'eui-page-header-sub-label'},{'name': 'EuiPageHeroHeaderComponent', 'selector': 'eui-page-hero-header'},{'name': 'EuiPageTopContentComponent', 'selector': 'eui-page-top-content'},{'name': 'EuiPaginatorComponent', 'selector': 'eui-paginator'},{'name': 'EuiPopoverComponent', 'selector': 'eui-popover'},{'name': 'EuiProgressBarComponent', 'selector': 'eui-progress-bar'},{'name': 'EuiProgressCircleComponent', 'selector': 'eui-progress-circle'},{'name': 'EuiResizableComponent', 'selector': 'eui-resizable'},{'name': 'EuiSelectComponent', 'selector': 'select[euiSelect]'},{'name': 'EuiSidebarMenuComponent', 'selector': 'eui-sidebar-menu'},{'name': 'EuiSidebarToggleComponent', 'selector': 'eui-sidebar-toggle'},{'name': 'EuiSkeletonComponent', 'selector': 'eui-skeleton'},{'name': 'EuiSlideToggleComponent', 'selector': 'eui-slide-toggle'},{'name': 'EuiSlideToggleTestComponent', 'selector': 'eui-slide-toggle-test-component'},{'name': 'EuiSplitButtonComponent', 'selector': 'eui-split-button'},{'name': 'EuiTabComponent', 'selector': 'eui-tab'},{'name': 'EuiTabContentComponent', 'selector': 'eui-tab-content, euiTabContent'},{'name': 'EuiTabLabelComponent', 'selector': 'eui-tab-label, euiTabLabel'},{'name': 'EuiTableComponent', 'selector': 'eui-table, table[euiTable]'},{'name': 'EuiTableExpandableRowComponent', 'selector': 'tr[euiTableExpandableRow]'},{'name': 'EuiTableFilterComponent', 'selector': 'eui-table-filter'},{'name': 'EuiTableSelectableHeaderComponent', 'selector': 'tr[isSelectableHeader]'},{'name': 'EuiTableSelectableRowComponent', 'selector': 'tr[isSelectable]'},{'name': 'EuiTableSortableColComponent', 'selector': 'th[sortable]'},{'name': 'EuiTableV2Component', 'selector': 'eui-table-v2, table[euiTableV2]'},{'name': 'EuiTableV2FilterComponent', 'selector': 'eui-table-v2-filter'},{'name': 'EuiTableV2SelectableHeaderComponent', 'selector': 'tr[isHeaderSelectable]'},{'name': 'EuiTableV2SelectableRowComponent', 'selector': 'tr[isDataSelectable]'},{'name': 'EuiTableV2SortableColComponent', 'selector': 'th[isSortable]'},{'name': 'EuiTabsComponent', 'selector': 'eui-tabs'},{'name': 'EuiTextareaComponent', 'selector': 'textarea[euiTextArea]'},{'name': 'EuiTimebarComponent', 'selector': 'eui-timebar'},{'name': 'EuiTimelineComponent', 'selector': 'eui-timeline'},{'name': 'EuiTimelineItemComponent', 'selector': 'eui-timeline-item'},{'name': 'EuiTimepickerComponent', 'selector': 'eui-timepicker'},{'name': 'EuiToolbarAppComponent', 'selector': 'eui-toolbar-app'},{'name': 'EuiToolbarCenterComponent', 'selector': 'eui-toolbar-center'},{'name': 'EuiToolbarComponent', 'selector': 'eui-toolbar'},{'name': 'EuiToolbarEnvironmentComponent', 'selector': 'eui-toolbar-environment'},{'name': 'EuiToolbarItemComponent', 'selector': 'eui-toolbar-item'},{'name': 'EuiToolbarItemsComponent', 'selector': 'eui-toolbar-items'},{'name': 'EuiToolbarLogoComponent', 'selector': 'eui-toolbar-logo'},{'name': 'EuiToolbarMenuComponent', 'selector': 'eui-toolbar-menu'},{'name': 'EuiToolbarNavbarComponent', 'selector': 'eui-toolbar-navbar'},{'name': 'EuiToolbarNavbarItemComponent', 'selector': 'eui-toolbar-navbar-item'},{'name': 'EuiToolbarSearchComponent', 'selector': 'eui-toolbar-search'},{'name': 'EuiToolbarSelectorComponent', 'selector': 'eui-toolbar-selector'},{'name': 'EuiTooltipContainerComponent', 'selector': 'eui-tooltip-container.component'},{'name': 'EuiTreeComponent', 'selector': 'eui-tree'},{'name': 'EuiTreeListComponent', 'selector': 'eui-tree-list'},{'name': 'EuiTreeListItemComponent', 'selector': 'eui-tree-list-item'},{'name': 'EuiTreeListItemContentComponent', 'selector': 'eui-tree-list-item-content'},{'name': 'EuiTreeListToolbarComponent', 'selector': 'eui-tree-list-toolbar'},{'name': 'EuiUserProfileCardComponent', 'selector': 'eui-user-profile-card'},{'name': 'EuiUserProfileComponent', 'selector': 'eui-user-profile'},{'name': 'EuiUserProfileMenuComponent', 'selector': 'eui-user-profile-menu'},{'name': 'EuiUserProfileMenuItemComponent', 'selector': 'eui-user-profile-menu-item'},{'name': 'EuiWizardComponent', 'selector': 'eui-wizard'},{'name': 'EuiWizardStepComponent', 'selector': 'eui-wizard-step'},{'name': 'PaginationComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundComponent', 'selector': ''},{'name': 'PlaygroundStickyLastColumnComponent', 'selector': ''},{'name': 'QuillEditorComponent', 'selector': 'quill-editor'},{'name': 'VirtualScrollAsyncComponent', 'selector': ''},{'name': 'VirtualScrollComponent', 'selector': ''}];
1736
1736
  var DIRECTIVES = [{'name': 'AutoResizeDirective', 'selector': 'textarea[autoResize]'},{'name': 'BaseStatesDirective', 'selector': '[euiBase]'},{'name': 'EuiAccordionItemHeaderDirective', 'selector': 'eui-accordion-item-header'},{'name': 'EuiActionButtonsDirective', 'selector': 'eui-action-buttons'},{'name': 'EuiAppPageWrapperDirective', 'selector': 'eui-app-page-wrapper'},{'name': 'EuiArrowKeyNavigableDirective', 'selector': '[euiArrowKeyNavigable]'},{'name': 'EuiChipListAppendContentDirective', 'selector': 'euiChipListAppendContent'},{'name': 'EuiClearableDirective', 'selector': 'input[euiClearable]'},{'name': 'EuiDashboardButtonIconDirective', 'selector': 'eui-dashboard-button-icon'},{'name': 'EuiDashboardButtonLabelDirective', 'selector': 'eui-dashboard-button-label'},{'name': 'EuiDialogFooterDirective', 'selector': 'eui-dialog-footer'},{'name': 'EuiDialogHeaderDirective', 'selector': 'eui-dialog-header'},{'name': 'EuiDropdownContentDirective', 'selector': 'eui-dropdown-content'},{'name': 'EuiDropdownTreeDirective', 'selector': 'eui-dropdown[euiDropdownTree]'},{'name': 'EuiEditorCustomToolbarTagDirective', 'selector': 'euiEditorCustomToolbar'},{'name': 'EuiEditorMaxlengthDirective', 'selector': '[formControlName][euiEditorMaxlength]'},{'name': 'EuiFieldsetLabelExtraContentTagDirective', 'selector': 'euiFieldsetLabelExtraContent'},{'name': 'EuiFieldsetLabelRightContentTagDirective', 'selector': 'euiFieldsetLabelRightContent'},{'name': 'EuiHasPermissionDirective', 'selector': '[euiHasPermission]'},{'name': 'EuiInputNumberDirective', 'selector': 'input[euiInputNumber][formControl],input[euiInputNumber][formControlName],input[euiInputNumber][ngModel]'},{'name': 'EuiLetterFormatDirective', 'selector': '[euiLetterFormat]'},{'name': 'EuiLoadingDirective', 'selector': '[euiLoading]'},{'name': 'EuiMaxLengthDirective', 'selector': '