@cqa-lib/cqa-ui 1.1.225 → 1.1.227

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.
Files changed (23) hide show
  1. package/esm2020/lib/simulator/simulator.component.mjs +28 -45
  2. package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +267 -44
  3. package/esm2020/lib/step-builder/step-builder-condition/step-builder-condition.component.mjs +183 -41
  4. package/esm2020/lib/step-builder/step-builder-loop/step-builder-loop.component.mjs +44 -3
  5. package/esm2020/lib/step-builder/template-variables-form/template-variables-form.component.mjs +218 -57
  6. package/esm2020/lib/test-case-details/element-popup/element-form/element-form.component.mjs +277 -0
  7. package/esm2020/lib/test-case-details/element-popup/element-popup.component.mjs +32 -192
  8. package/esm2020/lib/ui-kit.module.mjs +6 -1
  9. package/esm2020/public-api.mjs +2 -1
  10. package/fesm2015/cqa-lib-cqa-ui.mjs +1118 -444
  11. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  12. package/fesm2020/cqa-lib-cqa-ui.mjs +1103 -440
  13. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  14. package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +50 -4
  15. package/lib/step-builder/step-builder-condition/step-builder-condition.component.d.ts +39 -2
  16. package/lib/step-builder/step-builder-loop/step-builder-loop.component.d.ts +17 -1
  17. package/lib/step-builder/template-variables-form/template-variables-form.component.d.ts +56 -5
  18. package/lib/test-case-details/element-popup/element-form/element-form.component.d.ts +77 -0
  19. package/lib/test-case-details/element-popup/element-popup.component.d.ts +13 -32
  20. package/lib/ui-kit.module.d.ts +42 -41
  21. package/package.json +1 -1
  22. package/public-api.d.ts +1 -0
  23. package/styles.css +1 -1
