@cqa-lib/cqa-ui 1.1.468 → 1.1.470
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/error-modal/error-modal.component.mjs +6 -3
- package/esm2020/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.mjs +32 -21
- package/fesm2015/cqa-lib-cqa-ui.mjs +37 -23
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +36 -22
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/error-modal/error-modal.component.d.ts +2 -1
- package/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export interface ErrorModalButton {
|
|
|
13
13
|
}
|
|
14
14
|
export declare class ErrorModalComponent {
|
|
15
15
|
isOpen: boolean;
|
|
16
|
+
status: 'error' | 'success';
|
|
16
17
|
title: string;
|
|
17
18
|
instructionalMessage?: string;
|
|
18
19
|
errorMessage: string;
|
|
@@ -37,5 +38,5 @@ export declare class ErrorModalComponent {
|
|
|
37
38
|
getNonTextButtons(): ErrorModalButton[];
|
|
38
39
|
getTextButtons(): ErrorModalButton[];
|
|
39
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorModalComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorModalComponent, "cqa-error-modal", never, { "isOpen": "isOpen"; "title": "title"; "instructionalMessage": "instructionalMessage"; "errorMessage": "errorMessage"; "totalSteps": "totalSteps"; "completedSteps": "completedSteps"; "totalTime": "totalTime"; "appTime": "appTime"; "toolTime": "toolTime"; "buttons": "buttons"; "showLoading": "showLoading"; "loadingBadgeInlineStyles": "loadingBadgeInlineStyles"; }, { "buttonClick": "buttonClick"; "closeModal": "closeModal"; }, never, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorModalComponent, "cqa-error-modal", never, { "isOpen": "isOpen"; "status": "status"; "title": "title"; "instructionalMessage": "instructionalMessage"; "errorMessage": "errorMessage"; "totalSteps": "totalSteps"; "completedSteps": "completedSteps"; "totalTime": "totalTime"; "appTime": "appTime"; "toolTime": "toolTime"; "buttons": "buttons"; "showLoading": "showLoading"; "loadingBadgeInlineStyles": "loadingBadgeInlineStyles"; }, { "buttonClick": "buttonClick"; "closeModal": "closeModal"; }, never, never>;
|
|
41
42
|
}
|
|
@@ -126,6 +126,7 @@ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
|
126
126
|
extensionUseEnabled: boolean;
|
|
127
127
|
dataDrivenEnabled: boolean;
|
|
128
128
|
readonly frequentlyUsedLabels: string[];
|
|
129
|
+
private _initialFormSnapshot;
|
|
129
130
|
/** FormGroup for cqa-dynamic-select bindings */
|
|
130
131
|
editForm: FormGroup;
|
|
131
132
|
get statusItem(): TestCaseDetailsMetadataItem | undefined;
|
|
@@ -193,6 +194,8 @@ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
|
193
194
|
private normalizeTestDataSetRawValue;
|
|
194
195
|
get hasPrerequisiteCaseConfig(): boolean;
|
|
195
196
|
ngOnInit(): void;
|
|
197
|
+
get hasUnsavedChanges(): boolean;
|
|
198
|
+
private buildSavePayload;
|
|
196
199
|
private resolveToOptionValue;
|
|
197
200
|
private normalizeBooleanSelectValue;
|
|
198
201
|
ngOnChanges(changes: SimpleChanges): void;
|