@sumaris-net/ngx-components 18.2.6 → 18.2.7

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.
@@ -7633,7 +7633,7 @@ class MatAutocompleteField {
7633
7633
  trimSearchText;
7634
7634
  splitSearchText;
7635
7635
  selectInputContentOnFocus;
7636
- selectInputContentOnFocusDelay = 0;
7636
+ selectInputContentOnFocusDelay;
7637
7637
  /**
7638
7638
  * @deprecated Use panelClass instead
7639
7639
  */
@@ -7759,6 +7759,7 @@ class MatAutocompleteField {
7759
7759
  this.highlightAccent = this.highlightAccent ?? this.config.highlightAccent;
7760
7760
  this.applyImplicitValue = this.applyImplicitValue ?? this.config.applyImplicitValue;
7761
7761
  this.selectInputContentOnFocus = this.selectInputContentOnFocus ?? this.config.selectInputContentOnFocus;
7762
+ this.selectInputContentOnFocusDelay = this.selectInputContentOnFocusDelay ?? this.config.selectInputContentOnFocusDelay;
7762
7763
  }
7763
7764
  // Default values
7764
7765
  this.required = isNotNilBoolean(this.required)
@@ -7772,6 +7773,7 @@ class MatAutocompleteField {
7772
7773
  this.splitSearchText = this.splitSearchText ?? true;
7773
7774
  this.trimSearchText = this.trimSearchText ?? !this.mobile; // True by default on desktop, but false in mobile (not need in the searchbar)
7774
7775
  this.selectInputContentOnFocus = this.selectInputContentOnFocus ?? false;
7776
+ this.selectInputContentOnFocusDelay = this.selectInputContentOnFocusDelay ?? 0;
7775
7777
  this.equals = this.equals || MatAutocompleteFieldUtils.defaultEquals;
7776
7778
  this.displayColumnSizes =
7777
7779
  this.displayColumnSizes ||