@coreui/angular-pro 4.2.22 → 4.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/sidebar/sidebar/sidebar.component.mjs +57 -41
- package/esm2020/lib/smart-table/smart-table-head/smart-table-head.component.mjs +3 -3
- package/esm2020/lib/smart-table/smart-table.module.mjs +1 -1
- package/fesm2015/coreui-angular-pro.mjs +51 -39
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +54 -39
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/sidebar/sidebar/sidebar.component.d.ts +8 -14
- package/package.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from
|
|
2
|
-
import { BooleanInput } from
|
|
3
|
-
import { BreakpointObserver } from
|
|
4
|
-
import { ISidebarAction, SidebarService } from
|
|
5
|
-
import { SidebarBackdropService } from
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { BooleanInput } from "@angular/cdk/coercion";
|
|
3
|
+
import { BreakpointObserver } from "@angular/cdk/layout";
|
|
4
|
+
import { ISidebarAction, SidebarService } from "../sidebar.service";
|
|
5
|
+
import { SidebarBackdropService } from "../sidebar-backdrop/sidebar-backdrop.service";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
8
|
+
#private;
|
|
8
9
|
private document;
|
|
9
10
|
private renderer;
|
|
10
11
|
private breakpointObserver;
|
|
@@ -14,16 +15,9 @@ export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
14
15
|
static ngAcceptInputType_overlaid: BooleanInput;
|
|
15
16
|
static ngAcceptInputType_unfoldable: BooleanInput;
|
|
16
17
|
static ngAcceptInputType_visible: BooleanInput;
|
|
17
|
-
private _narrow;
|
|
18
|
-
private _overlaid;
|
|
19
|
-
private _unfoldable;
|
|
20
|
-
private _visible;
|
|
21
|
-
private onMobile;
|
|
22
|
-
private layoutChangeSubscription;
|
|
23
|
-
private stateToggleSubscription;
|
|
24
18
|
state: ISidebarAction;
|
|
25
19
|
/**
|
|
26
|
-
* Sets if the color of text should be colored for a light or dark
|
|
20
|
+
* Sets if the color of text should be colored for a light or dark background. [docs]
|
|
27
21
|
*
|
|
28
22
|
* @type 'dark' | 'light'
|
|
29
23
|
*/
|
|
@@ -78,7 +72,7 @@ export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
78
72
|
set sidebarState(value: ISidebarAction);
|
|
79
73
|
get sidebarState(): ISidebarAction;
|
|
80
74
|
get getMobileBreakpoint(): string;
|
|
81
|
-
constructor(document:
|
|
75
|
+
constructor(document: Document, renderer: Renderer2, breakpointObserver: BreakpointObserver, sidebarService: SidebarService, backdropService: SidebarBackdropService);
|
|
82
76
|
get getClasses(): any;
|
|
83
77
|
ngOnInit(): void;
|
|
84
78
|
ngOnDestroy(): void;
|