Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/combo/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export type ComboRenderFunction<T extends object> = RenderItemFunction<
>;
export type ComboValue<T> = T | Values<T>;

/* jsonAPIPlainObject */
export interface FilteringOptions<T extends object> {
filterKey: Keys<T> | undefined;
caseSensitive?: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/components/date-picker/date-picker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,7 @@ export default class IgcDatePickerComponent extends FormAssociatedRequiredMixin(
this._input.select();
}

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

/* blazorSuppress */
/* Replaces the selected text in the input and re-applies the mask */
public setRangeText(
replacement: string,
Expand Down
2 changes: 2 additions & 0 deletions src/components/textarea/textarea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ export default class IgcTextareaComponent extends FormAssociatedRequiredMixin(
this._input.select();
}

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

/* blazorSuppress */
/** Replaces the selected text in the control. */
public setRangeText(
replacement: string,
Expand Down