@cqa-lib/cqa-ui 1.1.266 → 1.1.268
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/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.mjs +31 -4
- package/esm2020/lib/step-builder/step-builder-group/step-builder-group.component.mjs +3 -3
- package/esm2020/lib/step-builder/template-variables-form/template-variables-form.component.mjs +9 -5
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +13 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +2 -1
- package/esm2020/lib/test-case-details/test-case-details.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +57 -15
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +57 -15
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.d.ts +9 -1
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +9 -1
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -21,6 +21,10 @@ export declare class StepBuilderAiAgentComponent implements OnInit, OnChanges {
|
|
|
21
21
|
typeOptions: SelectOption[];
|
|
22
22
|
/** Options for environments dropdown */
|
|
23
23
|
environmentOptions: SelectOption[];
|
|
24
|
+
/** Indicates if more environments are available for loading */
|
|
25
|
+
hasMoreEnvironments: boolean;
|
|
26
|
+
/** Loading state for environments */
|
|
27
|
+
isLoadingEnvironments: boolean;
|
|
24
28
|
/** Options for retry count dropdown */
|
|
25
29
|
retryCountOptions: SelectOption[];
|
|
26
30
|
/** Options for iframe locator dropdown */
|
|
@@ -43,6 +47,10 @@ export declare class StepBuilderAiAgentComponent implements OnInit, OnChanges {
|
|
|
43
47
|
createStep: EventEmitter<AiAgentFormData>;
|
|
44
48
|
/** Emit when cancelled */
|
|
45
49
|
cancelled: EventEmitter<void>;
|
|
50
|
+
/** Emit when user searches for environments */
|
|
51
|
+
searchEnvironments: EventEmitter<string>;
|
|
52
|
+
/** Emit when user scrolls to load more environments */
|
|
53
|
+
loadMoreEnvironments: EventEmitter<void>;
|
|
46
54
|
aiAgentForm: FormGroup;
|
|
47
55
|
showAdvanced: boolean;
|
|
48
56
|
private hasLoadedInitialData;
|
|
@@ -88,5 +96,5 @@ export declare class StepBuilderAiAgentComponent implements OnInit, OnChanges {
|
|
|
88
96
|
onCancel(): void;
|
|
89
97
|
onCreateStep(): void;
|
|
90
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderAiAgentComponent, never>;
|
|
91
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderAiAgentComponent, "cqa-step-builder-ai-agent", never, { "typeOptions": "typeOptions"; "environmentOptions": "environmentOptions"; "retryCountOptions": "retryCountOptions"; "iframeLocatorOptions": "iframeLocatorOptions"; "otherLocatorsOptions": "otherLocatorsOptions"; "initialQuery": "initialQuery"; "initialType": "initialType"; "initialDescription": "initialDescription"; "initialEnvironments": "initialEnvironments"; "initialMetadata": "initialMetadata"; "initialDisabled": "initialDisabled"; "initialContinueOnError": "initialContinueOnError"; "initialRetryCount": "initialRetryCount"; "initialIframeLocator": "initialIframeLocator"; "initialOtherLocators": "initialOtherLocators"; "editMode": "editMode"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
|
|
99
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderAiAgentComponent, "cqa-step-builder-ai-agent", never, { "typeOptions": "typeOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "retryCountOptions": "retryCountOptions"; "iframeLocatorOptions": "iframeLocatorOptions"; "otherLocatorsOptions": "otherLocatorsOptions"; "initialQuery": "initialQuery"; "initialType": "initialType"; "initialDescription": "initialDescription"; "initialEnvironments": "initialEnvironments"; "initialMetadata": "initialMetadata"; "initialDisabled": "initialDisabled"; "initialContinueOnError": "initialContinueOnError"; "initialRetryCount": "initialRetryCount"; "initialIframeLocator": "initialIframeLocator"; "initialOtherLocators": "initialOtherLocators"; "editMode": "editMode"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; }, never, never>;
|
|
92
100
|
}
|
|
@@ -79,6 +79,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
79
79
|
addStep: EventEmitter<{
|
|
80
80
|
branch: ConditionBranch;
|
|
81
81
|
}>;
|
|
82
|
+
/** Emitted when a nested loop-step emits addStepForLoop (empty state plus button). */
|
|
83
|
+
addStepForLoop: EventEmitter<{
|
|
84
|
+
loopStepConfig: LoopStepConfig;
|
|
85
|
+
}>;
|
|
82
86
|
deleteStep: EventEmitter<{
|
|
83
87
|
branch: ConditionBranch;
|
|
84
88
|
stepIndex: number;
|
|
@@ -166,6 +170,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
166
170
|
expanded: boolean;
|
|
167
171
|
}, branch: ConditionBranch, step: TestCaseStepConfig, index: number): void;
|
|
168
172
|
onAddStep(branch: ConditionBranch): void;
|
|
173
|
+
/** Handle addStepForLoop event from nested loop-step (empty state plus button). */
|
|
174
|
+
onAddStepForLoop(event: {
|
|
175
|
+
loopStepConfig: LoopStepConfig;
|
|
176
|
+
}, branch: ConditionBranch): void;
|
|
169
177
|
onDeleteStep(branch: ConditionBranch, stepIndex: number): void;
|
|
170
178
|
/** Re-emit edit from nested step in a branch so the portal can open edit modal (same as root level). */
|
|
171
179
|
onNestedEdit(event: {
|
|
@@ -204,5 +212,5 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
204
212
|
/** Get select config for a template variable */
|
|
205
213
|
getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
|
|
206
214
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
|
|
207
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "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"; }, never, never>;
|
|
215
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "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"; }, never, never>;
|
|
208
216
|
}
|