()
| 223 | /** The maximum value that the slider can have. */ |
| 224 | @Input({transform: numberAttribute}) |
| 225 | get max(): number { |
| 226 | return this._max; |
| 227 | } |
| 228 | set max(v: number) { |
| 229 | const max = v === undefined || v === null || isNaN(v) ? this._max : v; |
| 230 | if (this._max !== max) { |