Skip to content

Commit 7c83915

Browse files
committed
feat(date-picker, textarea): add blazorSuppress comments for selection range methods
1 parent f0a517e commit 7c83915

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/components/date-picker/date-picker.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,7 @@ export default class IgcDatePickerComponent extends FormAssociatedRequiredMixin(
654654
this._input.select();
655655
}
656656

657+
/* blazorSuppress */
657658
/** Sets the text selection range in the input of the component */
658659
public setSelectionRange(
659660
start: number,
@@ -663,6 +664,7 @@ export default class IgcDatePickerComponent extends FormAssociatedRequiredMixin(
663664
this._input.setSelectionRange(start, end, direction);
664665
}
665666

667+
/* blazorSuppress */
666668
/* Replaces the selected text in the input and re-applies the mask */
667669
public setRangeText(
668670
replacement: string,

src/components/textarea/textarea.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ export default class IgcTextareaComponent extends FormAssociatedRequiredMixin(
367367
this._input.select();
368368
}
369369

370+
/* blazorSuppress */
370371
/** Sets the text selection range of the control */
371372
public setSelectionRange(
372373
start: number,
@@ -376,6 +377,7 @@ export default class IgcTextareaComponent extends FormAssociatedRequiredMixin(
376377
this._input.setSelectionRange(start, end, direction);
377378
}
378379

380+
/* blazorSuppress */
379381
/** Replaces the selected text in the control. */
380382
public setRangeText(
381383
replacement: string,

0 commit comments

Comments
 (0)