@stackline/angular-multiselect-dropdown 21.2.0 → 21.2.2
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "../../../node_modules/ng-packagr/package.schema.json",
|
|
3
3
|
"name": "@stackline/angular-multiselect-dropdown",
|
|
4
|
-
"version": "21.2.
|
|
4
|
+
"version": "21.2.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Pradeep Terli (Original), Alexandro Paixao Marques (Maintainer)",
|
|
7
7
|
"description": "Angular multiselect dropdown for Angular 21 with maintained release lines, accessibility-focused and keyboard/ARIA tested interactions, dialog-safe body overlays, Stackline skins, search, grouping, templates, headless helpers, and forms support.",
|
|
@@ -60,19 +60,18 @@
|
|
|
60
60
|
"css-theme",
|
|
61
61
|
"legacy-angular",
|
|
62
62
|
"angular-compatibility",
|
|
63
|
-
"angular21",
|
|
64
|
-
"angular20",
|
|
65
|
-
"angular19",
|
|
66
|
-
"angular14",
|
|
67
63
|
"angular2-multiselect",
|
|
68
64
|
"angular2-multiselect-dropdown",
|
|
69
65
|
"migration-friendly",
|
|
70
66
|
"maintained",
|
|
71
67
|
"ngx",
|
|
72
68
|
"ngx-multiselect",
|
|
73
|
-
"virtual-scroll"
|
|
69
|
+
"virtual-scroll",
|
|
70
|
+
"angular21",
|
|
71
|
+
"angular 21",
|
|
72
|
+
"angular-21"
|
|
74
73
|
],
|
|
75
|
-
"homepage": "https://alexandro.net/docs/angular/multiselect/",
|
|
74
|
+
"homepage": "https://alexandro.net/docs/angular/multiselect/angular-21/",
|
|
76
75
|
"peerDependencies": {
|
|
77
76
|
"@angular/core": ">=21.0.0 <22.0.0",
|
|
78
77
|
"@angular/forms": ">=21.0.0 <22.0.0",
|
|
@@ -86,7 +85,7 @@
|
|
|
86
85
|
"url": "https://github.com/alexandroit/angular-multiselect-dropdown/issues"
|
|
87
86
|
},
|
|
88
87
|
"engines": {
|
|
89
|
-
"node": ">=
|
|
88
|
+
"node": ">=22.22.3"
|
|
90
89
|
},
|
|
91
90
|
"module": "fesm2022/stackline-angular-multiselect-dropdown.mjs",
|
|
92
91
|
"typings": "types/stackline-angular-multiselect-dropdown.d.ts",
|
|
@@ -408,6 +408,8 @@ declare class AngularMultiSelect implements OnInit, ControlValueAccessor, OnChan
|
|
|
408
408
|
private dropdownAppendedToBody;
|
|
409
409
|
private overlayListenersBound;
|
|
410
410
|
private overlayPositionTimer;
|
|
411
|
+
private optionClickFromPointerDown;
|
|
412
|
+
private optionClickGuardTimer;
|
|
411
413
|
private boundOverlayPositionUpdate;
|
|
412
414
|
private overlayThemeVariables;
|
|
413
415
|
id: any;
|
|
@@ -455,6 +457,10 @@ declare class AngularMultiSelect implements OnInit, ControlValueAccessor, OnChan
|
|
|
455
457
|
private clearOverlayPositionTimer;
|
|
456
458
|
private scheduleDropdownPositionUpdate;
|
|
457
459
|
onDropdownPanelPointerDown(event: Event): void;
|
|
460
|
+
private getPointerDownOption;
|
|
461
|
+
private selectOptionFromPointerDown;
|
|
462
|
+
private ignoreNextNativeOptionClick;
|
|
463
|
+
private shouldIgnoreNativeOptionClick;
|
|
458
464
|
getAriaLabel(): string;
|
|
459
465
|
getListboxAriaLabel(): string;
|
|
460
466
|
getSearchAriaLabel(): string;
|