()
| 262 | } |
| 263 | |
| 264 | getMaxSizesFromProps(): MaxSize { |
| 265 | const maxWidth = typeof this.props.maxWidth === "undefined" ? Number.MAX_SAFE_INTEGER : this.props.maxWidth; |
| 266 | const maxHeight = typeof this.props.maxHeight === "undefined" ? Number.MAX_SAFE_INTEGER : this.props.maxHeight; |
| 267 | return { maxWidth, maxHeight }; |
| 268 | } |
| 269 | |
| 270 | getSelfElement(): HTMLElement | null { |
| 271 | return this.resizable && this.resizable.resizable; |
no outgoing calls
no test coverage detected