@alauda/ui 6.5.8 → 6.5.9-beta.0
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/tabs/tab-header.component.mjs +7 -1
- package/esm2020/tooltip/base-tooltip.mjs +17 -9
- package/fesm2015/alauda-ui.mjs +22 -12
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +22 -8
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/tabs/tab-header.component.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ViewportRuler } from '@angular/cdk/scrolling';
|
|
2
|
-
import { AfterContentChecked, AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
+
import { AfterContentChecked, AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
3
3
|
import { Bem } from '../utils';
|
|
4
4
|
import { TabHeaderAddonDirective, TabLabelWrapperDirective, TabTitleDirective } from './tab-body.component';
|
|
5
5
|
import { TabHeaderActiveIndicatorComponent } from './tab-header-active-indicator.component';
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
* beginning of the list.
|
|
12
12
|
*/
|
|
13
13
|
export declare type ScrollDirection = 'after' | 'before';
|
|
14
|
-
export declare class TabHeaderComponent implements OnDestroy, AfterContentChecked, AfterContentInit {
|
|
14
|
+
export declare class TabHeaderComponent implements OnDestroy, AfterContentChecked, AfterContentInit, AfterViewInit {
|
|
15
15
|
private readonly _changeDetectorRef;
|
|
16
16
|
private readonly _viewportRuler;
|
|
17
17
|
bem: Bem;
|
|
@@ -60,6 +60,7 @@ export declare class TabHeaderComponent implements OnDestroy, AfterContentChecke
|
|
|
60
60
|
_paginationWrapper: ElementRef<HTMLElement>;
|
|
61
61
|
_activeIndicator: TabHeaderActiveIndicatorComponent;
|
|
62
62
|
ngOnDestroy(): void;
|
|
63
|
+
ngAfterViewInit(): void;
|
|
63
64
|
ngAfterContentChecked(): void;
|
|
64
65
|
/**
|
|
65
66
|
* Aligns the ink bar to the selected tab on load.
|