()
| 101 | (input as HTMLInputElement).checked ? this.control.disable() : this.control.enable(); |
| 102 | } |
| 103 | openDialog() { |
| 104 | this.dialog.open(SliderDialogDemo, { |
| 105 | data: { |
| 106 | color: this.colorModel, |
| 107 | discrete: this.discrete, |
| 108 | showTickMarks: this.showTickMarks, |
| 109 | }, |
| 110 | }); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | @Component({ |