codexly-ui 0.0.30 → 0.0.31

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.
@@ -1730,7 +1730,7 @@ class ClxCarouselComponent {
1730
1730
  _slides = contentChildren(ClxCarouselDirective, ...(ngDevMode ? [{ debugName: "_slides" }] : []));
1731
1731
  _autoPlayTimer = null;
1732
1732
  _touchStartX = 0;
1733
- _zone = inject(NgZone);
1733
+ _zone = inject(NgZone, { optional: true }) ?? { run: (fn) => fn(), runOutsideAngular: (fn) => fn() };
1734
1734
  _aspectClass = computed(() => CAROUSEL_ASPECT_RATIO_MAP[this.aspectRatio()] ?? '', ...(ngDevMode ? [{ debugName: "_aspectClass" }] : []));
1735
1735
  _viewportClass = computed(() => {
1736
1736
  const base = this._aspectClass();
@@ -4935,7 +4935,7 @@ class ClxAlertComponent {
4935
4935
  _resolve = inject(CLX_ALERT_RESOLVE);
4936
4936
  _animate = inject(ClxAnimateService);
4937
4937
  _el = inject((ElementRef));
4938
- _zone = inject(NgZone);
4938
+ _zone = inject(NgZone, { optional: true }) ?? { run: (fn) => fn(), runOutsideAngular: (fn) => fn() };
4939
4939
  // ─── Resolved options ─────────────────────────────────────────────────────
4940
4940
  get _type() { return this._opts.type ?? 'info'; }
4941
4941
  _icon = signal(ALERT_ICON_MAP[this._type], ...(ngDevMode ? [{ debugName: "_icon" }] : []));
@@ -5983,7 +5983,7 @@ class ClxToastComponent {
5983
5983
  dismiss = output();
5984
5984
  _animate = inject(ClxAnimateService);
5985
5985
  _el = inject((ElementRef));
5986
- _zone = inject(NgZone);
5986
+ _zone = inject(NgZone, { optional: true }) ?? { run: (fn) => fn(), runOutsideAngular: (fn) => fn() };
5987
5987
  // ─── Timer state ──────────────────────────────────────────────────────────
5988
5988
  _progressPct = signal(100, ...(ngDevMode ? [{ debugName: "_progressPct" }] : []));
5989
5989
  _timerHandle = null;
@@ -9065,7 +9065,7 @@ class ClxEditorComponent {
9065
9065
  _sourceEl;
9066
9066
  // ── Services ─────────────────────────────────────────────────────────────
9067
9067
  _cdr = inject(ChangeDetectorRef);
9068
- _zone = inject(NgZone);
9068
+ _zone = inject(NgZone, { optional: true }) ?? { run: (fn) => fn(), runOutsideAngular: (fn) => fn() };
9069
9069
  _destroyRef = inject(DestroyRef);
9070
9070
  _modal = inject(ClxModalService);
9071
9071
  // ── Select options ────────────────────────────────────────────────────────
@@ -10881,7 +10881,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.23", ngImpo
10881
10881
  }] } });
10882
10882
 
10883
10883
  class ClxAppLayoutComponent {
10884
- _zone = inject(NgZone);
10884
+ _zone = inject(NgZone, { optional: true }) ?? { run: (fn) => fn(), runOutsideAngular: (fn) => fn() };
10885
10885
  _document = inject(DOCUMENT);
10886
10886
  activeColor = input('indigo', ...(ngDevMode ? [{ debugName: "activeColor" }] : []));
10887
10887
  _sidebarOpen = signal(false, ...(ngDevMode ? [{ debugName: "_sidebarOpen" }] : []));