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
2 changes: 1 addition & 1 deletion src/components/checkbox/checkbox-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class IgcCheckboxBaseComponent extends FormAssociatedRequiredMixin(
return this._value;
}

/* @tsTwoWayProperty(true, "igcChange", "detail", false) */
/* @tsTwoWayProperty(true, "igcChange", "detail.checked", false) */
/**
* The checked state of the control.
* @attr
Expand Down
1 change: 1 addition & 0 deletions src/components/common/controllers/key-bindings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export type KeyBindingTrigger = 'keydown' | 'keyup' | 'keydownRepeat';

/**
* Configuration object for the controller.
* @ignore
*/
export interface KeyBindingControllerOptions {
/**
Expand Down
1 change: 1 addition & 0 deletions src/components/common/controllers/mutation-observer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { ReactiveController, ReactiveControllerHost } from 'lit';

import { isElement } from '../util.js';

/** @ignore */
export interface MutationControllerConfig<T> {
/** The callback function to run when a mutation occurs. */
callback: MutationControllerCallback<T>;
Expand Down
1 change: 1 addition & 0 deletions src/components/divider/divider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export default class IgcDividerComponent extends LitElement {
@property({ type: Boolean, reflect: true })
public middle = false;

/* alternateName: lineType */
/**
* Whether to render a solid or a dashed divider line.
* @attr
Expand Down
1 change: 1 addition & 0 deletions src/components/icon/registry/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export enum ActionType {
UpdateIconReference = 2,
}

/** @ignore */
export interface BroadcastIconsChangeMessage {
actionType: ActionType;
collections?: Map<string, Map<string, SvgIcon>>;
Expand Down
1 change: 1 addition & 0 deletions src/components/radio-group/radio-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export default class IgcRadioGroupComponent extends LitElement {
return this._name;
}

/* @tsTwoWayProperty(true, "igcChange", "detail.value", false) */
/**
* Gets/Sets the checked igc-radio element that matches `value`
* @attr
Expand Down
2 changes: 1 addition & 1 deletion src/components/radio/radio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default class IgcRadioComponent extends FormAssociatedRequiredMixin(
return this._value;
}

/* @tsTwoWayProperty(true, "igcChange", "detail", false) */
/* @tsTwoWayProperty(true, "igcChange", "detail.checked", false) */
/**
* The checked state of the control.
* @attr
Expand Down