@cqa-lib/cqa-ui 1.1.222 → 1.1.224
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/execution-screen/main-step-collapse/main-step-collapse.component.mjs +10 -6
- package/esm2020/lib/execution-screen/visual-comparison/visual-comparison.component.mjs +8 -4
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +17 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +17 -3
- package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +16 -4
- package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +8 -2
- package/esm2020/lib/ui-kit.module.mjs +5 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +68 -11
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +67 -11
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/main-step-collapse/main-step-collapse.component.d.ts +2 -1
- package/lib/execution-screen/visual-comparison/visual-comparison.component.d.ts +1 -0
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +4 -1
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +4 -1
- package/lib/test-case-details/step-group/step-group.component.d.ts +4 -1
- package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts +3 -1
- package/lib/ui-kit.module.d.ts +4 -3
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -25,6 +25,7 @@ export declare class MainStepCollapseComponent implements OnInit, OnChanges {
|
|
|
25
25
|
expanded: boolean;
|
|
26
26
|
icon?: IconConfig;
|
|
27
27
|
count?: number;
|
|
28
|
+
countLoading?: boolean;
|
|
28
29
|
itemContentTemplate?: TemplateRef<any>;
|
|
29
30
|
headerButtons?: HeaderButtonConfig[];
|
|
30
31
|
/** When true, "View steps" redirects to URL instead of expanding inline. URL comes from item.viewStepsUrl or getViewStepsUrl(item). */
|
|
@@ -75,5 +76,5 @@ export declare class MainStepCollapseComponent implements OnInit, OnChanges {
|
|
|
75
76
|
/** Whether redirect mode is active and we have a URL for this item */
|
|
76
77
|
hasViewStepsRedirectUrl(item: PrerequisiteItem): boolean;
|
|
77
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainStepCollapseComponent, never>;
|
|
78
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainStepCollapseComponent, "cqa-main-step-collapse", never, { "title": "title"; "items": "items"; "expanded": "expanded"; "icon": "icon"; "count": "count"; "itemContentTemplate": "itemContentTemplate"; "headerButtons": "headerButtons"; "viewStepsAsRedirect": "viewStepsAsRedirect"; "getViewStepsUrl": "getViewStepsUrl"; "viewStepsOpenInNewTab": "viewStepsOpenInNewTab"; "initialExpandedItemId": "initialExpandedItemId"; "isDebug": "isDebug"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; }, { "viewSteps": "viewSteps"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "headerButtonClick": "headerButtonClick"; "expandedChange": "expandedChange"; }, ["itemContentTpl"], ["*", "[itemContent]", "[afterItems]"]>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainStepCollapseComponent, "cqa-main-step-collapse", never, { "title": "title"; "items": "items"; "expanded": "expanded"; "icon": "icon"; "count": "count"; "countLoading": "countLoading"; "itemContentTemplate": "itemContentTemplate"; "headerButtons": "headerButtons"; "viewStepsAsRedirect": "viewStepsAsRedirect"; "getViewStepsUrl": "getViewStepsUrl"; "viewStepsOpenInNewTab": "viewStepsOpenInNewTab"; "initialExpandedItemId": "initialExpandedItemId"; "isDebug": "isDebug"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; }, { "viewSteps": "viewSteps"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "headerButtonClick": "headerButtonClick"; "expandedChange": "expandedChange"; }, ["itemContentTpl"], ["*", "[itemContent]", "[afterItems]"]>;
|
|
79
80
|
}
|
|
@@ -40,6 +40,7 @@ export declare class VisualComparisonComponent implements OnChanges, AfterViewIn
|
|
|
40
40
|
onAnalyze(): void;
|
|
41
41
|
onViewFullLogs(): void;
|
|
42
42
|
getLogClass(level: string): string;
|
|
43
|
+
trackByLogIndex(index: number): number;
|
|
43
44
|
onImageClick(type: string): void;
|
|
44
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<VisualComparisonComponent, never>;
|
|
45
46
|
static ɵcmp: i0.ɵɵComponentDeclaration<VisualComparisonComponent, "cqa-visual-comparison", never, { "screenshots": "screenshots"; "logs": "logs"; "showFullLogsLink": "showFullLogsLink"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "testStepResultId": "testStepResultId"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; }, never, never>;
|
|
@@ -17,6 +17,7 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
17
17
|
isNested: boolean;
|
|
18
18
|
isInsideLoop: boolean;
|
|
19
19
|
isReorder: boolean;
|
|
20
|
+
selected: boolean;
|
|
20
21
|
/** Options for the data profile dropdown */
|
|
21
22
|
dataProfileOptions: any[];
|
|
22
23
|
/** Indicates if more data profiles are available for loading */
|
|
@@ -113,6 +114,7 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
113
114
|
index: number;
|
|
114
115
|
position: 'ABOVE' | 'BELOW';
|
|
115
116
|
}>;
|
|
117
|
+
selectionChange: EventEmitter<boolean>;
|
|
116
118
|
onDndDrop(event: DndDropEvent, branch: ConditionBranch): void;
|
|
117
119
|
constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
|
|
118
120
|
ngOnInit(): void;
|
|
@@ -176,9 +178,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
176
178
|
onLink(): void;
|
|
177
179
|
onDuplicate(): void;
|
|
178
180
|
onDelete(): void;
|
|
181
|
+
onSelectionChange(checked: boolean): void;
|
|
179
182
|
onMoreOptions(): void;
|
|
180
183
|
/** Get select config for a template variable */
|
|
181
184
|
getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
|
|
182
185
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
|
|
183
|
-
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"; "isReorder": "isReorder"; "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"; "moreOptions": "moreOptions"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; }, never, never>;
|
|
186
|
+
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"; "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"; "moreOptions": "moreOptions"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
|
|
184
187
|
}
|
|
@@ -21,6 +21,7 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
21
21
|
isNested: boolean;
|
|
22
22
|
isInsideLoop: boolean;
|
|
23
23
|
isReorder: boolean;
|
|
24
|
+
selected: boolean;
|
|
24
25
|
/** Options for the data profile dropdown - accepts DataProfileOption objects */
|
|
25
26
|
dataProfileOptions: DataProfileOption[];
|
|
26
27
|
/** Indicates if more data profiles are available for loading */
|
|
@@ -79,6 +80,7 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
79
80
|
index: number;
|
|
80
81
|
position: 'ABOVE' | 'BELOW';
|
|
81
82
|
}>;
|
|
83
|
+
selectionChange: EventEmitter<boolean>;
|
|
82
84
|
onDndDrop(event: DndDropEvent): void;
|
|
83
85
|
/** Expose global constructors for template (Angular templates don't have String/Number) */
|
|
84
86
|
readonly stringFn: StringConstructor;
|
|
@@ -154,7 +156,8 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
154
156
|
onLink(): void;
|
|
155
157
|
onDuplicate(): void;
|
|
156
158
|
onDelete(): void;
|
|
159
|
+
onSelectionChange(checked: boolean): void;
|
|
157
160
|
onMoreOptions(): void;
|
|
158
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseLoopStepComponent, never>;
|
|
159
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; }, never, never>;
|
|
162
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
|
|
160
163
|
}
|
|
@@ -15,6 +15,7 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
15
15
|
isNested: boolean;
|
|
16
16
|
isInsideLoop: boolean;
|
|
17
17
|
isReorder: boolean;
|
|
18
|
+
selected: boolean;
|
|
18
19
|
loading: boolean;
|
|
19
20
|
/** Options for the data profile dropdown */
|
|
20
21
|
dataProfileOptions: any[];
|
|
@@ -73,6 +74,7 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
73
74
|
index: number;
|
|
74
75
|
position: 'ABOVE' | 'BELOW';
|
|
75
76
|
}>;
|
|
77
|
+
selectionChange: EventEmitter<boolean>;
|
|
76
78
|
onDndDrop(event: DndDropEvent): void;
|
|
77
79
|
ngOnInit(): void;
|
|
78
80
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -95,6 +97,7 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
95
97
|
onLink(): void;
|
|
96
98
|
onDuplicate(): void;
|
|
97
99
|
onDelete(): void;
|
|
100
|
+
onSelectionChange(checked: boolean): void;
|
|
98
101
|
isNormalStep(step: TestCaseStepConfig): step is NormalStepConfig;
|
|
99
102
|
isLoopStep(step: TestCaseStepConfig): step is LoopStepConfig;
|
|
100
103
|
isConditionStep(step: TestCaseStepConfig): step is ConditionStepConfig;
|
|
@@ -104,5 +107,5 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
104
107
|
onNestedConditionAddBranch(nestedStep: ConditionStepConfig, index: number): void;
|
|
105
108
|
onNestedConditionDeleteBranch(nestedStep: ConditionStepConfig, branch: any, index: number): void;
|
|
106
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseStepGroupComponent, never>;
|
|
107
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "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"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; }, never, never>;
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "selected": "selected"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "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"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
|
|
108
111
|
}
|
package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
14
14
|
branch?: ConditionBranch;
|
|
15
15
|
/** When true, enables drag-and-drop reordering and shows drag handle icon instead of checkbox */
|
|
16
16
|
isReorder: boolean;
|
|
17
|
+
/** Current selection state; when changed (e.g. from Select all), the created step component is updated so the checkbox reflects it */
|
|
18
|
+
selected?: boolean;
|
|
17
19
|
/** Show "Add Step Between" button above the step */
|
|
18
20
|
addStepBetweenAbove: boolean;
|
|
19
21
|
/** Show "Add Step Between" button below the step */
|
|
@@ -116,5 +118,5 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
116
118
|
private wireOutputs;
|
|
117
119
|
ngOnDestroy(): void;
|
|
118
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsRendererComponent, never>;
|
|
119
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "branch": "branch"; "isReorder": "isReorder"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "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"; "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>;
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "branch": "branch"; "isReorder": "isReorder"; "selected": "selected"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "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"; "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>;
|
|
120
122
|
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -140,11 +140,12 @@ import * as i137 from "@angular/material/table";
|
|
|
140
140
|
import * as i138 from "@angular/material/input";
|
|
141
141
|
import * as i139 from "@angular/cdk/overlay";
|
|
142
142
|
import * as i140 from "@angular/cdk/portal";
|
|
143
|
-
import * as i141 from "
|
|
144
|
-
import * as i142 from "ngx-
|
|
143
|
+
import * as i141 from "@angular/cdk/scrolling";
|
|
144
|
+
import * as i142 from "ngx-typed-js";
|
|
145
|
+
import * as i143 from "ngx-drag-drop";
|
|
145
146
|
export declare class UiKitModule {
|
|
146
147
|
constructor(iconRegistry: MatIconRegistry);
|
|
147
148
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
148
|
-
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.JumpToStepModalComponent, typeof i52.BreakpointsModalComponent, typeof i53.MainStepCollapseComponent, typeof i54.VisualComparisonComponent, typeof i55.SimulatorComponent, typeof i56.ConsoleAlertComponent, typeof i57.AiDebugAlertComponent, typeof i58.NetworkRequestComponent, typeof i59.RunHistoryCardComponent, typeof i60.VisualDifferenceModalComponent, typeof i61.ConfigurationCardComponent, typeof i62.CompareRunsComponent, typeof i63.IterationsLoopComponent, typeof i64.FailedStepCardComponent, typeof i65.CustomInputComponent, typeof i66.CustomTextareaComponent, typeof i67.CustomToggleComponent, typeof i68.FileUploadComponent, typeof i69.AiReasoningComponent, typeof i70.ExecutionResultModalComponent, typeof i71.SessionChangesModalComponent, typeof i72.ErrorModalComponent, typeof i73.ExportCodeModalComponent, typeof i74.ProgressIndicatorComponent, typeof i75.StepProgressCardComponent, typeof i76.StepStatusCardComponent, typeof i77.DbVerificationStepComponent, typeof i78.DbQueryExecutionItemComponent, typeof i79.TestCaseNormalStepComponent, typeof i80.TestCaseLoopStepComponent, typeof i81.TestCaseConditionStepComponent, typeof i82.TestCaseStepGroupComponent, typeof i83.TestCaseDetailsRendererComponent, typeof i84.TestCaseApiStepComponent, typeof i85.TestCaseDatabaseStepComponent, typeof i86.TestCaseAiAgentStepComponent, typeof i87.TestCaseAiVerifyStepComponent, typeof i88.TestCaseUploadStepComponent, typeof i89.TestCaseScreenshotStepComponent, typeof i90.TestCaseScrollStepComponent, typeof i91.TestCaseVerifyUrlStepComponent, typeof i92.TestCaseRestoreSessionStepComponent, typeof i93.TestCaseCustomCodeStepComponent, typeof i94.CustomEditStepComponent, typeof i95.ItemListComponent, typeof i96.TestDataModalComponent, typeof i97.CreateStepGroupComponent, typeof i98.DeleteStepsComponent, typeof i99.ApiEditStepComponent, typeof i100.LiveConversationComponent, typeof i101.StepBuilderActionComponent, typeof i102.StepBuilderLoopComponent, typeof i103.ElementPopupComponent, typeof i104.StepBuilderConditionComponent, typeof i105.StepBuilderDatabaseComponent, typeof i106.StepBuilderAiAgentComponent, typeof i107.StepBuilderCustomCodeComponent, typeof i108.StepBuilderRecordStepComponent, typeof i109.StepBuilderDocumentGenerationTemplateStepComponent, typeof i110.ElementListComponent, typeof i111.StepBuilderDocumentComponent, typeof i112.DetailSidePanelComponent, typeof i113.DetailDrawerComponent, typeof i114.DetailDrawerTabComponent, typeof i115.DetailDrawerTabContentDirective, typeof i116.TestCaseDetailsComponent, typeof i117.TestCaseDetailsEditComponent, typeof i118.StepBuilderGroupComponent, typeof i119.StepDetailsDrawerComponent, typeof i120.TemplateVariablesFormComponent], [typeof i121.CommonModule, typeof i122.FormsModule, typeof i122.ReactiveFormsModule, typeof i123.NoopAnimationsModule, typeof i124.MatIconModule, typeof i125.MatMenuModule, typeof i126.MatButtonModule, typeof i127.MatFormFieldModule, typeof i128.MatSelectModule, typeof i129.MatOptionModule, typeof i130.MatCheckboxModule, typeof i131.MatRadioModule, typeof i132.MatSlideToggleModule, typeof i133.MatDatepickerModule, typeof i129.MatNativeDateModule, typeof i134.MatProgressSpinnerModule, typeof i135.MatTooltipModule, typeof i136.MatDialogModule, typeof i137.MatTableModule, typeof i138.MatInputModule, typeof i139.OverlayModule, typeof i140.PortalModule, typeof i141.
|
|
149
|
+
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.JumpToStepModalComponent, typeof i52.BreakpointsModalComponent, typeof i53.MainStepCollapseComponent, typeof i54.VisualComparisonComponent, typeof i55.SimulatorComponent, typeof i56.ConsoleAlertComponent, typeof i57.AiDebugAlertComponent, typeof i58.NetworkRequestComponent, typeof i59.RunHistoryCardComponent, typeof i60.VisualDifferenceModalComponent, typeof i61.ConfigurationCardComponent, typeof i62.CompareRunsComponent, typeof i63.IterationsLoopComponent, typeof i64.FailedStepCardComponent, typeof i65.CustomInputComponent, typeof i66.CustomTextareaComponent, typeof i67.CustomToggleComponent, typeof i68.FileUploadComponent, typeof i69.AiReasoningComponent, typeof i70.ExecutionResultModalComponent, typeof i71.SessionChangesModalComponent, typeof i72.ErrorModalComponent, typeof i73.ExportCodeModalComponent, typeof i74.ProgressIndicatorComponent, typeof i75.StepProgressCardComponent, typeof i76.StepStatusCardComponent, typeof i77.DbVerificationStepComponent, typeof i78.DbQueryExecutionItemComponent, typeof i79.TestCaseNormalStepComponent, typeof i80.TestCaseLoopStepComponent, typeof i81.TestCaseConditionStepComponent, typeof i82.TestCaseStepGroupComponent, typeof i83.TestCaseDetailsRendererComponent, typeof i84.TestCaseApiStepComponent, typeof i85.TestCaseDatabaseStepComponent, typeof i86.TestCaseAiAgentStepComponent, typeof i87.TestCaseAiVerifyStepComponent, typeof i88.TestCaseUploadStepComponent, typeof i89.TestCaseScreenshotStepComponent, typeof i90.TestCaseScrollStepComponent, typeof i91.TestCaseVerifyUrlStepComponent, typeof i92.TestCaseRestoreSessionStepComponent, typeof i93.TestCaseCustomCodeStepComponent, typeof i94.CustomEditStepComponent, typeof i95.ItemListComponent, typeof i96.TestDataModalComponent, typeof i97.CreateStepGroupComponent, typeof i98.DeleteStepsComponent, typeof i99.ApiEditStepComponent, typeof i100.LiveConversationComponent, typeof i101.StepBuilderActionComponent, typeof i102.StepBuilderLoopComponent, typeof i103.ElementPopupComponent, typeof i104.StepBuilderConditionComponent, typeof i105.StepBuilderDatabaseComponent, typeof i106.StepBuilderAiAgentComponent, typeof i107.StepBuilderCustomCodeComponent, typeof i108.StepBuilderRecordStepComponent, typeof i109.StepBuilderDocumentGenerationTemplateStepComponent, typeof i110.ElementListComponent, typeof i111.StepBuilderDocumentComponent, typeof i112.DetailSidePanelComponent, typeof i113.DetailDrawerComponent, typeof i114.DetailDrawerTabComponent, typeof i115.DetailDrawerTabContentDirective, typeof i116.TestCaseDetailsComponent, typeof i117.TestCaseDetailsEditComponent, typeof i118.StepBuilderGroupComponent, typeof i119.StepDetailsDrawerComponent, typeof i120.TemplateVariablesFormComponent], [typeof i121.CommonModule, typeof i122.FormsModule, typeof i122.ReactiveFormsModule, typeof i123.NoopAnimationsModule, typeof i124.MatIconModule, typeof i125.MatMenuModule, typeof i126.MatButtonModule, typeof i127.MatFormFieldModule, typeof i128.MatSelectModule, typeof i129.MatOptionModule, typeof i130.MatCheckboxModule, typeof i131.MatRadioModule, typeof i132.MatSlideToggleModule, typeof i133.MatDatepickerModule, typeof i129.MatNativeDateModule, typeof i134.MatProgressSpinnerModule, typeof i135.MatTooltipModule, typeof i136.MatDialogModule, typeof i137.MatTableModule, typeof i138.MatInputModule, typeof i139.OverlayModule, typeof i140.PortalModule, typeof i141.ScrollingModule, typeof i142.NgxTypedJsModule, typeof i143.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.JumpToStepModalComponent, typeof i52.BreakpointsModalComponent, typeof i53.MainStepCollapseComponent, typeof i54.VisualComparisonComponent, typeof i55.SimulatorComponent, typeof i56.ConsoleAlertComponent, typeof i57.AiDebugAlertComponent, typeof i58.NetworkRequestComponent, typeof i59.RunHistoryCardComponent, typeof i60.VisualDifferenceModalComponent, typeof i61.ConfigurationCardComponent, typeof i62.CompareRunsComponent, typeof i63.IterationsLoopComponent, typeof i64.FailedStepCardComponent, typeof i65.CustomInputComponent, typeof i66.CustomTextareaComponent, typeof i67.CustomToggleComponent, typeof i68.FileUploadComponent, typeof i69.AiReasoningComponent, typeof i70.ExecutionResultModalComponent, typeof i71.SessionChangesModalComponent, typeof i72.ErrorModalComponent, typeof i73.ExportCodeModalComponent, typeof i74.ProgressIndicatorComponent, typeof i75.StepProgressCardComponent, typeof i76.StepStatusCardComponent, typeof i77.DbVerificationStepComponent, typeof i78.DbQueryExecutionItemComponent, typeof i79.TestCaseNormalStepComponent, typeof i80.TestCaseLoopStepComponent, typeof i81.TestCaseConditionStepComponent, typeof i82.TestCaseStepGroupComponent, typeof i83.TestCaseDetailsRendererComponent, typeof i84.TestCaseApiStepComponent, typeof i85.TestCaseDatabaseStepComponent, typeof i86.TestCaseAiAgentStepComponent, typeof i88.TestCaseUploadStepComponent, typeof i89.TestCaseScreenshotStepComponent, typeof i90.TestCaseScrollStepComponent, typeof i91.TestCaseVerifyUrlStepComponent, typeof i92.TestCaseRestoreSessionStepComponent, typeof i93.TestCaseCustomCodeStepComponent, typeof i94.CustomEditStepComponent, typeof i95.ItemListComponent, typeof i96.TestDataModalComponent, typeof i97.CreateStepGroupComponent, typeof i98.DeleteStepsComponent, typeof i99.ApiEditStepComponent, typeof i100.LiveConversationComponent, typeof i101.StepBuilderActionComponent, typeof i102.StepBuilderLoopComponent, typeof i103.ElementPopupComponent, typeof i104.StepBuilderConditionComponent, typeof i105.StepBuilderDatabaseComponent, typeof i106.StepBuilderAiAgentComponent, typeof i107.StepBuilderCustomCodeComponent, typeof i108.StepBuilderRecordStepComponent, typeof i109.StepBuilderDocumentGenerationTemplateStepComponent, typeof i110.ElementListComponent, typeof i111.StepBuilderDocumentComponent, typeof i112.DetailSidePanelComponent, typeof i113.DetailDrawerComponent, typeof i114.DetailDrawerTabComponent, typeof i115.DetailDrawerTabContentDirective, typeof i116.TestCaseDetailsComponent, typeof i117.TestCaseDetailsEditComponent, typeof i118.StepBuilderGroupComponent, typeof i119.StepDetailsDrawerComponent, typeof i120.TemplateVariablesFormComponent]>;
|
|
149
150
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
150
151
|
}
|