@cqa-lib/cqa-ui 1.1.282 → 1.1.284
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 +68 -9
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +74 -13
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +69 -10
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/create-step-group/create-step-group.component.d.ts +6 -2
- package/package.json +1 -1
|
@@ -14,17 +14,21 @@ export interface CreateStepGroupFormData {
|
|
|
14
14
|
export declare class CreateStepGroupComponent {
|
|
15
15
|
private readonly fb;
|
|
16
16
|
stepsToGroup: TestCaseStepConfig[];
|
|
17
|
+
/** Pre-computed display labels from host (same order as stepsToGroup). When provided, used instead of computing from step. */
|
|
18
|
+
stepLabels: string[];
|
|
17
19
|
createGroup: EventEmitter<CreateStepGroupFormData>;
|
|
18
20
|
cancelled: EventEmitter<void>;
|
|
19
21
|
form: FormGroup;
|
|
20
22
|
constructor(fb: FormBuilder);
|
|
21
23
|
get stepsCount(): number;
|
|
22
24
|
get subtitleText(): string;
|
|
23
|
-
/** Display label for a step in the "Steps to group" list (same
|
|
25
|
+
/** Display label for a step in the "Steps to group" list (same as main step list - use stepLabels when provided). */
|
|
24
26
|
getStepDisplayLabel(step: TestCaseStepConfig, index: number): string;
|
|
27
|
+
/** Strip HTML tags for plain-text display (action may contain spans for badges). */
|
|
28
|
+
private stripHtml;
|
|
25
29
|
private getNormalStepLabel;
|
|
26
30
|
onCancel(): void;
|
|
27
31
|
onCreateGroup(): void;
|
|
28
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateStepGroupComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CreateStepGroupComponent, "cqa-create-step-group", never, { "stepsToGroup": "stepsToGroup"; }, { "createGroup": "createGroup"; "cancelled": "cancelled"; }, never, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateStepGroupComponent, "cqa-create-step-group", never, { "stepsToGroup": "stepsToGroup"; "stepLabels": "stepLabels"; }, { "createGroup": "createGroup"; "cancelled": "cancelled"; }, never, never>;
|
|
30
34
|
}
|