ets-fe-ng-sdk 20.3.14 → 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/fesm2022/ets-fe-ng-sdk.mjs +24 -19
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +10 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1361,7 +1361,7 @@ interface IConfigImages {
|
|
|
1361
1361
|
light: string;
|
|
1362
1362
|
};
|
|
1363
1363
|
/** Path to watermark image used for document overlays */
|
|
1364
|
-
watermark
|
|
1364
|
+
watermark?: string;
|
|
1365
1365
|
/** Logo image paths for different themes */
|
|
1366
1366
|
logo: {
|
|
1367
1367
|
/** Dark theme logo path */
|
|
@@ -1370,14 +1370,14 @@ interface IConfigImages {
|
|
|
1370
1370
|
light: string;
|
|
1371
1371
|
};
|
|
1372
1372
|
/** Profile picture configuration */
|
|
1373
|
-
pp
|
|
1373
|
+
pp?: {
|
|
1374
1374
|
/** Source path for full-size profile pictures */
|
|
1375
1375
|
src: string;
|
|
1376
1376
|
/** Path for minimized/thumbnail profile pictures */
|
|
1377
1377
|
min: string;
|
|
1378
1378
|
};
|
|
1379
1379
|
/** Other image configuration */
|
|
1380
|
-
other
|
|
1380
|
+
other?: {
|
|
1381
1381
|
/** Source path for full-size images */
|
|
1382
1382
|
src: string;
|
|
1383
1383
|
/** Path for minimized/thumbnail images */
|
|
@@ -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.
|