@alauda/ui 6.4.4-beta.1 → 6.4.5-beta
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/input/tags-input/tags-input.component.mjs +2 -2
- package/esm2020/select/multi-select/multi-select.component.mjs +2 -2
- package/esm2020/table/table-scroll.directive.mjs +17 -7
- package/esm2020/tag/check-tag/check-tag.component.mjs +2 -2
- package/esm2020/tag/tag.component.mjs +2 -2
- package/fesm2015/alauda-ui.mjs +23 -13
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +23 -13
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/table/table-scroll.directive.d.ts +3 -1
package/package.json
CHANGED
|
@@ -10,7 +10,9 @@ export declare class TableScrollWrapperDirective {
|
|
|
10
10
|
export declare class TableScrollShadowDirective implements AfterViewInit, OnDestroy {
|
|
11
11
|
private readonly el;
|
|
12
12
|
private readonly table;
|
|
13
|
+
scrollShadow$$: Subject<boolean>;
|
|
13
14
|
destroy$$: Subject<void>;
|
|
15
|
+
set auiTableScrollShadow(scrollShadow: boolean | '');
|
|
14
16
|
constructor(el: ElementRef<HTMLElement>, table: TableComponent<unknown>);
|
|
15
17
|
SCROLL_BEFORE_END_CLASS: boolean;
|
|
16
18
|
SHADOW_CLASS: boolean;
|
|
@@ -22,5 +24,5 @@ export declare class TableScrollShadowDirective implements AfterViewInit, OnDest
|
|
|
22
24
|
placeClassList(classList: DOMTokenList, condition: boolean, className: string): void;
|
|
23
25
|
ngOnDestroy(): void;
|
|
24
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableScrollShadowDirective, [null, { host: true; }]>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollShadowDirective, "[auiTableScrollShadow]", never, {}, {}, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollShadowDirective, "[auiTableScrollShadow]", never, { "auiTableScrollShadow": "auiTableScrollShadow"; }, {}, never>;
|
|
26
28
|
}
|