We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78a370 commit f227fccCopy full SHA for f227fcc
src/lib/button-toggle/button-toggle.ts
@@ -40,7 +40,9 @@ var _uniqueIdCounter = 0;
40
41
/** Change event object emitted by MdButtonToggle. */
42
export class MdButtonToggleChange {
43
+ /** The MdButtonToggle who emits the event. */
44
source: MdButtonToggle;
45
+ /** The value assigned to the MdButtonToggle. */
46
value: any;
47
}
48
src/lib/checkbox/checkbox.ts
@@ -54,7 +54,9 @@ export enum TransitionCheckState {
54
55
/** Change event object emitted by MdCheckbox. */
56
export class MdCheckboxChange {
57
+ /** The source MdCheckbox of the event. */
58
source: MdCheckbox;
59
+ /** The new `checked` value of the checkbox. */
60
checked: boolean;
61
62
0 commit comments