mn-angular-lib 1.0.74 → 1.0.75
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
|
@@ -3423,9 +3423,11 @@ declare class MnModalShellComponent<TResult = unknown> implements OnInit, AfterV
|
|
|
3423
3423
|
private dragStartY;
|
|
3424
3424
|
/** Whether the sheet can be dismissed at all (drives whether the swipe is armed). */
|
|
3425
3425
|
private get canClose();
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3426
|
+
/** Tailwind's `sm` breakpoint — below this the modal renders as a bottom sheet. */
|
|
3427
|
+
private static readonly SHEET_MAX_WIDTH;
|
|
3428
|
+
onSheetPointerDown(event: PointerEvent): void;
|
|
3429
|
+
onSheetPointerMove(event: PointerEvent): void;
|
|
3430
|
+
onSheetPointerUp(): Promise<void>;
|
|
3429
3431
|
/** Attempts to dismiss the modal. Resolves true if it was actually dismissed,
|
|
3430
3432
|
* false if blocked by a DISABLED close mode or a rejected close guard. */
|
|
3431
3433
|
private handleClose;
|