ets-fe-ng-sdk 18.0.20 → 18.0.21
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/esm2022/lib/Shared/components/loader/loader.component.mjs +1 -1
- package/esm2022/lib/Shared/components/toggle-input-form/toggle-input-form.component.mjs +3 -2
- package/fesm2022/ets-fe-ng-sdk.mjs +2 -1
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/api.service.d.ts +1 -1
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/toggle-input-form/toggle-input-form.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -41,7 +41,7 @@ export declare class ApiService {
|
|
|
41
41
|
get: <T = any>(route: string, parameters?: {
|
|
42
42
|
[field: string]: string | number | boolean;
|
|
43
43
|
}, extras?: IExtras) => Observable<T>;
|
|
44
|
-
getCodes: <T extends ICodeTitle<string>
|
|
44
|
+
getCodes: <T extends ICodeDescription | ICodeTitle<string> = ICodeTitle<string> & ICodeDescription>(route: string) => Observable<T[]>;
|
|
45
45
|
getText: <T = string>(route: string, parameters?: {
|
|
46
46
|
[field: string]: string | number | boolean;
|
|
47
47
|
}, extras?: IExtras) => Observable<T>;
|
|
@@ -18,7 +18,7 @@ export declare class ResizeGridPipe implements PipeTransform {
|
|
|
18
18
|
static ɵpipe: i0.ɵɵPipeDeclaration<ResizeGridPipe, "resizeGrid", true>;
|
|
19
19
|
}
|
|
20
20
|
export declare class IndexCompLayoutComponent {
|
|
21
|
-
readonly grid: InputSignal<
|
|
21
|
+
readonly grid: InputSignal<3 | 4 | 1 | 6 | 2 | 5 | "auto">;
|
|
22
22
|
readonly showButtons: InputSignal<boolean>;
|
|
23
23
|
readonly hideClone: InputSignal<boolean>;
|
|
24
24
|
readonly hideShow: InputSignal<boolean>;
|
|
@@ -34,7 +34,7 @@ export declare class ToggleInputFormComponent<TOption> {
|
|
|
34
34
|
protected readonly lgGrid: import("@angular/core").Signal<number>;
|
|
35
35
|
protected readonly mdGrid: import("@angular/core").Signal<number>;
|
|
36
36
|
protected readonly defaultToggleAllEffect: import("@angular/core").EffectRef;
|
|
37
|
-
protected readonly columnLengths: import("@angular/core").
|
|
37
|
+
protected readonly columnLengths: import("@angular/core").Signal<{
|
|
38
38
|
label: string;
|
|
39
39
|
value: GridSize;
|
|
40
40
|
}[]>;
|