@eui/components 18.2.12 → 18.2.13-snapshot-1747380207562
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.
- package/docs/components/EuiEditorComponent.html +1 -1
- package/docs/components/EuiNotificationsComponent.html +1 -82
- package/docs/components/EuiNotificationsV2Component.html +1 -1
- package/docs/dependencies.html +2 -2
- package/docs/js/menu-wc.js +9 -9
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/eui-list/eui-list-item/eui-list-item.component.mjs +2 -2
- package/esm2022/eui-list/eui-list.component.mjs +2 -2
- package/esm2022/eui-tabs/eui-tab/eui-tab.component.mjs +2 -2
- package/esm2022/eui-tabs/eui-tabs.component.mjs +2 -2
- package/esm2022/externals/eui-editor/eui-editor.component.mjs +4 -3
- package/esm2022/externals/eui-editor/eui-editor.module.mjs +7 -3
- package/esm2022/layout/eui-notifications/eui-notifications.component.mjs +15 -10
- package/esm2022/layout/eui-notifications-v2/eui-notifications.component.mjs +14 -3
- package/externals/eui-editor/eui-editor.module.d.ts +2 -1
- package/externals/eui-editor/eui-editor.module.d.ts.map +1 -1
- package/fesm2022/eui-components-eui-list.mjs +4 -4
- package/fesm2022/eui-components-eui-list.mjs.map +1 -1
- package/fesm2022/eui-components-eui-tabs.mjs +4 -4
- package/fesm2022/eui-components-eui-tabs.mjs.map +1 -1
- package/fesm2022/eui-components-externals-eui-editor.mjs +9 -4
- package/fesm2022/eui-components-externals-eui-editor.mjs.map +1 -1
- package/fesm2022/eui-components-layout.mjs +26 -10
- package/fesm2022/eui-components-layout.mjs.map +1 -1
- package/layout/eui-notifications/eui-notifications.component.d.ts +2 -1
- package/layout/eui-notifications/eui-notifications.component.d.ts.map +1 -1
- package/layout/eui-notifications-v2/eui-notifications.component.d.ts +2 -0
- package/layout/eui-notifications-v2/eui-notifications.component.d.ts.map +1 -1
- package/package.json +10 -10
@@ -2637,7 +2637,7 @@
|
|
2637
2637
|
<script src="../js/libs/htmlparser.js"></script>
|
2638
2638
|
<script src="../js/libs/deep-iterator.js"></script>
|
2639
2639
|
<script>
|
2640
|
-
var COMPONENT_TEMPLATE = '<div><ng-container *ngIf="readyToRender"><!-- NOTE: We need to create the editor instance even for readonly mode. This is because we rely on the editor to format HTML/JSON content into a properly structured HTML output that can\'t be done another way. Future improvement: Consider completely replacing Quill with a markdown-only editor, which would be a better solution. --><!--@if (!isReadOnly) {--> <quill-editor [ngStyle]="{display: isReadOnly ? \'none\' : null}" [id]="generatedId" class="{{ class | classFilter }}" [class.eui-editor--focused]="isFocused" [format]="format" [formats]="formats" [sanitize]="true" [modules]="modules" [theme]="theme" [placeholder]="placeholder" [customToolbarPosition]="customToolbarPosition" [formControl]="formControl" [debug]="debug" [tabindex]="tabindex" [preserveWhitespace]="true" [hasImageFeature]="hasImageFeature" (onEditorCreated)="_onEditorCreated($event)" (onEditorChanged)="_onEditorChanged($event)" (onContentChanged)="_onContentChanged($event)" (onSelectionChanged)="_onSelectionChanged($event)" (onFocus)="_onFocus($event)" (onBlur)="_onBlur($event)"> <div *ngIf="!euiEditorCustomToolbar" quill-editor-toolbar class="eui-u-flex-gap-s"> <div *ngIf="toolbarConfig.headings" class="ql-formats" role="application" aria-label="Select headings style" euiTooltip="{{ toolbarConfig.headings.label }}"> <select class="ql-header" [attr.aria-label]="toolbarConfig.headings.label"> <option value="{{ value }}" *ngFor="let value of toolbarConfig.headings.options">Heading {{ value }}</option> <option selected>Normal</option> </select> </div> <div *ngIf="toolbarConfig.font" class="ql-formats" role="application" aria-label="Select font style" euiTooltip="{{ toolbarConfig.font.label }}"> <select class="ql-font" [attr.aria-label]="toolbarConfig.font.label"> <option selected>Sans Serif</option> <option value="serif">Serif</option> <option value="monospace">Monospace</option> </select> </div> <div *ngIf="toolbarConfig.bold || toolbarConfig.italic || toolbarConfig.underline || toolbarConfig.strike" class="ql-formats"> <button *ngIf="toolbarConfig.bold" class="ql-bold" type="button" [attr.aria-label]="toolbarConfig.bold.label" euiTooltip="{{ toolbarConfig.bold.label }}"> </button> <button *ngIf="toolbarConfig.italic" class="ql-italic" type="button" [attr.aria-label]="toolbarConfig.italic.label" euiTooltip="{{ toolbarConfig.italic.label }}"> </button> <button *ngIf="toolbarConfig.underline" class="ql-underline" type="button" [attr.aria-label]="toolbarConfig.underline.label" euiTooltip="{{ toolbarConfig.underline.label }}"> </button> <button *ngIf="toolbarConfig.strike" class="ql-strike" type="button" [attr.aria-label]="toolbarConfig.strike.label" euiTooltip="{{ toolbarConfig.strike.label }}"> </button> </div> <div *ngIf="toolbarConfig.fontColor || toolbarConfig.fontBackground" class="ql-formats"> <span *ngIf="toolbarConfig.fontColor" euiTooltip="{{ toolbarConfig.fontColor.label }}"> <select class="ql-color" [attr.aria-label]="toolbarConfig.fontColor.label"></select> </span> <span *ngIf="toolbarConfig.fontBackground" euiTooltip="{{ toolbarConfig.fontBackground.label }}"> <select class="ql-background" [attr.aria-label]="toolbarConfig.fontBackground.label"></select> </span> </div> <div *ngIf="toolbarConfig.subscript || toolbarConfig.superscript" class="ql-formats"> <button *ngIf="toolbarConfig.subscript" class="ql-script" value="sub" type="button" [attr.aria-label]="toolbarConfig.subscript.label" euiTooltip="{{ toolbarConfig.subscript.label }}"> </button> <button *ngIf="toolbarConfig.superscript" class="ql-script" value="super" type="button" [attr.aria-label]="toolbarConfig.superscript.label" euiTooltip="{{ toolbarConfig.superscript.label }}"> </button> </div> <div *ngIf="toolbarConfig.textAlign" class="ql-formats"> <span euiTooltip="{{ toolbarConfig.textAlign.label }}"> <select class="ql-align" [attr.aria-label]="toolbarConfig.textAlign.label"> <option selected></option> <option value="center"></option> <option value="right"></option> <option value="justify"></option> </select> </span> </div> <div *ngIf="toolbarConfig.orderedList || toolbarConfig.bulletList || toolbarConfig.indentLess || toolbarConfig.indentMore" class="ql-formats"> <button *ngIf="toolbarConfig.orderedList" class="ql-list" value="ordered" type="button" [attr.aria-label]="toolbarConfig.orderedList.label" euiTooltip="{{ toolbarConfig.orderedList.label }}"> </button> <button *ngIf="toolbarConfig.bulletList" class="ql-list" value="bullet" type="button" [attr.aria-label]="toolbarConfig.bulletList.label" euiTooltip="{{ toolbarConfig.bulletList.label }}"> </button> <button type="button" *ngIf="toolbarConfig.indentLess" class="ql-indent" value="-1" [attr.aria-label]="toolbarConfig.indentLess.label" euiTooltip="{{ toolbarConfig.indentLess.label }}"> </button> <button type="button" *ngIf="toolbarConfig.indentMore" class="ql-indent" value="+1" [attr.aria-label]="toolbarConfig.indentMore.label" euiTooltip="{{ toolbarConfig.indentMore.label }}"> </button> </div> <div *ngIf=" toolbarConfig.blockquote || toolbarConfig.codeBlock || toolbarConfig.link || toolbarConfig.image || toolbarConfig.imageUrl || toolbarConfig.video || toolbarConfig.table " class="ql-formats"> <button *ngIf="toolbarConfig.blockquote" class="ql-blockquote" type="button" [attr.aria-label]="toolbarConfig.blockquote.label" euiTooltip="{{ toolbarConfig.blockquote.label }}"> </button> <button *ngIf="toolbarConfig.codeBlock" class="ql-code-block" type="button" [attr.aria-label]="toolbarConfig.codeBlock.label" euiTooltip="{{ toolbarConfig.codeBlock.label }}"> </button> <button *ngIf="toolbarConfig.link" class="ql-link" type="button" [attr.aria-label]="toolbarConfig.link.label" euiTooltip="{{ toolbarConfig.link.label }}"> </button> <button *ngIf="toolbarConfig.image" class="ql-image" type="button" [attr.aria-label]="toolbarConfig.image.label" euiTooltip="{{ toolbarConfig.image.label }}"> </button> <button type="button" *ngIf="toolbarConfig.imageUrl" [attr.aria-label]="toolbarConfig.imageUrl.label" euiTooltip="{{ toolbarConfig.imageUrl.label }}" (click)="imageUrlHandler()"> <eui-icon-svg icon="eui-ecl-image" size="s"></eui-icon-svg> </button> <button *ngIf="toolbarConfig.video" class="ql-video" type="button" [attr.aria-label]="toolbarConfig.video.label" euiTooltip="{{ toolbarConfig.video.label }}"> </button> <button type="button" *ngIf="toolbarConfig.table" [attr.aria-label]="toolbarConfig.table.label" euiTooltip="{{ toolbarConfig.table.label }}" (click)="insertTable()"> <eui-icon-svg icon="eui-ecl-spreadsheet" size="s"></eui-icon-svg> </button> </div> <div *ngIf="toolbarConfig.clean || toolbarConfig.delete" class="ql-formats"> <button *ngIf="toolbarConfig.clean" class="ql-clean" type="button" [attr.aria-label]="toolbarConfig.clean.label" euiTooltip="{{ toolbarConfig.clean.label }}"> </button> <button type="button" *ngIf="toolbarConfig.delete" [attr.aria-label]="toolbarConfig.delete.label" euiTooltip="{{ toolbarConfig.delete.label }}" (click)="editorDeleteContent()"> <eui-icon-svg icon="eui-ecl-trash" size="s"></eui-icon-svg> </button> </div> <div *ngIf="toolbarConfig.undo || toolbarConfig.redo" class="ql-formats"> <button type="button" *ngIf="toolbarConfig.undo" [attr.aria-label]="toolbarConfig.undo.label" euiTooltip="{{ toolbarConfig.undo.label }}" (click)="editorUndo()"> <eui-icon-svg icon="arrow-undo:outline" size="s"></eui-icon-svg> </button> <button type="button" *ngIf="toolbarConfig.redo" [attr.aria-label]="toolbarConfig.redo.label" euiTooltip="{{ toolbarConfig.redo.label }}" (click)="editorRedo()"> <eui-icon-svg icon="arrow-redo:outline" size="s"></eui-icon-svg> </button> </div> <div *ngIf="toolbarConfig.counters" class="ql-formats"> <eui-editor-counters [hasCharactersCounter]="hasCharactersCounter" [charactersCounter]="charactersCount" [charactersLabel]="charactersCounterLabel" [hasWordsCounter]="hasWordsCounter" [wordsCounter]="wordsCount" [wordsLabel]="wordsCounterLabel" [attr.aria-label]="toolbarConfig.counters.label" role="button" euiTooltip="{{ toolbarConfig.counters.label }}"> </eui-editor-counters> </div> </div> <div *ngIf="euiEditorCustomToolbar" quill-editor-toolbar class="ql-toolbar ql-snow"> <ng-content select="euiEditorCustomToolbar"></ng-content> </div> </quill-editor><!-- READONLY MODE -->@if (isReadOnly) { <eui-editor-html-view *ngIf="format === \'html\'" [content]="value" [theme]="theme"></eui-editor-html-view> <eui-editor-json-view *ngIf="format === \'json\'" [content]="jsonToHtmlContent" [theme]="theme"></eui-editor-json-view>}</ng-container></div>'
|
2640
|
+
var COMPONENT_TEMPLATE = '<div><ng-container *ngIf="readyToRender"><!-- NOTE: We need to create the editor instance even for readonly mode. This is because we rely on the editor to format HTML/JSON content into a properly structured HTML output that can\'t be done another way. Future improvement: Consider completely replacing Quill with a markdown-only editor, which would be a better solution. --><!--@if (!isReadOnly) {--> <quill-editor [ngStyle]="{display: isReadOnly ? \'none\' : null}" [id]="generatedId" class="{{ class | classFilter }}" [class.eui-editor--focused]="isFocused" [format]="format" [formats]="formats" [sanitize]="true" [modules]="modules" [theme]="theme" [placeholder]="placeholder" [customToolbarPosition]="customToolbarPosition" [formControl]="formControl" [debug]="debug" [tabindex]="tabindex" [preserveWhitespace]="true" [hasImageFeature]="hasImageFeature" (onEditorCreated)="_onEditorCreated($event)" (onEditorChanged)="_onEditorChanged($event)" (onContentChanged)="_onContentChanged($event)" (onSelectionChanged)="_onSelectionChanged($event)" (onFocus)="_onFocus($event)" (onBlur)="_onBlur($event)"> <div *ngIf="!euiEditorCustomToolbar" quill-editor-toolbar class="eui-u-flex-gap-s"> <div *ngIf="toolbarConfig.headings" class="ql-formats" role="application" aria-label="Select headings style" euiTooltip="{{ toolbarConfig.headings.label | translate }}"> <select class="ql-header" [attr.aria-label]="toolbarConfig.headings.label | translate"> <option value="{{ value }}" *ngFor="let value of toolbarConfig.headings.options">Heading {{ value }}</option> <option selected>Normal</option> </select> </div> <div *ngIf="toolbarConfig.font" class="ql-formats" role="application" aria-label="Select font style" euiTooltip="{{ toolbarConfig.font.label | translate }}"> <select class="ql-font" [attr.aria-label]="toolbarConfig.font.label | translate"> <option selected>Sans Serif</option> <option value="serif">Serif</option> <option value="monospace">Monospace</option> </select> </div> <div *ngIf="toolbarConfig.bold || toolbarConfig.italic || toolbarConfig.underline || toolbarConfig.strike" class="ql-formats"> <button *ngIf="toolbarConfig.bold" class="ql-bold" type="button" [attr.aria-label]="toolbarConfig.bold.label | translate" euiTooltip="{{ toolbarConfig.bold.label | translate }}"> </button> <button *ngIf="toolbarConfig.italic" class="ql-italic" type="button" [attr.aria-label]="toolbarConfig.italic.label | translate" euiTooltip="{{ toolbarConfig.italic.label | translate }}"> </button> <button *ngIf="toolbarConfig.underline" class="ql-underline" type="button" [attr.aria-label]="toolbarConfig.underline.label | translate" euiTooltip="{{ toolbarConfig.underline.label | translate }}"> </button> <button *ngIf="toolbarConfig.strike" class="ql-strike" type="button" [attr.aria-label]="toolbarConfig.strike.label | translate" euiTooltip="{{ toolbarConfig.strike.label | translate }}"> </button> </div> <div *ngIf="toolbarConfig.fontColor || toolbarConfig.fontBackground" class="ql-formats"> <span *ngIf="toolbarConfig.fontColor" euiTooltip="{{ toolbarConfig.fontColor.label | translate }}"> <select class="ql-color" [attr.aria-label]="toolbarConfig.fontColor.label | translate"></select> </span> <span *ngIf="toolbarConfig.fontBackground" euiTooltip="{{ toolbarConfig.fontBackground.label | translate }}"> <select class="ql-background" [attr.aria-label]="toolbarConfig.fontBackground.label | translate"></select> </span> </div> <div *ngIf="toolbarConfig.subscript || toolbarConfig.superscript" class="ql-formats"> <button *ngIf="toolbarConfig.subscript" class="ql-script" value="sub" type="button" [attr.aria-label]="toolbarConfig.subscript.label | translate" euiTooltip="{{ toolbarConfig.subscript.label | translate }}"> </button> <button *ngIf="toolbarConfig.superscript" class="ql-script" value="super" type="button" [attr.aria-label]="toolbarConfig.superscript.label | translate" euiTooltip="{{ toolbarConfig.superscript.label | translate }}"> </button> </div> <div *ngIf="toolbarConfig.textAlign" class="ql-formats"> <span euiTooltip="{{ toolbarConfig.textAlign.label | translate }}"> <select class="ql-align" [attr.aria-label]="toolbarConfig.textAlign.label | translate"> <option selected></option> <option value="center"></option> <option value="right"></option> <option value="justify"></option> </select> </span> </div> <div *ngIf="toolbarConfig.orderedList || toolbarConfig.bulletList || toolbarConfig.indentLess || toolbarConfig.indentMore" class="ql-formats"> <button *ngIf="toolbarConfig.orderedList" class="ql-list" value="ordered" type="button" [attr.aria-label]="toolbarConfig.orderedList.label | translate" euiTooltip="{{ toolbarConfig.orderedList.label | translate }}"> </button> <button *ngIf="toolbarConfig.bulletList" class="ql-list" value="bullet" type="button" [attr.aria-label]="toolbarConfig.bulletList.label | translate" euiTooltip="{{ toolbarConfig.bulletList.label | translate }}"> </button> <button type="button" *ngIf="toolbarConfig.indentLess" class="ql-indent" value="-1" [attr.aria-label]="toolbarConfig.indentLess.label | translate" euiTooltip="{{ toolbarConfig.indentLess.label | translate }}"> </button> <button type="button" *ngIf="toolbarConfig.indentMore" class="ql-indent" value="+1" [attr.aria-label]="toolbarConfig.indentMore.label | translate" euiTooltip="{{ toolbarConfig.indentMore.label | translate }}"> </button> </div> <div *ngIf=" toolbarConfig.blockquote || toolbarConfig.codeBlock || toolbarConfig.link || toolbarConfig.image || toolbarConfig.imageUrl || toolbarConfig.video || toolbarConfig.table " class="ql-formats"> <button *ngIf="toolbarConfig.blockquote" class="ql-blockquote" type="button" [attr.aria-label]="toolbarConfig.blockquote.label | translate" euiTooltip="{{ toolbarConfig.blockquote.label | translate }}"> </button> <button *ngIf="toolbarConfig.codeBlock" class="ql-code-block" type="button" [attr.aria-label]="toolbarConfig.codeBlock.label | translate" euiTooltip="{{ toolbarConfig.codeBlock.label | translate }}"> </button> <button *ngIf="toolbarConfig.link" class="ql-link" type="button" [attr.aria-label]="toolbarConfig.link.label | translate" euiTooltip="{{ toolbarConfig.link.label | translate }}"> </button> <button *ngIf="toolbarConfig.image" class="ql-image" type="button" [attr.aria-label]="toolbarConfig.image.label | translate" euiTooltip="{{ toolbarConfig.image.label | translate }}"> </button> <button type="button" *ngIf="toolbarConfig.imageUrl" [attr.aria-label]="toolbarConfig.imageUrl.label | translate" euiTooltip="{{ toolbarConfig.imageUrl.label | translate }}" (click)="imageUrlHandler()"> <eui-icon-svg icon="eui-ecl-image" size="s"></eui-icon-svg> </button> <button *ngIf="toolbarConfig.video" class="ql-video" type="button" [attr.aria-label]="toolbarConfig.video.label | translate" euiTooltip="{{ toolbarConfig.video.label | translate }}"> </button> <button type="button" *ngIf="toolbarConfig.table" [attr.aria-label]="toolbarConfig.table.label | translate" euiTooltip="{{ toolbarConfig.table.label | translate }}" (click)="insertTable()"> <eui-icon-svg icon="eui-ecl-spreadsheet" size="s"></eui-icon-svg> </button> </div> <div *ngIf="toolbarConfig.clean || toolbarConfig.delete" class="ql-formats"> <button *ngIf="toolbarConfig.clean" class="ql-clean" type="button" [attr.aria-label]="toolbarConfig.clean.label | translate" euiTooltip="{{ toolbarConfig.clean.label | translate }}"> </button> <button type="button" *ngIf="toolbarConfig.delete" [attr.aria-label]="toolbarConfig.delete.label | translate" euiTooltip="{{ toolbarConfig.delete.label | translate }}" (click)="editorDeleteContent()"> <eui-icon-svg icon="eui-ecl-trash" size="s"></eui-icon-svg> </button> </div> <div *ngIf="toolbarConfig.undo || toolbarConfig.redo" class="ql-formats"> <button type="button" *ngIf="toolbarConfig.undo" [attr.aria-label]="toolbarConfig.undo.label | translate" euiTooltip="{{ toolbarConfig.undo.label | translate }}" (click)="editorUndo()"> <eui-icon-svg icon="arrow-undo:outline" size="s"></eui-icon-svg> </button> <button type="button" *ngIf="toolbarConfig.redo" [attr.aria-label]="toolbarConfig.redo.label | translate" euiTooltip="{{ toolbarConfig.redo.label | translate }}" (click)="editorRedo()"> <eui-icon-svg icon="arrow-redo:outline" size="s"></eui-icon-svg> </button> </div> <div *ngIf="toolbarConfig.counters" class="ql-formats"> <eui-editor-counters [hasCharactersCounter]="hasCharactersCounter" [charactersCounter]="charactersCount" [charactersLabel]="charactersCounterLabel" [hasWordsCounter]="hasWordsCounter" [wordsCounter]="wordsCount" [wordsLabel]="wordsCounterLabel" [attr.aria-label]="toolbarConfig.counters.label | translate" role="button" euiTooltip="{{ toolbarConfig.counters.label | translate }}"> </eui-editor-counters> </div> </div> <div *ngIf="euiEditorCustomToolbar" quill-editor-toolbar class="ql-toolbar ql-snow"> <ng-content select="euiEditorCustomToolbar"></ng-content> </div> </quill-editor><!-- READONLY MODE -->@if (isReadOnly) { <eui-editor-html-view *ngIf="format === \'html\'" [content]="value" [theme]="theme"></eui-editor-html-view> <eui-editor-json-view *ngIf="format === \'json\'" [content]="jsonToHtmlContent" [theme]="theme"></eui-editor-json-view>}</ng-container></div>'
|
2641
2641
|
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': 'EuiDashboardCardStatusContentComponent', 'selector': 'eui-dashboard-card-status-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,
|
2642
2642
|
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': 'EuiNavbarComponent', 'selector': 'eui-navbar'},{'name': 'EuiNavbarItemComponent', 'selector': 'eui-navbar-item'},{'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': 'EuiSearchFavouriteQueriesComponent', 'selector': 'eui-search-favourite-queries'},{'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': 'EuiTimeRangepickerComponent', 'selector': 'eui-time-range-picker'},{'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': ''}];
|
2643
2643
|
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': '
|
@@ -218,10 +218,6 @@
|
|
218
218
|
<li>
|
219
219
|
<a href="#onClicked" >onClicked</a>
|
220
220
|
</li>
|
221
|
-
<li>
|
222
|
-
<span class="modifier"></span>
|
223
|
-
<a href="#onHide" >onHide</a>
|
224
|
-
</li>
|
225
221
|
<li>
|
226
222
|
<a href="#onItemClick" >onItemClick</a>
|
227
223
|
</li>
|
@@ -376,20 +372,6 @@
|
|
376
372
|
</td>
|
377
373
|
</tr>
|
378
374
|
|
379
|
-
<tr>
|
380
|
-
<td class="col-md-4">
|
381
|
-
<h6><b>HostListeners</b></h6>
|
382
|
-
</td>
|
383
|
-
</tr>
|
384
|
-
<tr>
|
385
|
-
<td class="col-md-4">
|
386
|
-
<ul class="index-list">
|
387
|
-
<li>
|
388
|
-
<a href="#body:click" >body:click</a>
|
389
|
-
</li>
|
390
|
-
</ul>
|
391
|
-
</td>
|
392
|
-
</tr>
|
393
375
|
|
394
376
|
</tbody>
|
395
377
|
</table>
|
@@ -1021,30 +1003,7 @@
|
|
1021
1003
|
</table>
|
1022
1004
|
</section>
|
1023
1005
|
|
1024
|
-
<section data-compodoc="block-methods">
|
1025
|
-
<h3>HostListeners</h3> <table class="table table-sm table-bordered">
|
1026
|
-
<tbody>
|
1027
|
-
<tr>
|
1028
|
-
<td class="col-md-4">
|
1029
|
-
<a name="body:click"></a>
|
1030
|
-
<span class="name">
|
1031
|
-
<span ><b>body:click</b></span>
|
1032
|
-
<a href="#body:click"><span class="icon ion-ios-link"></span></a>
|
1033
|
-
</span>
|
1034
|
-
</td>
|
1035
|
-
</tr>
|
1036
|
-
<tr>
|
1037
|
-
<td class="col-md-4">
|
1038
|
-
<code>body:click()</code>
|
1039
|
-
</td>
|
1040
|
-
</tr>
|
1041
|
-
|
1042
|
-
|
1043
1006
|
|
1044
|
-
|
1045
|
-
</tbody>
|
1046
|
-
</table>
|
1047
|
-
</section>
|
1048
1007
|
<section data-compodoc="block-methods">
|
1049
1008
|
|
1050
1009
|
<h3 id="methods">
|
@@ -1111,46 +1070,6 @@
|
|
1111
1070
|
</tr>
|
1112
1071
|
</tbody>
|
1113
1072
|
</table>
|
1114
|
-
<table class="table table-sm table-bordered">
|
1115
|
-
<tbody>
|
1116
|
-
<tr>
|
1117
|
-
<td class="col-md-4">
|
1118
|
-
<a name="onHide"></a>
|
1119
|
-
<span class="name">
|
1120
|
-
<span class="modifier"></span>
|
1121
|
-
<span ><b>onHide</b></span>
|
1122
|
-
<a href="#onHide"><span class="icon ion-ios-link"></span></a>
|
1123
|
-
</span>
|
1124
|
-
</td>
|
1125
|
-
</tr>
|
1126
|
-
<tr>
|
1127
|
-
<td class="col-md-4">
|
1128
|
-
<span class="modifier-icon icon ion-ios-reset"></span>
|
1129
|
-
<code>onHide()</code>
|
1130
|
-
</td>
|
1131
|
-
</tr>
|
1132
|
-
|
1133
|
-
<tr>
|
1134
|
-
<td class="col-md-4">
|
1135
|
-
<b>Decorators : </b>
|
1136
|
-
<br />
|
1137
|
-
<code>@HostListener('body:click')<br /></code>
|
1138
|
-
</td>
|
1139
|
-
</tr>
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
<tr>
|
1144
|
-
<td class="col-md-4">
|
1145
|
-
|
1146
|
-
<div class="io-description">
|
1147
|
-
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
1148
|
-
|
1149
|
-
</div>
|
1150
|
-
</td>
|
1151
|
-
</tr>
|
1152
|
-
</tbody>
|
1153
|
-
</table>
|
1154
1073
|
<table class="table table-sm table-bordered">
|
1155
1074
|
<tbody>
|
1156
1075
|
<tr>
|
@@ -1730,7 +1649,7 @@
|
|
1730
1649
|
<script src="../js/libs/htmlparser.js"></script>
|
1731
1650
|
<script src="../js/libs/deep-iterator.js"></script>
|
1732
1651
|
<script>
|
1733
|
-
var COMPONENT_TEMPLATE = '<div><eui-icon-button class="eui-notifications__trigger" icon="notifications:outline" fillColor="white" (click)="onClicked($event)"
|
1652
|
+
var COMPONENT_TEMPLATE = '<div><eui-icon-button class="eui-notifications__trigger" icon="notifications:outline" fillColor="white" (click)="onClicked($event)" [ariaLabel]="getAriaLabel()"> @if (count) { <eui-badge euiDanger [maxCharCount]="2">{{ count }}</eui-badge> }</eui-icon-button><eui-overlay hasClosedOnClickOutside [isActive]="isOverlayActive" class="eui-overlay-offset--width-30" (activeState)="updateActiveState($event)"> <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; let i = $index; track $index) { <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
1653
|
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': 'EuiDashboardCardStatusContentComponent', 'selector': 'eui-dashboard-card-status-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
1654
|
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': 'EuiNavbarComponent', 'selector': 'eui-navbar'},{'name': 'EuiNavbarItemComponent', 'selector': 'eui-navbar-item'},{'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': 'EuiSearchFavouriteQueriesComponent', 'selector': 'eui-search-favourite-queries'},{'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': 'EuiTimeRangepickerComponent', 'selector': 'eui-time-range-picker'},{'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
1655
|
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': '
|
@@ -1801,7 +1801,7 @@
|
|
1801
1801
|
<script src="../js/libs/htmlparser.js"></script>
|
1802
1802
|
<script src="../js/libs/deep-iterator.js"></script>
|
1803
1803
|
<script>
|
1804
|
-
var COMPONENT_TEMPLATE = '<div><eui-icon-button class="eui-notifications-v2__trigger" icon="notifications:outline" fillColor="white" (click)="onClicked($event)"
|
1804
|
+
var COMPONENT_TEMPLATE = '<div><eui-icon-button class="eui-notifications-v2__trigger" icon="notifications:outline" fillColor="white" (click)="onClicked($event)" [ariaLabel]="getAriaLabel()"> <eui-badge *ngIf="isShowUnreadSinceLastCheckCount" euiSizeM euiDanger [maxCharCount]="2">{{ unreadSinceLastCheckCount }}</eui-badge></eui-icon-button><eui-overlay hasClosedOnClickOutside [isActive]="isOverlayActive" class="eui-overlay-offset--width-30" (activeState)="updateActiveState($event)"> <eui-overlay-header> <div class="eui-notifications-v2__header"> <div class="eui-notifications-v2__header-title"> <div class="eui-notifications-v2__header-title-label"> {{ headerTitleLabel ? headerTitleLabel : (\'eui.MYNOTIFICATIONS\' | translate) }} </div> <div class="eui-notifications-v2__header-title-actions"> <span class="hide"> <a (click)="onHide()" class="eui-u-text-link" role="button" tabIndex="0"> {{ headerHideLabel ? headerHideLabel : (\'eui.HIDE\' | translate) }} </a> <eui-icon-svg icon="chevron-forward:sharp" size="2xs"></eui-icon-svg> </span> </div> </div> <div class="eui-notifications-v2__header-subinfos-bar"> <strong>{{ unreadSinceLastCheckCount }}</strong> <span class="eui-u-ml-xs">{{ headerUnreadSinceLastCheckCountLabel ? headerUnreadSinceLastCheckCountLabel : (\'eui.NEW-COUNT\' | translate) }}</span> <span class="eui-u-ml-xs">|</span> <span class="eui-u-ml-xs">{{ unreadCount }}</span> <span class="eui-u-ml-xs">{{ headerUnreadCountLabel ? headerUnreadCountLabel : (\'eui.NEW-COUNT\' | translate) }}</span> </div> <div class="eui-notifications-v2__header-subactions-bar"> <a *ngIf="items.length > 0" (click)="onMarkAllAsRead($event)" class="eui-u-text-link" tabIndex="0"> {{ \'notif.MARK-ALL-READ\' | translate }} </a> <a (click)="onRefresh($event)" class="eui-u-text-link eui-u-ml-auto" tabIndex="0"> <span class="eui-u-flex"> <eui-icon-svg icon="eui-refresh:eui" fillColor="neutral" /> {{ \'notif.SV-REFRESH\' | translate }} </span> </a> </div> </div> </eui-overlay-header> <eui-overlay-body> <ul class="eui-notifications-items" *ngIf="items"> <eui-notification-item-v2 *ngFor="let item of items; trackBy: trackByFn" [item]="item" [dateFormat]="dateFormat" [markAsReadLabel]="markAsReadLabel" [isShowMarkAsRead]="isShowMarkAsRead" (itemClick)="onItemClick($event)" (itemMarkAsRead)="onItemMarkAsRead($event)"> </eui-notification-item-v2> </ul> </eui-overlay-body> <eui-overlay-footer> <ng-template [ngIf]="items?.length > 0"> <strong ><a (click)="onViewAllClick($event)" class="eui-u-text-link">{{ viewAllNotificationsLabel ? viewAllNotificationsLabel : (\'eui.VIEWALLNOTIFICATIONS\' | translate) }}</a></strong > </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"> <strong ><a (click)="onNoNotificationFoundClick()" class="eui-u-text-link">{{ noNotificationFoundLabel ? noNotificationFoundLabel : (\'eui.NONOTIFICATIONFOUND\' | translate) }}</a></strong > </div> </ng-template> </eui-overlay-footer></eui-overlay></div>'
|
1805
1805
|
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': 'EuiDashboardCardStatusContentComponent', 'selector': 'eui-dashboard-card-status-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,
|
1806
1806
|
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': 'EuiNavbarComponent', 'selector': 'eui-navbar'},{'name': 'EuiNavbarItemComponent', 'selector': 'eui-navbar-item'},{'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': 'EuiSearchFavouriteQueriesComponent', 'selector': 'eui-search-favourite-queries'},{'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': 'EuiTimeRangepickerComponent', 'selector': 'eui-time-range-picker'},{'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': ''}];
|
1807
1807
|
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': '
|
package/docs/dependencies.html
CHANGED
@@ -288,9 +288,9 @@
|
|
288
288
|
<li>
|
289
289
|
<b>@stackblitz/sdk</b> : 1.11.0</li>
|
290
290
|
<li>
|
291
|
-
<b>@eui/styles</b> : 18.2.
|
291
|
+
<b>@eui/styles</b> : 18.2.13-snapshot-1746706219951</li>
|
292
292
|
<li>
|
293
|
-
<b>@eui/ecl</b> : 18.2.
|
293
|
+
<b>@eui/ecl</b> : 18.2.13-snapshot-1746706219951</li>
|
294
294
|
<li>
|
295
295
|
<b>@eui/tools</b> : ^6.0.0</li>
|
296
296
|
</ul>
|
package/docs/js/menu-wc.js
CHANGED
@@ -1011,13 +1011,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
1011
1011
|
<a href="modules/EuiEditorModule.html" data-type="entity-link" >EuiEditorModule</a>
|
1012
1012
|
<li class="chapter inner">
|
1013
1013
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
1014
|
-
'data-bs-target="#components-links-module-EuiEditorModule-
|
1014
|
+
'data-bs-target="#components-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' : 'data-bs-target="#xs-components-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' }>
|
1015
1015
|
<span class="icon ion-md-cog"></span>
|
1016
1016
|
<span>Components</span>
|
1017
1017
|
<span class="icon ion-ios-arrow-down"></span>
|
1018
1018
|
</div>
|
1019
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiEditorModule-
|
1020
|
-
'id="xs-components-links-module-EuiEditorModule-
|
1019
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' :
|
1020
|
+
'id="xs-components-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' }>
|
1021
1021
|
<li class="link">
|
1022
1022
|
<a href="components/EuiEditorComponent.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiEditorComponent</a>
|
1023
1023
|
</li>
|
@@ -1037,13 +1037,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
1037
1037
|
</li>
|
1038
1038
|
<li class="chapter inner">
|
1039
1039
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
1040
|
-
'data-bs-target="#directives-links-module-EuiEditorModule-
|
1040
|
+
'data-bs-target="#directives-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' : 'data-bs-target="#xs-directives-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' }>
|
1041
1041
|
<span class="icon ion-md-code-working"></span>
|
1042
1042
|
<span>Directives</span>
|
1043
1043
|
<span class="icon ion-ios-arrow-down"></span>
|
1044
1044
|
</div>
|
1045
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="directives-links-module-EuiEditorModule-
|
1046
|
-
'id="xs-directives-links-module-EuiEditorModule-
|
1045
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="directives-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' :
|
1046
|
+
'id="xs-directives-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' }>
|
1047
1047
|
<li class="link">
|
1048
1048
|
<a href="directives/EuiEditorCustomToolbarTagDirective.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiEditorCustomToolbarTagDirective</a>
|
1049
1049
|
</li>
|
@@ -1054,13 +1054,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
1054
1054
|
</li>
|
1055
1055
|
<li class="chapter inner">
|
1056
1056
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
1057
|
-
'data-bs-target="#pipes-links-module-EuiEditorModule-
|
1057
|
+
'data-bs-target="#pipes-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' : 'data-bs-target="#xs-pipes-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' }>
|
1058
1058
|
<span class="icon ion-md-add"></span>
|
1059
1059
|
<span>Pipes</span>
|
1060
1060
|
<span class="icon ion-ios-arrow-down"></span>
|
1061
1061
|
</div>
|
1062
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="pipes-links-module-EuiEditorModule-
|
1063
|
-
'id="xs-pipes-links-module-EuiEditorModule-
|
1062
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="pipes-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' :
|
1063
|
+
'id="xs-pipes-links-module-EuiEditorModule-44117fad0b592e93f78478c4805e1ee2c890e794dab498b2f908d0cd933f8d405dc9bf4c9760a0bea9d7fefa28fb6bb84d416f19e572d852b6cb341ad2bc8787"' }>
|
1064
1064
|
<li class="link">
|
1065
1065
|
<a href="pipes/ClassFilterPipe.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >ClassFilterPipe</a>
|
1066
1066
|
</li>
|