@cqa-lib/cqa-ui 1.1.320 → 1.1.321
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-loop/step-builder-loop.component.mjs +33 -15
- package/fesm2015/cqa-lib-cqa-ui.mjs +32 -14
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +32 -14
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/step-builder/step-builder-loop/step-builder-loop.component.d.ts +10 -0
- package/package.json +1 -1
|
@@ -135,6 +135,16 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
|
135
135
|
* Handle loop start change and update end options
|
|
136
136
|
*/
|
|
137
137
|
private onLoopStartChange;
|
|
138
|
+
/**
|
|
139
|
+
* Get display name for a 1-based row index from the selected profile's data array (data[index-1].name).
|
|
140
|
+
* Returns null if no name. Matches loop-step edit mode behavior.
|
|
141
|
+
*/
|
|
142
|
+
private getDataRowNameForOneBasedIndex;
|
|
143
|
+
/**
|
|
144
|
+
* Build label for a loop index option: "setName (n)" when row has name, else "Step (n)".
|
|
145
|
+
* Matches loop-step edit mode dropdown display.
|
|
146
|
+
*/
|
|
147
|
+
private getLoopIndexOptionLabel;
|
|
138
148
|
/**
|
|
139
149
|
* Update loop start and end config options
|
|
140
150
|
*/
|