ets-fe-ng-sdk 19.0.115 → 19.0.116
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/assets/scss/styles.scss +6 -0
- package/fesm2022/ets-fe-ng-sdk.mjs +4 -3
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/service-worker/prompt-update.service.d.ts +1 -0
- package/lib/Shared/components/btn/btn.component.d.ts +1 -1
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/table/table.pipe.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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<"reset" | "button" | "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 */
|
|
@@ -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<"auto" |
|
|
41
|
+
readonly grid: InputSignal<2 | "auto" | 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 */
|
|
@@ -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):
|
|
17
|
+
transform(row: any, col: TableCol): import("rxjs").Observable<any> | Promise<string>;
|
|
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):
|
|
32
|
+
transform(row: any, col: TableCol): import("rxjs").Observable<any> | Promise<string>;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<GetColFormattedEPipe, never>;
|
|
34
34
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetColFormattedEPipe, "getColFormattedE", true>;
|
|
35
35
|
}
|