@cqa-lib/cqa-ui 1.1.267 → 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/fesm2015/cqa-lib-cqa-ui.mjs +30 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +30 -3
- 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/package.json +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
|
}
|