@educarehq/solaris-components 0.5.2 → 0.5.4

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.
@@ -1147,7 +1147,7 @@ class SolarisPopover {
1147
1147
  host.style.left = '0px';
1148
1148
  host.style.display = 'none';
1149
1149
  host.style.position = 'fixed';
1150
- host.style.zIndex = 'var(--solaris-z-dropdown)';
1150
+ host.style.zIndex = 'var(--solaris-z-max)';
1151
1151
  host.className = `solaris-popover-panel ${this.panelClass || ''}`.trim();
1152
1152
  const view = this.panelDir.templateRef.createEmbeddedView({});
1153
1153
  this.appRef.attachView(view);
@@ -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({