ets-fe-ng-sdk 19.0.98 → 19.0.99
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/lib/Services/number-format.service.d.ts +1 -1
- package/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/info-dialog/info-dialog.component.d.ts +1 -1
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/package.json +3 -3
|
@@ -3,7 +3,7 @@ export declare class NumberFormatService {
|
|
|
3
3
|
readonly numberFormat: import("@angular/core").WritableSignal<"AM" | "EU">;
|
|
4
4
|
readonly isNormal: import("@angular/core").Signal<boolean>;
|
|
5
5
|
readonly locale: import("@angular/core").Signal<"en-US" | "fr-FR">;
|
|
6
|
-
readonly decimal: import("@angular/core").Signal<"
|
|
6
|
+
readonly decimal: import("@angular/core").Signal<"." | ",">;
|
|
7
7
|
constructor();
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberFormatService, never>;
|
|
9
9
|
static ɵprov: i0.ɵɵInjectableDeclaration<NumberFormatService>;
|
|
@@ -117,7 +117,7 @@ export declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnv
|
|
|
117
117
|
* @returns Array containing value, validators, and async validators
|
|
118
118
|
* @template T - Type of the form control value
|
|
119
119
|
*/
|
|
120
|
-
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (
|
|
120
|
+
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | ValidatorFn[] | AsyncValidatorFn | AsyncValidatorFn[] | FormControlOptions | T)[];
|
|
121
121
|
/**
|
|
122
122
|
* Navigates back to the previous page using Angular's Location service
|
|
123
123
|
*/
|
|
@@ -94,7 +94,7 @@ export declare class BtnComponent implements OnInit {
|
|
|
94
94
|
/** CSS class for the button */
|
|
95
95
|
readonly _mclass: import("@angular/core").WritableSignal<string>;
|
|
96
96
|
/** HTML button type (submit, button, reset) */
|
|
97
|
-
readonly actionType: import("@angular/core").InputSignal<"
|
|
97
|
+
readonly actionType: import("@angular/core").InputSignal<"button" | "reset" | "submit">;
|
|
98
98
|
/** Enables animation effect on the button */
|
|
99
99
|
readonly animate: import("@angular/core").InputSignal<boolean>;
|
|
100
100
|
/** Excludes this button from logging when true */
|
|
@@ -111,13 +111,13 @@ export declare class BtnComponent implements OnInit {
|
|
|
111
111
|
*/
|
|
112
112
|
set customIcon(v: string);
|
|
113
113
|
/** Form to bind to the button for validation */
|
|
114
|
-
readonly form: import("@angular/core").InputSignal<
|
|
114
|
+
readonly form: import("@angular/core").InputSignal<FormGroup<any> | FormArray<any> | AbstractControl<any, any> | FormControl<any>>;
|
|
115
115
|
/** Subject for form changes */
|
|
116
116
|
protected readonly form$: ReplaySubject<AbstractControl<any, any>>;
|
|
117
117
|
/** Signal for form validity state */
|
|
118
118
|
protected readonly formState: import("@angular/core").Signal<boolean>;
|
|
119
119
|
/** Multiple forms to bind to the button for validation */
|
|
120
|
-
readonly forms: import("@angular/core").InputSignal<(
|
|
120
|
+
readonly forms: import("@angular/core").InputSignal<(FormGroup<any> | FormArray<any> | AbstractControl<any, any> | FormControl<any>)[]>;
|
|
121
121
|
/** Subject for forms changes */
|
|
122
122
|
protected readonly forms$: ReplaySubject<AbstractControl<any, any>[]>;
|
|
123
123
|
/** Signal for multiple forms validity state */
|
|
@@ -38,7 +38,7 @@ export declare class ResizeGridPipe implements PipeTransform {
|
|
|
38
38
|
*/
|
|
39
39
|
export declare class IndexCompLayoutComponent {
|
|
40
40
|
/** Number of columns in the grid layout */
|
|
41
|
-
readonly grid: InputSignal<
|
|
41
|
+
readonly grid: InputSignal<"auto" | 2 | 1 | 3 | 4 | 5 | 6>;
|
|
42
42
|
/** Whether to show the action buttons */
|
|
43
43
|
readonly showButtons: InputSignal<boolean>;
|
|
44
44
|
/** Whether to hide the clone button */
|
|
@@ -51,7 +51,7 @@ export declare class InfoDialogComponent implements OnInit {
|
|
|
51
51
|
* @param status Status code (0=danger, 1=success, 2=info, 3=warning)
|
|
52
52
|
* @returns CSS class name corresponding to the status
|
|
53
53
|
*/
|
|
54
|
-
cls: (status?: 0 | 1 | 2 | 3) => "" | "
|
|
54
|
+
cls: (status?: 0 | 1 | 2 | 3) => "" | "success" | "info" | "danger" | "warning";
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
56
56
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
57
57
|
}
|
|
@@ -14,7 +14,7 @@ export declare class GetColFormattedPipe implements PipeTransform {
|
|
|
14
14
|
* @param col - The column configuration
|
|
15
15
|
* @returns An observable containing the formatted value
|
|
16
16
|
*/
|
|
17
|
-
transform(row: any, col: TableCol): import("rxjs").Observable<any
|
|
17
|
+
transform(row: any, col: TableCol): Promise<string> | import("rxjs").Observable<any>;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedPipe, never>;
|
|
19
19
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedPipe, "getColFormatted", true>;
|
|
20
20
|
}
|
|
@@ -29,7 +29,7 @@ export declare class GetColFormattedEPipe implements PipeTransform {
|
|
|
29
29
|
* @param col - The column configuration
|
|
30
30
|
* @returns An observable containing the formatted value
|
|
31
31
|
*/
|
|
32
|
-
transform(row: any, col: TableCol): import("rxjs").Observable<any
|
|
32
|
+
transform(row: any, col: TableCol): Promise<string> | import("rxjs").Observable<any>;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
|
|
34
34
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ets-fe-ng-sdk",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.99",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
|
|
6
6
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"jquery": "^3.6.0",
|
|
31
31
|
"lodash-es": "^4.17.21",
|
|
32
32
|
"@serene-dev/ng-tel-input": "^19.0.0",
|
|
33
|
-
"@serene-dev/toast-notifications": "19.0.
|
|
33
|
+
"@serene-dev/toast-notifications": "19.0.1",
|
|
34
34
|
"perfect-scrollbar": "^1.5.5",
|
|
35
35
|
"zone.js": "~0.14.2"
|
|
36
36
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
|
53
53
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
|
54
54
|
"@serene-dev/ng-tel-input": "^19.0.0",
|
|
55
|
-
"@serene-dev/toast-notifications": "19.0.
|
|
55
|
+
"@serene-dev/toast-notifications": "19.0.1",
|
|
56
56
|
"crypto-js": "^4.2.0",
|
|
57
57
|
"file-saver": "^2.0.5",
|
|
58
58
|
"papaparse": "^5.4.1",
|