@cqa-lib/cqa-ui 1.1.329 → 1.1.331
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +84 -2
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal.component.mjs +4 -4
- package/fesm2015/cqa-lib-cqa-ui.mjs +84 -4
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +86 -4
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -178,6 +178,11 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
178
178
|
trackByTemplate(index: number, template: ActionTemplate): any;
|
|
179
179
|
trackByVariable(index: number, variable: any): any;
|
|
180
180
|
onCreateStep(): void;
|
|
181
|
+
private getCurrentTemplateVariables;
|
|
182
|
+
private buildTestDataList;
|
|
183
|
+
private resolveVariableTestDataValue;
|
|
184
|
+
private resolveSelectedTestDataProfileId;
|
|
185
|
+
private parseVariableDataType;
|
|
181
186
|
toggleAdvanced(): void;
|
|
182
187
|
onElementClick(elementKey: string): void;
|
|
183
188
|
onElementValueChange(key: string, value: string): void;
|