@coreui/angular-pro 5.3.3 → 5.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/fesm2022/coreui-angular-pro.mjs +1371 -1340
  2. package/fesm2022/coreui-angular-pro.mjs.map +1 -1
  3. package/lib/breadcrumb/breadcrumb-router/breadcrumb-router.component.d.ts +1 -2
  4. package/lib/breadcrumb/breadcrumb-router/breadcrumb-router.service.d.ts +1 -4
  5. package/lib/carousel/carousel-control/carousel-control.component.d.ts +2 -6
  6. package/lib/carousel/carousel-indicators/carousel-indicators.component.d.ts +1 -6
  7. package/lib/carousel/carousel-inner/carousel-inner.component.d.ts +1 -4
  8. package/lib/carousel/carousel-item/carousel-item.component.d.ts +2 -7
  9. package/lib/carousel/carousel-state.d.ts +1 -3
  10. package/lib/dropdown/dropdown-close/dropdown-close.directive.d.ts +3 -5
  11. package/lib/dropdown/dropdown-item/dropdown-item.directive.d.ts +2 -5
  12. package/lib/form/form-check/form-check-input.directive.d.ts +1 -4
  13. package/lib/form/form-control/form-control.directive.d.ts +2 -3
  14. package/lib/header/header-toggler/header-toggler.directive.d.ts +2 -5
  15. package/lib/modal/modal/modal.component.d.ts +1 -9
  16. package/lib/modal/modal-dismiss/modal-toggle.directive.d.ts +1 -3
  17. package/lib/offcanvas/offcanvas/offcanvas.component.d.ts +1 -12
  18. package/lib/offcanvas/offcanvas-toggle/offcanvas-toggle.directive.d.ts +1 -3
  19. package/lib/pagination/page-item/page-item.directive.d.ts +2 -3
  20. package/lib/popover/popover.directive.d.ts +5 -13
  21. package/lib/services/class-toggle.service.d.ts +2 -5
  22. package/lib/sidebar/sidebar/sidebar.component.d.ts +3 -10
  23. package/lib/sidebar/sidebar-backdrop/sidebar-backdrop.service.d.ts +1 -6
  24. package/lib/sidebar/sidebar-nav/sidebar-nav-item-class.pipe.d.ts +1 -2
  25. package/lib/sidebar/sidebar-nav/sidebar-nav-label.component.d.ts +1 -2
  26. package/lib/sidebar/sidebar-nav/sidebar-nav-link.component.d.ts +3 -4
  27. package/lib/sidebar/sidebar-nav/sidebar-nav-title.component.d.ts +2 -4
  28. package/lib/sidebar/sidebar-nav/sidebar-nav.component.d.ts +9 -17
  29. package/lib/sidebar/sidebar-toggle/sidebar-toggle.directive.d.ts +1 -3
  30. package/lib/table/table.directive.d.ts +2 -4
  31. package/lib/tabs/tab-content/tab-content.component.d.ts +2 -7
  32. package/lib/tabs/tab-content-ref.directive.d.ts +3 -8
  33. package/lib/tabs/tab-pane/tab-pane.component.d.ts +3 -7
  34. package/lib/toast/toast/toast.component.d.ts +5 -6
  35. package/lib/toast/toast-body/toast-body.component.d.ts +2 -3
  36. package/lib/toast/toast-close.directive.d.ts +1 -3
  37. package/lib/toast/toast-header/toast-header.component.d.ts +2 -3
  38. package/lib/toast/toaster/toaster-host.directive.d.ts +1 -2
  39. package/lib/toast/toaster/toaster.component.d.ts +2 -6
  40. package/lib/tooltip/tooltip.directive.d.ts +5 -13
  41. package/package.json +2 -2
