ets-fe-ng-sdk 20.3.15 → 20.3.16
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/index.d.ts
CHANGED
|
@@ -3211,7 +3211,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
|
|
|
3211
3211
|
* @returns Array containing value, validators, and async validators
|
|
3212
3212
|
* @template T - Type of the form control value
|
|
3213
3213
|
*/
|
|
3214
|
-
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (
|
|
3214
|
+
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | ValidatorFn[] | AsyncValidatorFn[] | FormControlOptions | T)[];
|
|
3215
3215
|
/**
|
|
3216
3216
|
* Navigates back to the previous page using Angular's Location service
|
|
3217
3217
|
*/
|
|
@@ -7990,7 +7990,7 @@ declare class InfoDialogComponent implements OnInit {
|
|
|
7990
7990
|
* @param status Status code (0=danger, 1=success, 2=info, 3=warning)
|
|
7991
7991
|
* @returns CSS class name corresponding to the status
|
|
7992
7992
|
*/
|
|
7993
|
-
cls: (status?: 0 | 1 | 2 | 3) => "
|
|
7993
|
+
cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
|
|
7994
7994
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
7995
7995
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
7996
7996
|
}
|
|
@@ -8867,7 +8867,7 @@ declare class ResizeGridPipe implements PipeTransform {
|
|
|
8867
8867
|
*/
|
|
8868
8868
|
declare class IndexCompLayoutComponent {
|
|
8869
8869
|
/** Number of columns in the grid layout */
|
|
8870
|
-
readonly grid: InputSignal<
|
|
8870
|
+
readonly grid: InputSignal<1 | 5 | 3 | 2 | 4 | 6 | "auto">;
|
|
8871
8871
|
/** Whether to show the action buttons */
|
|
8872
8872
|
readonly showButtons: InputSignal<boolean>;
|
|
8873
8873
|
/** Whether to hide the clone button */
|
|
@@ -9667,8 +9667,8 @@ declare class PhoneNumberComponent extends InputBasicComponent {
|
|
|
9667
9667
|
getExtension(number: string, iso2: string | undefined): string;
|
|
9668
9668
|
getNumberType(number: string, iso2: string | undefined): number;
|
|
9669
9669
|
getValidationError(number: string, iso2: string | undefined): number;
|
|
9670
|
-
isPossibleNumber(number: string, iso2: string | undefined, numberType?: ("
|
|
9671
|
-
isValidNumber(number: string, iso2: string | undefined, numberType?: ("
|
|
9670
|
+
isPossibleNumber(number: string, iso2: string | undefined, numberType?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
|
|
9671
|
+
isValidNumber(number: string, iso2: string | undefined, numberType?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP")[] | null): boolean;
|
|
9672
9672
|
numberFormat: {
|
|
9673
9673
|
NATIONAL: number;
|
|
9674
9674
|
INTERNATIONAL: number;
|
|
@@ -9679,12 +9679,12 @@ declare class PhoneNumberComponent extends InputBasicComponent {
|
|
|
9679
9679
|
};
|
|
9680
9680
|
}>;
|
|
9681
9681
|
nationalMode?: boolean;
|
|
9682
|
-
placeholderNumberType?: "
|
|
9682
|
+
placeholderNumberType?: "FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP";
|
|
9683
9683
|
showFlags?: boolean;
|
|
9684
9684
|
separateDialCode?: boolean;
|
|
9685
9685
|
strictMode?: boolean;
|
|
9686
9686
|
useFullscreenPopup?: boolean;
|
|
9687
|
-
validationNumberTypes?: ("
|
|
9687
|
+
validationNumberTypes?: ("FIXED_LINE_OR_MOBILE" | "FIXED_LINE" | "MOBILE" | "PAGER" | "PERSONAL_NUMBER" | "PREMIUM_RATE" | "SHARED_COST" | "TOLL_FREE" | "UAN" | "UNKNOWN" | "VOICEMAIL" | "VOIP")[] | null;
|
|
9688
9688
|
}>;
|
|
9689
9689
|
/**
|
|
9690
9690
|
* Initializes the component by adding a custom validator to the form control.
|