Skip to content
Merged
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
3 changes: 3 additions & 0 deletions src/components/common/mixins/combo-box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ interface IgcBaseComboBoxEventMap {
}

/* blazorIndirectRender */
/* omitModule */
export abstract class IgcBaseComboBoxComponent extends LitElement {
/* blazorSuppress */
declare public emitEvent: <
K extends keyof IgcBaseComboBoxEventMap,
D extends UnpackCustomEvent<IgcBaseComboBoxEventMap[K]>,
Expand Down Expand Up @@ -98,6 +100,7 @@ export abstract class IgcBaseComboBoxComponent extends LitElement {
}

/* blazorIndirectRender */
/* omitModule */
export abstract class IgcComboBoxBaseLikeComponent extends IgcBaseComboBoxComponent {
/**
* Whether the component dropdown should be kept open on selection.
Expand Down
2 changes: 2 additions & 0 deletions src/components/date-time-input/date-time-input.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ const Slots = setSlots(
'invalid'
);

/* blazorIndirectRender */
/* blazorSupportsVisualChildren */
@blazorDeepImport
@shadowOptions({ delegatesFocus: true })
export abstract class IgcDateTimeInputBaseComponent extends MaskBehaviorMixin(
Expand Down
2 changes: 2 additions & 0 deletions src/components/date-time-input/date-time-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export interface IgcDateTimeInputComponentEventMap {
blur: FocusEvent;
}

/* blazorIndirectRender */
/* blazorSupportsVisualChildren */
/**
* A date time input is an input field that lets you set and edit the date and time in a chosen input element
* using customizable display and input formats.
Expand Down
2 changes: 2 additions & 0 deletions src/components/input/input-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ export interface IgcInputComponentEventMap {
blur: FocusEvent;
}

/* blazorIndirectRender */
/* blazorSupportsVisualChildren */
@blazorDeepImport
@shadowOptions({ delegatesFocus: true })
export abstract class IgcInputBaseComponent extends FormAssociatedRequiredMixin(
Expand Down
2 changes: 2 additions & 0 deletions src/components/mask-input/mask-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ const Slots = setSlots(
'invalid'
);

/* blazorSupportsVisualChildren */
/* blazorIndirectRender */
Comment thread
rkaraivanov marked this conversation as resolved.
/**
* A masked input is an input field where a developer can control user input and format the visible value,
* based on configurable rules
Expand Down
1 change: 1 addition & 0 deletions src/components/tree/tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ export default class IgcTreeComponent extends EventEmitterMixin<
this.navService.handleKeydown(event);
}

/* blazorSuppress */
/** @private */
public expandToItem(item: IgcTreeItemComponent): void {
if (item?.parent) {
Expand Down
Loading