@cqa-lib/cqa-ui 1.1.300 → 1.1.302
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/dynamic-select/dynamic-select-field.component.mjs +25 -6
- package/esm2020/lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-group/step-builder-group.component.mjs +3 -3
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +32 -13
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +32 -13
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/dynamic-select/dynamic-select-field.component.d.ts +6 -0
- package/package.json +1 -1
|
@@ -96,6 +96,12 @@ export declare class DynamicSelectFieldComponent implements OnInit, OnChanges {
|
|
|
96
96
|
* at least once since opening the panel. Prevents auto-load on open.
|
|
97
97
|
*/
|
|
98
98
|
private hasScrolledSinceOpen;
|
|
99
|
+
/**
|
|
100
|
+
* True when the load-more sentinel is currently in view. Used to trigger only when
|
|
101
|
+
* the sentinel transitions from out-of-view to in-view (user scrolled to bottom again),
|
|
102
|
+
* not when it stays in view after new data arrives (which would cause repeated API calls).
|
|
103
|
+
*/
|
|
104
|
+
private sentinelCurrentlyInView;
|
|
99
105
|
private onPanelScroll;
|
|
100
106
|
ngOnInit(): void;
|
|
101
107
|
get displayPlaceholder(): string | undefined;
|