codexly-ui 0.0.71 → 0.0.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexly-ui",
3
- "version": "0.0.71",
3
+ "version": "0.0.73",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
@@ -771,7 +771,6 @@ declare class ClxToastComponent implements OnInit, OnDestroy {
771
771
  declare class ClxToastContainerComponent {
772
772
  readonly entries: _angular_core.ModelSignal<ClxToastEntry[]>;
773
773
  readonly position: _angular_core.ModelSignal<ClxToastPosition>;
774
- /** Called by service to get the ClxToastComponent instance for exit animation */
775
774
  toastRefs: QueryList<ClxToastComponent>;
776
775
  protected readonly _positionClass: _angular_core.Signal<string>;
777
776
  requestDismiss(id: string): Promise<void>;
@@ -2720,7 +2719,6 @@ declare class ClxModalService {
2720
2719
  private readonly _overlay;
2721
2720
  private readonly _injector;
2722
2721
  private readonly _focusTrapFactory;
2723
- private readonly _overlayContainer;
2724
2722
  constructor();
2725
2723
  open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxModalConfig<D>): ClxModalRef<R>;
2726
2724
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxModalService, never>;
@@ -2728,15 +2726,14 @@ declare class ClxModalService {
2728
2726
  }
2729
2727
 
2730
2728
  declare class ClxToastService {
2731
- private readonly _appRef;
2729
+ private readonly _overlay;
2730
+ private readonly _injector;
2732
2731
  private readonly _containers;
2733
- constructor();
2734
2732
  show(options: ClxToastOptions): void;
2735
2733
  success(message: string, opts?: Partial<ClxToastOptions>): void;
2736
2734
  error(message: string, opts?: Partial<ClxToastOptions>): void;
2737
2735
  warning(message: string, opts?: Partial<ClxToastOptions>): void;
2738
2736
  info(message: string, opts?: Partial<ClxToastOptions>): void;
2739
- /** Dismiss all toasts across all containers immediately (no exit anim). */
2740
2737
  dismissAll(): void;
2741
2738
  private _getOrCreateContainer;
2742
2739
  private _uid;