@educarehq/solaris-components 0.5.2 → 0.5.3
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.
|
@@ -3088,15 +3088,15 @@ class SolarisDialogStepsContainer {
|
|
|
3088
3088
|
injector = inject(Injector);
|
|
3089
3089
|
configuration = inject(SOLARIS_DIALOG_DATA);
|
|
3090
3090
|
dialogRef = inject(SolarisDialogRef);
|
|
3091
|
+
steps = this.configuration?.steps ?? [];
|
|
3092
|
+
showProgress = this.configuration?.showProgress ?? true;
|
|
3093
|
+
transitionBlur = this.configuration?.transitionBlur ?? true;
|
|
3094
|
+
contentMinHeight = this.configuration?.contentMinHeight ?? '0';
|
|
3095
|
+
transitionDurationMs = this.configuration?.transitionDurationMs ?? 420;
|
|
3091
3096
|
loading = signal(false, ...(ngDevMode ? [{ debugName: "loading" }] : []));
|
|
3092
3097
|
transitioning = signal(false, ...(ngDevMode ? [{ debugName: "transitioning" }] : []));
|
|
3093
3098
|
transitionHalfway = signal(false, ...(ngDevMode ? [{ debugName: "transitionHalfway" }] : []));
|
|
3094
3099
|
currentStepIndex = signal(this.resolveInitialStepIndex(), ...(ngDevMode ? [{ debugName: "currentStepIndex" }] : []));
|
|
3095
|
-
showProgress = this.configuration.showProgress ?? true;
|
|
3096
|
-
transitionBlur = this.configuration.transitionBlur ?? true;
|
|
3097
|
-
contentMinHeight = this.configuration.contentMinHeight ?? '0';
|
|
3098
|
-
steps = this.configuration.steps ?? [];
|
|
3099
|
-
transitionDurationMs = this.configuration.transitionDurationMs ?? 360;
|
|
3100
3100
|
halfwayTimer = 0;
|
|
3101
3101
|
transitionTimer = 0;
|
|
3102
3102
|
stepInjectors = this.steps.map(step => Injector.create({
|