UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

1,197 lines (1,176 loc) 58.2 kB
import * as i1 from '@angular/common'; import { CommonModule, isPlatformBrowser } from '@angular/common'; import * as i0 from '@angular/core'; import { Injectable, inject, forwardRef, booleanAttribute, Component, Input, ContentChild, ContentChildren, EventEmitter, numberAttribute, ChangeDetectionStrategy, ViewEncapsulation, HostBinding, Output, ViewChild, NgModule } from '@angular/core'; import { uuid, findSingle, getAttribute, focus, getOuterWidth, getOffset, find, getWidth } from '@primeuix/utils'; import { PrimeTemplate, SharedModule } from 'primeng/api'; import { BaseComponent } from 'primeng/basecomponent'; import { TimesIcon, ChevronLeftIcon, ChevronRightIcon } from 'primeng/icons'; import { Ripple } from 'primeng/ripple'; import * as i2 from 'primeng/tooltip'; import { TooltipModule } from 'primeng/tooltip'; import { BaseStyle } from 'primeng/base'; const theme = ({ dt }) => ` .p-tabs { display: flex; flex-direction: column; } .p-tablist { display: flex; position: relative; } .p-tabs-scrollable > .p-tablist { overflow: hidden; } .p-tablist-viewport { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scrollbar-width: none; overscroll-behavior: contain auto; } .p-tablist-viewport::-webkit-scrollbar { display: none; } .p-tablist-tab-list { position: relative; display: flex; background: ${dt('tabs.tablist.background')}; border-style: solid; border-color: ${dt('tabs.tablist.border.color')}; border-width: ${dt('tabs.tablist.border.width')}; } .p-tablist-content { flex-grow: 1; } .p-tablist-nav-button { all: unset; position: absolute !important; flex-shrink: 0; top: 0; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; background: ${dt('tabs.nav.button.background')}; color: ${dt('tabs.nav.button.color')}; width: ${dt('tabs.nav.button.width')}; transition: color ${dt('tabs.transition.duration')}, outline-color ${dt('tabs.transition.duration')}, box-shadow ${dt('tabs.transition.duration')}; box-shadow: ${dt('tabs.nav.button.shadow')}; outline-color: transparent; cursor: pointer; } .p-tablist-nav-button:focus-visible { z-index: 1; box-shadow: ${dt('tabs.nav.button.focus.ring.shadow')}; outline: ${dt('tabs.nav.button.focus.ring.width')} ${dt('tabs.nav.button.focus.ring.style')} ${dt('tabs.nav.button.focus.ring.color')}; outline-offset: ${dt('tabs.nav.button.focus.ring.offset')}; } .p-tablist-nav-button:hover { color: ${dt('tabs.nav.button.hover.color')}; } .p-tablist-prev-button { left: 0; } .p-tablist-next-button { right: 0; } .p-tab { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; user-select: none; position: relative; border-style: solid; white-space: nowrap; gap: ${dt('tabs.tab.gap')}; background: ${dt('tabs.tab.background')}; border-width: ${dt('tabs.tab.border.width')}; border-color: ${dt('tabs.tab.border.color')}; color: ${dt('tabs.tab.color')}; padding: ${dt('tabs.tab.padding')}; font-weight: ${dt('tabs.tab.font.weight')}; transition: background ${dt('tabs.transition.duration')}, border-color ${dt('tabs.transition.duration')}, color ${dt('tabs.transition.duration')}, outline-color ${dt('tabs.transition.duration')}, box-shadow ${dt('tabs.transition.duration')}; margin: ${dt('tabs.tab.margin')}; outline-color: transparent; } .p-tab:not(.p-disabled):focus-visible { z-index: 1; box-shadow: ${dt('tabs.tab.focus.ring.shadow')}; outline: ${dt('tabs.tab.focus.ring.width')} ${dt('tabs.tab.focus.ring.style')} ${dt('tabs.tab.focus.ring.color')}; outline-offset: ${dt('tabs.tab.focus.ring.offset')}; } .p-tab:not(.p-tab-active):not(.p-disabled):hover { background: ${dt('tabs.tab.hover.background')}; border-color: ${dt('tabs.tab.hover.border.color')}; color: ${dt('tabs.tab.hover.color')}; } .p-tab-active { background: ${dt('tabs.tab.active.background')}; border-color: ${dt('tabs.tab.active.border.color')}; color: ${dt('tabs.tab.active.color')}; } .p-tabpanels { background: ${dt('tabs.tabpanel.background')}; color: ${dt('tabs.tabpanel.color')}; padding: ${dt('tabs.tabpanel.padding')}; outline: 0 none; } .p-tabpanel:focus-visible { box-shadow: ${dt('tabs.tabpanel.focus.ring.shadow')}; outline: ${dt('tabs.tabpanel.focus.ring.width')} ${dt('tabs.tabpanel.focus.ring.style')} ${dt('tabs.tabpanel.focus.ring.color')}; outline-offset: ${dt('tabs.tabpanel.focus.ring.offset')}; } .p-tablist-active-bar { z-index: 1; display: block; position: absolute; bottom: ${dt('tabs.active.bar.bottom')}; height: ${dt('tabs.active.bar.height')}; background: ${dt('tabs.active.bar.background')}; transition: 250ms cubic-bezier(0.35, 0, 0.25, 1); } `; const classes = { root: ({ props }) => [ 'p-tabs p-component', { 'p-tabs-scrollable': props.scrollable } ] }; class TabsStyle extends BaseStyle { name = 'tabs'; theme = theme; classes = classes; static ɵfac = /*@__PURE__*/ (() => { let ɵTabsStyle_BaseFactory; return function TabsStyle_Factory(__ngFactoryType__) { return (ɵTabsStyle_BaseFactory || (ɵTabsStyle_BaseFactory = i0.ɵɵgetInheritedFactory(TabsStyle)))(__ngFactoryType__ || TabsStyle); }; })(); static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: TabsStyle, factory: TabsStyle.ɵfac }); } (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TabsStyle, [{ type: Injectable }], null, null); })(); /** * * Tabs facilitates seamless switching between different views. * * [Live Demo](https://www.primeng.org/tabs/) * * @module tabsstyle * */ var TabsClasses; (function (TabsClasses) { /** * Class name of the root element */ TabsClasses["root"] = "p-tabs"; /** * Class name of the wrapper element */ TabsClasses["list"] = "p-tablist"; /** * Class name of the content element */ TabsClasses["content"] = "p-tablist-content"; /** * Class name of the tab list element */ TabsClasses["tablist"] = "p-tablist-tab-list"; /** * Class name of the tab list element */ TabsClasses["tab"] = "p-tab"; /** * Class name of the inkbar element */ TabsClasses["inkbar"] = "p-tablist-active-bar"; /** * Class name of the navigation buttons */ TabsClasses["button"] = "p-tablist-nav-button"; /** * Class name of the tab panels wrapper */ TabsClasses["tabpanels"] = "p-tabpanels"; /** * Class name of the tab panel element */ TabsClasses["tabpanel"] = "p-tabs-panel"; })(TabsClasses || (TabsClasses = {})); const _c0 = ["content"]; const _c1 = ["header"]; const _c2 = ["lefticon"]; const _c3 = ["righticon"]; const _c4 = ["closeicon"]; const _c5 = ["*"]; function TabPanel_div_0_ng_container_2_ng_container_1_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelementContainer(0); } } function TabPanel_div_0_ng_container_2_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelementContainerStart(0); i0.ɵɵtemplate(1, TabPanel_div_0_ng_container_2_ng_container_1_Template, 1, 0, "ng-container", 3); i0.ɵɵelementContainerEnd(); } if (rf & 2) { const ctx_r0 = i0.ɵɵnextContext(2); i0.ɵɵadvance(); i0.ɵɵproperty("ngTemplateOutlet", ctx_r0.contentTemplate || ctx_r0._contentTemplate); } } function TabPanel_div_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelementStart(0, "div", 1); i0.ɵɵprojection(1); i0.ɵɵtemplate(2, TabPanel_div_0_ng_container_2_Template, 2, 1, "ng-container", 2); i0.ɵɵelementEnd(); } if (rf & 2) { const ctx_r0 = i0.ɵɵnextContext(); i0.ɵɵproperty("hidden", !ctx_r0.selected); i0.ɵɵattribute("id", ctx_r0.tabView.getTabContentId(ctx_r0.id))("aria-hidden", !ctx_r0.selected)("aria-labelledby", ctx_r0.tabView.getTabHeaderActionId(ctx_r0.id))("data-pc-name", "tabpanel"); i0.ɵɵadvance(2); i0.ɵɵproperty("ngIf", (ctx_r0.contentTemplate || ctx_r0._contentTemplate) && (ctx_r0.cache ? ctx_r0.loaded : ctx_r0.selected)); } } const _c6 = ["previousicon"]; const _c7 = ["nexticon"]; const _c8 = ["navbar"]; const _c9 = ["prevBtn"]; const _c10 = ["nextBtn"]; const _c11 = ["inkbar"]; const _c12 = ["elementToObserve"]; const _c13 = a0 => ({ "p-tablist-viewport": a0 }); const _c14 = (a0, a1) => ({ "p-tab": true, "p-tab-active": a0, "p-disabled": a1 }); function TabView_button_2_ChevronLeftIcon_2_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelement(0, "ChevronLeftIcon"); } if (rf & 2) { i0.ɵɵattribute("aria-hidden", true); } } function TabView_button_2_3_ng_template_0_Template(rf, ctx) { } function TabView_button_2_3_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_button_2_3_ng_template_0_Template, 0, 0, "ng-template"); } } function TabView_button_2_Template(rf, ctx) { if (rf & 1) { const _r2 = i0.ɵɵgetCurrentView(); i0.ɵɵelementStart(0, "button", 12, 3); i0.ɵɵlistener("click", function TabView_button_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.navBackward()); }); i0.ɵɵtemplate(2, TabView_button_2_ChevronLeftIcon_2_Template, 1, 1, "ChevronLeftIcon", 13)(3, TabView_button_2_3_Template, 1, 0, null, 14); i0.ɵɵelementEnd(); } if (rf & 2) { const ctx_r2 = i0.ɵɵnextContext(); i0.ɵɵattribute("tabindex", ctx_r2.tabindex)("aria-label", ctx_r2.prevButtonAriaLabel); i0.ɵɵadvance(2); i0.ɵɵproperty("ngIf", !ctx_r2.previousIconTemplate && !ctx_r2._previousIconTemplate); i0.ɵɵadvance(); i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.previousIconTemplate && ctx_r2._previousIconTemplate); } } function TabView_For_8_Conditional_0_Conditional_1_ng_container_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelementContainer(0); } } function TabView_For_8_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_1_ng_container_0_Template, 1, 0, "ng-container", 14); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(2).$implicit; i0.ɵɵproperty("ngTemplateOutlet", tab_r5.headerTemplate || tab_r5._headerTemplate); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_0_0_ng_template_0_Template(rf, ctx) { } function TabView_For_8_Conditional_0_Conditional_2_Conditional_0_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_0_0_ng_template_0_Template, 0, 0, "ng-template"); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_0_0_Template, 1, 0, null, 14); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(3).$implicit; i0.ɵɵproperty("ngTemplateOutlet", tab_r5.leftIconTemplate || tab_r5._leftIconTemplate); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelement(0, "span", 17); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(3).$implicit; i0.ɵɵproperty("ngClass", tab_r5.leftIcon); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_3_0_ng_template_0_Template(rf, ctx) { } function TabView_For_8_Conditional_0_Conditional_2_Conditional_3_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_3_0_ng_template_0_Template, 0, 0, "ng-template"); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_3_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_3_0_Template, 1, 0, null, 14); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(3).$implicit; i0.ɵɵproperty("ngTemplateOutlet", tab_r5.rightIconTemplate || tab_r5._rightIconTemplate); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_4_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelement(0, "span", 18); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(3).$implicit; i0.ɵɵproperty("ngClass", tab_r5.rightIcon); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_0_0_ng_template_0_Template(rf, ctx) { } function TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_0_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_0_0_ng_template_0_Template, 0, 0, "ng-template"); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_0_0_Template, 1, 0, null, 14); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(4).$implicit; i0.ɵɵproperty("ngTemplateOutlet", tab_r5.closeIconTemplate || tab_r5._closeIconTemplate); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_1_Template(rf, ctx) { if (rf & 1) { const _r6 = i0.ɵɵgetCurrentView(); i0.ɵɵelementStart(0, "TimesIcon", 19); i0.ɵɵlistener("click", function TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_1_Template_TimesIcon_click_0_listener($event) { i0.ɵɵrestoreView(_r6); const tab_r5 = i0.ɵɵnextContext(4).$implicit; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.close($event, tab_r5)); }); i0.ɵɵelementEnd(); } } function TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_0_Template, 1, 1)(1, TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Conditional_1_Template, 1, 0, "TimesIcon"); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(3).$implicit; i0.ɵɵconditional(tab_r5.closeIconTemplate || tab_r5._closeIconTemplate ? 0 : 1); } } function TabView_For_8_Conditional_0_Conditional_2_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Conditional_2_Conditional_0_Template, 1, 1)(1, TabView_For_8_Conditional_0_Conditional_2_Conditional_1_Template, 1, 1, "span", 17); i0.ɵɵtext(2); i0.ɵɵtemplate(3, TabView_For_8_Conditional_0_Conditional_2_Conditional_3_Template, 1, 1)(4, TabView_For_8_Conditional_0_Conditional_2_Conditional_4_Template, 1, 1, "span", 18)(5, TabView_For_8_Conditional_0_Conditional_2_Conditional_5_Template, 2, 1); } if (rf & 2) { const tab_r5 = i0.ɵɵnextContext(2).$implicit; i0.ɵɵconditional(tab_r5.leftIconTemplate || tab_r5._leftIconTemplate ? 0 : tab_r5.leftIcon && !tab_r5.leftIconTemplate && !tab_r5._leftIconTemplate ? 1 : -1); i0.ɵɵadvance(2); i0.ɵɵtextInterpolate1(" ", tab_r5.header, " "); i0.ɵɵadvance(); i0.ɵɵconditional(tab_r5.rightIconTemplate || tab_r5._rightIconTemplate ? 3 : tab_r5.rightIcon && !tab_r5.rightIconTemplate && !tab_r5._rightIconTemplate ? 4 : -1); i0.ɵɵadvance(2); i0.ɵɵconditional(tab_r5.closable ? 5 : -1); } } function TabView_For_8_Conditional_0_Template(rf, ctx) { if (rf & 1) { const _r4 = i0.ɵɵgetCurrentView(); i0.ɵɵelementStart(0, "button", 15); i0.ɵɵlistener("click", function TabView_For_8_Conditional_0_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r4); const tab_r5 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.open($event, tab_r5)); })("keydown", function TabView_For_8_Conditional_0_Template_button_keydown_0_listener($event) { i0.ɵɵrestoreView(_r4); const tab_r5 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onTabKeyDown($event, tab_r5)); }); i0.ɵɵtemplate(1, TabView_For_8_Conditional_0_Conditional_1_Template, 1, 1, "ng-container")(2, TabView_For_8_Conditional_0_Conditional_2_Template, 6, 4); i0.ɵɵelementEnd(); i0.ɵɵelement(3, "span", 16, 4); } if (rf & 2) { const ctx_r6 = i0.ɵɵnextContext(); const tab_r5 = ctx_r6.$implicit; const ɵ$index_19_r8 = ctx_r6.$index; const ctx_r2 = i0.ɵɵnextContext(); i0.ɵɵclassMap(tab_r5.headerStyleClass); i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(22, _c14, tab_r5.selected, tab_r5.disabled))("ngStyle", tab_r5.headerStyle)("pTooltip", tab_r5.tooltip)("tooltipPosition", tab_r5.tooltipPosition)("positionStyle", tab_r5.tooltipPositionStyle)("tooltipStyleClass", tab_r5.tooltipStyleClass)("disabled", tab_r5.disabled); i0.ɵɵattribute("role", "tab")("id", ctx_r2.getTabHeaderActionId(tab_r5.id))("aria-controls", ctx_r2.getTabContentId(tab_r5.id))("aria-selected", tab_r5.selected)("tabindex", tab_r5.disabled || !tab_r5.selected ? "-1" : ctx_r2.tabindex)("aria-disabled", tab_r5.disabled)("data-pc-index", ɵ$index_19_r8)("data-p-disabled", tab_r5.disabled)("data-pc-section", "headeraction")("data-p-active", tab_r5.selected); i0.ɵɵadvance(); i0.ɵɵconditional(tab_r5.headerTemplate || tab_r5._headerTemplate ? 1 : 2); i0.ɵɵadvance(2); i0.ɵɵattribute("aria-hidden", true)("data-pc-section", "inkbar"); } } function TabView_For_8_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_For_8_Conditional_0_Template, 5, 25); } if (rf & 2) { const tab_r5 = ctx.$implicit; i0.ɵɵconditional(!tab_r5.closed ? 0 : -1); } } function TabView_button_9_Conditional_2_0_ng_template_0_Template(rf, ctx) { } function TabView_button_9_Conditional_2_0_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_button_9_Conditional_2_0_ng_template_0_Template, 0, 0, "ng-template"); } } function TabView_button_9_Conditional_2_Template(rf, ctx) { if (rf & 1) { i0.ɵɵtemplate(0, TabView_button_9_Conditional_2_0_Template, 1, 0, null, 14); } if (rf & 2) { const ctx_r2 = i0.ɵɵnextContext(2); i0.ɵɵproperty("ngTemplateOutlet", ctx_r2.nextIconTemplate || ctx_r2._nextIconTemplate); } } function TabView_button_9_Conditional_3_Template(rf, ctx) { if (rf & 1) { i0.ɵɵelement(0, "ChevronRightIcon"); } if (rf & 2) { i0.ɵɵattribute("aria-hidden", true); } } function TabView_button_9_Template(rf, ctx) { if (rf & 1) { const _r9 = i0.ɵɵgetCurrentView(); i0.ɵɵelementStart(0, "button", 20, 5); i0.ɵɵlistener("click", function TabView_button_9_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.navForward()); }); i0.ɵɵtemplate(2, TabView_button_9_Conditional_2_Template, 1, 1)(3, TabView_button_9_Conditional_3_Template, 1, 1, "ChevronRightIcon"); i0.ɵɵelementEnd(); } if (rf & 2) { const ctx_r2 = i0.ɵɵnextContext(); i0.ɵɵattribute("tabindex", ctx_r2.tabindex)("aria-label", ctx_r2.nextButtonAriaLabel); i0.ɵɵadvance(2); i0.ɵɵconditional(ctx_r2.nextIconTemplate || ctx_r2._nextIconTemplate ? 2 : 3); } } /** * TabPanel is a helper component for TabView component. * @group Components */ class TabPanel extends BaseComponent { /** * Defines if tab can be removed. * @group Props */ closable = false; /** * Inline style of the tab header. * @group Props */ get headerStyle() { return this._headerStyle; } set headerStyle(headerStyle) { this._headerStyle = headerStyle; this.tabView.cd.markForCheck(); } /** * Style class of the tab header. * @group Props */ get headerStyleClass() { return this._headerStyleClass; } set headerStyleClass(headerStyleClass) { this._headerStyleClass = headerStyleClass; this.tabView.cd.markForCheck(); } /** * Whether a lazy loaded panel should avoid getting loaded again on reselection. * @group Props */ cache = true; /** * Advisory information to display in a tooltip on hover. * @group Props */ tooltip; /** * Position of the tooltip. * @group Props */ tooltipPosition = 'top'; /** * Type of CSS position. * @group Props */ tooltipPositionStyle = 'absolute'; /** * Style class of the tooltip. * @group Props */ tooltipStyleClass; /** * Defines if tab is active. * @defaultValue false * @group Props */ get selected() { return !!this._selected; } set selected(val) { this._selected = val; if (!this.loaded) { this.cd.detectChanges(); } if (val) this.loaded = true; } /** * When true, tab cannot be activated. * @defaultValue false * @group Props */ get disabled() { return !!this._disabled; } set disabled(disabled) { this._disabled = disabled; this.tabView.cd.markForCheck(); } /** * Title of the tabPanel. * @group Props */ get header() { return this._header; } set header(header) { this._header = header; // We have to wait for the rendering and then retrieve the actual size element from the DOM. // in future `Promise.resolve` can be changed to `queueMicrotask` (if ie11 support will be dropped) Promise.resolve().then(() => { this.tabView.updateInkBar(); this.tabView.cd.markForCheck(); }); } /** * Left icon of the tabPanel. * @group Props * @deprecated since v15.4.2, use `lefticon` template instead. */ get leftIcon() { return this._leftIcon; } set leftIcon(leftIcon) { this._leftIcon = leftIcon; this.tabView.cd.markForCheck(); } /** * Left icon of the tabPanel. * @group Props * @deprecated since v15.4.2, use `righticon` template instead. */ get rightIcon() { return this._rightIcon; } set rightIcon(rightIcon) { this._rightIcon = rightIcon; this.tabView.cd.markForCheck(); } closed = false; _headerStyle; _headerStyleClass; _selected; _disabled; _header; _leftIcon; _rightIcon = undefined; loaded = false; id = uuid('pn_id_'); contentTemplate; headerTemplate; leftIconTemplate; rightIconTemplate; closeIconTemplate; templates; tabView = inject(forwardRef(() => TabView)); _componentStyle = inject(TabsStyle); _headerTemplate; _contentTemplate; _rightIconTemplate; _leftIconTemplate; _closeIconTemplate; ngAfterContentInit() { this.templates.forEach((item) => { switch (item.getType()) { case 'header': this._headerTemplate = item.template; break; case 'content': this._contentTemplate = item.template; break; case 'righticon': this._rightIconTemplate = item.template; break; case 'lefticon': this._leftIconTemplate = item.template; break; case 'closeicon': this._closeIconTemplate = item.template; break; default: this._contentTemplate = item.template; break; } }); } static ɵfac = /*@__PURE__*/ (() => { let ɵTabPanel_BaseFactory; return function TabPanel_Factory(__ngFactoryType__) { return (ɵTabPanel_BaseFactory || (ɵTabPanel_BaseFactory = i0.ɵɵgetInheritedFactory(TabPanel)))(__ngFactoryType__ || TabPanel); }; })(); static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TabPanel, selectors: [["p-tabPanel"], ["p-tabpanel"]], contentQueries: function TabPanel_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) { i0.ɵɵcontentQuery(dirIndex, _c0, 5); i0.ɵɵcontentQuery(dirIndex, _c1, 5); i0.ɵɵcontentQuery(dirIndex, _c2, 5); i0.ɵɵcontentQuery(dirIndex, _c3, 5); i0.ɵɵcontentQuery(dirIndex, _c4, 5); i0.ɵɵcontentQuery(dirIndex, PrimeTemplate, 4); } if (rf & 2) { let _t; i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.contentTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.headerTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.leftIconTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.rightIconTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.closeIconTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.templates = _t); } }, inputs: { closable: [2, "closable", "closable", booleanAttribute], headerStyle: "headerStyle", headerStyleClass: "headerStyleClass", cache: [2, "cache", "cache", booleanAttribute], tooltip: "tooltip", tooltipPosition: "tooltipPosition", tooltipPositionStyle: "tooltipPositionStyle", tooltipStyleClass: "tooltipStyleClass", selected: "selected", disabled: "disabled", header: "header", leftIcon: "leftIcon", rightIcon: "rightIcon" }, features: [i0.ɵɵProvidersFeature([TabsStyle]), i0.ɵɵInputTransformsFeature, i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c5, decls: 1, vars: 1, consts: [["class", "p-tabview-panel", "role", "tabpanel", 3, "hidden", 4, "ngIf"], ["role", "tabpanel", 1, "p-tabview-panel", 3, "hidden"], [4, "ngIf"], [4, "ngTemplateOutlet"]], template: function TabPanel_Template(rf, ctx) { if (rf & 1) { i0.ɵɵprojectionDef(); i0.ɵɵtemplate(0, TabPanel_div_0_Template, 3, 6, "div", 0); } if (rf & 2) { i0.ɵɵproperty("ngIf", !ctx.closed); } }, dependencies: [CommonModule, i1.NgIf, i1.NgTemplateOutlet, SharedModule], encapsulation: 2 }); } (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TabPanel, [{ type: Component, args: [{ selector: 'p-tabPanel, p-tabpanel', standalone: true, imports: [CommonModule, SharedModule], template: ` <div *ngIf="!closed" class="p-tabview-panel" role="tabpanel" [hidden]="!selected" [attr.id]="tabView.getTabContentId(id)" [attr.aria-hidden]="!selected" [attr.aria-labelledby]="tabView.getTabHeaderActionId(id)" [attr.data-pc-name]="'tabpanel'" > <ng-content></ng-content> <ng-container *ngIf="(contentTemplate || _contentTemplate) && (cache ? loaded : selected)"> <ng-container *ngTemplateOutlet="contentTemplate || _contentTemplate"></ng-container> </ng-container> </div> `, providers: [TabsStyle] }] }], null, { closable: [{ type: Input, args: [{ transform: booleanAttribute }] }], headerStyle: [{ type: Input }], headerStyleClass: [{ type: Input }], cache: [{ type: Input, args: [{ transform: booleanAttribute }] }], tooltip: [{ type: Input }], tooltipPosition: [{ type: Input }], tooltipPositionStyle: [{ type: Input }], tooltipStyleClass: [{ type: Input }], selected: [{ type: Input }], disabled: [{ type: Input }], header: [{ type: Input }], leftIcon: [{ type: Input }], rightIcon: [{ type: Input }], contentTemplate: [{ type: ContentChild, args: ['content'] }], headerTemplate: [{ type: ContentChild, args: ['header'] }], leftIconTemplate: [{ type: ContentChild, args: ['lefticon'] }], rightIconTemplate: [{ type: ContentChild, args: ['righticon'] }], closeIconTemplate: [{ type: ContentChild, args: ['closeicon'] }], templates: [{ type: ContentChildren, args: [PrimeTemplate] }] }); })(); (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TabPanel, { className: "TabPanel", filePath: "tabview.ts", lineNumber: 64 }); })(); /** * TabView is a container component to group content with tabs. * @group Components */ class TabView extends BaseComponent { get hostClass() { return this.styleClass; } get hostStyle() { return this.style; } /** * Inline style of the component. * @group Props */ style; /** * Style class of the component. * @group Props */ styleClass; /** * Whether tab close is controlled at onClose event or not. * @defaultValue false * @group Props */ controlClose; /** * When enabled displays buttons at each side of the tab headers to scroll the tab list. * @defaultValue false * @group Props */ scrollable; /** * Index of the active tab to change selected tab programmatically. * @group Props */ get activeIndex() { return this._activeIndex; } set activeIndex(val) { this._activeIndex = val; if (this.preventActiveIndexPropagation) { this.preventActiveIndexPropagation = false; return; } if (this.tabs && this.tabs.length && this._activeIndex != null && this.tabs.length > this._activeIndex) { this.findSelectedTab().selected = false; this.tabs[this._activeIndex].selected = true; this.tabChanged = true; this.updateScrollBar(val); } } /** * When enabled, the focused tab is activated. * @group Props */ selectOnFocus = false; /** * Used to define a string aria label attribute the forward navigation button. * @group Props */ nextButtonAriaLabel; /** * Used to define a string aria label attribute the backward navigation button. * @group Props */ prevButtonAriaLabel; /** * When activated, navigation buttons will automatically hide or show based on the available space within the container. * @group Props */ autoHideButtons = true; /** * Index of the element in tabbing order. * @group Props */ tabindex = 0; /** * Callback to invoke on tab change. * @param {TabViewChangeEvent} event - Custom tab change event * @group Emits */ onChange = new EventEmitter(); /** * Callback to invoke on tab close. * @param {TabViewCloseEvent} event - Custom tab close event * @group Emits */ onClose = new EventEmitter(); /** * Callback to invoke on the active tab change. * @param {number} index - New active index * @group Emits */ activeIndexChange = new EventEmitter(); content; navbar; prevBtn; nextBtn; inkbar; tabPanels; initialized; tabs; _activeIndex; preventActiveIndexPropagation; tabChanged; backwardIsDisabled = true; forwardIsDisabled = false; tabChangesSubscription; resizeObserver; container; list; buttonVisible; elementToObserve; previousIconTemplate; nextIconTemplate; _previousIconTemplate; _nextIconTemplate; _componentStyle = inject(TabsStyle); templates; ngOnInit() { super.ngOnInit(); console.log('TabView component is deprecated as of v18. Use Tabs component instead.'); } ngAfterContentInit() { this.initTabs(); this.tabChangesSubscription = this.tabPanels.changes.subscribe((_) => { this.initTabs(); this.refreshButtonState(); }); this.templates.forEach((item) => { switch (item.getType()) { case 'previousicon': this._previousIconTemplate = item.template; break; case 'nexticon': this._nextIconTemplate = item.template; break; } }); } ngAfterViewInit() { super.ngAfterViewInit(); if (isPlatformBrowser(this.platformId)) { if (this.autoHideButtons) { this.bindResizeObserver(); } } } bindResizeObserver() { this.container = findSingle(this.el.nativeElement, '[data-pc-section="navcontent"]'); this.list = findSingle(this.el.nativeElement, '[data-pc-section="nav"]'); this.resizeObserver = new ResizeObserver(() => { if (this.list.offsetWidth >= this.container.offsetWidth) { this.buttonVisible = true; } else { this.buttonVisible = false; } this.updateButtonState(); this.cd.detectChanges(); }); this.resizeObserver.observe(this.container); } unbindResizeObserver() { this.resizeObserver.unobserve(this.elementToObserve.nativeElement); this.resizeObserver = null; } ngAfterViewChecked() { if (isPlatformBrowser(this.platformId)) { if (this.tabChanged) { this.updateInkBar(); this.tabChanged = false; } } } ngOnDestroy() { if (this.tabChangesSubscription) { this.tabChangesSubscription.unsubscribe(); } if (this.resizeObserver) { this.unbindResizeObserver(); } super.ngOnDestroy(); } getTabHeaderActionId(tabId) { return `${tabId}_header_action`; } getTabContentId(tabId) { return `${tabId}_content`; } initTabs() { this.tabs = this.tabPanels.toArray(); let selectedTab = this.findSelectedTab(); if (!selectedTab && this.tabs.length) { if (this.activeIndex != null && this.tabs.length > this.activeIndex) this.tabs[this.activeIndex].selected = true; else this.tabs[0].selected = true; this.tabChanged = true; } this.cd.markForCheck(); } onTabKeyDown(event, tab) { switch (event.code) { case 'ArrowLeft': this.onTabArrowLeftKey(event); break; case 'ArrowRight': this.onTabArrowRightKey(event); break; case 'Home': this.onTabHomeKey(event); break; case 'End': this.onTabEndKey(event); break; case 'PageDown': this.onTabEndKey(event); break; case 'PageUp': this.onTabHomeKey(event); break; case 'Enter': case 'Space': this.open(event, tab); break; default: break; } } onTabArrowLeftKey(event) { const prevHeaderAction = this.findPrevHeaderAction(event.currentTarget); const index = getAttribute(prevHeaderAction, 'data-pc-index'); prevHeaderAction ? this.changeFocusedTab(event, prevHeaderAction, index) : this.onTabEndKey(event); event.preventDefault(); } onTabArrowRightKey(event) { const nextHeaderAction = this.findNextHeaderAction(event.currentTarget); const index = getAttribute(nextHeaderAction, 'data-pc-index'); nextHeaderAction ? this.changeFocusedTab(event, nextHeaderAction, index) : this.onTabHomeKey(event); event.preventDefault(); } onTabHomeKey(event) { const firstHeaderAction = this.findFirstHeaderAction(); const index = getAttribute(firstHeaderAction, 'data-pc-index'); this.changeFocusedTab(event, firstHeaderAction, index); event.preventDefault(); } onTabEndKey(event) { const lastHeaderAction = this.findLastHeaderAction(); const index = getAttribute(lastHeaderAction, 'data-pc-index'); this.changeFocusedTab(event, lastHeaderAction, index); event.preventDefault(); } changeFocusedTab(event, element, index) { if (element) { focus(element); element.scrollIntoView({ block: 'nearest' }); if (this.selectOnFocus) { const tab = this.tabs[index]; this.open(event, tab); } } } findNextHeaderAction(tabElement, selfCheck = false) { const headerElement = selfCheck ? tabElement : tabElement.nextElementSibling; return headerElement ? (getAttribute(headerElement, 'data-p-disabled') || getAttribute(headerElement, 'data-pc-section') === 'inkbar' ? this.findNextHeaderAction(headerElement) : headerElement) : null; } findPrevHeaderAction(tabElement, selfCheck = false) { const headerElement = selfCheck ? tabElement : tabElement.previousElementSibling; return headerElement ? (getAttribute(headerElement, 'data-p-disabled') || getAttribute(headerElement, 'data-pc-section') === 'inkbar' ? this.findPrevHeaderAction(headerElement) : headerElement) : null; } findFirstHeaderAction() { const firstEl = this.navbar.nativeElement.firstElementChild; return this.findNextHeaderAction(firstEl, true); } findLastHeaderAction() { const lastEl = this.navbar.nativeElement.lastElementChild; const lastHeaderAction = getAttribute(lastEl, 'data-pc-section') === 'inkbar' ? lastEl.previousElementSibling : lastEl; return this.findPrevHeaderAction(lastHeaderAction, true); } open(event, tab) { if (tab.disabled) { if (event) { event.preventDefault(); } return; } if (!tab.selected) { let selectedTab = this.findSelectedTab(); if (selectedTab) { selectedTab.selected = false; } this.tabChanged = true; tab.selected = true; let selectedTabIndex = this.findTabIndex(tab); this.preventActiveIndexPropagation = true; this.activeIndexChange.emit(selectedTabIndex); this.onChange.emit({ originalEvent: event, index: selectedTabIndex }); this.updateScrollBar(selectedTabIndex); } if (event) { event.preventDefault(); } } close(event, tab) { if (this.controlClose) { this.onClose.emit({ originalEvent: event, index: this.findTabIndex(tab), close: () => { this.closeTab(tab); } }); } else { this.closeTab(tab); this.onClose.emit({ originalEvent: event, index: this.findTabIndex(tab) }); } event.stopPropagation(); } closeTab(tab) { if (tab.disabled) { return; } if (tab.selected) { this.tabChanged = true; tab.selected = false; for (let i = 0; i < this.tabs.length; i++) { let tabPanel = this.tabs[i]; if (!tabPanel.closed && !tab.disabled) { tabPanel.selected = true; break; } } } tab.closed = true; } findSelectedTab() { for (let i = 0; i < this.tabs.length; i++) { if (this.tabs[i].selected) { return this.tabs[i]; } } return null; } findTabIndex(tab) { let index = -1; for (let i = 0; i < this.tabs.length; i++) { if (this.tabs[i] == tab) { index = i; break; } } return index; } getBlockableElement() { return this.el.nativeElement.children[0]; } updateInkBar() { if (isPlatformBrowser(this.platformId)) { if (this.navbar) { const tabHeader = findSingle(this.navbar.nativeElement, '[data-pc-section="headeraction"][data-p-active="true"]'); if (!tabHeader) { return; } this.inkbar.nativeElement.style.width = getOuterWidth(tabHeader) + 'px'; this.inkbar.nativeElement.style.left = getOffset(tabHeader).left - getOffset(this.navbar.nativeElement).left + 'px'; } } } updateScrollBar(index) { let tabHeader = find(this.navbar.nativeElement, '[data-pc-section="headeraction"]')[index]; if (tabHeader) { tabHeader.scrollIntoView({ block: 'nearest' }); } } updateButtonState() { const content = this.content.nativeElement; const { scrollLeft, scrollWidth } = content; const width = getWidth(content); this.backwardIsDisabled = scrollLeft === 0; this.forwardIsDisabled = Math.round(scrollLeft) === scrollWidth - width; } refreshButtonState() { this.container = findSingle(this.el.nativeElement, '[data-pc-section="navcontent"]'); this.list = findSingle(this.el.nativeElement, '[data-pc-section="nav"]'); if (this.list.offsetWidth >= this.container.offsetWidth) { if (this.list.offsetWidth >= this.container.offsetWidth) { this.buttonVisible = true; } else { this.buttonVisible = false; } this.updateButtonState(); this.cd.markForCheck(); } } onScroll(event) { this.scrollable && this.updateButtonState(); event.preventDefault(); } getVisibleButtonWidths() { return [this.prevBtn?.nativeElement, this.nextBtn?.nativeElement].reduce((acc, el) => (el ? acc + getWidth(el) : acc), 0); } navBackward() { const content = this.content.nativeElement; const width = getWidth(content) - this.getVisibleButtonWidths(); const pos = content.scrollLeft - width; content.scrollLeft = pos <= 0 ? 0 : pos; } navForward() { const content = this.content.nativeElement; const width = getWidth(content) - this.getVisibleButtonWidths(); const pos = content.scrollLeft + width; const lastPos = content.scrollWidth - width; content.scrollLeft = pos >= lastPos ? lastPos : pos; } static ɵfac = /*@__PURE__*/ (() => { let ɵTabView_BaseFactory; return function TabView_Factory(__ngFactoryType__) { return (ɵTabView_BaseFactory || (ɵTabView_BaseFactory = i0.ɵɵgetInheritedFactory(TabView)))(__ngFactoryType__ || TabView); }; })(); static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TabView, selectors: [["p-tabView"], ["p-tabview"]], contentQueries: function TabView_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) { i0.ɵɵcontentQuery(dirIndex, _c6, 5); i0.ɵɵcontentQuery(dirIndex, _c7, 5); i0.ɵɵcontentQuery(dirIndex, TabPanel, 4); i0.ɵɵcontentQuery(dirIndex, PrimeTemplate, 4); } if (rf & 2) { let _t; i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.previousIconTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.nextIconTemplate = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.tabPanels = _t); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.templates = _t); } }, viewQuery: function TabView_Query(rf, ctx) { if (rf & 1) { i0.ɵɵviewQuery(_c0, 5); i0.ɵɵviewQuery(_c8, 5); i0.ɵɵviewQuery(_c9, 5); i0.ɵɵviewQuery(_c10, 5); i0.ɵɵviewQuery(_c11, 5); i0.ɵɵviewQuery(_c12, 5); } if (rf & 2) { let _t; i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.content = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.navbar = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.prevBtn = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.nextBtn = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.inkbar = _t.first); i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.elementToObserve = _t.first); } }, hostVars: 11, hostBindings: function TabView_HostBindings(rf, ctx) { if (rf & 2) { i0.ɵɵattribute("data-pc-name", "tabview"); i0.ɵɵstyleMap(ctx.hostStyle); i0.ɵɵclassMap(ctx.hostClass); i0.ɵɵclassProp("p-tabs", true)("p-tabs-scrollable", ctx.scrollable)("p-component", true); } }, inputs: { style: "style", styleClass: "styleClass", controlClose: [2, "controlClose", "controlClose", booleanAttribute], scrollable: [2, "scrollable", "scrollable", booleanAttribute], activeIndex: "activeIndex", selectOnFocus: [2, "selectOnFocus", "selectOnFocus", booleanAttribute], nextButtonAriaLabel: "nextButtonAriaLabel", prevButtonAriaLabel: "prevButtonAriaLabel", autoHideButtons: [2, "autoHideButtons", "autoHideButtons", booleanAttribute], tabindex: [2, "tabindex", "tabindex", numberAttribute] }, outputs: { onChange: "onChange", onClose: "onClose", activeIndexChange: "activeIndexChange" }, features: [i0.ɵɵProvidersFeature([TabsStyle]), i0.ɵɵInputTransformsFeature, i0.ɵɵInheritDefinitionFeature], ngContentSelectors: _c5, decls: 12, vars: 7, consts: [["elementToObserve", ""], ["content", ""], ["navbar", ""], ["prevBtn", ""], ["inkbar", ""], ["nextBtn", ""], [1, "p-tablist"], ["class", "p-tablist-prev-button p-tablist-nav-button", "type", "button", "pRipple", "", 3, "click", 4, "ngIf"], [1, "p-tablist-content", 3, "scroll", "ngClass"], ["role", "tablist", 1, "p-tablist-tab-list"], ["class", "p-tablist-next-button p-tablist-nav-button", "type", "button", "pRipple", "", 3, "click", 4, "ngIf"], [1, "p-tabpanels"], ["type", "button", "pRipple", "", 1, "p-tablist-prev-button", "p-tablist-nav-button", 3, "click"], [4, "ngIf"], [4, "ngTemplateOutlet"], ["pRipple", "", 3, "click", "keydown", "ngClass", "ngStyle", "pTooltip", "tooltipPosition", "positionStyle", "tooltipStyleClass", "disabled"], ["role", "presentation", 1, "p-tablist-active-bar"], [1, "p-tabview-left-icon", 3, "ngClass"], [1, "p-tabview-right-icon", 3, "ngClass"], [3, "click"], ["type", "button", "pRipple", "", 1, "p-tablist-next-button", "p-tablist-nav-button", 3, "click"]], template: function TabView_Template(rf, ctx) { if (rf & 1) { const _r1 = i0.ɵɵgetCurrentView(); i0.ɵɵprojectionDef(); i0.ɵɵelementStart(0, "div", 6, 0); i0.ɵɵtemplate(2, TabView_button_2_Template, 4, 4, "button", 7); i0.ɵɵelementStart(3, "div", 8, 1); i0.ɵɵlistener("scroll", function TabView_Template_div_scroll_3_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onScroll($event)); }); i0.ɵɵelementStart(5, "div", 9, 2); i0.ɵɵrepeaterCreate(7, TabView_For_8_Template, 1, 1, null, null, i0.ɵɵrepeaterTrackByIdentity); i0.ɵɵelementEnd()(); i0.ɵɵtemplate(9, TabView_button_9_Template, 4, 3, "button", 10); i0.ɵɵelementEnd(); i0.ɵɵelementStart(10, "div", 11); i0.ɵɵprojection(11); i0.ɵɵelementEnd(); } if (rf & 2) { i0.ɵɵadvance(2); i0.ɵɵproperty("ngIf", ctx.scrollable && !ctx.backwardIsDisabled && ctx.autoHideButtons); i0.ɵɵadvance(); i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(5, _c13, ctx.scrollable)); i0.ɵɵattribute("data-pc-section", "navcontent"); i0.ɵɵadvance(2); i0.ɵɵattribute("data-pc-section", "nav"); i0.ɵɵadvance(2); i0.ɵɵrepeater(ctx.tabs); i0.ɵɵadvance(2); i0.ɵɵproperty("ngIf", ctx.scrollable && !ctx.forwardIsDisabled && ctx.buttonVisible); } }, dependencies: [CommonModule, i1.NgClass, i1.NgIf, i1.NgTemplateOutlet, i1.NgStyle, SharedModule, TooltipModule, i2.Tooltip, Ripple, TimesIcon, ChevronLeftIcon, ChevronRightIcon], encapsulation: 2, changeDetection: 0 }); } (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TabView, [{ type: Component, args: [{ selector: 'p-tabView, p-tabview', standalone: true, imports: [CommonModule, SharedModule, TooltipModule, Ripple, TimesIcon, ChevronLeftIcon, ChevronRightIcon], template: ` <div #elementToObserve class="p-tablist"> <button *ngIf="scrollable && !backwardIsDisabled && autoHideButtons" #prevBtn class="p-tablist-prev-button p-tablist-nav-button" (click)="navBackward()" [attr.tabindex]="tabindex" [attr.aria-label]="prevButtonAriaLabel" type="button" pRipple > <ChevronLeftIcon *ngIf="!previousIconTemplate && !_previousIconTemplate" [attr.aria-hidden]="true" /> <ng-template *ngTemplateOutlet="previousIconTemplate && _previousIconTemplate"></ng-template> </button> <div #content class="p-tablist-content" [ngClass]="{ 'p-tablist-viewport': scrollable }" (scroll)="onScroll($event)" [attr.data-pc-section]="'navcontent'"> <div #navbar class="p-tablist-tab-list" role="tablist" [attr.data-pc-section]="'nav'"> @for (tab of tabs; track tab; let i = $index) { @if (!tab.closed) { <button [ngClass]="{ 'p-tab': true, 'p-tab-active': tab.selected, 'p-disabled': tab.disabled }"