@cqa-lib/cqa-ui 1.1.282 → 1.1.283
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/test-case-details/create-step-group/create-step-group.component.mjs +16 -2
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +17 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +17 -3
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/create-step-group/create-step-group.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -20,8 +20,10 @@ export declare class CreateStepGroupComponent {
|
|
|
20
20
|
constructor(fb: FormBuilder);
|
|
21
21
|
get stepsCount(): number;
|
|
22
22
|
get subtitleText(): string;
|
|
23
|
-
/** Display label for a step in the "Steps to group" list (same
|
|
23
|
+
/** Display label for a step in the "Steps to group" list (same as main step list - use action when available). */
|
|
24
24
|
getStepDisplayLabel(step: TestCaseStepConfig, index: number): string;
|
|
25
|
+
/** Strip HTML tags for plain-text display (action may contain spans for badges). */
|
|
26
|
+
private stripHtml;
|
|
25
27
|
private getNormalStepLabel;
|
|
26
28
|
onCancel(): void;
|
|
27
29
|
onCreateGroup(): void;
|