@telcomdev/ui 0.1.2 → 0.1.3

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.
@@ -2871,7 +2871,7 @@ class TdAutocompleteSelect {
2871
2871
  clearable = true;
2872
2872
  dark = false;
2873
2873
  scrollBehavior = 'reposition';
2874
- overflowText = 'ellipsis';
2874
+ overflowText = 'marquee';
2875
2875
  minimumCharacters = 0;
2876
2876
  filterWith = (option, search) => `${option.label} ${option.description ?? ''}`.toLocaleLowerCase().includes(search);
2877
2877
  compareWith = (first, second) => Object.is(first, second);
@@ -3365,7 +3365,7 @@ class TdSelect {
3365
3365
  clearable = false;
3366
3366
  dark = false;
3367
3367
  scrollBehavior = 'reposition';
3368
- overflowText = 'ellipsis';
3368
+ overflowText = 'marquee';
3369
3369
  compareWith = (first, second) => Object.is(first, second);
3370
3370
  selectionChange = new EventEmitter();
3371
3371
  value = model(null, ...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));