We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73bf531 commit 16682f8Copy full SHA for 16682f8
src/toggle/toggle.component.ts
@@ -102,16 +102,6 @@ export class Toggle extends Checkbox {
102
*/
103
static toggleCount = 0;
104
105
- /**
106
- * Variable set the value to input true/false.
107
- */
108
- value = false;
109
-
110
111
- * Variable set the name to input same as Id.
112
113
- name = "toggle-" + Toggle.toggleCount;
114
115
/**
116
* Text that is set on the left side of the toggle.
117
@@ -203,7 +193,6 @@ export class Toggle extends Checkbox {
203
193
this.change.emit(event);
204
194
/* end deprecation */
205
195
206
- this.value = this.checked;
207
196
this.checkedChange.emit(this.checked);
208
197
this.propagateChange(this.checked);
209
198
}
0 commit comments