@cqa-lib/cqa-ui 1.0.33 → 1.0.34
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/esm2020/lib/dashboards/failed-test-cases-card/failed-test-cases-card.component.mjs +10 -6
- package/fesm2015/cqa-lib-cqa-ui.mjs +9 -5
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +9 -5
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/dashboards/failed-test-cases-card/failed-test-cases-card.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -3,6 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class FailedTestCasesCardComponent {
|
|
4
4
|
/** E.g., "C-62: Upload Content" */
|
|
5
5
|
title: string;
|
|
6
|
+
/** Full title text to copy (if different from displayed title) */
|
|
7
|
+
fullTitle?: string;
|
|
6
8
|
/** Number of failures to display in the pill */
|
|
7
9
|
failures: number;
|
|
8
10
|
/** Pill label (e.g., "failures") */
|
|
@@ -32,5 +34,5 @@ export declare class FailedTestCasesCardComponent {
|
|
|
32
34
|
onCopyTitle(event: Event): void;
|
|
33
35
|
private fallbackCopyToClipboard;
|
|
34
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<FailedTestCasesCardComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FailedTestCasesCardComponent, "cqa-failed-test-cases-card", never, { "title": "title"; "failures": "failures"; "failuresLabel": "failuresLabel"; "pillClass": "pillClass"; "rootCause": "rootCause"; "rootCauseLabel": "rootCauseLabel"; "showRootCause": "showRootCause"; "lastFailed": "lastFailed"; "lastFailedLabel": "lastFailedLabel"; "cardClass": "cardClass"; "leftAccentClass": "leftAccentClass"; "tags": "tags"; }, { "cardClick": "cardClick"; }, never, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FailedTestCasesCardComponent, "cqa-failed-test-cases-card", never, { "title": "title"; "fullTitle": "fullTitle"; "failures": "failures"; "failuresLabel": "failuresLabel"; "pillClass": "pillClass"; "rootCause": "rootCause"; "rootCauseLabel": "rootCauseLabel"; "showRootCause": "showRootCause"; "lastFailed": "lastFailed"; "lastFailedLabel": "lastFailedLabel"; "cardClass": "cardClass"; "leftAccentClass": "leftAccentClass"; "tags": "tags"; }, { "cardClick": "cardClick"; }, never, never>;
|
|
36
38
|
}
|