@cqa-lib/cqa-ui 1.1.396 → 1.1.397
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/execution-screen/step-renderer/step-renderer.component.mjs +38 -74
- package/fesm2015/cqa-lib-cqa-ui.mjs +37 -73
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +37 -73
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +8 -0
- package/package.json +1 -1
|
@@ -105,11 +105,19 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
|
|
|
105
105
|
private static componentInstances;
|
|
106
106
|
private static componentRefs;
|
|
107
107
|
private static subscribedEventEmitters;
|
|
108
|
+
private static componentInitialized;
|
|
108
109
|
private lastStepId;
|
|
109
110
|
private lastStepType;
|
|
110
111
|
private previousStepKey;
|
|
111
112
|
private _lastDebugPointDisabled;
|
|
112
113
|
constructor(componentMap: Map<string, Type<any>>, cdr: ChangeDetectorRef);
|
|
114
|
+
/**
|
|
115
|
+
* Safely trigger change detection on a child component.
|
|
116
|
+
* Calls detectChanges() only if the child's ngOnInit has already run (i.e. config is built).
|
|
117
|
+
* Before initialization, falls back to markForCheck() which queues CD for the next cycle
|
|
118
|
+
* without forcing immediate template evaluation.
|
|
119
|
+
*/
|
|
120
|
+
private safeDetectChanges;
|
|
113
121
|
ngOnChanges(changes: SimpleChanges): void;
|
|
114
122
|
ngAfterViewInit(): void;
|
|
115
123
|
private updateComponentInstance;
|