codexly-ui 0.0.71 → 0.0.72
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
package/types/codexly-ui.d.ts
CHANGED
|
@@ -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>;
|
|
@@ -972,7 +971,7 @@ declare class ClxRatingComponent {
|
|
|
972
971
|
declare class ClxBadgeComponent {
|
|
973
972
|
readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
|
|
974
973
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
975
|
-
readonly size: _angular_core.InputSignal<"
|
|
974
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "xs">;
|
|
976
975
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
977
976
|
readonly positioned: _angular_core.InputSignal<boolean>;
|
|
978
977
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
@@ -983,7 +982,7 @@ declare class ClxBadgeComponent {
|
|
|
983
982
|
declare class ClxButtonComponent {
|
|
984
983
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
985
984
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
986
|
-
readonly size: _angular_core.InputSignal<"
|
|
985
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs">;
|
|
987
986
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
988
987
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
989
988
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -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
|
|
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;
|