@@ -1,7 +1,14 @@
1
1
  import { EventEmitter, OnInit, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
2
+ import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
4
4
  import * as i0 from "@angular/core";
5
+ interface Element {
6
+ id?: number;
7
+ name: string;
8
+ locatorValue?: string;
9
+ otherLocator?: string[];
10
+ [key: string]: any;
11
+ }
5
12
  export interface VariableDefinition {
6
13
  path: string;
7
14
  default: string | boolean;
@@ -36,7 +43,25 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
36
43
  /** Function to handle variable processing or custom logic. Can be passed from parent component. */
37
44
  setTemplateVariables: (variables: ActionTemplate) => any;
38
45
  preventSelectTemplate: string[];
46
+ elementOptions: Element[];
47
+ hasMoreElements: boolean;
48
+ isLoadingElements: boolean;
49
+ /** Screen name options for element form autocomplete (from API) */
50
+ screenNameOptions: {
51
+ id?: number;
52
+ name: string;
53
+ }[];
54
+ /** Whether more screen names are available for infinite scroll */
55
+ hasMoreScreenNames: boolean;
56
+ /** True while parent is loading screen names (search or load more) */
57
+ isLoadingScreenNames: boolean;
39
58
  templateChanged: EventEmitter<ActionTemplate>;
59
+ loadMoreElements: EventEmitter<void>;
60
+ searchElements: EventEmitter<string>;
61
+ createElement: EventEmitter<any>;
62
+ searchScreenName: EventEmitter<string>;
63
+ loadMoreScreenNames: EventEmitter<string>;
64
+ createScreenNameRequest: EventEmitter<string>;
40
65
  /** Emit when step is created */
41
66
  createStep: EventEmitter<any>;
42
67
  /** Emit when cancelled */
@@ -48,23 +73,39 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
48
73
  description: string;
49
74
  advancedExpanded: boolean;
50
75
  templateVariables: any[];
51
- variablesForm: FormGroup;
76
+ variablesForm: FormArray;
77
+ updatedHtmlGrammar: string;
78
+ isElementFormVisible: boolean;
52
79
  private selectConfigCache;
53
80
  private formValidCache;
54
81
  private lastFormValidationTime;
55
82
  private readonly FORM_VALIDATION_CACHE_MS;
56
83
  private formValueChangesSubscription?;
57
84
  constructor(fb: FormBuilder);
85
+ /**
86
+ * Handle element form visibility change
87
+ */
88
+ onElementFormVisibilityChange(visible: boolean): void;
58
89
  ngOnInit(): void;
59
90
  ngOnChanges(changes: SimpleChanges): void;
60
91
  onSearchChange(value: string): void;
61
92
  onSearchSubmit(value: string): void;
62
93
  onSearchCleared(): void;
63
94
  applyFilter(): void;
95
+ /**
96
+ * Strip HTML tags from a string, returning only the text content
97
+ * @param htmlString - HTML string to strip tags from
98
+ * @returns Plain text without HTML tags
99
+ */
100
+ private stripHtmlTags;
64
101
  selectTemplate(template: ActionTemplate): void;
65
102
  private buildVariablesForm;
66
103
  ngOnDestroy(): void;
67
- getSelectConfig(variable: any): DynamicSelectFieldConfig;
104
+ getSelectConfig(variable: any, index: number): DynamicSelectFieldConfig;
105
+ /** Get form group for a variable by name */
106
+ getVariableFormGroup(variableName: string): FormGroup | null;
107
+ /** Add a new variable to the form array dynamically */
108
+ addVariable(variable: any): void;
68
109
  onVariableValueChange(variableName: string, value: any): void;
69
110
  onVariableBooleanChange(variableName: string, value: boolean): void;
70
111
  onBack(): void;
@@ -77,6 +118,11 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
77
118
  onElementClick(elementKey: string): void;
78
119
  onElementValueChange(key: string, value: string): void;
79
120
  onTestDataValueChange(key: string, value: string): void;
121
+ /**
122
+ * Update HTML grammar by replacing placeholder spans with actual variable values
123
+ */
124
+ private updateHtmlGrammar;
80
125
  static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderActionComponent, never>;
81
- static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "templates": "templates"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "preventSelectTemplate": "preventSelectTemplate"; }, { "templateChanged": "templateChanged"; "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "templates": "templates"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "preventSelectTemplate": "preventSelectTemplate"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; }, { "templateChanged": "templateChanged"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
82
127
  }
128
+ export {};
@@ -3,6 +3,13 @@ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
4
  import { ActionTemplate } from '../step-builder-action/step-builder-action.component';
5
5
  import * as i0 from "@angular/core";
6
+ interface Element {
7
+ id?: number;
8
+ name: string;
9
+ locatorValue?: string;
10
+ otherLocator?: string[];
11
+ [key: string]: any;
12
+ }
6
13
  export interface ConditionRow {
7
14
  field: string;
8
15
  operator: string;
@@ -24,10 +31,28 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
24
31
  conditionTemplates: ActionTemplate[];
25
32
  /** Function to handle variable processing or custom logic. Can be passed from parent component. */
26
33
  setConditionTemplateVariables: (variables: ActionTemplate) => any;
34
+ elementOptions: Element[];
35
+ hasMoreElements: boolean;
36
+ isLoadingElements: boolean;
37
+ /** Screen name options for element form autocomplete (from API) */
38
+ screenNameOptions: {
39
+ id?: number;
40
+ name: string;
41
+ }[];
42
+ /** Whether more screen names are available for infinite scroll */
43
+ hasMoreScreenNames: boolean;
44
+ /** True while parent is loading screen names (search or load more) */
45
+ isLoadingScreenNames: boolean;
27
46
  /** Emit when step is created */
28
47
  createStep: EventEmitter<ConditionFormData>;
29
48
  /** Emit when cancelled */
30
49
  cancelled: EventEmitter<void>;
50
+ loadMoreElements: EventEmitter<void>;
51
+ searchElements: EventEmitter<string>;
52
+ createElement: EventEmitter<any>;
53
+ searchScreenName: EventEmitter<string>;
54
+ loadMoreScreenNames: EventEmitter<string>;
55
+ createScreenNameRequest: EventEmitter<string>;
31
56
  conditionForm: FormGroup;
32
57
  includeElse: boolean;
33
58
  private valueConfigCache;
@@ -36,6 +61,7 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
36
61
  private selectedTemplates;
37
62
  private conditionTemplateVariables;
38
63
  private conditionVariablesForms;
64
+ private conditionUpdatedHtmlGrammar;
39
65
  private conditionFormGroupCache;
40
66
  constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
41
67
  ngOnInit(): void;
@@ -51,12 +77,22 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
51
77
  onTemplateValueChange(index: number, templateId: any): void;
52
78
  private buildConditionVariablesForm;
53
79
  getConditionTemplateVariables(index: number): any[];
54
- getConditionVariablesForm(index: number): FormGroup;
80
+ getConditionVariablesForm(index: number): FormArray;
81
+ getConditionFormGroupAt(index: number, variableIndex: number): FormGroup;
82
+ getConditionUpdatedHtmlGrammar(index: number): string;
55
83
  getSelectedTemplate(index: number): ActionTemplate | null;
56
84
  getSelectConfigForVariable(index: number, variable: any): DynamicSelectFieldConfig;
57
85
  onConditionVariableValueChange(conditionIndex: number, variableName: string, value: any): void;
58
86
  onConditionVariableInputChange(conditionIndex: number, variableName: string, value: any): void;
59
87
  onConditionVariableBooleanChange(conditionIndex: number, variableName: string, value: boolean): void;
88
+ /**
89
+ * Strip HTML tags from a string for search functionality
90
+ */
91
+ private stripHtmlTags;
92
+ /**
93
+ * Update HTML grammar for a specific condition with actual variable values
94
+ */
95
+ private updateConditionHtmlGrammar;
60
96
  getConditionFormGroup(index: number): FormGroup;
61
97
  getConditionFieldValue(index: number): string;
62
98
  isConditionIf(index: number): boolean;
@@ -67,5 +103,6 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
67
103
  onCancel(): void;
68
104
  onCreateStep(): void;
69
105
  static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderConditionComponent, never>;
70
- static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
106
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; }, never, never>;
71
107
  }
