@coreui/angular
Advanced tools
Comparing version 5.3.3 to 5.3.4
@@ -7,4 +7,3 @@ import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; | ||
export declare class BreadcrumbRouterComponent implements OnChanges, OnDestroy, OnInit { | ||
service: BreadcrumbRouterService; | ||
constructor(service: BreadcrumbRouterService); | ||
readonly service: BreadcrumbRouterService; | ||
/** | ||
@@ -11,0 +10,0 @@ * Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior. [docs] |
@@ -1,2 +0,1 @@ | ||
import { ActivatedRoute, Router } from '@angular/router'; | ||
import { Observable } from 'rxjs'; | ||
@@ -7,9 +6,7 @@ import { IBreadcrumbItem } from '../breadcrumb-item/breadcrumb-item'; | ||
#private; | ||
private router; | ||
private route; | ||
outlet: string; | ||
readonly breadcrumbs$: Observable<IBreadcrumbItem[]>; | ||
constructor(router: Router, route: ActivatedRoute); | ||
constructor(); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbRouterService, never>; | ||
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbRouterService>; | ||
} |
@@ -1,9 +0,5 @@ | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core'; | ||
import { CarouselState } from '../carousel-state'; | ||
import { AfterViewInit, ElementRef } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class CarouselControlComponent implements AfterViewInit { | ||
private changeDetectorRef; | ||
private carouselState; | ||
constructor(changeDetectorRef: ChangeDetectorRef, carouselState: CarouselState); | ||
private _caption?; | ||
#private; | ||
/** | ||
@@ -10,0 +6,0 @@ * Carousel control caption. [docs] |
import { OnDestroy, OnInit } from '@angular/core'; | ||
import { CarouselState } from '../carousel-state'; | ||
import { CarouselService } from '../carousel.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class CarouselIndicatorsComponent implements OnInit, OnDestroy { | ||
private carouselService; | ||
private carouselState; | ||
constructor(carouselService: CarouselService, carouselState: CarouselState); | ||
#private; | ||
items: (number | undefined)[]; | ||
active: number; | ||
private carouselIndexSubscription?; | ||
ngOnInit(): void; | ||
@@ -13,0 +8,0 @@ ngOnDestroy(): void; |
import { AfterContentChecked, AfterContentInit } from '@angular/core'; | ||
import { CarouselState } from '../carousel-state'; | ||
import * as i0 from "@angular/core"; | ||
export declare class CarouselInnerComponent implements AfterContentInit, AfterContentChecked { | ||
private carouselState; | ||
constructor(carouselState: CarouselState); | ||
#private; | ||
carouselInnerClass: boolean; | ||
@@ -15,3 +13,2 @@ activeIndex?: number; | ||
private contentItems; | ||
private prevContentItems; | ||
ngAfterContentInit(): void; | ||
@@ -18,0 +15,0 @@ ngAfterContentChecked(): void; |
@@ -1,9 +0,6 @@ | ||
import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core'; | ||
import { CarouselService } from '../carousel.service'; | ||
import { AfterViewInit, OnDestroy } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class CarouselItemComponent implements OnDestroy, AfterViewInit { | ||
private carouselService; | ||
private changeDetectorRef; | ||
#private; | ||
index?: number; | ||
private carouselIndexSubscription?; | ||
/** | ||
@@ -14,3 +11,2 @@ * @ignore | ||
get active(): boolean; | ||
private _active; | ||
/** | ||
@@ -23,3 +19,2 @@ * Time delay before cycling to next item. If -1, uses carousel interval value. | ||
get hostClasses(): any; | ||
constructor(carouselService: CarouselService, changeDetectorRef: ChangeDetectorRef); | ||
ngOnDestroy(): void; | ||
@@ -26,0 +21,0 @@ ngAfterViewInit(): void; |
import { ICarouselState } from './carousel-state.type'; | ||
import { CarouselService } from './carousel.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class CarouselState { | ||
private carouselService; | ||
#private; | ||
private _state; | ||
constructor(carouselService: CarouselService); | ||
get state(): ICarouselState; | ||
@@ -9,0 +7,0 @@ set state(state: ICarouselState); |
import { AfterViewInit } from '@angular/core'; | ||
import { DropdownService } from '../dropdown.service'; | ||
import { DropdownComponent } from '../dropdown/dropdown.component'; | ||
import * as i0 from "@angular/core"; | ||
export declare class DropdownCloseDirective implements AfterViewInit { | ||
private dropdownService; | ||
dropdown?: DropdownComponent | undefined; | ||
constructor(dropdownService: DropdownService, dropdown?: DropdownComponent | undefined); | ||
#private; | ||
dropdown?: DropdownComponent | null | undefined; | ||
/** | ||
@@ -24,4 +22,4 @@ * Disables a dropdown-close directive. | ||
private onKeyUp; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownCloseDirective, [null, { optional: true; }]>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownCloseDirective, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownCloseDirective, "[cDropdownClose]", ["cDropdownClose"], { "disabled": { "alias": "disabled"; "required": false; }; "dropdownComponent": { "alias": "dropdownComponent"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, true, never>; | ||
} |
import { FocusableOption, FocusOrigin } from '@angular/cdk/a11y'; | ||
import { DropdownService } from '../dropdown.service'; | ||
import { DropdownComponent } from '../dropdown/dropdown.component'; | ||
@@ -7,4 +6,3 @@ import * as i0 from "@angular/core"; | ||
#private; | ||
private dropdownService; | ||
dropdown?: DropdownComponent | undefined; | ||
dropdown?: DropdownComponent | null | undefined; | ||
/** | ||
@@ -28,3 +26,2 @@ * Set active state to a dropdown-item. | ||
disabled?: boolean; | ||
constructor(dropdownService: DropdownService, dropdown?: DropdownComponent | undefined); | ||
focus(origin?: FocusOrigin | undefined): void; | ||
@@ -40,4 +37,4 @@ getLabel?(): string; | ||
private onKeyUp; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemDirective, [null, { optional: true; }]>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemDirective, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownItemDirective, "[cDropdownItem]", ["cDropdownItem"], { "active": { "alias": "active"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, true, never>; | ||
} |
@@ -1,6 +0,4 @@ | ||
import { ElementRef, Renderer2 } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class FormCheckInputDirective { | ||
private renderer; | ||
private hostElement; | ||
#private; | ||
/** | ||
@@ -29,3 +27,2 @@ * Specifies the type of component. | ||
get checked(): boolean; | ||
constructor(renderer: Renderer2, hostElement: ElementRef); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckInputDirective, never>; | ||
@@ -32,0 +29,0 @@ static ɵdir: i0.ɵɵDirectiveDeclaration<FormCheckInputDirective, "input[cFormCheckInput]", never, { "type": { "alias": "type"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, never, true, never>; |
@@ -1,7 +0,6 @@ | ||
import { ElementRef, OnInit } from '@angular/core'; | ||
import { OnInit } from '@angular/core'; | ||
import { InputType } from '../../coreui.types'; | ||
import * as i0 from "@angular/core"; | ||
export declare class FormControlDirective implements OnInit { | ||
private hostElement; | ||
constructor(hostElement: ElementRef); | ||
#private; | ||
/** | ||
@@ -8,0 +7,0 @@ * Size the component small or large. |
@@ -1,6 +0,5 @@ | ||
import { AfterContentInit, ElementRef, Renderer2 } from '@angular/core'; | ||
import { AfterContentInit } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class HeaderTogglerDirective implements AfterContentInit { | ||
private renderer; | ||
private hostElement; | ||
#private; | ||
headerToggler: boolean; | ||
@@ -19,4 +18,2 @@ /** | ||
ariaLabel: string; | ||
private hasContent; | ||
constructor(renderer: Renderer2, hostElement: ElementRef); | ||
addDefaultIcon(): void; | ||
@@ -23,0 +20,0 @@ ngAfterContentInit(): void; |
@@ -1,5 +0,4 @@ | ||
import { ModalService } from '../modal.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ModalToggleDirective { | ||
private modalService; | ||
#private; | ||
/** | ||
@@ -9,3 +8,2 @@ * Html id attr of modal to dismiss. | ||
id: string | undefined; | ||
constructor(modalService: ModalService); | ||
dismiss($event: any): void; | ||
@@ -12,0 +10,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<ModalToggleDirective, never>; |
import { AnimationEvent } from '@angular/animations'; | ||
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core'; | ||
import { ModalService } from '../modal.service'; | ||
import { BackdropService } from '../../backdrop/backdrop.service'; | ||
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit { | ||
#private; | ||
private document; | ||
private renderer; | ||
private hostElement; | ||
private modalService; | ||
private backdropService; | ||
constructor(document: Document, renderer: Renderer2, hostElement: ElementRef, modalService: ModalService, backdropService: BackdropService); | ||
/** | ||
@@ -15,0 +7,0 @@ * Align the modal in the center or top of the screen. |
@@ -1,5 +0,4 @@ | ||
import { OffcanvasService } from '../offcanvas.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class OffcanvasToggleDirective { | ||
private offcanvasService; | ||
#private; | ||
/** | ||
@@ -10,3 +9,2 @@ * Html id attr of offcanvas to toggle. | ||
id?: string; | ||
constructor(offcanvasService: OffcanvasService); | ||
toggleOpen($event: any): void; | ||
@@ -13,0 +11,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<OffcanvasToggleDirective, never>; |
import { AnimationEvent } from '@angular/animations'; | ||
import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core'; | ||
import { BreakpointObserver } from '@angular/cdk/layout'; | ||
import { BackdropService } from '../../backdrop/backdrop.service'; | ||
import { OffcanvasService } from '../offcanvas.service'; | ||
import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
@@ -10,10 +7,2 @@ import * as i1 from "../../shared/theme.directive"; | ||
#private; | ||
private document; | ||
private platformId; | ||
private renderer; | ||
private hostElement; | ||
private offcanvasService; | ||
private backdropService; | ||
private breakpointObserver; | ||
constructor(document: Document, platformId: any, renderer: Renderer2, hostElement: ElementRef, offcanvasService: OffcanvasService, backdropService: BackdropService, breakpointObserver: BreakpointObserver); | ||
/** | ||
@@ -20,0 +9,0 @@ * Apply a backdrop on body while offcanvas is open. |
@@ -1,5 +0,5 @@ | ||
import { AfterContentInit, ElementRef, OnChanges, Renderer2, SimpleChanges } from '@angular/core'; | ||
import { AfterContentInit, ElementRef, OnChanges, SimpleChanges } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class PageItemDirective implements AfterContentInit, OnChanges { | ||
private renderer; | ||
#private; | ||
/** | ||
@@ -18,3 +18,2 @@ * Toggle the active state for the component. | ||
pageLinkElementRef: ElementRef; | ||
constructor(renderer: Renderer2); | ||
ngAfterContentInit(): void; | ||
@@ -21,0 +20,0 @@ ngOnChanges(changes: SimpleChanges): void; |
@@ -1,5 +0,4 @@ | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core'; | ||
import { AfterViewInit, ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core'; | ||
import { Options } from '@popperjs/core'; | ||
import { Triggers } from '../coreui.types'; | ||
import { IntersectionService, ListenersService } from '../services'; | ||
import { ElementRefDirective } from '../shared'; | ||
@@ -9,8 +8,2 @@ import * as i0 from "@angular/core"; | ||
#private; | ||
private renderer; | ||
private hostElement; | ||
private viewContainerRef; | ||
private listenersService; | ||
private changeDetectorRef; | ||
private intersectionService; | ||
/** | ||
@@ -21,3 +14,3 @@ * Content of popover | ||
readonly content: import("@angular/core").InputSignal<string | TemplateRef<any> | undefined>; | ||
contentEffect: import("@angular/core").EffectRef; | ||
readonly contentEffect: import("@angular/core").EffectRef; | ||
/** | ||
@@ -28,4 +21,4 @@ * Optional popper Options object, takes precedence over cPopoverPlacement prop | ||
readonly popperOptions: import("@angular/core").InputSignal<Partial<Options>>; | ||
popperOptionsEffect: import("@angular/core").EffectRef; | ||
popperOptionsComputed: import("@angular/core").Signal<{ | ||
readonly popperOptionsEffect: import("@angular/core").EffectRef; | ||
readonly popperOptionsComputed: import("@angular/core").Signal<{ | ||
placement: import("@popperjs/core").Placement; | ||
@@ -59,3 +52,3 @@ modifiers?: Partial<import("@popperjs/core").Modifier<any, any>>[] | undefined; | ||
readonly visible: import("@angular/core").ModelSignal<boolean>; | ||
visibleEffect: import("@angular/core").EffectRef; | ||
readonly visibleEffect: import("@angular/core").EffectRef; | ||
get ariaDescribedBy(): string | null; | ||
@@ -67,3 +60,2 @@ private tooltip; | ||
private _popperOptions; | ||
constructor(renderer: Renderer2, hostElement: ElementRef, viewContainerRef: ViewContainerRef, listenersService: ListenersService, changeDetectorRef: ChangeDetectorRef, intersectionService: IntersectionService); | ||
ngAfterViewInit(): void; | ||
@@ -70,0 +62,0 @@ ngOnDestroy(): void; |
@@ -1,8 +0,5 @@ | ||
import { RendererFactory2 } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ClassToggleService { | ||
private document; | ||
private rendererFactory; | ||
private renderer; | ||
constructor(document: Document, rendererFactory: RendererFactory2); | ||
#private; | ||
constructor(); | ||
toggle(selector: any, className: string): void; | ||
@@ -9,0 +6,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<ClassToggleService, never>; |
import { Renderer2 } from '@angular/core'; | ||
import { SidebarService } from '../sidebar.service'; | ||
import { SidebarComponent } from '../sidebar/sidebar.component'; | ||
import * as i0 from "@angular/core"; | ||
export declare class SidebarBackdropService { | ||
private document; | ||
private sidebarService; | ||
private backdrop; | ||
#private; | ||
renderer: Renderer2; | ||
private clickListener; | ||
constructor(document: Document, sidebarService: SidebarService); | ||
setBackdrop(sidebar: SidebarComponent): void; | ||
@@ -13,0 +8,0 @@ clearBackdrop(): void; |
@@ -5,4 +5,3 @@ import { PipeTransform } from '@angular/core'; | ||
export declare class SidebarNavItemClassPipe implements PipeTransform { | ||
helper: SidebarNavHelper; | ||
constructor(helper: SidebarNavHelper); | ||
readonly helper: SidebarNavHelper; | ||
transform(item: any, args?: any[]): any; | ||
@@ -9,0 +8,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavItemClassPipe, never>; |
@@ -5,4 +5,3 @@ import { OnInit } from '@angular/core'; | ||
export declare class SidebarNavLabelComponent implements OnInit { | ||
helper: SidebarNavHelper; | ||
constructor(helper: SidebarNavHelper); | ||
readonly helper: SidebarNavHelper; | ||
item: any; | ||
@@ -9,0 +8,0 @@ private classes; |
@@ -7,5 +7,4 @@ import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; | ||
export declare class SidebarNavLinkContentComponent { | ||
helper: SidebarNavHelper; | ||
readonly helper: SidebarNavHelper; | ||
item?: INavData; | ||
constructor(helper: SidebarNavHelper); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavLinkContentComponent, never>; | ||
@@ -15,3 +14,3 @@ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarNavLinkContentComponent, "c-sidebar-nav-link-content", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>; | ||
export declare class SidebarNavLinkComponent implements OnInit, OnDestroy { | ||
router: Router; | ||
readonly router: Router; | ||
protected _item: INavData; | ||
@@ -27,3 +26,3 @@ set item(item: INavData); | ||
private navSubscription; | ||
constructor(router: Router); | ||
constructor(); | ||
ngOnInit(): void; | ||
@@ -30,0 +29,0 @@ ngOnDestroy(): void; |
@@ -1,8 +0,6 @@ | ||
import { ElementRef, OnInit, Renderer2 } from '@angular/core'; | ||
import { OnInit } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class SidebarNavTitleComponent implements OnInit { | ||
private el; | ||
private renderer; | ||
#private; | ||
item: any; | ||
constructor(el: ElementRef, renderer: Renderer2); | ||
ngOnInit(): void; | ||
@@ -9,0 +7,0 @@ private addAttribs; |
import { AnimationEvent } from '@angular/animations'; | ||
import { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core'; | ||
import { ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; | ||
import { NavigationEnd, Router } from '@angular/router'; | ||
import { Observable, Subscription } from 'rxjs'; | ||
import { SidebarService } from '../sidebar.service'; | ||
import { SidebarComponent } from '../sidebar/sidebar.component'; | ||
import { INavData } from './sidebar-nav'; | ||
import { SidebarNavHelper } from './sidebar-nav.service'; | ||
import { SidebarNavGroupService } from './sidebar-nav-group.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class SidebarNavGroupComponent implements OnInit, OnDestroy { | ||
private router; | ||
private renderer; | ||
private hostElement; | ||
helper: SidebarNavHelper; | ||
private sidebarNavGroupService; | ||
constructor(router: Router, renderer: Renderer2, hostElement: ElementRef, helper: SidebarNavHelper, sidebarNavGroupService: SidebarNavGroupService); | ||
#private; | ||
readonly helper: SidebarNavHelper; | ||
constructor(); | ||
item: any; | ||
@@ -42,9 +37,6 @@ dropdownMode: 'path' | 'none' | 'close'; | ||
export declare class SidebarNavComponent implements OnChanges { | ||
sidebar: SidebarComponent; | ||
helper: SidebarNavHelper; | ||
router: Router; | ||
private renderer; | ||
private hostElement; | ||
private sidebarService; | ||
constructor(sidebar: SidebarComponent, helper: SidebarNavHelper, router: Router, renderer: Renderer2, hostElement: ElementRef, sidebarService: SidebarService); | ||
#private; | ||
readonly sidebar: SidebarComponent | null; | ||
readonly helper: SidebarNavHelper; | ||
readonly router: Router; | ||
navItems?: INavData[]; | ||
@@ -59,3 +51,3 @@ dropdownMode: 'path' | 'none' | 'close'; | ||
hideMobile(): void; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavComponent, [{ optional: true; }, null, null, null, null, null]>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarNavComponent, "c-sidebar-nav", never, { "navItems": { "alias": "navItems"; "required": false; }; "dropdownMode": { "alias": "dropdownMode"; "required": false; }; "groupItems": { "alias": "groupItems"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, ["*"], true, never>; | ||
@@ -62,0 +54,0 @@ static ngAcceptInputType_groupItems: unknown; |
@@ -1,2 +0,1 @@ | ||
import { SidebarService } from '../sidebar.service'; | ||
import * as i0 from "@angular/core"; | ||
@@ -7,3 +6,3 @@ /** | ||
export declare class SidebarToggleDirective { | ||
private sidebarService; | ||
#private; | ||
/** | ||
@@ -22,3 +21,2 @@ * Id of sidebar for toggle action. [docs] | ||
toggle: 'visible' | 'unfoldable'; | ||
constructor(sidebarService: SidebarService); | ||
toggleOpen($event: any): void; | ||
@@ -25,0 +23,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarToggleDirective, never>; |
@@ -1,13 +0,6 @@ | ||
import { EventEmitter, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core'; | ||
import { BreakpointObserver } from '@angular/cdk/layout'; | ||
import { ISidebarAction, SidebarService } from '../sidebar.service'; | ||
import { SidebarBackdropService } from '../sidebar-backdrop/sidebar-backdrop.service'; | ||
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; | ||
import { ISidebarAction } from '../sidebar.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit { | ||
#private; | ||
private document; | ||
private renderer; | ||
private breakpointObserver; | ||
private sidebarService; | ||
private backdropService; | ||
state: ISidebarAction; | ||
@@ -73,3 +66,3 @@ /** | ||
get getMobileBreakpoint(): string; | ||
constructor(document: Document, renderer: Renderer2, breakpointObserver: BreakpointObserver, sidebarService: SidebarService, backdropService: SidebarBackdropService); | ||
constructor(); | ||
get getClasses(): any; | ||
@@ -76,0 +69,0 @@ ngOnInit(): void; |
@@ -1,2 +0,2 @@ | ||
import { ElementRef, OnInit, Renderer2 } from '@angular/core'; | ||
import { OnInit } from '@angular/core'; | ||
import { Breakpoints, Colors } from '../coreui.types'; | ||
@@ -6,5 +6,3 @@ import { ITable } from './table.type'; | ||
export declare class TableDirective implements ITable, OnInit { | ||
private renderer; | ||
private hostElement; | ||
constructor(renderer: Renderer2, hostElement: ElementRef); | ||
#private; | ||
/** | ||
@@ -11,0 +9,0 @@ * Set the vertical alignment. |
@@ -1,9 +0,6 @@ | ||
import { ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; | ||
import { TabService } from './tab.service'; | ||
import { OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class TabContentRefDirective implements OnChanges, OnDestroy { | ||
private changeDetectorRef; | ||
private tabService; | ||
constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService); | ||
private tabServiceSubscription; | ||
#private; | ||
constructor(); | ||
/** | ||
@@ -21,3 +18,2 @@ * Template Ref | ||
get active(): boolean; | ||
private _active; | ||
/** | ||
@@ -29,3 +25,2 @@ * Set disabled state of tab content | ||
get disabled(): boolean; | ||
private _disabled; | ||
/** | ||
@@ -32,0 +27,0 @@ * c-tab-pane index respectively |
@@ -1,8 +0,6 @@ | ||
import { AfterContentChecked, AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core'; | ||
import { AfterContentChecked, AfterContentInit, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core'; | ||
import { TabPaneComponent } from '../tab-pane/tab-pane.component'; | ||
import { TabService } from '../tab.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class TabContentComponent implements AfterContentChecked, AfterContentInit, OnChanges, OnDestroy { | ||
private changeDetectorRef; | ||
private tabService; | ||
#private; | ||
/** | ||
@@ -14,3 +12,2 @@ * Set active tabPane index | ||
get activeTabPaneIdx(): number; | ||
private _activeTabPaneIdx; | ||
/** | ||
@@ -21,4 +18,2 @@ * Event emitted on the active tab pane index change. | ||
panes: QueryList<TabPaneComponent>; | ||
private tabServiceSubscription; | ||
constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService); | ||
ngAfterContentInit(): void; | ||
@@ -25,0 +20,0 @@ ngAfterContentChecked(): void; |
@@ -1,15 +0,11 @@ | ||
import { ChangeDetectorRef, OnDestroy } from '@angular/core'; | ||
import { OnDestroy } from '@angular/core'; | ||
import { TabContentComponent } from '../tab-content/tab-content.component'; | ||
import { TabService } from '../tab.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class TabPaneComponent implements OnDestroy { | ||
private changeDetectorRef; | ||
private tabService; | ||
constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService); | ||
#private; | ||
constructor(); | ||
tabPaneIdx: number; | ||
tabContent: TabContentComponent; | ||
private tabServiceSubscription; | ||
set active(value: boolean); | ||
get active(): boolean; | ||
private _active; | ||
get hostClasses(): { | ||
@@ -16,0 +12,0 @@ 'tab-pane': boolean; |
import { ToastComponent } from '../toast/toast.component'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ToastBodyComponent { | ||
toast?: ToastComponent | undefined; | ||
toast?: ToastComponent | null | undefined; | ||
toastBodyClass: boolean; | ||
constructor(toast?: ToastComponent | undefined); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ToastBodyComponent, [{ optional: true; }]>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ToastBodyComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<ToastBodyComponent, "c-toast-body", ["cToastBody"], {}, {}, never, ["*"], true, never>; | ||
} |
@@ -1,7 +0,5 @@ | ||
import { ToasterService } from './toaster/toaster.service'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ToastCloseDirective { | ||
private toasterService; | ||
#private; | ||
toast: any; | ||
constructor(toasterService: ToasterService); | ||
toggleOpen($event: any): void; | ||
@@ -8,0 +6,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<ToastCloseDirective, never>; |
import { ToastComponent } from '../toast/toast.component'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ToastHeaderComponent { | ||
toast?: ToastComponent | undefined; | ||
toast?: ToastComponent | null | undefined; | ||
/** | ||
@@ -11,5 +11,4 @@ * Add close button to a toast header | ||
toastHeaderClass: boolean; | ||
constructor(toast?: ToastComponent | undefined); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ToastHeaderComponent, [{ optional: true; }]>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ToastHeaderComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<ToastHeaderComponent, "c-toast-header", ["cToastHeader"], { "closeButton": { "alias": "closeButton"; "required": false; }; }, {}, never, ["*"], true, never>; | ||
} |
@@ -6,7 +6,7 @@ import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core'; | ||
export declare class ToastComponent implements OnInit, OnDestroy { | ||
hostElement: ElementRef; | ||
renderer: Renderer2; | ||
toasterService: ToasterService; | ||
changeDetectorRef: ChangeDetectorRef; | ||
constructor(hostElement: ElementRef, renderer: Renderer2, toasterService: ToasterService, changeDetectorRef: ChangeDetectorRef); | ||
#private; | ||
readonly hostElement: ElementRef<any>; | ||
readonly renderer: Renderer2; | ||
readonly toasterService: ToasterService; | ||
readonly changeDetectorRef: ChangeDetectorRef; | ||
readonly dynamic: import("@angular/core").InputSignal<boolean | undefined>; | ||
@@ -40,3 +40,2 @@ readonly placement: import("@angular/core").InputSignal<string | undefined>; | ||
get visible(): boolean; | ||
private _visible; | ||
/** | ||
@@ -43,0 +42,0 @@ * @ignore |
import { ViewContainerRef } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class ToasterHostDirective { | ||
viewContainerRef: ViewContainerRef; | ||
constructor(viewContainerRef: ViewContainerRef); | ||
readonly viewContainerRef: ViewContainerRef; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterHostDirective, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<ToasterHostDirective, "[cToasterHost]", ["cToasterHost"], {}, {}, never, never, true, never>; | ||
} |
@@ -1,3 +0,3 @@ | ||
import { AfterContentChecked, ComponentRef, ElementRef, Injector, NgModuleRef, OnInit, QueryList, Renderer2, ViewContainerRef } from '@angular/core'; | ||
import { IToasterAction, ToasterService } from './toaster.service'; | ||
import { AfterContentChecked, ComponentRef, Injector, NgModuleRef, OnInit, QueryList, ViewContainerRef } from '@angular/core'; | ||
import { IToasterAction } from './toaster.service'; | ||
import { ToasterHostDirective } from './toaster-host.directive'; | ||
@@ -20,6 +20,2 @@ import * as i0 from "@angular/core"; | ||
#private; | ||
private hostElement; | ||
private renderer; | ||
private toasterService; | ||
constructor(hostElement: ElementRef, renderer: Renderer2, toasterService: ToasterService); | ||
placements: ToasterPlacement[]; | ||
@@ -26,0 +22,0 @@ toasts: QueryList<ViewContainerRef>; |
@@ -1,5 +0,4 @@ | ||
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core'; | ||
import { AfterViewInit, ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core'; | ||
import { Options } from '@popperjs/core'; | ||
import { Triggers } from '../coreui.types'; | ||
import { IntersectionService, ListenersService } from '../services'; | ||
import { ElementRefDirective } from '../shared'; | ||
@@ -9,8 +8,2 @@ import * as i0 from "@angular/core"; | ||
#private; | ||
private renderer; | ||
private hostElement; | ||
private viewContainerRef; | ||
private listenersService; | ||
private changeDetectorRef; | ||
private intersectionService; | ||
/** | ||
@@ -21,3 +14,3 @@ * Content of tooltip | ||
readonly content: import("@angular/core").InputSignal<string | TemplateRef<any> | undefined>; | ||
contentEffect: import("@angular/core").EffectRef; | ||
readonly contentEffect: import("@angular/core").EffectRef; | ||
/** | ||
@@ -28,4 +21,4 @@ * Optional popper Options object, takes precedence over cPopoverPlacement prop | ||
readonly popperOptions: import("@angular/core").InputSignal<Partial<Options>>; | ||
popperOptionsEffect: import("@angular/core").EffectRef; | ||
popperOptionsComputed: import("@angular/core").Signal<{ | ||
readonly popperOptionsEffect: import("@angular/core").EffectRef; | ||
readonly popperOptionsComputed: import("@angular/core").Signal<{ | ||
placement: import("@popperjs/core").Placement; | ||
@@ -59,3 +52,3 @@ modifiers?: Partial<import("@popperjs/core").Modifier<any, any>>[] | undefined; | ||
readonly visible: import("@angular/core").ModelSignal<boolean>; | ||
visibleEffect: import("@angular/core").EffectRef; | ||
readonly visibleEffect: import("@angular/core").EffectRef; | ||
get ariaDescribedBy(): string | null; | ||
@@ -67,3 +60,2 @@ private tooltip; | ||
private _popperOptions; | ||
constructor(renderer: Renderer2, hostElement: ElementRef, viewContainerRef: ViewContainerRef, listenersService: ListenersService, changeDetectorRef: ChangeDetectorRef, intersectionService: IntersectionService); | ||
ngAfterViewInit(): void; | ||
@@ -70,0 +62,0 @@ ngOnDestroy(): void; |
{ | ||
"name": "@coreui/angular", | ||
"version": "5.3.3", | ||
"version": "5.3.4", | ||
"description": "CoreUI Components Library for Angular", | ||
@@ -32,3 +32,3 @@ "copyright": "Copyright 2024 creativeLabs Łukasz Holeczek", | ||
"@coreui/coreui": "^5.2.0", | ||
"@coreui/icons-angular": "~5.3.3", | ||
"@coreui/icons-angular": "~5.3.4", | ||
"rxjs": "^7.8.1" | ||
@@ -35,0 +35,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1444776
15264