ids-enterprise-ng 20.2.3-patch.1 → 20.2.4

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/index.d.ts CHANGED
@@ -7086,6 +7086,7 @@ declare class SohoModalDialogRef<T> {
7086
7086
  private appRef;
7087
7087
  private injector;
7088
7088
  private ngZone;
7089
+ private service;
7089
7090
  /** Component - if the content is derived from an existing component. */
7090
7091
  private componentRef?;
7091
7092
  /** Vetoable Event Guard */
@@ -7283,6 +7284,12 @@ declare class SohoModalDialogRef<T> {
7283
7284
  * @param noPadding - if true; the content will have no paddings.
7284
7285
  */
7285
7286
  noPadding(noPadding: boolean): SohoModalDialogRef<T>;
7287
+ /**
7288
+ * Sets the 'initialFocus' CSS selector for the element to focus on when the modal is opened.
7289
+ *
7290
+ * @param initialFocus - a CSS selector string targeting the element to focus.
7291
+ */
7292
+ initialFocus(initialFocus: string): SohoModalDialogRef<T>;
7286
7293
  /**
7287
7294
  * Applies a function to the instantiated component,
7288
7295
  * allowing the component to be modified, or initialised.
@@ -7313,7 +7320,7 @@ declare class SohoModalDialogRef<T> {
7313
7320
  *
7314
7321
  * @paran appRef - application reference used to insert the component.
7315
7322
  */
7316
- constructor(router: Router, appRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver, injector: Injector, ngZone: NgZone, settings: SohoModalOptions, modalComponent?: ComponentType<T>);
7323
+ constructor(router: Router, appRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver, injector: Injector, ngZone: NgZone, service: SohoModalDialogService, settings: SohoModalOptions, modalComponent?: ComponentType<T>);
7317
7324
  /**
7318
7325
  * Opens the dialog.
7319
7326
  *
@@ -7501,6 +7508,8 @@ declare class SohoModalDialogService {
7501
7508
  private readonly injector;
7502
7509
  private readonly ngZone;
7503
7510
  private readonly router;
7511
+ /** Tracks whether any modal is currently open to prevent duplicate instances from rapid triggers. */
7512
+ _hasOpenModal: boolean;
7504
7513
  /**
7505
7514
  * Constructor.
7506
7515
  *
@@ -8539,7 +8548,7 @@ declare class SohoRadioButtonComponent implements AfterViewInit {
8539
8548
  set disabled(_value: boolean);
8540
8549
  /** Sets the element to indicate checked. */
8541
8550
  checked?: boolean;
8542
- get tabIndex(): 1 | -1;
8551
+ get tabIndex(): 0 | -1;
8543
8552
  /**
8544
8553
  * ---------------------------------------------------
8545
8554
  * Local variables
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "ids-enterprise-ng",
3
3
  "slug": "ids-enterprise-ng",
4
- "version": "20.2.3-patch.1",
4
+ "version": "20.2.4",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
7
7
  "@angular/core": "^20.0.0",
8
8
  "jquery": "3.7.1",
9
9
  "d3": "7.9.0",
10
- "ids-enterprise": "4.110.3-patch.1",
10
+ "ids-enterprise": "4.110.4",
11
11
  "@types/jquery": "3.5.33",
12
12
  "@types/d3": "7.4.3",
13
- "ids-enterprise-typings": "20.2.3-patch.1"
13
+ "ids-enterprise-typings": "20.2.4"
14
14
  },
15
15
  "description": "Infor Design System (IDS) Enterprise Angular Components",
16
16
  "repository": {