UNPKG

carbon-components-angular

Version:
1,149 lines (1,007 loc) 42.6 kB
<!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>carbon-components-angular documentation</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="../images/favicon.ico"> <link rel="stylesheet" href="../styles/style.css"> <link rel="stylesheet" href="../styles/dark.css"> <style> footer.carbon { position: absolute; bottom: 0; width: 100%; z-index: 9999; } #root > div { /* * Subtracting the height of the footer to prevent * overlaying the footer ontop of content */ height: calc(100vh - 48px); } </style> </head> <body> <script> // Blocking script to avoid flickering dark mode // Dark mode toggle button var useDark = window.matchMedia('(prefers-color-scheme: dark)'); var darkModeState = useDark.matches; var $darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input'); var $darkModeToggles = document.querySelectorAll('.dark-mode-switch'); var darkModeStateLocal = localStorage.getItem('compodoc_darkmode-state'); function checkToggle(check) { for (var i = 0; i < $darkModeToggleSwitchers.length; i++) { $darkModeToggleSwitchers[i].checked = check; } } function toggleDarkMode(state) { if (window.localStorage) { localStorage.setItem('compodoc_darkmode-state', state); } checkToggle(state); const hasClass = document.body.classList.contains('dark'); if (state) { for (var i = 0; i < $darkModeToggles.length; i++) { $darkModeToggles[i].classList.add('dark'); } if (!hasClass) { document.body.classList.add('dark'); } } else { for (var i = 0; i < $darkModeToggles.length; i++) { $darkModeToggles[i].classList.remove('dark'); } if (hasClass) { document.body.classList.remove('dark'); } } } useDark.addEventListener('change', function (evt) { toggleDarkMode(evt.matches); }); if (darkModeStateLocal) { darkModeState = darkModeStateLocal === 'true'; } toggleDarkMode(darkModeState); </script> <div class="navbar navbar-default navbar-fixed-top d-md-none p-0"> <div class="d-flex"> <a href="../" class="navbar-brand">carbon-components-angular documentation</a> <button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button> </div> </div> <div class="xs-menu menu" id="mobile-menu"> <div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu> </div> <div class="container-fluid main"> <div class="row main"> <div class="d-none d-md-block menu"> <compodoc-menu mode="normal"></compodoc-menu> </div> <!-- START CONTENT --> <div class="content directive"> <div class="content-data"> <ol class="breadcrumb"> <li class="breadcrumb-item">Directives</li> <li class="breadcrumb-item" >TabHeaderBase</li> </ol> <ul class="nav nav-tabs" role="tablist"> <li class="nav-item"> <a href="#info" class="nav-link" class="nav-link active" role="tab" id="info-tab" data-bs-toggle="tab" data-link="info">Info</a> </li> <li class="nav-item"> <a href="#source" class="nav-link" role="tab" id="source-tab" data-bs-toggle="tab" data-link="source">Source</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade active in" id="info"> <p class="comment"> <h3>File</h3> </p> <p class="comment"> <code>src/tabs/tab-header.directive.ts</code> </p> <p class="comment"> <h3>Description</h3> </p> <p class="comment"> <p>Shared inputs, outputs, and selection logic for <code>[cdsTabHeader]</code> and <code>cds-tab-header</code> as we prepare for deprecation. Groups use <code>@ContentChildren(TabHeaderBase)</code> so both forms appear in DOM order, subclasses supply the template and host behavior.</p> </p> <section data-compodoc="block-index"> <h3 id="index">Index</h3> <table class="table table-sm table-bordered index-table"> <tbody> <tr> <td class="col-md-4"> <h6><b>Properties</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <span class="modifier">Protected</span> <a href="#_cacheActive" >_cacheActive</a> </li> </ul> </td> </tr> <tr> <td class="col-md-4"> <h6><b>Methods</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <span class="modifier">Abstract</span> <a href="#focus" >focus</a> </li> <li> <a href="#selectTab" >selectTab</a> </li> </ul> </td> </tr> <tr> <td class="col-md-4"> <h6><b>Inputs</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <a href="#active" >active</a> </li> <li> <a href="#cacheActive" >cacheActive</a> </li> <li> <a href="#disabled" >disabled</a> </li> <li> <a href="#dismissable" >dismissable</a> </li> <li> <a href="#icon" >icon</a> </li> <li> <a href="#paneReference" >paneReference</a> </li> <li> <a href="#paneTabIndex" >paneTabIndex</a> </li> <li> <a href="#secondaryLabel" >secondaryLabel</a> </li> <li> <a href="#title" >title</a> </li> </ul> </td> </tr> <tr> <td class="col-md-4"> <h6><b>Outputs</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <a href="#selected" >selected</a> </li> <li> <a href="#tabClose" >tabClose</a> </li> </ul> </td> </tr> <tr> <td class="col-md-4"> <h6><b>Accessors</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <a href="#cacheActive" >cacheActive</a> </li> <li> <a href="#paneTabIndex" >paneTabIndex</a> </li> </ul> </td> </tr> </tbody> </table> </section> <section data-compodoc="block-inputs"> <h3 id="inputs">Inputs</h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="active"></a> <b>active</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>false</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="53" class="link-to-prism">src/tabs/tab-header.directive.ts:53</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Selected tab; controls whether the linked pane content is shown.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="cacheActive"></a> <b>cacheActive</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="28" class="link-to-prism">src/tabs/tab-header.directive.ts:28</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Set to &#39;true&#39; to have pane reference cached and not reloaded on tab switching.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="disabled"></a> <b>disabled</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>false</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="58" class="link-to-prism">src/tabs/tab-header.directive.ts:58</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Indicates whether or not the <code>Tab</code> item is disabled.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="dismissable"></a> <b>dismissable</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>false</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="74" class="link-to-prism">src/tabs/tab-header.directive.ts:74</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Set to <code>true</code> to render this tab header as dismissable.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="icon"></a> <b>icon</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>TemplateRef&lt;any&gt;</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="63" class="link-to-prism">src/tabs/tab-header.directive.ts:63</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Icon template; used with <code>cds-tab-header</code> / <code>cds-tab-header-group</code>.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="paneReference"></a> <b>paneReference</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="../components/Tab.html" target="_self" >Tab</a></code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="79" class="link-to-prism">src/tabs/tab-header.directive.ts:79</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Reference to the corresponding tab pane.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="paneTabIndex"></a> <b>paneTabIndex</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>number | null</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="44" class="link-to-prism">src/tabs/tab-header.directive.ts:44</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Sets <code>tabIndex</code> on the linked <code>Tab</code> pane when the pane reference is set.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="secondaryLabel"></a> <b>secondaryLabel</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="69" class="link-to-prism">src/tabs/tab-header.directive.ts:69</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Optional secondary label rendered below the primary tab label. Only displayed when the parent group is using <code>type=&quot;contained&quot;</code>.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="title"></a> <b>title</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="84" class="link-to-prism">src/tabs/tab-header.directive.ts:84</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Title attribute used as the tooltip for the tab item. Falls back to the tab item&#39;s text content if not provided.</p> </div> </td> </tr> </tbody> </table> </section> <section data-compodoc="block-outputs"> <h3 id="outputs">Outputs</h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="selected"></a> <b>selected</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>EventEmitter</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="89" class="link-to-prism">src/tabs/tab-header.directive.ts:89</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Emits when this header becomes selected.</p> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="tabClose"></a> <b>tabClose</b> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>EventEmitter</code> </td> </tr> <tr> <td class="col-md-2" colspan="2"> <div class="io-line">Defined in <a href="" data-line="94" class="link-to-prism">src/tabs/tab-header.directive.ts:94</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Emits when this tabs&#39;s close button is pressed.</p> </div> </td> </tr> </tbody> </table> </section> <section data-compodoc="block-methods"> <h3 id="methods"> Methods </h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="focus"></a> <span class="name"> <span class="modifier">Abstract</span> <span ><b>focus</b></span> <a href="#focus"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <span class="modifier-icon icon ion-ios-reset"></span> <code>focus()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="101" class="link-to-prism">src/tabs/tab-header.directive.ts:101</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Move keyboard focus to the tab item.</p> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="selectTab"></a> <span class="name"> <span ><b>selectTab</b></span> <a href="#selectTab"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>selectTab()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="106" class="link-to-prism">src/tabs/tab-header.directive.ts:106</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Activates the linked pane and emits <code>selected</code>.</p> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> </section> <section data-compodoc="block-properties"> <h3 id="inputs"> Properties </h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="_cacheActive"></a> <span class="name"> <span class="modifier">Protected</span> <span ><b>_cacheActive</b></span> <a href="#_cacheActive"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>false</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="96" class="link-to-prism">src/tabs/tab-header.directive.ts:96</a></div> </td> </tr> </tbody> </table> </section> <section data-compodoc="block-accessors"> <h3 id="accessors"> Accessors </h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="cacheActive"></a> <span class="name"><b>cacheActive</b><a href="#cacheActive"><span class="icon ion-ios-link"></span></a></span> </td> </tr> <tr> <td class="col-md-4"> <span class="accessor"><b>get</b><code>cacheActive()</code></span> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="37" class="link-to-prism">src/tabs/tab-header.directive.ts:37</a></div> </td> </tr> <tr> <td class="col-md-4"> <span class="accessor"><b>set</b><code>cacheActive(shouldCache: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank">boolean</a>)</code></span> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="28" class="link-to-prism">src/tabs/tab-header.directive.ts:28</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Set to &#39;true&#39; to have pane reference cached and not reloaded on tab switching.</p> </div> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>shouldCache</td> <td> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code> </td> <td> No </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="paneTabIndex"></a> <span class="name"><b>paneTabIndex</b><a href="#paneTabIndex"><span class="icon ion-ios-link"></span></a></span> </td> </tr> <tr> <td class="col-md-4"> <span class="accessor"><b>set</b><code>paneTabIndex(tabIndex: number | null)</code></span> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="44" class="link-to-prism">src/tabs/tab-header.directive.ts:44</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"><p>Sets <code>tabIndex</code> on the linked <code>Tab</code> pane when the pane reference is set.</p> </div> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>tabIndex</td> <td> <code>number | null</code> </td> <td> No </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> </section> </div> <div class="tab-pane fade tab-source-code" id="source"> <pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { Directive, Input, Output, EventEmitter, ElementRef, AfterViewInit, HostBinding, HostListener, TemplateRef, forwardRef } from &quot;@angular/core&quot;; import { Tab } from &quot;./tab.component&quot;; /** * Shared inputs, outputs, and selection logic for &#x60;[cdsTabHeader]&#x60; * and &#x60;cds-tab-header&#x60; as we prepare for deprecation. * Groups use &#x60;@ContentChildren(TabHeaderBase)&#x60; so both forms appear in DOM order, * subclasses supply the template and host behavior. */ @Directive() // eslint-disable-next-line @angular-eslint/directive-class-suffix -- abstract base class, not a directive instance export abstract class TabHeaderBase { /** * Set to &#x27;true&#x27; to have pane reference cached and not reloaded on tab switching. */ @Input() set cacheActive(shouldCache: boolean) { this._cacheActive &#x3D; shouldCache; // Updates the pane references associated with the tab header when cache active is changed. if (this.paneReference) { this.paneReference.cacheActive &#x3D; this.cacheActive; } } get cacheActive() { return this._cacheActive; } /** * Sets &#x60;tabIndex&#x60; on the linked &#x60;Tab&#x60; pane when the pane reference is set. */ @Input() set paneTabIndex(tabIndex: number | null) { if (this.paneReference) { this.paneReference.tabIndex &#x3D; tabIndex; } } /** * Selected tab; controls whether the linked pane content is shown. */ @Input() active &#x3D; false; /** * Indicates whether or not the &#x60;Tab&#x60; item is disabled. */ @Input() disabled &#x3D; false; /** * Icon template; used with &#x60;cds-tab-header&#x60; / &#x60;cds-tab-header-group&#x60;. */ @Input() icon: TemplateRef&lt;any&gt;; /** * Optional secondary label rendered below the primary tab label. * Only displayed when the parent group is using &#x60;type&#x3D;&quot;contained&quot;&#x60;. */ @Input() secondaryLabel: string; /** * Set to &#x60;true&#x60; to render this tab header as dismissable. */ @Input() dismissable &#x3D; false; /** * Reference to the corresponding tab pane. */ @Input() paneReference: Tab; /** * Title attribute used as the tooltip for the tab item. Falls back to the tab item&#x27;s text content if not provided. */ @Input() title: string; /** * Emits when this header becomes selected. */ @Output() selected &#x3D; new EventEmitter&lt;any&gt;(); /** * Emits when this tabs&#x27;s close button is pressed. */ @Output() tabClose &#x3D; new EventEmitter&lt;void&gt;(); protected _cacheActive &#x3D; false; /** * Move keyboard focus to the tab item. */ abstract focus(): void; /** * Activates the linked pane and emits &#x60;selected&#x60;. */ selectTab() { this.focus(); if (!this.disabled) { this.selected.emit(); this.active &#x3D; true; if (this.paneReference) { this.paneReference.active &#x3D; true; } } } } /** * Tab header as an attribute on a focusable host inside &#x60;cds-tab-header-group&#x60;. * * @deprecated as of v5. * Prefer &#x60;cds-tab-header&#x60; for icons, secondary labels, dismissable close, and icon-only tabs. */ @Directive({ selector: &quot;[cdsTabHeader], [ibmTabHeader]&quot;, providers: [ // tslint:disable-next-line:no-forward-ref { provide: TabHeaderBase, useExisting: forwardRef(() &#x3D;&gt; TabHeader) } ] }) export class TabHeader extends TabHeaderBase implements AfterViewInit { @HostBinding(&quot;attr.tabIndex&quot;) get tabIndex() { return this.active ? 0 : -1; } @HostBinding(&quot;class.cds--tabs__nav-item--selected&quot;) get isSelected() { return this.active; } @HostBinding(&quot;class.cds--tabs__nav-item--disabled&quot;) get isDisabled() { return this.disabled; } @HostBinding(&quot;attr.type&quot;) type &#x3D; &quot;button&quot;; @HostBinding(&quot;attr.aria-selected&quot;) get ariaSelected() { return this.active; } @HostBinding(&quot;attr.aria-disabled&quot;) get ariaDisabled() { return this.disabled; } @HostBinding(&quot;class.cds--tabs__nav-item&quot;) navItem &#x3D; true; @HostBinding(&quot;class.cds--tabs__nav-link&quot;) navLink &#x3D; true; @HostBinding(&quot;attr.title&quot;) get hostTitle() { return this.title ?? null; } constructor(private host: ElementRef) { super(); } @HostListener(&quot;click&quot;) onClick() { this.selectTab(); } @HostListener(&quot;keydown&quot;, [&quot;$event&quot;]) onKeyDown(event: KeyboardEvent) { if (this.dismissable &amp;&amp; event.key &#x3D;&#x3D;&#x3D; &quot;Delete&quot;) { event.stopPropagation(); this.tabClose.emit(); } } ngAfterViewInit() { setTimeout(() &#x3D;&gt; { this.title &#x3D; this.title ? this.title : this.host.nativeElement.textContent; }); } focus() { this.host.nativeElement.focus(); } } </code></pre> </div> </div> </div><div class="search-results"> <div class="has-results"> <h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1> <ul class="search-results-list"></ul> </div> <div class="no-results"> <h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1> </div> </div> </div> <!-- END CONTENT --> </div> </div> <label class="dark-mode-switch"> <input type="checkbox"> <span class="slider"> <svg class="slider-icon" viewBox="0 0 24 24" fill="none" height="20" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"> <path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path> </svg> </span> </label> <script> var COMPODOC_CURRENT_PAGE_DEPTH = 1; var COMPODOC_CURRENT_PAGE_CONTEXT = 'directive'; var COMPODOC_CURRENT_PAGE_URL = 'TabHeaderBase.html'; var MAX_SEARCH_RESULTS = 15; </script> <script> $darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input'); checkToggle(darkModeState); if ($darkModeToggleSwitchers.length > 0) { for (var i = 0; i < $darkModeToggleSwitchers.length; i++) { $darkModeToggleSwitchers[i].addEventListener('change', function (event) { darkModeState = !darkModeState; toggleDarkMode(darkModeState); }); } } </script> <script src="../js/libs/custom-elements.min.js"></script> <script src="../js/libs/lit-html.js"></script> <script src="../js/menu-wc.js" defer></script> <script nomodule src="../js/menu-wc_es5.js" defer></script> <script src="../js/libs/bootstrap-native.js"></script> <script src="../js/libs/es6-shim.min.js"></script> <script src="../js/libs/EventDispatcher.js"></script> <script src="../js/libs/promise.min.js"></script> <script src="../js/libs/zepto.min.js"></script> <script src="../js/compodoc.js"></script> <script src="../js/tabs.js"></script> <script src="../js/menu.js"></script> <script src="../js/libs/clipboard.min.js"></script> <script src="../js/libs/prism.js"></script> <script src="../js/sourceCode.js"></script> <script src="../js/search/search.js"></script> <script src="../js/search/lunr.min.js"></script> <script src="../js/search/search-lunr.js"></script> <script src="../js/search/search_index.js"></script> <script src="../js/lazy-load-graphs.js"></script> <footer class="carbon"> <dds-footer-container key="footer" disable-locale-button="true" size="micro" /> </footer> <script key="8" type="module" src="https://1.www.s81c.com/common/carbon-for-ibm-dotcom/tag/v1/latest/footer.min.js"> </script> <!-- Storybook override --> <script> document.title = "Carbon Components Angular"; </script> <script src="//1.www.s81c.com/common/stats/ibm-common.js" type="text/javascript" async="async"> </script> </body> </html>