codexly-ui 0.0.73 → 0.0.74

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.
@@ -13963,6 +13963,9 @@ class ClxToastService {
13963
13963
  show(options) {
13964
13964
  const position = options.position ?? TOAST_DEFAULTS.position;
13965
13965
  const container = this._getOrCreateContainer(position);
13966
+ // Move toast pane to end of CDK container so it's always above modals
13967
+ const hostEl = container.overlayRef.hostElement;
13968
+ hostEl.parentElement?.appendChild(hostEl);
13966
13969
  const entry = {
13967
13970
  id: this._uid(),
13968
13971
  type: options.type ?? TOAST_DEFAULTS.type,