()
| 258 | } |
| 259 | |
| 260 | getParentSize(): { width: number; height: number } { |
| 261 | return (this.resizable as any).getParentSize(); |
| 262 | } |
| 263 | |
| 264 | getMaxSizesFromProps(): MaxSize { |
| 265 | const maxWidth = typeof this.props.maxWidth === "undefined" ? Number.MAX_SAFE_INTEGER : this.props.maxWidth; |