From 5601221dc5a703efd651db2d6cd35ad0379a03b9 Mon Sep 17 00:00:00 2001 From: skrustev Date: Thu, 5 Mar 2026 11:16:12 +0200 Subject: [PATCH] fix(i18n): Suppress resource strings inputs for Blazor to handle manually. --- src/components/calendar/base.ts | 1 + src/components/carousel/carousel.ts | 1 + src/components/chip/chip.ts | 1 + src/components/combo/combo.ts | 1 + src/components/date-picker/date-picker.ts | 1 + src/components/date-range-picker/date-range-picker.ts | 1 + src/components/file-input/file-input.ts | 1 + src/components/tree/tree.ts | 1 + 8 files changed, 8 insertions(+) diff --git a/src/components/calendar/base.ts b/src/components/calendar/base.ts index 8687b51bf..558a48759 100644 --- a/src/components/calendar/base.ts +++ b/src/components/calendar/base.ts @@ -149,6 +149,7 @@ export class IgcCalendarBaseComponent extends LitElement { return this._i18nController.locale; } + /* blazorCSSuppress */ /** * The resource strings for localization. */ diff --git a/src/components/carousel/carousel.ts b/src/components/carousel/carousel.ts index 2adb5b55e..d288f71d4 100644 --- a/src/components/carousel/carousel.ts +++ b/src/components/carousel/carousel.ts @@ -297,6 +297,7 @@ export default class IgcCarouselComponent extends EventEmitterMixin< return this._i18nController.locale; } + /* blazorCSSuppress */ /** * The resource strings for localization. * Currently only aria-label attributes are localized for the carousel. diff --git a/src/components/chip/chip.ts b/src/components/chip/chip.ts index ba61bd5f3..ceb25ac27 100644 --- a/src/components/chip/chip.ts +++ b/src/components/chip/chip.ts @@ -108,6 +108,7 @@ export default class IgcChipComponent extends EventEmitterMixin< return this._i18nController.locale; } + /* blazorCSSuppress */ /** * The resource strings for localization. * Currently only aria-labels for the default select/remove icons are localized. diff --git a/src/components/combo/combo.ts b/src/components/combo/combo.ts index 0d4d603f5..543e5fe76 100644 --- a/src/components/combo/combo.ts +++ b/src/components/combo/combo.ts @@ -324,6 +324,7 @@ export default class IgcComboComponent< @property({ type: Boolean, reflect: true }) public open = false; + /* blazorCSSuppress */ /** * The resource strings for localization. */ diff --git a/src/components/date-picker/date-picker.ts b/src/components/date-picker/date-picker.ts index 3f96512cb..b9fdac597 100644 --- a/src/components/date-picker/date-picker.ts +++ b/src/components/date-picker/date-picker.ts @@ -462,6 +462,7 @@ export default class IgcDatePickerComponent extends FormAssociatedRequiredMixin( return this._i18nController.locale; } + /* blazorCSSuppress */ /** * The resource strings for localization. */ diff --git a/src/components/date-range-picker/date-range-picker.ts b/src/components/date-range-picker/date-range-picker.ts index 6cb018827..2dfe95328 100644 --- a/src/components/date-range-picker/date-range-picker.ts +++ b/src/components/date-range-picker/date-range-picker.ts @@ -369,6 +369,7 @@ export default class IgcDateRangePickerComponent extends FormAssociatedRequiredM return this._i18nController.locale; } + /* blazorCSSuppress */ /** The resource strings of the date range picker. */ @property({ attribute: false }) public set resourceStrings(value: IgcDateRangePickerResourceStrings) { diff --git a/src/components/file-input/file-input.ts b/src/components/file-input/file-input.ts index 94d5c8b60..fc664b3dc 100644 --- a/src/components/file-input/file-input.ts +++ b/src/components/file-input/file-input.ts @@ -145,6 +145,7 @@ export default class IgcFileInputComponent extends EventEmitterMixin< return this._input?.value ?? ''; } + /* blazorCSSuppress */ /** * The resource strings for localization. */ diff --git a/src/components/tree/tree.ts b/src/components/tree/tree.ts index ebc61e0a7..845ea862e 100644 --- a/src/components/tree/tree.ts +++ b/src/components/tree/tree.ts @@ -95,6 +95,7 @@ export default class IgcTreeComponent extends EventEmitterMixin< return this._i18nController.locale; } + /* blazorCSSuppress */ /** * The resource strings for localization. * Currently only aria-labels of the default expand/collapse icons are localized for the tree item.