ets-fe-ng-sdk 20.3.2 → 20.3.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/fesm2022/ets-fe-ng-sdk.mjs +21 -26
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +9 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2193,9 +2193,11 @@ declare namespace EVFunctions {
|
|
|
2193
2193
|
* ```
|
|
2194
2194
|
* @returns
|
|
2195
2195
|
*/
|
|
2196
|
-
function extendRoute2(route: Route, indexPage?: {
|
|
2196
|
+
function extendRoute2(route: Route, indexPage?: Route & {
|
|
2197
2197
|
component?: Type<any>;
|
|
2198
|
+
/**@deprecated */
|
|
2198
2199
|
lazyComponent?: () => Type<unknown> | Observable<Type<unknown> | DefaultExport<Type<unknown>>> | Promise<Type<unknown> | DefaultExport<Type<unknown>>>;
|
|
2200
|
+
/**@deprecated */
|
|
2199
2201
|
lazyModule?: LoadChildrenCallback;
|
|
2200
2202
|
redirectToIndex?: boolean;
|
|
2201
2203
|
title?: string;
|
|
@@ -3108,7 +3110,7 @@ declare class NumberFormatService {
|
|
|
3108
3110
|
readonly numberFormat: _angular_core.WritableSignal<"AM" | "EU">;
|
|
3109
3111
|
readonly isNormal: _angular_core.Signal<boolean>;
|
|
3110
3112
|
readonly locale: _angular_core.Signal<"en-US" | "fr-FR">;
|
|
3111
|
-
readonly decimal: _angular_core.Signal<"
|
|
3113
|
+
readonly decimal: _angular_core.Signal<"," | ".">;
|
|
3112
3114
|
constructor();
|
|
3113
3115
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NumberFormatService, never>;
|
|
3114
3116
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NumberFormatService>;
|
|
@@ -3204,7 +3206,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
|
|
|
3204
3206
|
* @returns Array containing value, validators, and async validators
|
|
3205
3207
|
* @template T - Type of the form control value
|
|
3206
3208
|
*/
|
|
3207
|
-
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn |
|
|
3209
|
+
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (T | ValidatorFn | FormControlOptions | ValidatorFn[] | AsyncValidatorFn | AsyncValidatorFn[])[];
|
|
3208
3210
|
/**
|
|
3209
3211
|
* Navigates back to the previous page using Angular's Location service
|
|
3210
3212
|
*/
|
|
@@ -5653,7 +5655,7 @@ declare class BtnComponent implements OnInit {
|
|
|
5653
5655
|
/** CSS class for the button */
|
|
5654
5656
|
readonly _mclass: _angular_core.WritableSignal<string>;
|
|
5655
5657
|
/** HTML button type (submit, button, reset) */
|
|
5656
|
-
readonly actionType: _angular_core.InputSignal<"submit" | "
|
|
5658
|
+
readonly actionType: _angular_core.InputSignal<"submit" | "button" | "reset">;
|
|
5657
5659
|
/** Enables animation effect on the button */
|
|
5658
5660
|
readonly animate: _angular_core.InputSignal<boolean>;
|
|
5659
5661
|
/** Excludes this button from logging when true */
|
|
@@ -5670,13 +5672,13 @@ declare class BtnComponent implements OnInit {
|
|
|
5670
5672
|
*/
|
|
5671
5673
|
set customIcon(v: string);
|
|
5672
5674
|
/** Form to bind to the button for validation */
|
|
5673
|
-
readonly form: _angular_core.InputSignal<AbstractControl<any, any, any> |
|
|
5675
|
+
readonly form: _angular_core.InputSignal<AbstractControl<any, any, any> | FormControl<any> | FormArray<any> | FormGroup<any>>;
|
|
5674
5676
|
/** Subject for form changes */
|
|
5675
5677
|
protected readonly formStateRes: _angular_core.ResourceRef<boolean>;
|
|
5676
5678
|
/** Signal for form validity state */
|
|
5677
5679
|
protected readonly formState: _angular_core.Signal<boolean>;
|
|
5678
5680
|
/** Multiple forms to bind to the button for validation */
|
|
5679
|
-
readonly forms: _angular_core.InputSignal<(AbstractControl<any, any, any> |
|
|
5681
|
+
readonly forms: _angular_core.InputSignal<(AbstractControl<any, any, any> | FormControl<any> | FormArray<any> | FormGroup<any>)[]>;
|
|
5680
5682
|
/** Signal for multiple forms validity state */
|
|
5681
5683
|
protected readonly formsStateRes: _angular_core.ResourceRef<Omit<IFormState, "status">>;
|
|
5682
5684
|
protected readonly formsState: _angular_core.Signal<boolean>;
|
|
@@ -8853,7 +8855,7 @@ declare class ResizeGridPipe implements PipeTransform {
|
|
|
8853
8855
|
*/
|
|
8854
8856
|
declare class IndexCompLayoutComponent {
|
|
8855
8857
|
/** Number of columns in the grid layout */
|
|
8856
|
-
readonly grid: InputSignal<
|
|
8858
|
+
readonly grid: InputSignal<5 | 3 | 1 | 2 | 4 | 6 | "auto">;
|
|
8857
8859
|
/** Whether to show the action buttons */
|
|
8858
8860
|
readonly showButtons: InputSignal<boolean>;
|
|
8859
8861
|
/** Whether to hide the clone button */
|