@alauda/ui 6.4.6-beta → 6.4.6-beta.2

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
  {
2
2
  "name": "@alauda/ui",
3
- "version": "6.4.6-beta",
3
+ "version": "6.4.6-beta.2",
4
4
  "description": "Angular UI components by Alauda Frontend Team.",
5
5
  "repository": "git+https://github.com/alauda/alauda-ui.git",
6
6
  "author": "Alauda Frontend",
@@ -1,5 +1,5 @@
1
1
  import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
- import { Subject } from 'rxjs';
2
+ import { Subject, BehaviorSubject } from 'rxjs';
3
3
  import { TableComponent } from './table.component';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class TableScrollWrapperDirective {
@@ -10,7 +10,7 @@ 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
+ scrollShadow$$: BehaviorSubject<boolean>;
14
14
  destroy$$: Subject<void>;
15
15
  set auiTableScrollShadow(scrollShadow: boolean | '');
16
16
  constructor(el: ElementRef<HTMLElement>, table: TableComponent<unknown>);