@alauda/ui 6.4.8-beta.13 → 6.4.8-beta.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directionality } from '@angular/cdk/bidi';
|
|
2
2
|
import { CdkScrollable, ScrollDispatcher } from '@angular/cdk/scrolling';
|
|
3
|
-
import { AfterViewInit, ElementRef, NgZone, OnDestroy } from '@angular/core';
|
|
3
|
+
import { AfterViewInit, ElementRef, NgZone, OnDestroy, OnInit } from '@angular/core';
|
|
4
4
|
import { Subject, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { TableComponent } from './table.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -9,22 +9,25 @@ export declare class TableScrollWrapperDirective {
|
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableScrollWrapperDirective, never>;
|
|
10
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollWrapperDirective, "[auiTableScrollWrapper]", never, { "auiTableScrollWrapper": "auiTableScrollWrapper"; }, {}, never>;
|
|
11
11
|
}
|
|
12
|
-
export declare class TableScrollableDirective extends CdkScrollable implements AfterViewInit, OnDestroy {
|
|
12
|
+
export declare class TableScrollableDirective extends CdkScrollable implements AfterViewInit, OnInit, OnDestroy {
|
|
13
13
|
private readonly el;
|
|
14
14
|
private readonly table;
|
|
15
|
-
|
|
15
|
+
set scrollable(scrollable: boolean | '');
|
|
16
|
+
get scrollable(): boolean | '';
|
|
17
|
+
private _scrollable;
|
|
18
|
+
scrollable$$: BehaviorSubject<boolean>;
|
|
16
19
|
destroy$$: Subject<void>;
|
|
17
|
-
set auiTableScrollable(scrollShadow: boolean | '');
|
|
18
20
|
constructor(el: ElementRef<HTMLElement>, scrollDispatcher: ScrollDispatcher, ngZone: NgZone, table: TableComponent<unknown>, dir?: Directionality);
|
|
19
21
|
SCROLL_BEFORE_END_CLASS: boolean;
|
|
20
22
|
SHADOW_CLASS: boolean;
|
|
21
23
|
get containerEl(): HTMLElement;
|
|
24
|
+
ngOnInit(): void;
|
|
22
25
|
ngAfterViewInit(): void;
|
|
26
|
+
ngOnDestroy(): void;
|
|
23
27
|
viewMutation(): void;
|
|
24
28
|
mutateVerticalScroll(): void;
|
|
25
29
|
mutateHorizontalScroll(): void;
|
|
26
30
|
placeClassList(classList: DOMTokenList, condition: boolean, className: string): void;
|
|
27
|
-
ngOnDestroy(): void;
|
|
28
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableScrollableDirective, [null, null, null, { host: true; }, { optional: true; }]>;
|
|
29
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollableDirective, "[auiTableScrollable]", never, { "
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollableDirective, "[auiTableScrollable]", never, { "scrollable": "auiTableScrollable"; }, {}, never>;
|
|
30
33
|
}
|