@c8y/ngx-components 1018.0.88 → 1018.0.90
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/core/dynamic-component/dynamic-component-alert-aggregator.mjs +2 -2
- package/fesm2015/c8y-ngx-components.mjs +1 -2
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +1 -2
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -53,7 +53,6 @@ import { FieldArrayType, FieldType, FieldWrapper, FormlyModule, FORMLY_CONFIG,
|
|
|
53
53
|
import * as i5$2 from '@ngx-formly/core/select';
|
|
54
54
|
import { FormlySelectModule } from '@ngx-formly/core/select';
|
|
55
55
|
import { FormlyJsonschema } from '@ngx-formly/core/json-schema';
|
|
56
|
-
import { BehaviorSubject as BehaviorSubject$1 } from 'rxjs/internal/BehaviorSubject';
|
|
57
56
|
import * as i5$3 from '@angular/cdk/drag-drop';
|
|
58
57
|
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
59
58
|
import * as i7 from '@angular/cdk/table';
|
|
@@ -22868,7 +22867,7 @@ var DismissAlertStrategy;
|
|
|
22868
22867
|
const WIDGET_ALERTS_ORDER = ['danger', 'warning', 'info'];
|
|
22869
22868
|
class DynamicComponentAlertAggregator {
|
|
22870
22869
|
constructor(alerts = []) {
|
|
22871
|
-
this.anyAlertExistsSubject = new BehaviorSubject
|
|
22870
|
+
this.anyAlertExistsSubject = new BehaviorSubject(false);
|
|
22872
22871
|
this.anyAlertExists$ = this.anyAlertExistsSubject.asObservable();
|
|
22873
22872
|
this.initAlertsGroups();
|
|
22874
22873
|
this.setAlerts(alerts);
|