intelica-library-ui 0.1.111 → 0.1.113
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.
|
@@ -2,6 +2,8 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class SkeletonComponent {
|
|
3
3
|
private readonly skeletonService;
|
|
4
4
|
isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
5
|
+
localLoading: boolean;
|
|
6
|
+
show: boolean;
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "intelica-skeleton", never, {}, {}, never, ["*"], true, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "intelica-skeleton", never, { "localLoading": { "alias": "localLoading"; "required": false; }; "show": { "alias": "show"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
7
9
|
}
|
|
@@ -11,6 +11,7 @@ export declare class HtmlToExcelService {
|
|
|
11
11
|
ExportToExcelRawData({ excelName, reportTitle, filterTitle, rowsSerializate, columns, filters, orderColumn }: ExportExcelCommand): Promise<void>;
|
|
12
12
|
ExportToCSVRaw(excelName: string, rowsSerializate: string): Promise<void>;
|
|
13
13
|
private GetExcelColumnLetter;
|
|
14
|
+
private GetNumberFormat;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlToExcelService, never>;
|
|
15
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<HtmlToExcelService>;
|
|
16
17
|
}
|
|
@@ -33,6 +34,7 @@ export interface IExcelColumnName {
|
|
|
33
34
|
alignHorizontal?: string;
|
|
34
35
|
width?: number;
|
|
35
36
|
totalRowValue?: string;
|
|
37
|
+
formatNumber?: "integer" | "decimal" | "percent_2" | "percent_4";
|
|
36
38
|
}
|
|
37
39
|
export interface IFilter {
|
|
38
40
|
key: string;
|