@cqa-lib/cqa-ui 1.1.347 → 1.1.348
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/session-changes-modal/session-changes-modal.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +12 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +13 -4
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +13 -4
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/session-changes-modal/session-changes-modal.component.d.ts +1 -1
- package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +2 -0
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -125,6 +125,7 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
125
125
|
filteredTemplates: ActionTemplate[];
|
|
126
126
|
searchValue: string;
|
|
127
127
|
selectedTemplate: ActionTemplate | null;
|
|
128
|
+
private previousTemplateForEdit;
|
|
128
129
|
metadata: string;
|
|
129
130
|
description: string;
|
|
130
131
|
advancedExpanded: boolean;
|
|
@@ -172,6 +173,7 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
172
173
|
onAdvancedVariableBooleanChange(variableName: string, value: boolean): void;
|
|
173
174
|
onAdvancedVariableValueChange(variableName: string, value: any): void;
|
|
174
175
|
onChangeTemplate(): void;
|
|
176
|
+
onCancelTemplateSelection(): void;
|
|
175
177
|
onBack(): void;
|
|
176
178
|
onCancel(): void;
|
|
177
179
|
isFormValid(): boolean;
|