@cqa-lib/cqa-ui 1.1.492 → 1.1.494
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/mixed-variable-input/mixed-variable-input.component.mjs +372 -98
- package/esm2020/lib/step-builder/template-variables-form/template-variables-form.component.mjs +31 -3
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +7 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +7 -3
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +7 -3
- package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +7 -3
- package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +8 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +441 -110
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +435 -112
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/mixed-variable-input/mixed-variable-input.component.d.ts +30 -3
- package/lib/step-builder/template-variables-form/template-variables-form.component.d.ts +7 -0
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +3 -1
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +3 -1
- package/lib/test-case-details/normal-step/normal-step.component.d.ts +3 -1
- package/lib/test-case-details/step-group/step-group.component.d.ts +3 -1
- package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts +3 -1
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -4,6 +4,10 @@ export interface MixedSegment {
|
|
|
4
4
|
type: 'text' | 'variable';
|
|
5
5
|
value: string;
|
|
6
6
|
}
|
|
7
|
+
export interface MixedVariableValidity {
|
|
8
|
+
valid: boolean;
|
|
9
|
+
error: string | null;
|
|
10
|
+
}
|
|
7
11
|
export declare class MixedVariableInputComponent implements OnChanges, AfterViewInit {
|
|
8
12
|
private cdr;
|
|
9
13
|
private hostRef;
|
|
@@ -11,31 +15,54 @@ export declare class MixedVariableInputComponent implements OnChanges, AfterView
|
|
|
11
15
|
placeholder: string;
|
|
12
16
|
disabled: boolean;
|
|
13
17
|
valueChange: EventEmitter<string>;
|
|
18
|
+
validityChange: EventEmitter<MixedVariableValidity>;
|
|
14
19
|
editorRef: ElementRef<HTMLDivElement>;
|
|
15
20
|
showSuggestion: boolean;
|
|
16
21
|
pendingWord: string;
|
|
22
|
+
canAddAsVariable: boolean;
|
|
23
|
+
errorMessage: string | null;
|
|
24
|
+
private selectionRange;
|
|
25
|
+
private selectionMode;
|
|
17
26
|
private lastEmitted;
|
|
27
|
+
private lastValid;
|
|
18
28
|
constructor(cdr: ChangeDetectorRef, hostRef: ElementRef<HTMLElement>);
|
|
19
|
-
onDocumentMouseDown(event: MouseEvent): void;
|
|
20
29
|
ngOnChanges(changes: SimpleChanges): void;
|
|
21
30
|
ngAfterViewInit(): void;
|
|
22
31
|
onInput(): void;
|
|
23
|
-
|
|
32
|
+
onEditorFocus(): void;
|
|
24
33
|
onEditorBlur(): void;
|
|
34
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
35
|
+
onPaste(event: ClipboardEvent): void;
|
|
36
|
+
onDrop(event: DragEvent): void;
|
|
37
|
+
onDragStart(event: DragEvent): void;
|
|
38
|
+
onDocumentMouseDown(event: MouseEvent): void;
|
|
39
|
+
onDocumentSelectionChange(): void;
|
|
25
40
|
addAsText(): void;
|
|
26
41
|
addAsVariable(): void;
|
|
42
|
+
private emitValue;
|
|
43
|
+
private validate;
|
|
44
|
+
private findValidationError;
|
|
27
45
|
private refreshSuggestion;
|
|
28
46
|
private hideSuggestion;
|
|
47
|
+
private normalizeCandidate;
|
|
48
|
+
private flattenStructure;
|
|
49
|
+
private sanitizeChips;
|
|
29
50
|
private autoChipify;
|
|
51
|
+
private collectDescendantTextNodes;
|
|
30
52
|
private render;
|
|
31
53
|
private serialize;
|
|
32
54
|
private buildChip;
|
|
33
55
|
private getSelectionRange;
|
|
56
|
+
private getSelectedInfo;
|
|
57
|
+
private rangeCrossesChip;
|
|
34
58
|
private getNodeBeforeCaret;
|
|
35
59
|
private getCurrentWord;
|
|
60
|
+
private insertChipReplacingRange;
|
|
36
61
|
private insertChipReplacingCurrentWord;
|
|
62
|
+
private stripBracesAround;
|
|
63
|
+
private insertPlainTextAtCaret;
|
|
37
64
|
private placeCaretAfter;
|
|
38
65
|
private placeCaretAtEnd;
|
|
39
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<MixedVariableInputComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MixedVariableInputComponent, "cqa-mixed-variable-input", never, { "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MixedVariableInputComponent, "cqa-mixed-variable-input", never, { "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; }, { "valueChange": "valueChange"; "validityChange": "validityChange"; }, never, never>;
|
|
41
68
|
}
|
|
@@ -173,6 +173,13 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
|
173
173
|
key: string;
|
|
174
174
|
query: string;
|
|
175
175
|
}): void;
|
|
176
|
+
private readonly variableSyntaxErrors;
|
|
177
|
+
private readonly controlsWithSyntaxValidator;
|
|
178
|
+
private makeSyntaxValidator;
|
|
179
|
+
onTestDataValidityChange(variableName: string, event: {
|
|
180
|
+
valid: boolean;
|
|
181
|
+
error: string | null;
|
|
182
|
+
}): void;
|
|
176
183
|
onTestDataValueChange(variableName: string, rawValue: string): void;
|
|
177
184
|
/**
|
|
178
185
|
* Get unique test data profiles from parameter options (raw TestData objects)
|
|
@@ -23,6 +23,8 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
23
23
|
testCaseTestDataId?: number | string;
|
|
24
24
|
isInsideStepGroup: boolean;
|
|
25
25
|
isReorder: boolean;
|
|
26
|
+
/** True when any ancestor step is skipped; used to cascade skipped styling to nested rows. */
|
|
27
|
+
isParentSkipped: boolean;
|
|
26
28
|
editable: boolean;
|
|
27
29
|
/** Visual indentation level for nested structures (passed down from renderer). */
|
|
28
30
|
nestingLevel: number;
|
|
@@ -354,5 +356,5 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
354
356
|
/** Get select config for a template variable */
|
|
355
357
|
getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
|
|
356
358
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
|
|
357
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "testCaseTestDataId": "testCaseTestDataId"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "addStepForLoop": "addStepForLoop"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "edit": "edit"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "openExternal": "openExternal"; }, never, never>;
|
|
359
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "testCaseTestDataId": "testCaseTestDataId"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "isParentSkipped": "isParentSkipped"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "addStepForLoop": "addStepForLoop"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "edit": "edit"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "openExternal": "openExternal"; }, never, never>;
|
|
358
360
|
}
|
|
@@ -31,6 +31,8 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
31
31
|
isInsideForLoop: boolean;
|
|
32
32
|
isInsideStepGroup: boolean;
|
|
33
33
|
isReorder: boolean;
|
|
34
|
+
/** True when any ancestor step is skipped; used to cascade skipped styling to nested rows. */
|
|
35
|
+
isParentSkipped: boolean;
|
|
34
36
|
selected: boolean;
|
|
35
37
|
isDuplicating: boolean;
|
|
36
38
|
/** Options for the data profile dropdown - accepts DataProfileOption objects */
|
|
@@ -322,5 +324,5 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
322
324
|
onMoreOptions(): void;
|
|
323
325
|
onViewDetails(event?: MouseEvent): void;
|
|
324
326
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseLoopStepComponent, never>;
|
|
325
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "isDuplicating": "isDuplicating"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "testCaseTestDataId": "testCaseTestDataId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "nestingLevel": "nestingLevel"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; "addStepForBranch": "addStepForBranch"; "deleteStepWithBranch": "deleteStepWithBranch"; "openExternal": "openExternal"; }, never, never>;
|
|
327
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "isParentSkipped": "isParentSkipped"; "selected": "selected"; "isDuplicating": "isDuplicating"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "testCaseTestDataId": "testCaseTestDataId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "nestingLevel": "nestingLevel"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; "addStepForBranch": "addStepForBranch"; "deleteStepWithBranch": "deleteStepWithBranch"; "openExternal": "openExternal"; }, never, never>;
|
|
326
328
|
}
|
|
@@ -33,6 +33,8 @@ export declare class TestCaseNormalStepComponent implements OnInit {
|
|
|
33
33
|
isInsideLoop: boolean;
|
|
34
34
|
isInsideStepGroup: boolean;
|
|
35
35
|
isReorder: boolean;
|
|
36
|
+
/** True when any ancestor step is skipped; used to cascade skipped styling to nested rows. */
|
|
37
|
+
isParentSkipped: boolean;
|
|
36
38
|
editable: boolean;
|
|
37
39
|
stepIndex?: number;
|
|
38
40
|
isDuplicating: boolean;
|
|
@@ -103,5 +105,5 @@ export declare class TestCaseNormalStepComponent implements OnInit {
|
|
|
103
105
|
onDocumentClick(event: MouseEvent): void;
|
|
104
106
|
clickOnAction(event: MouseEvent): void;
|
|
105
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseNormalStepComponent, never>;
|
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseNormalStepComponent, "cqa-test-case-normal-step", never, { "config": "config"; "stepNumber": "stepNumber"; "index": "index"; "action": "action"; "eventType": "eventType"; "parameters": "parameters"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "stepIndex": "stepIndex"; "isDuplicating": "isDuplicating"; "nestingLevel": "nestingLevel"; }, { "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "clickAction": "clickAction"; "stepUpdate": "stepUpdate"; }, never, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseNormalStepComponent, "cqa-test-case-normal-step", never, { "config": "config"; "stepNumber": "stepNumber"; "index": "index"; "action": "action"; "eventType": "eventType"; "parameters": "parameters"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "isParentSkipped": "isParentSkipped"; "editable": "editable"; "stepIndex": "stepIndex"; "isDuplicating": "isDuplicating"; "nestingLevel": "nestingLevel"; }, { "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "clickAction": "clickAction"; "stepUpdate": "stepUpdate"; }, never, never>;
|
|
107
109
|
}
|
|
@@ -21,6 +21,8 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
21
21
|
testCaseTestDataId?: number | string;
|
|
22
22
|
isInsideStepGroup: boolean;
|
|
23
23
|
isReorder: boolean;
|
|
24
|
+
/** True when any ancestor step is skipped; used to cascade skipped styling to nested rows. */
|
|
25
|
+
isParentSkipped: boolean;
|
|
24
26
|
editable: boolean;
|
|
25
27
|
/** Visual indentation level for nested structures (passed down from renderer). */
|
|
26
28
|
nestingLevel: number;
|
|
@@ -159,5 +161,5 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
159
161
|
onNestedConditionAddBranch(nestedStep: ConditionStepConfig, index: number): void;
|
|
160
162
|
onNestedConditionDeleteBranch(nestedStep: ConditionStepConfig, branch: any, index: number): void;
|
|
161
163
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseStepGroupComponent, never>;
|
|
162
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "testCaseTestDataId": "testCaseTestDataId"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "isDuplicating": "isDuplicating"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "addStepForLoop": "addStepForLoop"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; }, never, never>;
|
|
164
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "testCaseTestDataId": "testCaseTestDataId"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "isParentSkipped": "isParentSkipped"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "isDuplicating": "isDuplicating"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "addStepForLoop": "addStepForLoop"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; }, never, never>;
|
|
163
165
|
}
|
package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
20
20
|
branch?: ConditionBranch;
|
|
21
21
|
/** When true, enables drag-and-drop reordering and shows drag handle icon instead of checkbox */
|
|
22
22
|
isReorder: boolean;
|
|
23
|
+
/** True when any ancestor step is skipped; used to cascade skipped styling to nested rows. */
|
|
24
|
+
isParentSkipped: boolean;
|
|
23
25
|
/** Current selection state; when changed (e.g. from Select all), the created step component is updated so the checkbox reflects it */
|
|
24
26
|
selected?: boolean;
|
|
25
27
|
/** Global duplicate-in-progress state used to disable duplicate actions and show loading feedback. */
|
|
@@ -143,5 +145,5 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
143
145
|
private wireOutputs;
|
|
144
146
|
ngOnDestroy(): void;
|
|
145
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsRendererComponent, never>;
|
|
146
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "isInsideStepGroup": "isInsideStepGroup"; "nestingLevel": "nestingLevel"; "branch": "branch"; "isReorder": "isReorder"; "selected": "selected"; "isDuplicating": "isDuplicating"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "currentTestCaseId": "currentTestCaseId"; "testCaseTestDataId": "testCaseTestDataId"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStepForBranch": "addStepForBranch"; "addStepForLoop": "addStepForLoop"; "deleteStepWithBranch": "deleteStepWithBranch"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "maxIterationsChange": "maxIterationsChange"; "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "clickAction": "clickAction"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "editInDepth": "editInDepth"; }, never, never>;
|
|
148
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "isInsideStepGroup": "isInsideStepGroup"; "nestingLevel": "nestingLevel"; "branch": "branch"; "isReorder": "isReorder"; "isParentSkipped": "isParentSkipped"; "selected": "selected"; "isDuplicating": "isDuplicating"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "currentTestCaseId": "currentTestCaseId"; "testCaseTestDataId": "testCaseTestDataId"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStepForBranch": "addStepForBranch"; "addStepForLoop": "addStepForLoop"; "deleteStepWithBranch": "deleteStepWithBranch"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "maxIterationsChange": "maxIterationsChange"; "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "clickAction": "clickAction"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "editInDepth": "editInDepth"; }, never, never>;
|
|
147
149
|
}
|