@indice/ng-components 0.2.173-beta.10 → 0.2.173-beta.14
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/_styles.scss +17 -0
- package/esm2020/lib/controls/content-tile/content-tile.component.mjs +7 -6
- package/esm2020/lib/controls/progress-bar/progress-bar.component.mjs +9 -3
- package/esm2020/lib/controls/stats-grid/stats-grid.component.mjs +3 -3
- package/fesm2015/indice-ng-components.mjs +16 -9
- package/fesm2015/indice-ng-components.mjs.map +1 -1
- package/fesm2020/indice-ng-components.mjs +16 -9
- package/fesm2020/indice-ng-components.mjs.map +1 -1
- package/lib/controls/content-tile/content-tile.component.d.ts +2 -2
- package/lib/controls/progress-bar/progress-bar.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ export declare class ContentTileComponent implements OnInit {
|
|
|
7
7
|
private router;
|
|
8
8
|
title: string | undefined;
|
|
9
9
|
busy: boolean;
|
|
10
|
-
|
|
10
|
+
showAction: boolean | undefined;
|
|
11
11
|
showFooter: boolean | undefined;
|
|
12
12
|
actionText: string;
|
|
13
13
|
tileAction: EventEmitter<any>;
|
|
@@ -19,5 +19,5 @@ export declare class ContentTileComponent implements OnInit {
|
|
|
19
19
|
ngOnInit(): void;
|
|
20
20
|
emitTileAction($event: any): boolean;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileComponent, "lib-content-tile", never, { "title": "title"; "busy": "busy"; "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileComponent, "lib-content-tile", never, { "title": "title"; "busy": "busy"; "showAction": "show-action"; "showFooter": "show-footer"; "actionText": "action-text"; }, { "tileAction": "tile-action"; }, ["header", "items"], never, false>;
|
|
23
23
|
}
|
|
@@ -2,12 +2,14 @@ import { OnChanges, SimpleChanges } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ProgressBarComponent implements OnChanges {
|
|
4
4
|
value: number;
|
|
5
|
+
valueText: string | undefined;
|
|
5
6
|
total: number;
|
|
7
|
+
totalText: string | undefined;
|
|
6
8
|
text: string | undefined;
|
|
7
9
|
percentage: number;
|
|
8
10
|
constructor();
|
|
9
11
|
ngOnChanges(changes: SimpleChanges): void;
|
|
10
12
|
private calcPercentage;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": "value"; "total": "total"; "text": "text"; }, {}, never, never, false>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": "value"; "valueText": "value-text"; "total": "total"; "totalText": "total-text"; "text": "text"; }, {}, never, never, false>;
|
|
13
15
|
}
|