@cqa-lib/cqa-ui 1.1.546 → 1.1.547
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/test-case-details/ai-agent-step/ai-agent-step.component.mjs +8 -3
- package/esm2020/lib/test-case-details/ai-verify-step/ai-verify-step.component.mjs +13 -18
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +9 -6
- package/fesm2015/cqa-lib-cqa-ui.mjs +24 -21
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +24 -21
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/ai-agent-step/ai-agent-step.component.d.ts +2 -0
- package/lib/test-case-details/ai-verify-step/ai-verify-step.component.d.ts +3 -7
- package/package.json +1 -1
|
@@ -39,6 +39,8 @@ export declare class TestCaseAiAgentStepComponent implements OnInit {
|
|
|
39
39
|
onMoreOptions(): void;
|
|
40
40
|
onViewDetails(event?: MouseEvent): void;
|
|
41
41
|
onSelectionChange(checked: boolean): void;
|
|
42
|
+
/** Strips the leading "AI Agent" prefix because it is rendered as a separate label span. */
|
|
43
|
+
get displayInstructions(): string;
|
|
42
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiAgentStepComponent, never>;
|
|
43
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiAgentStepComponent, "cqa-test-case-ai-agent-step", never, { "config": "config"; "stepNumber": "stepNumber"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "nestingLevel": "nestingLevel"; "isReorder": "isReorder"; "editable": "editable"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "stepUpdate": "stepUpdate"; }, never, never>;
|
|
44
46
|
}
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, ElementRef } from '@angular/core';
|
|
2
|
-
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
3
2
|
import { AiVerifyStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
4
3
|
import { ViewDetailsPayload } from '../step-details-modal/step-details-modal-data';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class TestCaseAiVerifyStepComponent implements OnInit {
|
|
7
|
-
private readonly sanitizer;
|
|
8
6
|
config: AiVerifyStepConfig;
|
|
9
7
|
stepNumber: number | string;
|
|
10
8
|
index?: number;
|
|
@@ -32,7 +30,7 @@ export declare class TestCaseAiVerifyStepComponent implements OnInit {
|
|
|
32
30
|
viewDetails: EventEmitter<ViewDetailsPayload>;
|
|
33
31
|
selectionChange: EventEmitter<boolean>;
|
|
34
32
|
stepUpdate: EventEmitter<TestCaseStepConfig>;
|
|
35
|
-
constructor(
|
|
33
|
+
constructor();
|
|
36
34
|
/** Matches NormalStepComponent padding logic (px-4 = 16px + 24px per nesting level). */
|
|
37
35
|
getRowPaddingLeftPx(): number;
|
|
38
36
|
ngOnInit(): void;
|
|
@@ -44,10 +42,8 @@ export declare class TestCaseAiVerifyStepComponent implements OnInit {
|
|
|
44
42
|
onMoreOptions(): void;
|
|
45
43
|
onViewDetails(event?: MouseEvent): void;
|
|
46
44
|
onSelectionChange(checked: boolean): void;
|
|
47
|
-
/**
|
|
48
|
-
|
|
49
|
-
*/
|
|
50
|
-
getSanitizedInstructions(): SafeHtml;
|
|
45
|
+
/** Strips the leading "AI Verification" / "AI Verify" prefix because it is rendered as a separate label span. */
|
|
46
|
+
get displayInstructions(): string;
|
|
51
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiVerifyStepComponent, never>;
|
|
52
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiVerifyStepComponent, "cqa-test-case-ai-verify-step", never, { "config": "config"; "stepNumber": "stepNumber"; "index": "index"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "stepUpdate": "stepUpdate"; }, never, never>;
|
|
53
49
|
}
|