@m1z23r/ngx-ui 1.1.26 → 1.1.28
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/m1z23r-ngx-ui.d.ts
CHANGED
|
@@ -293,6 +293,8 @@ interface ToastConfig {
|
|
|
293
293
|
dismissible?: boolean;
|
|
294
294
|
/** Show progress bar for auto-dismiss */
|
|
295
295
|
showProgress?: boolean;
|
|
296
|
+
/** Max visible toasts (0 = unlimited, oldest dismissed when exceeded) */
|
|
297
|
+
maxVisible?: number;
|
|
296
298
|
}
|
|
297
299
|
|
|
298
300
|
/**
|
|
@@ -1027,7 +1029,7 @@ declare class ProgressComponent {
|
|
|
1027
1029
|
}
|
|
1028
1030
|
|
|
1029
1031
|
type CircularProgressVariant = 'primary' | 'success' | 'warning' | 'danger';
|
|
1030
|
-
type CircularProgressSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
1032
|
+
type CircularProgressSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1031
1033
|
declare class CircularProgressComponent {
|
|
1032
1034
|
readonly value: _angular_core.InputSignal<number>;
|
|
1033
1035
|
readonly variant: _angular_core.InputSignal<CircularProgressVariant>;
|