codexly-ui 0.0.36 → 0.0.37
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/fesm2022/codexly-ui.mjs +38 -20
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2657,6 +2657,7 @@ declare class ClxAlertService {
|
|
|
2657
2657
|
private readonly _overlay;
|
|
2658
2658
|
private readonly _injector;
|
|
2659
2659
|
private readonly _focusTrapFactory;
|
|
2660
|
+
constructor();
|
|
2660
2661
|
open(options?: ClxAlertOptions): Promise<ClxAlertResult>;
|
|
2661
2662
|
success(title: string, message?: string, opts?: Partial<ClxAlertOptions>): Promise<ClxAlertResult>;
|
|
2662
2663
|
error(title: string, message?: string, opts?: Partial<ClxAlertOptions>): Promise<ClxAlertResult>;
|
|
@@ -2672,7 +2673,6 @@ declare class ClxAnimateService {
|
|
|
2672
2673
|
private readonly defaults;
|
|
2673
2674
|
readonly isBrowser: boolean;
|
|
2674
2675
|
private readonly _runningCount;
|
|
2675
|
-
/** True mientras al menos una animación está activa. */
|
|
2676
2676
|
readonly isAnimating: _angular_core.Signal<boolean>;
|
|
2677
2677
|
private readonly _cleanups;
|
|
2678
2678
|
private readonly _observerPools;
|
|
@@ -2707,6 +2707,7 @@ declare class ClxDrawerService {
|
|
|
2707
2707
|
private readonly _overlay;
|
|
2708
2708
|
private readonly _injector;
|
|
2709
2709
|
private readonly _focusTrapFactory;
|
|
2710
|
+
constructor();
|
|
2710
2711
|
open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxDrawerConfig<D>): ClxDrawerRef<R>;
|
|
2711
2712
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxDrawerService, never>;
|
|
2712
2713
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxDrawerService>;
|
|
@@ -2716,6 +2717,7 @@ declare class ClxModalService {
|
|
|
2716
2717
|
private readonly _overlay;
|
|
2717
2718
|
private readonly _injector;
|
|
2718
2719
|
private readonly _focusTrapFactory;
|
|
2720
|
+
constructor();
|
|
2719
2721
|
open<R = unknown, D = unknown>(component: new (...args: any[]) => any, config?: ClxModalConfig<D>): ClxModalRef<R>;
|
|
2720
2722
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxModalService, never>;
|
|
2721
2723
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxModalService>;
|
|
@@ -2723,8 +2725,8 @@ declare class ClxModalService {
|
|
|
2723
2725
|
|
|
2724
2726
|
declare class ClxToastService {
|
|
2725
2727
|
private readonly _appRef;
|
|
2726
|
-
/** One container per position, lazily created */
|
|
2727
2728
|
private readonly _containers;
|
|
2729
|
+
constructor();
|
|
2728
2730
|
show(options: ClxToastOptions): void;
|
|
2729
2731
|
success(message: string, opts?: Partial<ClxToastOptions>): void;
|
|
2730
2732
|
error(message: string, opts?: Partial<ClxToastOptions>): void;
|