@magic-xpa/angular 4.1200.0-dev4120.205 → 4.1200.0-dev4120.212

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,10 +1,10 @@
1
1
  {
2
2
  "name": "@magic-xpa/angular",
3
- "version": "4.1200.0-dev4120.205",
3
+ "version": "4.1200.0-dev4120.212",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "dependencies": {
6
- "@magic-xpa/engine": "4.1200.0-dev4120.205",
7
- "@magic-xpa/angular-material-core": "4.1200.0-dev4120.205",
6
+ "@magic-xpa/engine": "4.1200.0-dev4120.212",
7
+ "@magic-xpa/angular-material-core": "4.1200.0-dev4120.212",
8
8
  "ng-dynamic-component": "~10.7.0",
9
9
  "rxjs": "7.8.1",
10
10
  "@maskito/angular": "^1.4.0",
@@ -1,11 +1,11 @@
1
- import { ElementRef, EventEmitter, OnInit, ViewContainerRef } from '@angular/core';
1
+ import { ElementRef, EventEmitter, OnInit, AfterViewInit, ViewContainerRef } from '@angular/core';
2
2
  import { BaseMagicOverlayContainer } from './base-magic-overlay-container';
3
3
  import { IMagicViewContainerRef } from '../../..';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Creates a modal window for Magic modal window components
7
7
  */
8
- export declare class MagicOverlayContainer extends BaseMagicOverlayContainer implements OnInit, IMagicViewContainerRef {
8
+ export declare class MagicOverlayContainer extends BaseMagicOverlayContainer implements OnInit, AfterViewInit, IMagicViewContainerRef {
9
9
  /**
10
10
  * HTML to be displayed in the modal window
11
11
  */
@@ -40,6 +40,7 @@ export declare class MagicOverlayContainer extends BaseMagicOverlayContainer imp
40
40
  private isCenteredToWindow;
41
41
  private static readonly minAllowedWidth;
42
42
  private static readonly minAllowedHeight;
43
+ private _isRtl;
43
44
  /**
44
45
  *
45
46
  */
@@ -48,12 +49,17 @@ export declare class MagicOverlayContainer extends BaseMagicOverlayContainer imp
48
49
  *
49
50
  */
50
51
  ngOnInit(): void;
52
+ ngAfterViewInit(): void;
51
53
  setViewContainerRef(vcRef: ViewContainerRef): void;
52
54
  /**
53
55
  * Returns the form name
54
56
  * @returns
55
57
  */
56
58
  getText(): any;
59
+ /**
60
+ * Returns boolean to indicate whether the text direction is right-to-left (RTL)
61
+ */
62
+ get isRtl(): boolean;
57
63
  /**
58
64
  * Returns CSS styles for the window
59
65
  * @returns
@@ -93,7 +99,7 @@ export declare class MagicOverlayContainer extends BaseMagicOverlayContainer imp
93
99
  * @param {MouseEvent} event - The mousedown event triggering the resize.
94
100
  * @param {'right' | 'bottom' | 'corner'} direction - Indicates which resize handle was activated.
95
101
  */
96
- onResizeStart(event: MouseEvent, direction: 'right' | 'bottom' | 'corner'): void;
102
+ onResizeStart(event: MouseEvent, direction: 'right' | 'left' | 'bottom' | 'corner'): void;
97
103
  /**
98
104
  * Handles the resizing logic as the mouse moves across the window.
99
105
  * This listener is active globally on the window during a resize operation via @HostListener.