(v: number | string | undefined)
| 673 | this.markDirty() |
| 674 | } |
| 675 | setMinWidth(v: number | string | undefined): void { |
| 676 | this.style.minWidth = parseDimension(v) |
| 677 | this.markDirty() |
| 678 | } |
| 679 | setMinWidthPercent(v: number): void { |
| 680 | this.style.minWidth = percentValue(v) |
| 681 | this.markDirty() |
nothing calls this directly
no test coverage detected