108
+ export {};
@@ -53,6 +53,22 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
53
53
  whileTemplates: any[];
54
54
  whileSearchPlaceholder: string;
55
55
  whileSearchValue: string;
56
+ elementOptions: any[];
57
+ hasMoreElements: boolean;
58
+ isLoadingElements: boolean;
59
+ screenNameOptions: {
60
+ id?: number;
61
+ name: string;
62
+ }[];
63
+ hasMoreScreenNames: boolean;
64
+ isLoadingScreenNames: boolean;
65
+ loadMoreElements: EventEmitter<void>;
66
+ searchElements: EventEmitter<string>;
67
+ createElement: EventEmitter<any>;
68
+ searchScreenName: EventEmitter<string>;
69
+ loadMoreScreenNames: EventEmitter<string>;
70
+ createScreenNameRequest: EventEmitter<string>;
71
+ cancelElementForm: EventEmitter<void>;
56
72
  selectedWhileTemplate: any;
57
73
  selectedLoopType: LoopType;
58
74
  loopForm: FormGroup;
@@ -111,5 +127,5 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
111
127
  filterWhileTemplates(query: string): void;
112
128
  selectWhileTemplate(template: any): void;
113
129
  static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderLoopComponent, never>;
114
- static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "whileTemplates": "whileTemplates"; "whileSearchPlaceholder": "whileSearchPlaceholder"; "whileSearchValue": "whileSearchValue"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loopTypeChange": "loopTypeChange"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; }, never, never>;
130
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "whileTemplates": "whileTemplates"; "whileSearchPlaceholder": "whileSearchPlaceholder"; "whileSearchValue": "whileSearchValue"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loopTypeChange": "loopTypeChange"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "cancelElementForm": "cancelElementForm"; }, never, never>;
115
131
  }
