ids-enterprise-ng 20.2.3 → 20.2.5-patch.1
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/fesm2022/ids-enterprise-ng.mjs +1026 -948
- package/fesm2022/ids-enterprise-ng.mjs.map +1 -1
- package/index.d.ts +35 -2
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -4419,6 +4419,30 @@ declare class SohoDropDownComponent implements AfterViewInit, AfterViewChecked,
|
|
|
4419
4419
|
* Marks the components as requiring a rebuild after the next update.
|
|
4420
4420
|
*/
|
|
4421
4421
|
markForRefresh(): void;
|
|
4422
|
+
/**
|
|
4423
|
+
* Adds an inline error message to the dropdown
|
|
4424
|
+
*
|
|
4425
|
+
* @param message the error message to add.
|
|
4426
|
+
*/
|
|
4427
|
+
addInlineError(message: string): void;
|
|
4428
|
+
/**
|
|
4429
|
+
* Adds an inline message of the type specified
|
|
4430
|
+
*
|
|
4431
|
+
* @param message the message to add.
|
|
4432
|
+
* @param type optional - 'error' (default)
|
|
4433
|
+
* @param isAlert optional - false (default)
|
|
4434
|
+
* @param triggerEvents optional - true (default)
|
|
4435
|
+
* @param icon optional - icon for the message
|
|
4436
|
+
* @param id optional - id for the message
|
|
4437
|
+
*/
|
|
4438
|
+
addInlineMessage(message: string, type?: SohoAlertType, isAlert?: boolean, triggerEvents?: boolean, icon?: string, id?: string): void;
|
|
4439
|
+
/**
|
|
4440
|
+
* Removes inline message of the specified type
|
|
4441
|
+
*
|
|
4442
|
+
* @param type the message type to remove ('error', 'alert', etc.)
|
|
4443
|
+
* @param triggerEvents optional - true (default)
|
|
4444
|
+
*/
|
|
4445
|
+
removeMessage(type?: SohoAlertType, triggerEvents?: boolean): void;
|
|
4422
4446
|
static ɵfac: i0.ɵɵFactoryDeclaration<SohoDropDownComponent, [null, null, { optional: true; self: true; }, null]>;
|
|
4423
4447
|
static ɵcmp: i0.ɵɵComponentDeclaration<SohoDropDownComponent, "select[soho-dropdown]", never, { "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; "maxSelected": { "alias": "maxSelected"; "required": false; }; "moveSelectedToTop": { "alias": "moveSelectedToTop"; "required": false; }; "moveSelected": { "alias": "moveSelected"; "required": false; }; "showEmptyGroupHeaders": { "alias": "showEmptyGroupHeaders"; "required": false; }; "sourceArguments": { "alias": "sourceArguments"; "required": false; }; "reload": { "alias": "reload"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "width": { "alias": "width"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "noSearch": { "alias": "noSearch"; "required": false; }; "source": { "alias": "source"; "required": false; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; }; "showTags": { "alias": "showTags"; "required": false; }; "showSearchUnderSelected": { "alias": "showSearchUnderSelected"; "required": false; }; "tagSettings": { "alias": "tagSettings"; "required": false; }; "allTextString": { "alias": "allTextString"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "selectedTextString": { "alias": "selectedTextString"; "required": false; }; "attributes": { "alias": "attributes"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "change$": "change"; "updated$": "updated"; "listClosed$": "listclosed"; "listOpened$": "listopened"; "listContextMenu$": "listcontextmenu"; "keydown$": "keydown"; }, never, ["*"], false, never>;
|
|
4424
4448
|
}
|
|
@@ -7086,6 +7110,7 @@ declare class SohoModalDialogRef<T> {
|
|
|
7086
7110
|
private appRef;
|
|
7087
7111
|
private injector;
|
|
7088
7112
|
private ngZone;
|
|
7113
|
+
private service;
|
|
7089
7114
|
/** Component - if the content is derived from an existing component. */
|
|
7090
7115
|
private componentRef?;
|
|
7091
7116
|
/** Vetoable Event Guard */
|
|
@@ -7283,6 +7308,12 @@ declare class SohoModalDialogRef<T> {
|
|
|
7283
7308
|
* @param noPadding - if true; the content will have no paddings.
|
|
7284
7309
|
*/
|
|
7285
7310
|
noPadding(noPadding: boolean): SohoModalDialogRef<T>;
|
|
7311
|
+
/**
|
|
7312
|
+
* Sets the 'initialFocus' CSS selector for the element to focus on when the modal is opened.
|
|
7313
|
+
*
|
|
7314
|
+
* @param initialFocus - a CSS selector string targeting the element to focus.
|
|
7315
|
+
*/
|
|
7316
|
+
initialFocus(initialFocus: string): SohoModalDialogRef<T>;
|
|
7286
7317
|
/**
|
|
7287
7318
|
* Applies a function to the instantiated component,
|
|
7288
7319
|
* allowing the component to be modified, or initialised.
|
|
@@ -7313,7 +7344,7 @@ declare class SohoModalDialogRef<T> {
|
|
|
7313
7344
|
*
|
|
7314
7345
|
* @paran appRef - application reference used to insert the component.
|
|
7315
7346
|
*/
|
|
7316
|
-
constructor(router: Router, appRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver, injector: Injector, ngZone: NgZone, settings: SohoModalOptions, modalComponent?: ComponentType<T>);
|
|
7347
|
+
constructor(router: Router, appRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver, injector: Injector, ngZone: NgZone, service: SohoModalDialogService, settings: SohoModalOptions, modalComponent?: ComponentType<T>);
|
|
7317
7348
|
/**
|
|
7318
7349
|
* Opens the dialog.
|
|
7319
7350
|
*
|
|
@@ -7501,6 +7532,8 @@ declare class SohoModalDialogService {
|
|
|
7501
7532
|
private readonly injector;
|
|
7502
7533
|
private readonly ngZone;
|
|
7503
7534
|
private readonly router;
|
|
7535
|
+
/** Tracks whether any modal is currently open to prevent duplicate instances from rapid triggers. */
|
|
7536
|
+
_hasOpenModal: boolean;
|
|
7504
7537
|
/**
|
|
7505
7538
|
* Constructor.
|
|
7506
7539
|
*
|
|
@@ -8539,7 +8572,7 @@ declare class SohoRadioButtonComponent implements AfterViewInit {
|
|
|
8539
8572
|
set disabled(_value: boolean);
|
|
8540
8573
|
/** Sets the element to indicate checked. */
|
|
8541
8574
|
checked?: boolean;
|
|
8542
|
-
get tabIndex():
|
|
8575
|
+
get tabIndex(): 0 | -1;
|
|
8543
8576
|
/**
|
|
8544
8577
|
* ---------------------------------------------------
|
|
8545
8578
|
* 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.
|
|
4
|
+
"version": "20.2.5-patch.1",
|
|
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.
|
|
10
|
+
"ids-enterprise": "4.110.5-patch.1",
|
|
11
11
|
"@types/jquery": "3.5.33",
|
|
12
12
|
"@types/d3": "7.4.3",
|
|
13
|
-
"ids-enterprise-typings": "20.2.
|
|
13
|
+
"ids-enterprise-typings": "20.2.5-patch.1"
|
|
14
14
|
},
|
|
15
15
|
"description": "Infor Design System (IDS) Enterprise Angular Components",
|
|
16
16
|
"repository": {
|