@coreui/angular-pro 4.4.7 → 4.4.8
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/tabs/tab-content/tab-content.component.mjs +2 -2
- package/esm2020/lib/tabs/tab-content-ref.directive.mjs +3 -5
- package/esm2020/lib/tabs/tab-pane/tab-pane.component.mjs +7 -7
- package/fesm2015/coreui-angular-pro.mjs +12 -11
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +9 -11
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/lib/tabs/tab-content-ref.directive.d.ts +2 -3
- package/lib/tabs/tab-pane/tab-pane.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnChanges, OnDestroy,
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
3
3
|
import { TabService } from './tab.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TabContentRefDirective implements OnChanges, OnDestroy
|
|
5
|
+
export declare class TabContentRefDirective implements OnChanges, OnDestroy {
|
|
6
6
|
private changeDetectorRef;
|
|
7
7
|
private tabService;
|
|
8
8
|
constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService);
|
|
@@ -42,7 +42,6 @@ export declare class TabContentRefDirective implements OnChanges, OnDestroy, OnI
|
|
|
42
42
|
ngOnChanges(changes: SimpleChanges): void;
|
|
43
43
|
toggleOpen($event: any): void;
|
|
44
44
|
setActiveTabPane(): void;
|
|
45
|
-
ngOnInit(): void;
|
|
46
45
|
ngOnDestroy(): void;
|
|
47
46
|
subscribeTabService(subscribe?: boolean): void;
|
|
48
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabContentRefDirective, never>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { TabContentComponent } from '../tab-content/tab-content.component';
|
|
3
3
|
import { TabService } from '../tab.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TabPaneComponent implements OnDestroy
|
|
5
|
+
export declare class TabPaneComponent implements OnDestroy {
|
|
6
6
|
private changeDetectorRef;
|
|
7
7
|
private tabService;
|
|
8
8
|
constructor(changeDetectorRef: ChangeDetectorRef, tabService: TabService);
|
|
@@ -18,7 +18,6 @@ export declare class TabPaneComponent implements OnDestroy, OnInit {
|
|
|
18
18
|
show: boolean;
|
|
19
19
|
active: boolean;
|
|
20
20
|
};
|
|
21
|
-
ngOnInit(): void;
|
|
22
21
|
ngOnDestroy(): void;
|
|
23
22
|
subscribeTabService(subscribe?: boolean): void;
|
|
24
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabPaneComponent, never>;
|
package/package.json
CHANGED