slick-components 17.0.78 → 17.0.79
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.
|
@@ -23,7 +23,7 @@ class SlickInitParams {
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
class SlickInitService {
|
|
26
|
-
static { this.version = "17.0.
|
|
26
|
+
static { this.version = "17.0.79"; }
|
|
27
27
|
constructor() { }
|
|
28
28
|
static init(initParams) {
|
|
29
29
|
console.info(`Slick Components Version ${SlickInitService.version}`);
|
|
@@ -3608,6 +3608,12 @@ class SlickDropListDirective {
|
|
|
3608
3608
|
}
|
|
3609
3609
|
}
|
|
3610
3610
|
async mouseDown(e, target = null) {
|
|
3611
|
+
const clickedElement = e.target;
|
|
3612
|
+
const formControl = SlickUtilsService.findParent(clickedElement, 'input') ||
|
|
3613
|
+
SlickUtilsService.findParent(clickedElement, 'textarea') ||
|
|
3614
|
+
SlickUtilsService.findParent(clickedElement, 'select');
|
|
3615
|
+
if (formControl)
|
|
3616
|
+
return;
|
|
3611
3617
|
this.isAdding = false;
|
|
3612
3618
|
this.isMoving = false;
|
|
3613
3619
|
if (e.button !== 0 || !e || !e.target)
|