@@ -4,8 +4,7 @@ import { IBreadcrumbItem } from '../breadcrumb-item/breadcrumb-item';
4
4
  import { BreadcrumbRouterService } from './breadcrumb-router.service';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class BreadcrumbRouterComponent implements OnChanges, OnDestroy, OnInit {
7
- service: BreadcrumbRouterService;
8
- constructor(service: BreadcrumbRouterService);
7
+ readonly service: BreadcrumbRouterService;
9
8
  /**
10
9
  * Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior. [docs]
11
10
  * @type IBreadcrumbItem[]
@@ -1,14 +1,11 @@
1
- import { ActivatedRoute, Router } from '@angular/router';
2
1
  import { Observable } from 'rxjs';
3
2
  import { IBreadcrumbItem } from '../breadcrumb-item/breadcrumb-item';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class BreadcrumbRouterService {
6
5
  #private;
7
- private router;
8
- private route;
9
6
  outlet: string;
10
7
  readonly breadcrumbs$: Observable<IBreadcrumbItem[]>;
11
- constructor(router: Router, route: ActivatedRoute);
8
+ constructor();
12
9
  static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbRouterService, never>;
13
10
  static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbRouterService>;
14
11
  }
@@ -1,11 +1,7 @@
1
- import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core';
2
- import { CarouselState } from '../carousel-state';
1
+ import { AfterViewInit, ElementRef } from '@angular/core';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class CarouselControlComponent implements AfterViewInit {
5
- private changeDetectorRef;
6
- private carouselState;
7
- constructor(changeDetectorRef: ChangeDetectorRef, carouselState: CarouselState);
8
- private _caption?;
4
+ #private;
9
5
  /**
10
6
  * Carousel control caption. [docs]
11
7
  * @type string
@@ -1,14 +1,9 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
- import { CarouselState } from '../carousel-state';
3
- import { CarouselService } from '../carousel.service';
4
2
  import * as i0 from "@angular/core";
5
3
  export declare class CarouselIndicatorsComponent implements OnInit, OnDestroy {
6
- private carouselService;
7
- private carouselState;
8
- constructor(carouselService: CarouselService, carouselState: CarouselState);
4
+ #private;
9
5
  items: (number | undefined)[];
10
6
  active: number;
11
- private carouselIndexSubscription?;
12
7
  ngOnInit(): void;
13
8
  ngOnDestroy(): void;
14
9
  onClick(index: number): void;
@@ -1,9 +1,7 @@
1
1
  import { AfterContentChecked, AfterContentInit } from '@angular/core';
2
- import { CarouselState } from '../carousel-state';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class CarouselInnerComponent implements AfterContentInit, AfterContentChecked {
5
- private carouselState;
6
- constructor(carouselState: CarouselState);
4
+ #private;
7
5
  carouselInnerClass: boolean;
8
6
  activeIndex?: number;
9
7
  animate?: boolean;
@@ -12,7 +10,6 @@ export declare class CarouselInnerComponent implements AfterContentInit, AfterCo
12
10
  };
13
11
  transition: string;
14
12
  private contentItems;
15
- private prevContentItems;
16
13
  ngAfterContentInit(): void;
17
14
  ngAfterContentChecked(): void;
18
15
  setItems(): void;
@@ -1,17 +1,13 @@
1
- import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
2
- import { CarouselService } from '../carousel.service';
1
+ import { AfterViewInit, OnDestroy } from '@angular/core';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class CarouselItemComponent implements OnDestroy, AfterViewInit {
5
- private carouselService;
6
- private changeDetectorRef;
4
+ #private;
7
5
  index?: number;
8
- private carouselIndexSubscription?;
9
6
  /**
10
7
  * @ignore
11
8
  */
12
9
  set active(value: boolean);
13
10
  get active(): boolean;
14
- private _active;
15
11
  /**
16
12
  * Time delay before cycling to next item. If -1, uses carousel interval value.
17
13
  * @type number
@@ -19,7 +15,6 @@ export declare class CarouselItemComponent implements OnDestroy, AfterViewInit {
19
15
  */
20
16
  interval: number;
21
17
  get hostClasses(): any;
22
- constructor(carouselService: CarouselService, changeDetectorRef: ChangeDetectorRef);
23
18
  ngOnDestroy(): void;
24
19
  ngAfterViewInit(): void;
25
20
  private carouselStateSubscribe;
@@ -1,10 +1,8 @@
1
1
  import { ICarouselState } from './carousel-state.type';
2
- import { CarouselService } from './carousel.service';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class CarouselState {
5
- private carouselService;
4
+ #private;
6
5
  private _state;
7
- constructor(carouselService: CarouselService);
8
6
  get state(): ICarouselState;
9
7
  set state(state: ICarouselState);
10
8
  setItems(newItems: any): void;
@@ -1,11 +1,9 @@
1
1
  import { AfterViewInit } from '@angular/core';
2
- import { DropdownService } from '../dropdown.service';
3
2
  import { DropdownComponent } from '../dropdown/dropdown.component';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class DropdownCloseDirective implements AfterViewInit {
6
- private dropdownService;
7
- dropdown?: DropdownComponent | undefined;
8
- constructor(dropdownService: DropdownService, dropdown?: DropdownComponent | undefined);
5
+ #private;
6
+ dropdown?: DropdownComponent | null | undefined;
9
7
  /**
10
8
  * Disables a dropdown-close directive.
11
9
  * @type boolean
@@ -21,6 +19,6 @@ export declare class DropdownCloseDirective implements AfterViewInit {
21
19
  get isDisabled(): boolean | null;
22
20
  private onClick;
23
21
  private onKeyUp;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<DropdownCloseDirective, [null, { optional: true; }]>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownCloseDirective, never>;
25
23
  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>;
26
24
  }
@@ -1,11 +1,9 @@
1
1
  import { FocusableOption, FocusOrigin } from '@angular/cdk/a11y';
2
- import { DropdownService } from '../dropdown.service';
3
2
  import { DropdownComponent } from '../dropdown/dropdown.component';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class DropdownItemDirective implements FocusableOption {
6
5
  #private;
7
- private dropdownService;
8
- dropdown?: DropdownComponent | undefined;
6
+ dropdown?: DropdownComponent | null | undefined;
9
7
  /**
10
8
  * Set active state to a dropdown-item.
11
9
  * @type boolean
@@ -24,7 +22,6 @@ export declare class DropdownItemDirective implements FocusableOption {
24
22
  * @default undefined
25
23
  */
26
24
  disabled?: boolean;
27
- constructor(dropdownService: DropdownService, dropdown?: DropdownComponent | undefined);
28
25
  focus(origin?: FocusOrigin | undefined): void;
29
26
  getLabel?(): string;
30
27
  get ariaCurrent(): string | null;
@@ -35,6 +32,6 @@ export declare class DropdownItemDirective implements FocusableOption {
35
32
  get isDisabled(): boolean | null;
36
33
  private onClick;
37
34
  private onKeyUp;
38
- static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemDirective, [null, { optional: true; }]>;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemDirective, never>;
39
36
  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>;
40
37
  }
@@ -1,8 +1,6 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
2
  export declare class FormCheckInputDirective {
4
- private renderer;
5
- private hostElement;
3
+ #private;
6
4
  /**
7
5
  * Specifies the type of component.
8
6
  * @type {'checkbox' | 'radio'}
@@ -26,7 +24,6 @@ export declare class FormCheckInputDirective {
26
24
  get hostClasses(): any;
27
25
  set checked(value: boolean);
28
26
  get checked(): boolean;
29
- constructor(renderer: Renderer2, hostElement: ElementRef);
30
27
  static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckInputDirective, never>;
31
28
  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>;
32
29
  static ngAcceptInputType_indeterminate: unknown;
@@ -1,9 +1,8 @@
1
- import { ElementRef, OnInit } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
2
  import { InputType } from '../../coreui.types';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FormControlDirective implements OnInit {
5
- private hostElement;
6
- constructor(hostElement: ElementRef);
5
+ #private;
7
6
  /**
8
7
  * Size the component small or large.
9
8
  * @type {'sm' | 'lg'}
@@ -1,8 +1,7 @@
1
- import { AfterContentInit, ElementRef, Renderer2 } from '@angular/core';
1
+ import { AfterContentInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class HeaderTogglerDirective implements AfterContentInit {
4
- private renderer;
5
- private hostElement;
4
+ #private;
6
5
  headerToggler: boolean;
7
6
  /**
8
7
  * Default role for header-toggler. [docs]
@@ -16,8 +15,6 @@ export declare class HeaderTogglerDirective implements AfterContentInit {
16
15
  * @default 'Toggle navigation'
17
16
  */
18
17
  ariaLabel: string;
19
- private hasContent;
20
- constructor(renderer: Renderer2, hostElement: ElementRef);
21
18
  addDefaultIcon(): void;
22
19
  ngAfterContentInit(): void;
23
20
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderTogglerDirective, never>;
@@ -1,16 +1,8 @@
1
1
  import { AnimationEvent } from '@angular/animations';
2
- import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core';
3
- import { ModalService } from '../modal.service';
4
- import { BackdropService } from '../../backdrop/backdrop.service';
2
+ import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
5
3
  import * as i0 from "@angular/core";
6
4
  export declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
7
5
  #private;
8
- private document;
9
- private renderer;
10
- private hostElement;
11
- private modalService;
12
- private backdropService;
13
- constructor(document: Document, renderer: Renderer2, hostElement: ElementRef, modalService: ModalService, backdropService: BackdropService);
14
6
  /**
15
7
  * Align the modal in the center or top of the screen.
16
8
  * @type {'top' | 'center'}
@@ -1,12 +1,10 @@
1
- import { ModalService } from '../modal.service';
2
1
  import * as i0 from "@angular/core";
3
2
  export declare class ModalToggleDirective {
4
- private modalService;
3
+ #private;
5
4
  /**
6
5
  * Html id attr of modal to dismiss.
7
6
  */
8
7
  id: string | undefined;
9
- constructor(modalService: ModalService);
10
8
  dismiss($event: any): void;
11
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ModalToggleDirective, never>;
12
10
  static ɵdir: i0.ɵɵDirectiveDeclaration<ModalToggleDirective, "[cModalToggle]", never, { "id": { "alias": "cModalToggle"; "required": false; }; }, {}, never, never, true, never>;
@@ -1,20 +1,9 @@
1
1
  import { AnimationEvent } from '@angular/animations';
2
- import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2 } from '@angular/core';
3
- import { BreakpointObserver } from '@angular/cdk/layout';
4
- import { BackdropService } from '../../backdrop/backdrop.service';
5
- import { OffcanvasService } from '../offcanvas.service';
2
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
6
3
  import * as i0 from "@angular/core";
7
4
  import * as i1 from "../../shared/theme.directive";
8
5
  export declare class OffcanvasComponent implements OnInit, OnDestroy {
9
6
  #private;
10
- private document;
11
- private platformId;
12
- private renderer;
13
- private hostElement;
14
- private offcanvasService;
15
- private backdropService;
16
- private breakpointObserver;
17
- constructor(document: Document, platformId: any, renderer: Renderer2, hostElement: ElementRef, offcanvasService: OffcanvasService, backdropService: BackdropService, breakpointObserver: BreakpointObserver);
18
7
  /**
19
8
  * Apply a backdrop on body while offcanvas is open.
20
9
  * @type boolean | 'static'
@@ -1,13 +1,11 @@
1
- import { OffcanvasService } from '../offcanvas.service';
2
1
  import * as i0 from "@angular/core";
3
2
  export declare class OffcanvasToggleDirective {
4
- private offcanvasService;
3
+ #private;
5
4
  /**
6
5
  * Html id attr of offcanvas to toggle.
7
6
  * @type string
8
7
  */
9
8
  id?: string;
10
- constructor(offcanvasService: OffcanvasService);
11
9
  toggleOpen($event: any): void;
12
10
  static ɵfac: i0.ɵɵFactoryDeclaration<OffcanvasToggleDirective, never>;
13
11
  static ɵdir: i0.ɵɵDirectiveDeclaration<OffcanvasToggleDirective, "[cOffcanvasToggle]", never, { "id": { "alias": "cOffcanvasToggle"; "required": false; }; }, {}, never, never, true, never>;
@@ -1,7 +1,7 @@
1
- import { AfterContentInit, ElementRef, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
1
+ import { AfterContentInit, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class PageItemDirective implements AfterContentInit, OnChanges {
4
- private renderer;
4
+ #private;
5
5
  /**
6
6
  * Toggle the active state for the component.
7
7
  * @type boolean
@@ -15,7 +15,6 @@ export declare class PageItemDirective implements AfterContentInit, OnChanges {
15
15
  get ariaCurrent(): string | null;
16
16
  get hostClasses(): any;
17
17
  pageLinkElementRef: ElementRef;
18
- constructor(renderer: Renderer2);
19
18
  ngAfterContentInit(): void;
20
19
  ngOnChanges(changes: SimpleChanges): void;
21
20
  setAttributes(): void;
@@ -1,30 +1,23 @@
1
- import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
2
2
  import { Options } from '@popperjs/core';
3
3
  import { Triggers } from '../coreui.types';
4
- import { IntersectionService, ListenersService } from '../services';
5
4
  import { ElementRefDirective } from '../shared';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class PopoverDirective implements OnDestroy, OnInit, AfterViewInit {
8
7
  #private;
9
- private renderer;
10
- private hostElement;
11
- private viewContainerRef;
12
- private listenersService;
13
- private changeDetectorRef;
14
- private intersectionService;
15
8
  /**
16
9
  * Content of popover
17
10
  * @type {string | TemplateRef}
18
11
  */
19
12
  readonly content: import("@angular/core").InputSignal<string | TemplateRef<any> | undefined>;
20
- contentEffect: import("@angular/core").EffectRef;
13
+ readonly contentEffect: import("@angular/core").EffectRef;
21
14
  /**
22
15
  * Optional popper Options object, takes precedence over cPopoverPlacement prop
23
16
  * @type Partial<Options>
24
17
  */
25
18
  readonly popperOptions: import("@angular/core").InputSignal<Partial<Options>>;
26
- popperOptionsEffect: import("@angular/core").EffectRef;
27
- popperOptionsComputed: import("@angular/core").Signal<{
19
+ readonly popperOptionsEffect: import("@angular/core").EffectRef;
20
+ readonly popperOptionsComputed: import("@angular/core").Signal<{
28
21
  placement: import("@popperjs/core").Placement;
29
22
  modifiers?: Partial<import("@popperjs/core").Modifier<any, any>>[] | undefined;
30
23
  strategy?: import("@popperjs/core").PositioningStrategy | undefined;
@@ -53,14 +46,13 @@ export declare class PopoverDirective implements OnDestroy, OnInit, AfterViewIni
53
46
  * @type boolean
54
47
  */
55
48
  readonly visible: import("@angular/core").ModelSignal<boolean>;
56
- visibleEffect: import("@angular/core").EffectRef;
49
+ readonly visibleEffect: import("@angular/core").EffectRef;
57
50
  get ariaDescribedBy(): string | null;
58
51
  private tooltip;
59
52
  private tooltipId;
60
53
  private tooltipRef;
61
54
  private popperInstance;
62
55
  private _popperOptions;
63
- constructor(renderer: Renderer2, hostElement: ElementRef, viewContainerRef: ViewContainerRef, listenersService: ListenersService, changeDetectorRef: ChangeDetectorRef, intersectionService: IntersectionService);
64
56
  ngAfterViewInit(): void;
65
57
  ngOnDestroy(): void;
66
58
  ngOnInit(): void;
@@ -1,10 +1,7 @@
1
- import { RendererFactory2 } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
2
  export declare class ClassToggleService {
4
- private document;
5
- private rendererFactory;
6
- private renderer;
7
- constructor(document: Document, rendererFactory: RendererFactory2);
3
+ #private;
4
+ constructor();
8
5
  toggle(selector: any, className: string): void;
9
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ClassToggleService, never>;
10
7
  static ɵprov: i0.ɵɵInjectableDeclaration<ClassToggleService>;
@@ -1,15 +1,8 @@
1
- import { EventEmitter, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core';
2
- import { BreakpointObserver } from '@angular/cdk/layout';
3
- import { ISidebarAction, SidebarService } from '../sidebar.service';
4
- import { SidebarBackdropService } from '../sidebar-backdrop/sidebar-backdrop.service';
1
+ import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
+ import { ISidebarAction } from '../sidebar.service';
5
3
  import * as i0 from "@angular/core";
6
4
  export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
7
5
  #private;
8
- private document;
9
- private renderer;
10
- private breakpointObserver;
11
- private sidebarService;
12
- private backdropService;
13
6
  state: ISidebarAction;
14
7
  /**
15
8
  * Sets if the color of text should be colored for a light or dark background. [docs]
@@ -70,7 +63,7 @@ export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
70
63
  set sidebarState(value: ISidebarAction);
71
64
  get sidebarState(): ISidebarAction;
72
65
  get getMobileBreakpoint(): string;
73
- constructor(document: Document, renderer: Renderer2, breakpointObserver: BreakpointObserver, sidebarService: SidebarService, backdropService: SidebarBackdropService);
66
+ constructor();
74
67
  get getClasses(): any;
75
68
  ngOnInit(): void;
76
69
  ngOnDestroy(): void;
@@ -1,14 +1,9 @@
1
1
  import { Renderer2 } from '@angular/core';
2
- import { SidebarService } from '../sidebar.service';
3
2
  import { SidebarComponent } from '../sidebar/sidebar.component';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class SidebarBackdropService {
6
- private document;
7
- private sidebarService;
8
- private backdrop;
5
+ #private;
9
6
  renderer: Renderer2;
10
- private clickListener;
11
- constructor(document: Document, sidebarService: SidebarService);
12
7
  setBackdrop(sidebar: SidebarComponent): void;
13
8
  clearBackdrop(): void;
14
9
  static ɵfac: i0.ɵɵFactoryDeclaration<SidebarBackdropService, never>;
@@ -2,8 +2,7 @@ import { PipeTransform } from '@angular/core';
2
2
  import { SidebarNavHelper } from './sidebar-nav.service';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class SidebarNavItemClassPipe implements PipeTransform {
5
- helper: SidebarNavHelper;
6
- constructor(helper: SidebarNavHelper);
5
+ readonly helper: SidebarNavHelper;
7
6
  transform(item: any, args?: any[]): any;
8
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavItemClassPipe, never>;
9
8
  static ɵpipe: i0.ɵɵPipeDeclaration<SidebarNavItemClassPipe, "cSidebarNavItemClass", true>;
@@ -2,8 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { SidebarNavHelper } from './sidebar-nav.service';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class SidebarNavLabelComponent implements OnInit {
5
- helper: SidebarNavHelper;
6
- constructor(helper: SidebarNavHelper);
5
+ readonly helper: SidebarNavHelper;
7
6
  item: any;
8
7
  private classes;
9
8
  private iconClasses;
@@ -4,14 +4,13 @@ import { SidebarNavHelper } from './sidebar-nav.service';
4
4
  import { INavData } from './sidebar-nav';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SidebarNavLinkContentComponent {
7
- helper: SidebarNavHelper;
7
+ readonly helper: SidebarNavHelper;
8
8
  item?: INavData;
9
- constructor(helper: SidebarNavHelper);
10
9
  static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavLinkContentComponent, never>;
11
10
  static ɵcmp: i0.ɵɵComponentDeclaration<SidebarNavLinkContentComponent, "c-sidebar-nav-link-content", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
12
11
  }
13
12
  export declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
14
- router: Router;
13
+ readonly router: Router;
15
14
  protected _item: INavData;
16
15
  set item(item: INavData);
17
16
  get item(): INavData;
@@ -22,7 +21,7 @@ export declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
22
21
  private url;
23
22
  private navigationEndObservable;
24
23
  private navSubscription;
25
- constructor(router: Router);
24
+ constructor();
26
25
  ngOnInit(): void;
27
26
  ngOnDestroy(): void;
28
27
  getLinkType(): string;
@@ -1,10 +1,8 @@
1
- import { ElementRef, OnInit, Renderer2 } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class SidebarNavTitleComponent implements OnInit {
4
- private el;
5
- private renderer;
4
+ #private;
6
5
  item: any;
7
- constructor(el: ElementRef, renderer: Renderer2);
8
6
  ngOnInit(): void;
9
7
  private addAttribs;
10
8
  private setStyle;
@@ -1,20 +1,15 @@
1
1
  import { AnimationEvent } from '@angular/animations';
2
- import { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core';
2
+ import { ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
3
3
  import { NavigationEnd, Router } from '@angular/router';
4
4
  import { Observable, Subscription } from 'rxjs';
5
- import { SidebarService } from '../sidebar.service';
6
5
  import { SidebarComponent } from '../sidebar/sidebar.component';
7
6
  import { INavData } from './sidebar-nav';
8
7
  import { SidebarNavHelper } from './sidebar-nav.service';
9
- import { SidebarNavGroupService } from './sidebar-nav-group.service';
10
8
  import * as i0 from "@angular/core";
11
9
  export declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
12
- private router;
13
- private renderer;
14
- private hostElement;
15
- helper: SidebarNavHelper;
16
- private sidebarNavGroupService;
17
- constructor(router: Router, renderer: Renderer2, hostElement: ElementRef, helper: SidebarNavHelper, sidebarNavGroupService: SidebarNavGroupService);
10
+ #private;
11
+ readonly helper: SidebarNavHelper;
12
+ constructor();
18
13
  item: any;
19
14
  dropdownMode: 'path' | 'none' | 'close';
20
15
  show?: boolean;
@@ -39,13 +34,10 @@ export declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
39
34
  static ngAcceptInputType_compact: unknown;
40
35
  }
41
36
  export declare class SidebarNavComponent implements OnChanges {
42
- sidebar: SidebarComponent;
43
- helper: SidebarNavHelper;
44
- router: Router;
45
- private renderer;
46
- private hostElement;
47
- private sidebarService;
48
- constructor(sidebar: SidebarComponent, helper: SidebarNavHelper, router: Router, renderer: Renderer2, hostElement: ElementRef, sidebarService: SidebarService);
37
+ #private;
38
+ readonly sidebar: SidebarComponent | null;
39
+ readonly helper: SidebarNavHelper;
40
+ readonly router: Router;
49
41
  navItems?: INavData[];
50
42
  dropdownMode: 'path' | 'none' | 'close';
51
43
  groupItems?: boolean;
@@ -55,7 +47,7 @@ export declare class SidebarNavComponent implements OnChanges {
55
47
  navItemsArray: INavData[];
56
48
  ngOnChanges(changes: SimpleChanges): void;
57
49
  hideMobile(): void;
58
- static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavComponent, [{ optional: true; }, null, null, null, null, null]>;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavComponent, never>;
59
51
  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>;
60
52
  static ngAcceptInputType_groupItems: unknown;
61
53
  static ngAcceptInputType_compact: unknown;
@@ -1,10 +1,9 @@
1
- import { SidebarService } from '../sidebar.service';
2
1
  import * as i0 from "@angular/core";
3
2
  /**
4
3
  * Allows the sidebar to be toggled/folded via click on host element.
5
4
  */
6
5
  export declare class SidebarToggleDirective {
7
- private sidebarService;
6
+ #private;
8
7
  /**
9
8
  * Id of sidebar for toggle action. [docs]
10
9
  *
@@ -18,7 +17,6 @@ export declare class SidebarToggleDirective {
18
17
  * @default 'visible'
19
18
  */
20
19
  toggle: 'visible' | 'unfoldable';
21
- constructor(sidebarService: SidebarService);
22
20
  toggleOpen($event: any): void;
23
21
  static ɵfac: i0.ɵɵFactoryDeclaration<SidebarToggleDirective, never>;
24
22
  static ɵdir: i0.ɵɵDirectiveDeclaration<SidebarToggleDirective, "[cSidebarToggle]", ["cSidebarToggle"], { "id": { "alias": "cSidebarToggle"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; }, {}, never, never, true, never>;
@@ -1,11 +1,9 @@
1
- import { ElementRef, OnInit, Renderer2 } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
2
  import { Breakpoints, Colors } from '../coreui.types';
3
3
  import { ITable } from './table.type';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class TableDirective implements ITable, OnInit {
6
- private renderer;
7
- private hostElement;
8
- constructor(renderer: Renderer2, hostElement: ElementRef);
6
+ #private;
9
7
  /**
10
8
  * Set the vertical alignment.
11
9
  * @type string
@@ -1,24 +1,19 @@
1
- import { AfterContentChecked, AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
1
+ import { AfterContentChecked, AfterContentInit, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
2
2
  import { TabPaneComponent } from '../tab-pane/tab-pane.component';
3
- import { TabService } from '../tab.service';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class TabContentComponent implements AfterContentChecked, AfterContentInit, OnChanges, OnDestroy {
6
- private changeDetectorRef;
7
- private tabService;
5
+ #private;
8
6
  /**
9
7
  * Set active tabPane index
10
8
  * @type number
11
9
  */
12
10
  set activeTabPaneIdx(value: number);
13
11
  get activeTabPaneIdx(): number;
14
- private _activeTabPaneIdx;
15
12
  /**
16
13
  * Event emitted on the active tab pane index change.
17
14
  */
18
15
  activeTabPaneIdxChange: EventEmitter<number>;
19
16
  panes: QueryList<TabPaneComponent>;
20
- private tabServiceSubscription;
21
- constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService);
22
17
  ngAfterContentInit(): void;
23
18
  ngAfterContentChecked(): void;
24
19
  ngOnChanges(changes: SimpleChanges): void;
@@ -1,11 +1,8 @@
1
- import { ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
2
- import { TabService } from './tab.service';
1
+ import { OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class TabContentRefDirective implements OnChanges, OnDestroy {
5
- private changeDetectorRef;
6
- private tabService;
7
- constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService);
8
- private tabServiceSubscription;
4
+ #private;
5
+ constructor();
9
6
  /**
10
7
  * Template Ref
11
8
  * @type TemplateRef
@@ -18,14 +15,12 @@ export declare class TabContentRefDirective implements OnChanges, OnDestroy {
18
15
  */
19
16
  set active(value: boolean);
20
17
  get active(): boolean;
21
- private _active;
22
18
  /**
23
19
  * Set disabled state of tab content
24
20
  * @type boolean
25
21
  */
26
22
  set disabled(value: boolean);
27
23
  get disabled(): boolean;
28
- private _disabled;
29
24
  /**
30
25
  * c-tab-pane index respectively
31
26
  * @type number