(v: number)
| 677 | this.markDirty() |
| 678 | } |
| 679 | setMinWidthPercent(v: number): void { |
| 680 | this.style.minWidth = percentValue(v) |
| 681 | this.markDirty() |
| 682 | } |
| 683 | setMinHeight(v: number | string | undefined): void { |
| 684 | this.style.minHeight = parseDimension(v) |
| 685 | this.markDirty() |
nothing calls this directly
no test coverage detected