Skip to content

Commit

Permalink
refactor: analyzer meta adjustments (#1345)
Browse files Browse the repository at this point in the history
  • Loading branch information
damyanpetev authored Aug 7, 2024
1 parent 8c767fe commit 29d01eb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 2 deletions.
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

0 comments on commit 29d01eb

Please sign in to comment.