@cqa-lib/cqa-ui 1.1.318 → 1.1.320
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/segment-control/segment-control.component.mjs +4 -3
- package/esm2020/lib/test-case-details/api-edit-step/api-edit-step.component.mjs +5 -7
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +11 -6
- package/esm2020/lib/test-case-details/create-step-group/create-step-group.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +18 -15
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +18 -15
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/segment-control/segment-control.component.d.ts +1 -0
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -230,8 +230,8 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
230
230
|
getStartBranchLabel(branch: ConditionBranch): string;
|
|
231
231
|
/** End marker label for each branch: END IF, END ELSE IF, or END ELSE */
|
|
232
232
|
getEndBranchLabel(branch: ConditionBranch): string;
|
|
233
|
-
/** Branch display number:
|
|
234
|
-
getBranchDisplayNumber(branchIndex: number): number;
|
|
233
|
+
/** Branch display number: full hierarchical number. IF = stepNumber (e.g. 2.1.50), ELSE IF = 2.1.51, ELSE = 2.1.52. */
|
|
234
|
+
getBranchDisplayNumber(branchIndex: number): number | string;
|
|
235
235
|
/** Find branch in branches by id (for elseIfBranches which use same id). */
|
|
236
236
|
getBranchById(branchId?: string | number): ConditionBranch | undefined;
|
|
237
237
|
/** Get branch index in branches by id. */
|