@eui/components 17.0.0-rc.3 → 17.0.0-rc.5
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/EuiSearchComponent.html +101 -3
- package/docs/components/EuiSkeletonComponent.html +1 -1
- package/docs/components/EuiToolbarComponent.html +1 -1
- package/docs/dependencies.html +2 -2
- package/docs/js/menu-wc.js +6 -6
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/eui-alert/eui-alert.component.mjs +4 -3
- package/esm2022/eui-skeleton/eui-skeleton.component.mjs +4 -3
- package/esm2022/eui-tree/eui-tree.component.mjs +2 -2
- package/esm2022/layout/eui-search/search.component.mjs +13 -5
- package/esm2022/layout/eui-toolbar/toolbar.component.mjs +3 -3
- package/eui-alert/eui-alert.component.d.ts.map +1 -1
- package/eui-skeleton/eui-skeleton.component.d.ts +1 -1
- package/eui-skeleton/eui-skeleton.component.d.ts.map +1 -1
- package/fesm2022/eui-components-eui-alert.mjs +3 -2
- package/fesm2022/eui-components-eui-alert.mjs.map +1 -1
- package/fesm2022/eui-components-eui-skeleton.mjs +3 -2
- package/fesm2022/eui-components-eui-skeleton.mjs.map +1 -1
- package/fesm2022/eui-components-eui-tree.mjs +2 -2
- package/fesm2022/eui-components-eui-tree.mjs.map +1 -1
- package/fesm2022/eui-components-layout.mjs +14 -6
- package/fesm2022/eui-components-layout.mjs.map +1 -1
- package/layout/eui-search/search.component.d.ts +5 -3
- package/layout/eui-search/search.component.d.ts.map +1 -1
- package/package.json +1 -1
@@ -221,6 +221,12 @@
|
|
221
221
|
<tr>
|
222
222
|
<td class="col-md-4">
|
223
223
|
<ul class="index-list">
|
224
|
+
<li>
|
225
|
+
<a href="#inputBlur" >inputBlur</a>
|
226
|
+
</li>
|
227
|
+
<li>
|
228
|
+
<a href="#inputFocus" >inputFocus</a>
|
229
|
+
</li>
|
224
230
|
<li>
|
225
231
|
<a href="#search" >search</a>
|
226
232
|
</li>
|
@@ -389,6 +395,38 @@
|
|
389
395
|
</section>
|
390
396
|
<section data-compodoc="block-outputs">
|
391
397
|
<h3 id="outputs">Outputs</h3>
|
398
|
+
<table class="table table-sm table-bordered">
|
399
|
+
<tbody>
|
400
|
+
<tr>
|
401
|
+
<td class="col-md-4">
|
402
|
+
<a name="inputBlur"></a>
|
403
|
+
<b>inputBlur</b>
|
404
|
+
</td>
|
405
|
+
</tr>
|
406
|
+
<tr>
|
407
|
+
<td class="col-md-4">
|
408
|
+
<i>Type : </i> <code>EventEmitter<Event></code>
|
409
|
+
|
410
|
+
</td>
|
411
|
+
</tr>
|
412
|
+
</tbody>
|
413
|
+
</table>
|
414
|
+
<table class="table table-sm table-bordered">
|
415
|
+
<tbody>
|
416
|
+
<tr>
|
417
|
+
<td class="col-md-4">
|
418
|
+
<a name="inputFocus"></a>
|
419
|
+
<b>inputFocus</b>
|
420
|
+
</td>
|
421
|
+
</tr>
|
422
|
+
<tr>
|
423
|
+
<td class="col-md-4">
|
424
|
+
<i>Type : </i> <code>EventEmitter<Event></code>
|
425
|
+
|
426
|
+
</td>
|
427
|
+
</tr>
|
428
|
+
</tbody>
|
429
|
+
</table>
|
392
430
|
<table class="table table-sm table-bordered">
|
393
431
|
<tbody>
|
394
432
|
<tr>
|
@@ -449,7 +487,7 @@
|
|
449
487
|
</tr>
|
450
488
|
<tr>
|
451
489
|
<td class="col-md-4">
|
452
|
-
<code>onInputBlur()</code>
|
490
|
+
<code>onInputBlur(event: Event)</code>
|
453
491
|
</td>
|
454
492
|
</tr>
|
455
493
|
|
@@ -459,10 +497,40 @@
|
|
459
497
|
<tr>
|
460
498
|
<td class="col-md-4">
|
461
499
|
|
500
|
+
<div class="io-description">
|
501
|
+
<b>Parameters :</b>
|
502
|
+
|
503
|
+
<table class="params">
|
504
|
+
<thead>
|
505
|
+
<tr>
|
506
|
+
<td>Name</td>
|
507
|
+
<td>Type</td>
|
508
|
+
<td>Optional</td>
|
509
|
+
</tr>
|
510
|
+
</thead>
|
511
|
+
<tbody>
|
512
|
+
<tr>
|
513
|
+
<td>event</td>
|
514
|
+
<td>
|
515
|
+
<code>Event</code>
|
516
|
+
</td>
|
517
|
+
|
518
|
+
<td>
|
519
|
+
No
|
520
|
+
</td>
|
521
|
+
|
522
|
+
|
523
|
+
</tr>
|
524
|
+
</tbody>
|
525
|
+
</table>
|
526
|
+
</div>
|
462
527
|
<div class="io-description">
|
463
528
|
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
464
529
|
|
465
530
|
</div>
|
531
|
+
<div class="io-description">
|
532
|
+
|
533
|
+
</div>
|
466
534
|
</td>
|
467
535
|
</tr>
|
468
536
|
</tbody>
|
@@ -480,7 +548,7 @@
|
|
480
548
|
</tr>
|
481
549
|
<tr>
|
482
550
|
<td class="col-md-4">
|
483
|
-
<code>onInputFocus()</code>
|
551
|
+
<code>onInputFocus(event: Event)</code>
|
484
552
|
</td>
|
485
553
|
</tr>
|
486
554
|
|
@@ -490,10 +558,40 @@
|
|
490
558
|
<tr>
|
491
559
|
<td class="col-md-4">
|
492
560
|
|
561
|
+
<div class="io-description">
|
562
|
+
<b>Parameters :</b>
|
563
|
+
|
564
|
+
<table class="params">
|
565
|
+
<thead>
|
566
|
+
<tr>
|
567
|
+
<td>Name</td>
|
568
|
+
<td>Type</td>
|
569
|
+
<td>Optional</td>
|
570
|
+
</tr>
|
571
|
+
</thead>
|
572
|
+
<tbody>
|
573
|
+
<tr>
|
574
|
+
<td>event</td>
|
575
|
+
<td>
|
576
|
+
<code>Event</code>
|
577
|
+
</td>
|
578
|
+
|
579
|
+
<td>
|
580
|
+
No
|
581
|
+
</td>
|
582
|
+
|
583
|
+
|
584
|
+
</tr>
|
585
|
+
</tbody>
|
586
|
+
</table>
|
587
|
+
</div>
|
493
588
|
<div class="io-description">
|
494
589
|
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
495
590
|
|
496
591
|
</div>
|
592
|
+
<div class="io-description">
|
593
|
+
|
594
|
+
</div>
|
497
595
|
</td>
|
498
596
|
</tr>
|
499
597
|
</tbody>
|
@@ -810,7 +908,7 @@
|
|
810
908
|
<script src="../js/libs/htmlparser.js"></script>
|
811
909
|
<script src="../js/libs/deep-iterator.js"></script>
|
812
910
|
<script>
|
813
|
-
var COMPONENT_TEMPLATE = '<div><div euiInputGroup class="eui-u-mb-none"> <div class="eui-input-group-addon"> <eui-autocomplete *ngIf="isAutocomplete" [autocompleteData]="searchResults" placeholder="{{placeholderLabel}}" panelWidth="{{panelWidth}}" (inputBlur)="onInputBlur()" (inputFocus)="onInputFocus()" (inputChange)="onSearch($event)"> <ng-container *ngIf="templates.length !== 0"> <ng-template let-option euiTemplate="dropdownOption"> <ng-container [ngTemplateOutlet]="resultItemTemplate" [ngTemplateOutletContext]="{ $implicit: option }"> </ng-container> </ng-template> </ng-container> </eui-autocomplete> <input *ngIf="isInputText" class="mywp-search-bar__input" euiInputText [(ngModel)]="searchInput" placeholder="{{ placeholderLabel }}" (focus)="onInputFocus()" (blur)="onInputBlur()" (keydown)="onSearchInput($event)"/> <button *ngIf="hasSearchButton" class="eui-search__input-button" euiButton euiBasicButton euiSizeS [euiSecondary]="isInputFocus" euiIconButton (click)="onSearchClick()" aria-label="search button"> <eui-icon iconClass="eui-icon eui-icon-search"></eui-icon> </button> <div *ngIf="!hasSearchButton" class="eui-search__icon"> <eui-icon iconClass="eui-icon eui-icon-search"></eui-icon> </div> </div></div></div>'
|
911
|
+
var COMPONENT_TEMPLATE = '<div><div euiInputGroup class="eui-u-mb-none"> <div class="eui-input-group-addon"> <eui-autocomplete *ngIf="isAutocomplete" [autocompleteData]="searchResults" placeholder="{{placeholderLabel}}" panelWidth="{{panelWidth}}" (inputBlur)="onInputBlur($event)" (inputFocus)="onInputFocus($event)" (inputChange)="onSearch($event)"> <ng-container *ngIf="templates.length !== 0"> <ng-template let-option euiTemplate="dropdownOption"> <ng-container [ngTemplateOutlet]="resultItemTemplate" [ngTemplateOutletContext]="{ $implicit: option }"> </ng-container> </ng-template> </ng-container> </eui-autocomplete> <input *ngIf="isInputText" class="mywp-search-bar__input" euiInputText [(ngModel)]="searchInput" placeholder="{{ placeholderLabel }}" (focus)="onInputFocus($event)" (blur)="onInputBlur($event)" (keydown)="onSearchInput($event)"/> <button *ngIf="hasSearchButton" class="eui-search__input-button" euiButton euiBasicButton euiSizeS [euiSecondary]="isInputFocus" euiIconButton (click)="onSearchClick()" aria-label="search button"> <eui-icon iconClass="eui-icon eui-icon-search"></eui-icon> </button> <div *ngIf="!hasSearchButton" class="eui-search__icon"> <eui-icon iconClass="eui-icon eui-icon-search"></eui-icon> </div> </div></div></div>'
|
814
912
|
var COMPONENTS = [{'name': 'ChartComponent', 'selector': 'eui-apex-chart'},{'name': 'CollapsedBreadcrumbComponent', 'selector': 'eui-collapsed-breadcrumb'},{'name': 'EuiAlertComponent', 'selector': 'div[euiAlert], eui-alert'},{'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': 'EuiButtonsComponent', 'selector': 'eui-buttons'},{'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': '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': 'EuiCommonHeaderComponent', 'selector': 'eui-common-header'},{'name': 'EuiDashboardButtonComponent', 'selector': 'eui-dashboard-button'},{'name': 'EuiDashboardCardComponent', 'selector': 'eui-dashboard-card'},{'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': 'EuiExpandContentComponent', 'selector': 'eui-expand-content'},{'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': 'EuiHeaderUserProfileComponent', 'selector': 'eui-header-user-profile'},{'name': 'EuiIconColorComponent', 'selector': 'eui-icon-colored, span[euiIconColored], [euiIconColored]'},{'name': 'EuiIconComponent', 'selector': 'div[euiIcon], span[euiIcon], i[euiIcon], eui-icon'},{'name': 'EuiIconSvgButtonComponent', 'selector': 'eui-icon-svg-button'},{'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,
|
815
913
|
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': 'EuiPageHeaderComponent', 'selector': 'eui-page-header'},{'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': 'EuiSearchComponent', 'selector': 'eui-search'},{'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': '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': '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': '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': 'EuiUxTreeComponent', 'selector': 'eui-ux-tree'},{'name': 'EuiUxTreeNodeComponent', 'selector': 'eui-ux-tree-node'},{'name': 'EuiUxTreeToolbarComponent', 'selector': 'eui-ux-tree-toolbar'},{'name': 'EuiWizardComponent', 'selector': 'eui-wizard'},{'name': 'EuiWizardStepComponent', 'selector': 'eui-wizard-step'},{'name': 'QuillEditorComponent', 'selector': 'quill-editor'}];
|
816
914
|
var DIRECTIVES = [{'name': 'AutoResizeDirective', 'selector': 'textarea[autoResize]'},{'name': 'BaseDirective', 'selector': '[euiBase]'},{'name': 'BaseStatesDirective', 'selector': '[euiBase]'},{'name': 'CollapsedButtonDirective', 'selector': 'collapsed-button'},{'name': 'EuiActionButtonsDirective', 'selector': 'eui-action-buttons'},{'name': 'EuiAlertTitleDirective', 'selector': 'eui-alert-title'},{'name': 'EuiAppPageWrapperDirective', 'selector': 'eui-app-page-wrapper'},{'name': 'EuiButtonsActionsContentTagDirective', 'selector': 'euiButtonsActionsContent'},{'name': 'EuiButtonsLocalMenuContentTagDirective', 'selector': 'euiButtonsLocalMenuContent'},{'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': 'EuiHeaderAppNameDirective', 'selector': 'eui-header-app-name'},{'name': 'EuiHeaderAppNameLogoDirective', 'selector': 'eui-header-app-name-logo'},{'name': 'EuiHeaderAppSubtitleDirective', 'selector': 'eui-header-app-subtitle'},{'name': 'EuiInputNumberDirective', 'selector': 'input[euiInputNumber][formControl],input[euiInputNumber][formControlName],input[euiInputNumber][ngModel]'},{'name': 'EuiLetterFormatDirective', 'selector': '[euiLetterFormat]'},{'name': 'EuiLoadingDirective', 'selector': '[euiLoading]'},{'name': 'EuiMaxLengthDirective', 'selector': '
|
@@ -82,7 +82,7 @@
|
|
82
82
|
<td class="col-md-9">
|
83
83
|
<code><a href="../directives/BaseStatesDirective.html" target="_self" >BaseStatesDirective</a></code>
|
84
84
|
<br/>
|
85
|
-
<div><i> Inputs</i> : euiSizeXS euiSizeS euiSizeM euiSizeL euiSizeXL euiSizeVariant </div>
|
85
|
+
<div><i> Inputs</i> : euiSizeXS euiSizeS euiSizeM euiSizeL euiSizeXL euiRounded euiSizeVariant </div>
|
86
86
|
</td>
|
87
87
|
</tr>
|
88
88
|
|
@@ -350,7 +350,7 @@
|
|
350
350
|
<script src="../js/libs/htmlparser.js"></script>
|
351
351
|
<script src="../js/libs/deep-iterator.js"></script>
|
352
352
|
<script>
|
353
|
-
var COMPONENT_TEMPLATE = '<div><ng-container *ngIf="(asService.state$ | async).hasHeader && (asService.breakpoints$ | async).isMobile; else elseBlock"> <div class="eui-toolbar__left"> <eui-toolbar-logo *ngIf="(asService.state$ | async).hasHeaderLogo"></eui-toolbar-logo> <eui-toolbar-environment *ngIf="(asService.state$ | async).hasHeaderEnvironment"> {{ (asService.state$ | async).environmentValue }} </eui-toolbar-environment> <eui-toolbar-app *ngIf="(asService.state$ | async).appName" appName="{{ (asService.state$ | async).appName }}"></eui-toolbar-app> </div> <ng-container *ngTemplateOutlet="toolbarCenter"></ng-container> <ng-container *ngTemplateOutlet="toolbarItems"></ng-container> <ng-container *ngTemplateOutlet="toolbarLanguageSelector"></ng-container></ng-container><ng-template #elseBlock> <ng-container *ngIf="(asService.state$ | async).hasHeader; else elseBlockToolbarContent"> <ng-content select="eui-toolbar-menu"></ng-content> </ng-container> <ng-template #elseBlockToolbarContent> <div class="eui-toolbar__left"> <ng-content select="eui-toolbar-logo"></ng-content> <ng-content select="eui-toolbar-app"></ng-content> <ng-content select="eui-toolbar-environment"></ng-content> </div>
|
353
|
+
var COMPONENT_TEMPLATE = '<div><ng-container *ngIf="(asService.state$ | async).hasHeader && (asService.breakpoints$ | async).isMobile; else elseBlock"> <div class="eui-toolbar__left"> <eui-toolbar-logo *ngIf="(asService.state$ | async).hasHeaderLogo"></eui-toolbar-logo> <eui-toolbar-environment *ngIf="(asService.state$ | async).hasHeaderEnvironment"> {{ (asService.state$ | async).environmentValue }} </eui-toolbar-environment> <eui-toolbar-app *ngIf="(asService.state$ | async).appName" appName="{{ (asService.state$ | async).appName }}"></eui-toolbar-app> </div> <ng-container *ngTemplateOutlet="toolbarCenter"></ng-container> <ng-container *ngTemplateOutlet="toolbarItems"></ng-container> <ng-container *ngTemplateOutlet="toolbarLanguageSelector"></ng-container></ng-container><ng-template #elseBlock> <ng-container *ngIf="(asService.state$ | async).hasHeader; else elseBlockToolbarContent"> <div class="eui-toolbar__left"> <ng-content select="eui-toolbar-menu"></ng-content> </div> <ng-container *ngTemplateOutlet="toolbarItems"></ng-container> </ng-container> <ng-template #elseBlockToolbarContent> <div class="eui-toolbar__left"> <ng-content select="eui-toolbar-logo"></ng-content> <ng-content select="eui-toolbar-app"></ng-content> <ng-content select="eui-toolbar-environment"></ng-content> </div> <!-- <div class="eui-toolbar__center"> --> <ng-container *ngTemplateOutlet="toolbarCenter"></ng-container> <!-- </div> --> <div class="eui-toolbar__right"> <ng-container *ngTemplateOutlet="toolbarItems"></ng-container> </div> </ng-template> <ng-container *ngTemplateOutlet="toolbarLanguageSelector"></ng-container></ng-template><ng-template #toolbarCenter> <ng-content select="eui-toolbar-center"></ng-content></ng-template><ng-template #toolbarItems> <ng-content select="eui-toolbar-items"></ng-content></ng-template><ng-template #toolbarLanguageSelector> <ng-container *ngIf="hasLanguageSelector"> <div class="eui-toolbar__language-selector"> <ng-content select="eui-language-selector"></ng-content> </div> </ng-container></ng-template></div>'
|
354
354
|
var COMPONENTS = [{'name': 'ChartComponent', 'selector': 'eui-apex-chart'},{'name': 'CollapsedBreadcrumbComponent', 'selector': 'eui-collapsed-breadcrumb'},{'name': 'EuiAlertComponent', 'selector': 'div[euiAlert], eui-alert'},{'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': 'EuiButtonsComponent', 'selector': 'eui-buttons'},{'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': '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': 'EuiCommonHeaderComponent', 'selector': 'eui-common-header'},{'name': 'EuiDashboardButtonComponent', 'selector': 'eui-dashboard-button'},{'name': 'EuiDashboardCardComponent', 'selector': 'eui-dashboard-card'},{'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': 'EuiExpandContentComponent', 'selector': 'eui-expand-content'},{'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': 'EuiHeaderUserProfileComponent', 'selector': 'eui-header-user-profile'},{'name': 'EuiIconColorComponent', 'selector': 'eui-icon-colored, span[euiIconColored], [euiIconColored]'},{'name': 'EuiIconComponent', 'selector': 'div[euiIcon], span[euiIcon], i[euiIcon], eui-icon'},{'name': 'EuiIconSvgButtonComponent', 'selector': 'eui-icon-svg-button'},{'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,
|
355
355
|
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': 'EuiPageHeaderComponent', 'selector': 'eui-page-header'},{'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': 'EuiSearchComponent', 'selector': 'eui-search'},{'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': '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': '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': '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': 'EuiUxTreeComponent', 'selector': 'eui-ux-tree'},{'name': 'EuiUxTreeNodeComponent', 'selector': 'eui-ux-tree-node'},{'name': 'EuiUxTreeToolbarComponent', 'selector': 'eui-ux-tree-toolbar'},{'name': 'EuiWizardComponent', 'selector': 'eui-wizard'},{'name': 'EuiWizardStepComponent', 'selector': 'eui-wizard-step'},{'name': 'QuillEditorComponent', 'selector': 'quill-editor'}];
|
356
356
|
var DIRECTIVES = [{'name': 'AutoResizeDirective', 'selector': 'textarea[autoResize]'},{'name': 'BaseDirective', 'selector': '[euiBase]'},{'name': 'BaseStatesDirective', 'selector': '[euiBase]'},{'name': 'CollapsedButtonDirective', 'selector': 'collapsed-button'},{'name': 'EuiActionButtonsDirective', 'selector': 'eui-action-buttons'},{'name': 'EuiAlertTitleDirective', 'selector': 'eui-alert-title'},{'name': 'EuiAppPageWrapperDirective', 'selector': 'eui-app-page-wrapper'},{'name': 'EuiButtonsActionsContentTagDirective', 'selector': 'euiButtonsActionsContent'},{'name': 'EuiButtonsLocalMenuContentTagDirective', 'selector': 'euiButtonsLocalMenuContent'},{'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': 'EuiHeaderAppNameDirective', 'selector': 'eui-header-app-name'},{'name': 'EuiHeaderAppNameLogoDirective', 'selector': 'eui-header-app-name-logo'},{'name': 'EuiHeaderAppSubtitleDirective', 'selector': 'eui-header-app-subtitle'},{'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
@@ -249,9 +249,9 @@
|
|
249
249
|
<li>
|
250
250
|
<b>@stackblitz/sdk</b> : 1.9.0</li>
|
251
251
|
<li>
|
252
|
-
<b>@eui/styles-base</b> : 17.0.0-rc.
|
252
|
+
<b>@eui/styles-base</b> : 17.0.0-rc.4</li>
|
253
253
|
<li>
|
254
|
-
<b>@eui/ecl</b> : 17.0.0-rc.
|
254
|
+
<b>@eui/ecl</b> : 17.0.0-rc.4</li>
|
255
255
|
<li>
|
256
256
|
<b>@eui/tools</b> : ^6.0.0</li>
|
257
257
|
</ul>
|
package/docs/js/menu-wc.js
CHANGED
@@ -59,13 +59,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
59
59
|
<a href="modules/EuiAlertModule.html" data-type="entity-link" >EuiAlertModule</a>
|
60
60
|
<li class="chapter inner">
|
61
61
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
62
|
-
'data-bs-target="#components-links-module-EuiAlertModule-
|
62
|
+
'data-bs-target="#components-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' : 'data-bs-target="#xs-components-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' }>
|
63
63
|
<span class="icon ion-md-cog"></span>
|
64
64
|
<span>Components</span>
|
65
65
|
<span class="icon ion-ios-arrow-down"></span>
|
66
66
|
</div>
|
67
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiAlertModule-
|
68
|
-
'id="xs-components-links-module-EuiAlertModule-
|
67
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="components-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' :
|
68
|
+
'id="xs-components-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' }>
|
69
69
|
<li class="link">
|
70
70
|
<a href="components/EuiAlertComponent.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiAlertComponent</a>
|
71
71
|
</li>
|
@@ -73,13 +73,13 @@ customElements.define('compodoc-menu', class extends HTMLElement {
|
|
73
73
|
</li>
|
74
74
|
<li class="chapter inner">
|
75
75
|
<div class="simple menu-toggler" data-bs-toggle="collapse" ${ isNormalMode ?
|
76
|
-
'data-bs-target="#directives-links-module-EuiAlertModule-
|
76
|
+
'data-bs-target="#directives-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' : 'data-bs-target="#xs-directives-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' }>
|
77
77
|
<span class="icon ion-md-code-working"></span>
|
78
78
|
<span>Directives</span>
|
79
79
|
<span class="icon ion-ios-arrow-down"></span>
|
80
80
|
</div>
|
81
|
-
<ul class="links collapse" ${ isNormalMode ? 'id="directives-links-module-EuiAlertModule-
|
82
|
-
'id="xs-directives-links-module-EuiAlertModule-
|
81
|
+
<ul class="links collapse" ${ isNormalMode ? 'id="directives-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' :
|
82
|
+
'id="xs-directives-links-module-EuiAlertModule-efa1cc81af8845b85f467394639c91296ebaf07e9c0aee88f773a7cecd4a98ee4e7d750b422b37acd25086573e3717bafd9aaabac84b67e01c349ce77c2ae4c8"' }>
|
83
83
|
<li class="link">
|
84
84
|
<a href="directives/EuiAlertTitleDirective.html" data-type="entity-link" data-context="sub-entity" data-context-id="modules" >EuiAlertTitleDirective</a>
|
85
85
|
</li>
|