@indice/ng-components 0.2.153-beta.18 → 0.2.153-beta.20
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/bundles/indice-ng-components.umd.js +63 -63
- package/bundles/indice-ng-components.umd.js.map +1 -1
- package/esm2015/lib/controls/tabs/lib-tab-group.component.js +3 -3
- package/esm2015/lib/controls/tabs/lib-tab.component.js +3 -4
- package/esm2015/lib/tokens.js +2 -1
- package/fesm2015/indice-ng-components.js +60 -60
- package/fesm2015/indice-ng-components.js.map +1 -1
- package/lib/controls/tabs/lib-tab-group.component.d.ts +1 -2
- package/lib/controls/tabs/lib-tab.component.d.ts +2 -3
- package/lib/tokens.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { AfterContentChecked, AfterContentInit, EventEmitter,
|
|
1
|
+
import { AfterContentChecked, AfterContentInit, EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { LibTabComponent } from './lib-tab.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare const LIBTABGROUP_ACCESSOR: InjectionToken<LibTabGroupComponent>;
|
|
5
4
|
export declare class LibTabGroupComponent implements OnInit, AfterContentInit, AfterContentChecked {
|
|
6
5
|
constructor();
|
|
7
6
|
/** The inner tabs of the group. */
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { LibTabGroupComponent } from './lib-tab-group.component';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class LibTabComponent implements OnInit {
|
|
5
|
-
readonly _tabGroup?:
|
|
4
|
+
readonly _tabGroup?: any;
|
|
6
5
|
private _isActive;
|
|
7
|
-
constructor(_tabGroup?:
|
|
6
|
+
constructor(_tabGroup?: any);
|
|
8
7
|
/** The content provided for the tab. */
|
|
9
8
|
content: TemplateRef<any>;
|
|
10
9
|
/** A label for the tab header. */
|
package/lib/tokens.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { LibTabGroupComponent } from './controls/tabs/lib-tab-group.component';
|
|
2
3
|
import { IAppLinks, IAppLanguagesService, IAppNotifications, IShellConfig } from './types';
|
|
3
4
|
export declare const APP_LINKS: InjectionToken<IAppLinks>;
|
|
4
5
|
export declare const APP_NOTIFICATIONS: InjectionToken<IAppNotifications>;
|
|
5
6
|
export declare const SHELL_CONFIG: InjectionToken<IShellConfig>;
|
|
6
7
|
export declare const APP_LANGUAGES: InjectionToken<IAppLanguagesService>;
|
|
8
|
+
export declare const LIBTABGROUP_ACCESSOR: InjectionToken<LibTabGroupComponent>;
|