@alauda/ui 6.2.3-beta.2 → 6.2.3-beta.6
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/fesm2020/alauda-ui.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { TemplateRef, Injectable, Pipe, NgModule, Optional, Inject, SkipSelf, Component, ViewEncapsulation, ChangeDetectionStrategy, Input, Directive, EventEmitter, Output, HostBinding, ViewChild, ContentChild, Host, isDevMode, HostListener, InjectionToken, Injector, ContentChildren, forwardRef, ElementRef, ViewChildren, ViewContainerRef, ChangeDetectorRef, Type } from '@angular/core';
|
|
3
|
-
import { Observable, ReplaySubject, Subject, merge, fromEvent, BehaviorSubject, combineLatest, of, Subscription, map as map$1, tap as tap$1, publishReplay as publishReplay$1, refCount as refCount$1, startWith as startWith$1, switchMap as switchMap$1, takeUntil as takeUntil$1, EMPTY, animationFrameScheduler } from 'rxjs';
|
|
4
|
-
import { startWith, map, publishReplay, refCount, distinctUntilChanged, takeUntil, switchMap, throttleTime, debounceTime, first, tap, take,
|
|
3
|
+
import { Observable, ReplaySubject, Subject, merge, fromEvent, BehaviorSubject, combineLatest, pluck, of, Subscription, map as map$1, tap as tap$1, publishReplay as publishReplay$1, refCount as refCount$1, startWith as startWith$1, switchMap as switchMap$1, takeUntil as takeUntil$1, EMPTY, animationFrameScheduler } from 'rxjs';
|
|
4
|
+
import { startWith, map, publishReplay, refCount, distinctUntilChanged, takeUntil, switchMap, throttleTime, debounceTime, first, tap, take, observeOn, repeat, takeWhile, endWith, filter } from 'rxjs/operators';
|
|
5
5
|
import * as i1$1 from '@angular/cdk/table';
|
|
6
6
|
import { CdkCellDef, CdkCell, CdkColumnDef, CdkHeaderCellDef, CdkHeaderCell, CdkHeaderRowDef, CdkHeaderRow, CDK_ROW_TEMPLATE, CdkRowDef, CdkRow, CdkTable, CDK_TABLE, _COALESCED_STYLE_SCHEDULER, _CoalescedStyleScheduler, CDK_TABLE_TEMPLATE, CdkTableModule } from '@angular/cdk/table';
|
|
7
7
|
import * as i2 from '@angular/common';
|
|
@@ -4394,7 +4394,7 @@ const I18NInterfaceToken = new InjectionToken('i18n token', {
|
|
|
4394
4394
|
class I18nService {
|
|
4395
4395
|
constructor(_i18n) {
|
|
4396
4396
|
this._i18n = _i18n;
|
|
4397
|
-
this.i18nChange$$
|
|
4397
|
+
this.i18nChange$$ = new BehaviorSubject(this._i18n);
|
|
4398
4398
|
this.localeChange$ = this.i18nChange$$.asObservable().pipe(pluck('locale'));
|
|
4399
4399
|
}
|
|
4400
4400
|
setI18n(i18n) {
|