mn-angular-lib 1.0.100 → 1.0.101

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": "1.0.100",
3
+ "version": "1.0.101",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -4319,7 +4319,14 @@ declare class MnModalShellComponent<TResult = unknown> implements OnInit, AfterV
4319
4319
  config: ModalConfig<TResult>;
4320
4320
  modalRef: MnModalRef<TResult>;
4321
4321
  isClosing: boolean;
4322
- isStacked: boolean;
4322
+ /**
4323
+ * Whether another modal is stacked on top of this one. Set imperatively by
4324
+ * `MnModalService` on the already-rendered shell below the newly opened one, so it must
4325
+ * be a signal: mutating a plain field there changes the host `[class]` after the view was
4326
+ * checked (NG0100 ExpressionChangedAfterItHasBeenChecked) and does not schedule change
4327
+ * detection in a zoneless app. A signal write both notifies the host binding and schedules CD.
4328
+ */
4329
+ readonly isStacked: i0.WritableSignal<boolean>;
4323
4330
  readonly ModalKind: typeof ModalKind;
4324
4331
  private previouslyFocusedElement;
4325
4332
  private focusTrapListener;