* Sets the modal value. * @param {mixed} value
(value)
| 160 | * @param {mixed} value |
| 161 | */ |
| 162 | setValue (value) { |
| 163 | if (this._value !== value) { |
| 164 | this._value = value |
| 165 | this.valueDidChange(value) |
| 166 | } |
| 167 | return this |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Triggered when the modal value did change. |
no test coverage detected