@baloise/ds-angular-module 19.8.2 → 19.8.3
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.
|
@@ -309,9 +309,10 @@ let BalApp = class BalApp {
|
|
|
309
309
|
this.z = z;
|
|
310
310
|
c.detach();
|
|
311
311
|
this.el = r.nativeElement;
|
|
312
|
+
proxyOutputs(this, this.el, ['balAppReady']);
|
|
312
313
|
}
|
|
313
314
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.7", ngImport: i0, type: BalApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
314
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.7", type: BalApp, selector: "bal-app", inputs: { animated: "animated" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
315
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.7", type: BalApp, selector: "bal-app", inputs: { animated: "animated" }, outputs: { balAppReady: "balAppReady" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
315
316
|
};
|
|
316
317
|
BalApp = __decorate([
|
|
317
318
|
ProxyCmp({
|
|
@@ -328,7 +329,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.7", ngImpor
|
|
|
328
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
329
330
|
template: '<ng-content></ng-content>',
|
|
330
331
|
standalone: false,
|
|
331
|
-
inputs: ['animated']
|
|
332
|
+
inputs: ['animated'],
|
|
333
|
+
outputs: ['balAppReady']
|
|
332
334
|
}]
|
|
333
335
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
334
336
|
let BalBadge = class BalBadge {
|