mn-angular-lib 0.0.81 → 0.0.82

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": "mn-angular-lib",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -2409,8 +2409,8 @@ interface BaseModalConfig<TResult = unknown> {
2409
2409
  description?: string;
2410
2410
  /** Width of the modal (uses ModalSize enum) */
2411
2411
  sizeWidth?: ModalSize;
2412
- /** Height of the modal (e.g. '400px', '50vh', '90vh') */
2413
- sizeHeight?: string;
2412
+ /** Height of the modal (uses ModalSize enum) */
2413
+ sizeHeight?: ModalSize;
2414
2414
  closeMode?: CloseMode;
2415
2415
  closeGuard?: () => Promise<boolean> | boolean;
2416
2416
  backdrop?: BackdropMode;
@@ -2683,8 +2683,8 @@ declare abstract class BaseModalBuilder<TConfig extends BaseModalConfig<TResult>
2683
2683
  closeGuard(guard: () => Promise<boolean> | boolean): this;
2684
2684
  /** Set the width of the modal */
2685
2685
  sizeWidth(size: ModalSize): this;
2686
- /** Set the height of the modal (e.g. '400px', '50vh', '90vh') */
2687
- sizeHeight(height: string): this;
2686
+ /** Set the height of the modal */
2687
+ sizeHeight(size: ModalSize): this;
2688
2688
  closeMode(mode: CloseMode): this;
2689
2689
  backdrop(mode: BackdropMode): this;
2690
2690
  keyboard(mode: KeyboardMode): this;