igniteui-angular 11.1.39 → 11.1.40

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.
@@ -18696,9 +18696,8 @@
18696
18696
  * ```
18697
18697
  */
18698
18698
  IgxTextSelectionDirective.prototype.trigger = function () {
18699
- var _this = this;
18700
18699
  if (this.selected && this.nativeElement.value.length) {
18701
- requestAnimationFrame(function () { return _this.nativeElement.setSelectionRange(0, _this.nativeElement.value.length); });
18700
+ this.nativeElement.select();
18702
18701
  }
18703
18702
  };
18704
18703
  return IgxTextSelectionDirective;