@@ -1,9 +1,18 @@
1
1
  import { EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
2
+ import { FormGroup, FormArray } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
+ import { ElementCreatePayload, ScreenNameOption } from '../../test-case-details/element-popup/element-popup-form-data';
4
5
  import * as i0 from "@angular/core";
6
+ interface Element {
7
+ id?: number;
8
+ name: string;
9
+ locatorValue?: string;
10
+ otherLocator?: string[];
11
+ [key: string]: any;
12
+ }
5
13
  export interface TemplateVariable {
6
14
  name: string;
15
+ dataKey: string;
7
16
  label: string;
8
17
  value: any;
9
18
  type?: string;
@@ -12,9 +21,18 @@ export interface TemplateVariable {
12
21
  export declare class TemplateVariablesFormComponent implements OnChanges {
13
22
  private cdr;
14
23
  templateVariables: TemplateVariable[];
15
- variablesForm: FormGroup;
24
+ variablesForm: FormArray;
16
25
  metadata: string;
17
26
  description: string;
27
+ elementOptions: Element[];
28
+ hasMoreElements: boolean;
29
+ isLoadingElements: boolean;
30
+ /** Screen name options for element form autocomplete (from API) */
31
+ screenNameOptions: ScreenNameOption[];
32
+ /** Whether more screen names are available for infinite scroll */
33
+ hasMoreScreenNames: boolean;
34
+ /** True while parent is loading screen names (search or load more) */
35
+ isLoadingScreenNames: boolean;
18
36
  variableValueChange: EventEmitter<{
19
37
  name: string;
20
38
  value: any;
@@ -25,6 +43,14 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
25
43
  }>;
26
44
  metadataChange: EventEmitter<string>;
27
45
  descriptionChange: EventEmitter<string>;
46
+ loadMoreElements: EventEmitter<void>;
47
+ searchElements: EventEmitter<string>;
48
+ createElement: EventEmitter<ElementCreatePayload>;
49
+ searchScreenName: EventEmitter<string>;
50
+ loadMoreScreenNames: EventEmitter<string>;
51
+ createScreenNameRequest: EventEmitter<string>;
52
+ cancelElementForm: EventEmitter<void>;
53
+ elementFormVisibilityChange: EventEmitter<boolean>;
28
54
  private selectConfigCache;
29
55
  private dataTypeSelectConfigCache;
30
56
  private variableDataTypes;
@@ -32,24 +58,49 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
32
58
  private needsDataTypeDropdownCache;
33
59
  private shouldShowDropdownCache;
34
60
  private readonly dataTypeOptions;
61
+ createElementVisible: boolean;
35
62
  constructor(cdr: ChangeDetectorRef);
63
+ onCreateElement(payload: ElementCreatePayload): void;
64
+ onCancelElementForm(): void;
65
+ onShowElementForm(): void;
36
66
  ngOnChanges(changes: SimpleChanges): void;
37
67
  private initializeTestDataVariables;
68
+ /** Get form group for a variable by name from FormArray */
69
+ getVariableFormGroup(variableName: string): FormGroup | null;
70
+ /** Get form group at a specific index from FormArray (for template use) */
71
+ getFormGroupAt(index: number): FormGroup | null;
38
72
  private precomputeConfigs;
39
73
  private parseTestDataValue;
40
74
  private formatTestDataValue;
41
75
  trackByVariable(index: number, variable: TemplateVariable): any;
42
- getSelectConfig(variable: TemplateVariable): DynamicSelectFieldConfig;
76
+ getSelectConfig(variable: TemplateVariable, index: number): DynamicSelectFieldConfig;
43
77
  onVariableValueChange(variableName: string, value: any): void;
44
78
  onVariableBooleanChange(variableName: string, value: boolean): void;
45
79
  shouldShowDropdown(variable: TemplateVariable): boolean;
46
80
  needsDataTypeDropdown(variable: TemplateVariable): boolean;
47
81
  getDataTypeOptions(): SelectOption[];
48
- getDataTypeSelectConfig(variable: TemplateVariable): DynamicSelectFieldConfig;
82
+ getDataTypeSelectConfig(variable: TemplateVariable, index: number): DynamicSelectFieldConfig;
49
83
  getCurrentDataType(variable: TemplateVariable): 'plain-text' | 'parameter' | 'runtime' | 'environment';
50
84
  getRawValue(variable: TemplateVariable): string;
85
+ /**
86
+ * Check if selector variable is available in templateVariables
87
+ */
88
+ get selectorVariableAvailable(): boolean;
89
+ /**
90
+ * Check if parameter variable is available (testData with parameter type)
91
+ */
92
+ get parameterVariableAvailable(): boolean;
93
+ /**
94
+ * Check if environment variable is available (testData with environment type)
95
+ */
96
+ get environmentVariableAvailable(): boolean;
51
97
  onDataTypeChange(variableName: string, dataType: 'plain-text' | 'parameter' | 'runtime' | 'environment'): void;
98
+ onElementSearch(event: {
99
+ key: string;
100
+ query: string;
101
+ }): void;
52
102
  onTestDataValueChange(variableName: string, rawValue: string): void;
53
103
  static ɵfac: i0.ɵɵFactoryDeclaration<TemplateVariablesFormComponent, never>;
54
- static ɵcmp: i0.ɵɵComponentDeclaration<TemplateVariablesFormComponent, "cqa-template-variables-form", never, { "templateVariables": "templateVariables"; "variablesForm": "variablesForm"; "metadata": "metadata"; "description": "description"; }, { "variableValueChange": "variableValueChange"; "variableBooleanChange": "variableBooleanChange"; "metadataChange": "metadataChange"; "descriptionChange": "descriptionChange"; }, never, never>;
104
+ static ɵcmp: i0.ɵɵComponentDeclaration<TemplateVariablesFormComponent, "cqa-template-variables-form", never, { "templateVariables": "templateVariables"; "variablesForm": "variablesForm"; "metadata": "metadata"; "description": "description"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; }, { "variableValueChange": "variableValueChange"; "variableBooleanChange": "variableBooleanChange"; "metadataChange": "metadataChange"; "descriptionChange": "descriptionChange"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "cancelElementForm": "cancelElementForm"; "elementFormVisibilityChange": "elementFormVisibilityChange"; }, never, never>;
55
105
  }
106
+ export {};
@@ -0,0 +1,77 @@
1
+ import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup, FormControl } from '@angular/forms';
3
+ import { DynamicSelectFieldConfig } from '../../../dynamic-select/dynamic-select-field.component';
4
+ import { ElementCreatePayload, ElementUpdatePayload, ScreenNameOption } from '../element-popup-form-data';
5
+ import { ElementPopupDataElements } from '../element-popup-data';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ElementFormComponent implements OnInit, OnChanges {
8
+ private readonly cdr?;
9
+ /** Element ID when editing existing element */
10
+ elementId?: number;
11
+ /** Current element data (for edit mode) */
12
+ element: ElementPopupDataElements;
13
+ /** Screen name options for autocomplete (from API) */
14
+ screenNameOptions: ScreenNameOption[];
15
+ /** Whether more screen names are available for infinite scroll */
16
+ hasMoreScreenNames: boolean;
17
+ /** True while parent is loading screen names (search or load more) */
18
+ isLoadingScreenNames: boolean;
19
+ /** True while parent is fetching latest element data for edit (shows loading state) */
20
+ isElementLoading: boolean;
21
+ /** Whether we're in edit mode */
22
+ isEditMode: boolean;
23
+ /** Whether we're in create mode */
24
+ isCreateMode: boolean;
25
+ /** Whether edit in depth is available */
26
+ isEditInDepthAvailable: boolean;
27
+ /** Emitted when user creates a new element (parent should call API) */
28
+ createElement: EventEmitter<ElementCreatePayload>;
29
+ /** Emitted when user updates an element (parent should call API) */
30
+ updateElement: EventEmitter<ElementUpdatePayload>;
31
+ /** Emitted when user requests to create a new screen name */
32
+ createScreenNameRequest: EventEmitter<string>;
33
+ /** Emitted when user searches screen names (server search) */
34
+ searchScreenName: EventEmitter<string>;
35
+ /** Emitted when user scrolls to load more screen names (passes current search query) */
36
+ loadMoreScreenNames: EventEmitter<string>;
37
+ /** Emitted when user clicks "Select from Element list" or "Cancel" */
38
+ cancel: EventEmitter<void>;
39
+ /** Emitted when user clicks "Edit in depth" */
40
+ editInDepth: EventEmitter<void>;
41
+ form: FormGroup;
42
+ /** Labels (tags) as string array for multi-tag input */
43
+ formLabels: string[];
44
+ /** Current tag input value */
45
+ tagInputValue: string;
46
+ /** Config for screen name dynamic-select (server search, allowCustomValue, infinite scroll) */
47
+ screenNameSelectConfig: DynamicSelectFieldConfig;
48
+ /** Whether we're saving (disable buttons) */
49
+ saving: boolean;
50
+ private fb;
51
+ constructor(fb?: FormBuilder, cdr?: ChangeDetectorRef);
52
+ ngOnChanges(changes: SimpleChanges): void;
53
+ ngOnInit(): void;
54
+ private initializeForm;
55
+ private updateScreenNameSelectConfig;
56
+ private populateFormForEdit;
57
+ private populateFormForCreateWithElement;
58
+ /** Called by parent when a new screen name was created (so we can set the selected value) */
59
+ setCreatedScreenName(opt: {
60
+ id: number;
61
+ name: string;
62
+ }): void;
63
+ onApply(): void;
64
+ onCreateOrUpdateSuccess(): void;
65
+ onCreateOrUpdateError(): void;
66
+ onCancel(): void;
67
+ onEditInDepth(event: Event): void;
68
+ getFormControl(controlName: string): FormControl;
69
+ getFormControlValue(controlName: string): string;
70
+ onFormControlChange(controlName: string, value: string): void;
71
+ /** Add a tag (label) */
72
+ addTag(tag?: string): void;
73
+ removeTag(tag: string): void;
74
+ onTagInputKeydown(event: KeyboardEvent): void;
75
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElementFormComponent, [{ optional: true; }, { optional: true; }]>;
76
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElementFormComponent, "cqa-element-form", never, { "elementId": "elementId"; "element": "element"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "isElementLoading": "isElementLoading"; "isEditMode": "isEditMode"; "isCreateMode": "isCreateMode"; "isEditInDepthAvailable": "isEditInDepthAvailable"; }, { "createElement": "createElement"; "updateElement": "updateElement"; "createScreenNameRequest": "createScreenNameRequest"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "cancel": "cancel"; "editInDepth": "editInDepth"; }, never, never>;
77
+ }
@@ -2,8 +2,7 @@ import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } fro
2
2
  import { ElementPopupData, ElementPopupDataElements } from './element-popup-data';
3
3
  import { ElementCreatePayload, ElementUpdatePayload, ScreenNameOption } from './element-popup-form-data';
4
4
  import { ElementPopupRef } from './../element-popup/element-popup-ref';
5
- import { FormBuilder, FormGroup, FormControl } from '@angular/forms';
6
- import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
5
+ import { ElementFormComponent } from './element-form/element-form.component';
7
6
  import * as i0 from "@angular/core";
8
7
  export declare class ElementPopupComponent implements OnInit, OnChanges {
9
8
  private ref?;
@@ -56,38 +55,22 @@ export declare class ElementPopupComponent implements OnInit, OnChanges {
56
55
  elementSelect: EventEmitter<ElementPopupDataElements>;
57
56
  /** Emitted when user clicks Record - parent should check extension and call installPlugin or openSidePanelAndListSteps */
58
57
  toggleRecord: EventEmitter<void>;
59
- form: FormGroup;
58
+ elementFormComponent?: ElementFormComponent;
60
59
  helpTooltipText: string;
61
60
  showHelpTooltip: boolean;
62
61
  isEditMode: boolean;
63
62
  /** Whether we're in create mode (no elementId) */
64
63
  isCreateMode: boolean;
65
- /** Labels (tags) as string array for multi-tag input */
66
- formLabels: string[];
67
- /** Current tag input value */
68
- tagInputValue: string;
69
64
  /** Current search input value (bound to search bar) */
70
65
  searchValue: string;
71
- /** Config for screen name dynamic-select (server search, allowCustomValue, infinite scroll) */
72
- screenNameSelectConfig: DynamicSelectFieldConfig;
73
- /** Whether we're saving (disable buttons) */
74
- saving: boolean;
75
66
  private injectedData?;
76
- private fb;
77
- constructor(ref?: ElementPopupRef, data?: ElementPopupData, fb?: FormBuilder, cdr?: ChangeDetectorRef);
67
+ constructor(ref?: ElementPopupRef, data?: ElementPopupData, cdr?: ChangeDetectorRef);
78
68
  ngOnChanges(changes: SimpleChanges): void;
79
69
  ngOnInit(): void;
80
- private initializeForm;
81
- private updateScreenNameSelectConfig;
82
- private populateFormForEdit;
83
- private populateFormForCreateWithElement;
84
70
  private resetForm;
85
- /** Called by parent when a new screen name was created (so we can set the selected value) */
86
- setCreatedScreenName(opt: {
87
- id: number;
88
- name: string;
89
- }): void;
90
- onApply(): void;
71
+ onElementFormCreate(payload: ElementCreatePayload): void;
72
+ onElementFormUpdate(payload: ElementUpdatePayload): void;
73
+ onElementFormCancel(): void;
91
74
  onCreateOrUpdateSuccess(): void;
92
75
  onCreateOrUpdateError(): void;
93
76
  toggleForm(): void;
@@ -95,19 +78,17 @@ export declare class ElementPopupComponent implements OnInit, OnChanges {
95
78
  onToggleRecordClick(): void;
96
79
  onCancel(): void;
97
80
  onClose(): void;
98
- onEditInDepth(event: Event): void;
81
+ onEditInDepth(): void;
99
82
  search(event: string): void;
100
83
  onHelp(event: Event): void;
101
- getFormControl(controlName: string): FormControl;
102
- getFormControlValue(controlName: string): string;
103
- onFormControlChange(controlName: string, value: string): void;
104
- /** Add a tag (label) */
105
- addTag(tag?: string): void;
106
- removeTag(tag: string): void;
107
- onTagInputKeydown(event: KeyboardEvent): void;
108
84
  onElementClick(element: ElementPopupDataElements): void;
109
85
  onLoadMoreElements(): void;
110
86
  onRecentItemClick(item: string): void;
111
- static ɵfac: i0.ɵɵFactoryDeclaration<ElementPopupComponent, [{ optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
87
+ /** Called by parent when a new screen name was created (so we can set the selected value) */
88
+ setCreatedScreenName(opt: {
89
+ id: number;
90
+ name: string;
91
+ }): void;
92
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElementPopupComponent, [{ optional: true; }, { optional: true; }, { optional: true; }]>;
112
93
  static ɵcmp: i0.ɵɵComponentDeclaration<ElementPopupComponent, "cqa-element-popup", never, { "value": "value"; "helpUrl": "helpUrl"; "labels": "labels"; "element": "element"; "elements": "elements"; "enableForm": "enableForm"; "isOnRecord": "isOnRecord"; "hasMoreElements": "hasMoreElements"; "elementId": "elementId"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "suggestedTags": "suggestedTags"; "isElementLoading": "isElementLoading"; "recentSearchedItems": "recentSearchedItems"; }, { "apply": "apply"; "cancel": "cancel"; "editInDepth": "editInDepth"; "searchElement": "searchElement"; "recentItemClick": "recentItemClick"; "loadMoreElements": "loadMoreElements"; "createElement": "createElement"; "updateElement": "updateElement"; "createScreenNameRequest": "createScreenNameRequest"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "formOpenRequest": "formOpenRequest"; "elementSelect": "elementSelect"; "toggleRecord": "toggleRecord"; }, never, never>;
113
94
  }
@@ -104,49 +104,50 @@ import * as i101 from "./live-conversation/live-conversation.component";
104
104
  import * as i102 from "./step-builder/step-builder-action/step-builder-action.component";
105
105
  import * as i103 from "./step-builder/step-builder-loop/step-builder-loop.component";
106
106
  import * as i104 from "./test-case-details/element-popup/element-popup.component";
107
- import * as i105 from "./step-builder/step-builder-condition/step-builder-condition.component";
108
- import * as i106 from "./step-builder/step-builder-database/step-builder-database.component";
109
- import * as i107 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
110
- import * as i108 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
111
- import * as i109 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
112
- import * as i110 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
113
- import * as i111 from "./test-case-details/element-list/element-list.component";
114
- import * as i112 from "./step-builder/step-builder-document/step-builder-document.component";
115
- import * as i113 from "./detail-side-panel/detail-side-panel.component";
116
- import * as i114 from "./detail-drawer/detail-drawer.component";
117
- import * as i115 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
118
- import * as i116 from "./detail-drawer/detail-drawer-tab-content.directive";
119
- import * as i117 from "./test-case-details/test-case-details.component";
120
- import * as i118 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
121
- import * as i119 from "./step-builder/step-builder-group/step-builder-group.component";
122
- import * as i120 from "./test-case-details/step-details-drawer/step-details-drawer.component";
123
- import * as i121 from "./step-builder/template-variables-form/template-variables-form.component";
124
- import * as i122 from "@angular/common";
125
- import * as i123 from "@angular/forms";
126
- import * as i124 from "@angular/platform-browser/animations";
127
- import * as i125 from "@angular/material/icon";
128
- import * as i126 from "@angular/material/menu";
129
- import * as i127 from "@angular/material/button";
130
- import * as i128 from "@angular/material/form-field";
131
- import * as i129 from "@angular/material/select";
132
- import * as i130 from "@angular/material/core";
133
- import * as i131 from "@angular/material/checkbox";
134
- import * as i132 from "@angular/material/radio";
135
- import * as i133 from "@angular/material/slide-toggle";
136
- import * as i134 from "@angular/material/datepicker";
137
- import * as i135 from "@angular/material/progress-spinner";
138
- import * as i136 from "@angular/material/tooltip";
139
- import * as i137 from "@angular/material/dialog";
140
- import * as i138 from "@angular/material/table";
141
- import * as i139 from "@angular/material/input";
142
- import * as i140 from "@angular/cdk/overlay";
143
- import * as i141 from "@angular/cdk/portal";
144
- import * as i142 from "@angular/cdk/scrolling";
145
- import * as i143 from "ngx-typed-js";
146
- import * as i144 from "ngx-drag-drop";
107
+ import * as i105 from "./test-case-details/element-popup/element-form/element-form.component";
108
+ import * as i106 from "./step-builder/step-builder-condition/step-builder-condition.component";
109
+ import * as i107 from "./step-builder/step-builder-database/step-builder-database.component";
110
+ import * as i108 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
111
+ import * as i109 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
112
+ import * as i110 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
113
+ import * as i111 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
114
+ import * as i112 from "./test-case-details/element-list/element-list.component";
115
+ import * as i113 from "./step-builder/step-builder-document/step-builder-document.component";
116
+ import * as i114 from "./detail-side-panel/detail-side-panel.component";
117
+ import * as i115 from "./detail-drawer/detail-drawer.component";
118
+ import * as i116 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
119
+ import * as i117 from "./detail-drawer/detail-drawer-tab-content.directive";
120
+ import * as i118 from "./test-case-details/test-case-details.component";
121
+ import * as i119 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
122
+ import * as i120 from "./step-builder/step-builder-group/step-builder-group.component";
123
+ import * as i121 from "./test-case-details/step-details-drawer/step-details-drawer.component";
124
+ import * as i122 from "./step-builder/template-variables-form/template-variables-form.component";
125
+ import * as i123 from "@angular/common";
126
+ import * as i124 from "@angular/forms";
127
+ import * as i125 from "@angular/platform-browser/animations";
128
+ import * as i126 from "@angular/material/icon";
129
+ import * as i127 from "@angular/material/menu";
130
+ import * as i128 from "@angular/material/button";
131
+ import * as i129 from "@angular/material/form-field";
132
+ import * as i130 from "@angular/material/select";
133
+ import * as i131 from "@angular/material/core";
134
+ import * as i132 from "@angular/material/checkbox";
135
+ import * as i133 from "@angular/material/radio";
136
+ import * as i134 from "@angular/material/slide-toggle";
137
+ import * as i135 from "@angular/material/datepicker";
138
+ import * as i136 from "@angular/material/progress-spinner";
139
+ import * as i137 from "@angular/material/tooltip";
140
+ import * as i138 from "@angular/material/dialog";
141
+ import * as i139 from "@angular/material/table";
142
+ import * as i140 from "@angular/material/input";
143
+ import * as i141 from "@angular/cdk/overlay";
144
+ import * as i142 from "@angular/cdk/portal";
145
+ import * as i143 from "@angular/cdk/scrolling";
146
+ import * as i144 from "ngx-typed-js";
147
+ import * as i145 from "ngx-drag-drop";
147
148
  export declare class UiKitModule {
148
149
  constructor(iconRegistry: MatIconRegistry);
149
150
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
150
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i88.TestCaseAiVerifyStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.StepBuilderConditionComponent, typeof i106.StepBuilderDatabaseComponent, typeof i107.StepBuilderAiAgentComponent, typeof i108.StepBuilderCustomCodeComponent, typeof i109.StepBuilderRecordStepComponent, typeof i110.StepBuilderDocumentGenerationTemplateStepComponent, typeof i111.ElementListComponent, typeof i112.StepBuilderDocumentComponent, typeof i113.DetailSidePanelComponent, typeof i114.DetailDrawerComponent, typeof i115.DetailDrawerTabComponent, typeof i116.DetailDrawerTabContentDirective, typeof i117.TestCaseDetailsComponent, typeof i118.TestCaseDetailsEditComponent, typeof i119.StepBuilderGroupComponent, typeof i120.StepDetailsDrawerComponent, typeof i121.TemplateVariablesFormComponent], [typeof i122.CommonModule, typeof i123.FormsModule, typeof i123.ReactiveFormsModule, typeof i124.NoopAnimationsModule, typeof i125.MatIconModule, typeof i126.MatMenuModule, typeof i127.MatButtonModule, typeof i128.MatFormFieldModule, typeof i129.MatSelectModule, typeof i130.MatOptionModule, typeof i131.MatCheckboxModule, typeof i132.MatRadioModule, typeof i133.MatSlideToggleModule, typeof i134.MatDatepickerModule, typeof i130.MatNativeDateModule, typeof i135.MatProgressSpinnerModule, typeof i136.MatTooltipModule, typeof i137.MatDialogModule, typeof i138.MatTableModule, typeof i139.MatInputModule, typeof i140.OverlayModule, typeof i141.PortalModule, typeof i142.ScrollingModule, typeof i143.NgxTypedJsModule, typeof i144.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.StepBuilderConditionComponent, typeof i106.StepBuilderDatabaseComponent, typeof i107.StepBuilderAiAgentComponent, typeof i108.StepBuilderCustomCodeComponent, typeof i109.StepBuilderRecordStepComponent, typeof i110.StepBuilderDocumentGenerationTemplateStepComponent, typeof i111.ElementListComponent, typeof i112.StepBuilderDocumentComponent, typeof i113.DetailSidePanelComponent, typeof i114.DetailDrawerComponent, typeof i115.DetailDrawerTabComponent, typeof i116.DetailDrawerTabContentDirective, typeof i117.TestCaseDetailsComponent, typeof i118.TestCaseDetailsEditComponent, typeof i119.StepBuilderGroupComponent, typeof i120.StepDetailsDrawerComponent, typeof i121.TemplateVariablesFormComponent]>;
151
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i88.TestCaseAiVerifyStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.ElementFormComponent, typeof i106.StepBuilderConditionComponent, typeof i107.StepBuilderDatabaseComponent, typeof i108.StepBuilderAiAgentComponent, typeof i109.StepBuilderCustomCodeComponent, typeof i110.StepBuilderRecordStepComponent, typeof i111.StepBuilderDocumentGenerationTemplateStepComponent, typeof i112.ElementListComponent, typeof i113.StepBuilderDocumentComponent, typeof i114.DetailSidePanelComponent, typeof i115.DetailDrawerComponent, typeof i116.DetailDrawerTabComponent, typeof i117.DetailDrawerTabContentDirective, typeof i118.TestCaseDetailsComponent, typeof i119.TestCaseDetailsEditComponent, typeof i120.StepBuilderGroupComponent, typeof i121.StepDetailsDrawerComponent, typeof i122.TemplateVariablesFormComponent], [typeof i123.CommonModule, typeof i124.FormsModule, typeof i124.ReactiveFormsModule, typeof i125.NoopAnimationsModule, typeof i126.MatIconModule, typeof i127.MatMenuModule, typeof i128.MatButtonModule, typeof i129.MatFormFieldModule, typeof i130.MatSelectModule, typeof i131.MatOptionModule, typeof i132.MatCheckboxModule, typeof i133.MatRadioModule, typeof i134.MatSlideToggleModule, typeof i135.MatDatepickerModule, typeof i131.MatNativeDateModule, typeof i136.MatProgressSpinnerModule, typeof i137.MatTooltipModule, typeof i138.MatDialogModule, typeof i139.MatTableModule, typeof i140.MatInputModule, typeof i141.OverlayModule, typeof i142.PortalModule, typeof i143.ScrollingModule, typeof i144.NgxTypedJsModule, typeof i145.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.ElementFormComponent, typeof i106.StepBuilderConditionComponent, typeof i107.StepBuilderDatabaseComponent, typeof i108.StepBuilderAiAgentComponent, typeof i109.StepBuilderCustomCodeComponent, typeof i110.StepBuilderRecordStepComponent, typeof i111.StepBuilderDocumentGenerationTemplateStepComponent, typeof i112.ElementListComponent, typeof i113.StepBuilderDocumentComponent, typeof i114.DetailSidePanelComponent, typeof i115.DetailDrawerComponent, typeof i116.DetailDrawerTabComponent, typeof i117.DetailDrawerTabContentDirective, typeof i118.TestCaseDetailsComponent, typeof i119.TestCaseDetailsEditComponent, typeof i120.StepBuilderGroupComponent, typeof i121.StepDetailsDrawerComponent, typeof i122.TemplateVariablesFormComponent]>;
151
152
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
152
153
  }