From f0a517e70aecf474a75c2da646b90c7c49b27d8d Mon Sep 17 00:00:00 2001 From: Martin Dragnev Date: Mon, 16 Feb 2026 17:46:03 +0200 Subject: [PATCH 1/2] Mark filteringOptions as plain object so they generate correctly --- src/components/combo/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/combo/types.ts b/src/components/combo/types.ts index 49b53a856..71937e2a8 100644 --- a/src/components/combo/types.ts +++ b/src/components/combo/types.ts @@ -23,6 +23,7 @@ export type ComboRenderFunction = RenderItemFunction< >; export type ComboValue = T | Values; +/* jsonAPIPlainObject */ export interface FilteringOptions { filterKey: Keys | undefined; caseSensitive?: boolean; From 7c83915bd733eff3aa5e754d7a11a5318472233f Mon Sep 17 00:00:00 2001 From: Martin Dragnev Date: Wed, 18 Feb 2026 13:57:47 +0200 Subject: [PATCH 2/2] feat(date-picker, textarea): add blazorSuppress comments for selection range methods --- src/components/date-picker/date-picker.ts | 2 ++ src/components/textarea/textarea.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/components/date-picker/date-picker.ts b/src/components/date-picker/date-picker.ts index 3f96512cb..b49422729 100644 --- a/src/components/date-picker/date-picker.ts +++ b/src/components/date-picker/date-picker.ts @@ -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, @@ -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, diff --git a/src/components/textarea/textarea.ts b/src/components/textarea/textarea.ts index 6f459e4c3..b3e8f7ac0 100644 --- a/src/components/textarea/textarea.ts +++ b/src/components/textarea/textarea.ts @@ -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, @@ -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,