@dsivd/prestations-ng 19.0.2-beta.1 → 19.0.2-beta.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.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnInit, AfterViewInit, Signal, ElementRef, DestroyRef, OnDestroy, OnChanges, SimpleChanges, EnvironmentProviders, SimpleChange, PipeTransform, TemplateRef, TrackByFunction, InjectionToken, ErrorHandler, NgZone } from '@angular/core';
|
|
2
|
+
import { OnInit, AfterViewInit, Signal, ElementRef, DestroyRef, OnDestroy, OnChanges, SimpleChanges, EnvironmentProviders, SimpleChange, AfterViewChecked, PipeTransform, TemplateRef, TrackByFunction, InjectionToken, ErrorHandler, NgZone } from '@angular/core';
|
|
3
3
|
import { Params, Route, ActivatedRoute, ActivatedRouteSnapshot, CanActivateFn, Router, QueryParamsHandling } from '@angular/router';
|
|
4
4
|
import { Observable, Subject, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { NgModel, NgForm } from '@angular/forms';
|
|
@@ -292,6 +292,7 @@ declare class FoehnNavigationService {
|
|
|
292
292
|
private location;
|
|
293
293
|
private demandeTransmitInterceptor;
|
|
294
294
|
private eventsLoggerService;
|
|
295
|
+
private injector;
|
|
295
296
|
private _activatedRoute;
|
|
296
297
|
private isInit;
|
|
297
298
|
private initializedAndRouteActivated;
|
|
@@ -1145,6 +1146,7 @@ declare abstract class FoehnCheckableGroupComponent extends FoehnInputComponent<
|
|
|
1145
1146
|
private readonly ngZone;
|
|
1146
1147
|
private pulling_;
|
|
1147
1148
|
private _onInitSubject;
|
|
1149
|
+
private disabledByElements;
|
|
1148
1150
|
constructor();
|
|
1149
1151
|
get onInitSubject(): Subject<void>;
|
|
1150
1152
|
ngOnInit(): void;
|
|
@@ -1156,6 +1158,7 @@ declare abstract class FoehnCheckableGroupComponent extends FoehnInputComponent<
|
|
|
1156
1158
|
getLabel(element: any): string;
|
|
1157
1159
|
getElementIdentifier(element: any): string;
|
|
1158
1160
|
getDisabled(element: any): boolean;
|
|
1161
|
+
getElementDisabled(element: any): boolean;
|
|
1159
1162
|
onCheck(element: any, valueEmitted: any, fireModelChange?: boolean): void;
|
|
1160
1163
|
isElementSelected(element: any): boolean;
|
|
1161
1164
|
reset(): void;
|
|
@@ -1445,11 +1448,13 @@ declare class FoehnCheckboxComponent extends FoehnCheckableGroupComponent implem
|
|
|
1445
1448
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FoehnCheckboxComponent, "foehn-checkbox", never, {}, {}, never, ["*"], true, never>;
|
|
1446
1449
|
}
|
|
1447
1450
|
|
|
1448
|
-
declare class FoehnRadioComponent extends FoehnCheckableGroupComponent implements OnInit {
|
|
1451
|
+
declare class FoehnRadioComponent extends FoehnCheckableGroupComponent implements OnInit, AfterViewChecked {
|
|
1449
1452
|
inputValue: string;
|
|
1450
1453
|
ngOnInit(): void;
|
|
1451
1454
|
onModelChange(value: any): void;
|
|
1455
|
+
ngAfterViewChecked(): void;
|
|
1452
1456
|
getValueOrObject(element: any): string;
|
|
1457
|
+
private syncDisabledState;
|
|
1453
1458
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FoehnRadioComponent, never>;
|
|
1454
1459
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FoehnRadioComponent, "foehn-radio", never, {}, {}, never, ["*"], true, never>;
|
|
1455
1460
|
}
|
|
Binary file
|