( compareWith: Layout, l: LayoutItem, compactType: CompactType, cols: number, fullLayout: Layout, allowOverlap: boolean | undefined, maxY: number | undefined )
| 212 | * @deprecated Use compact() instead, which handles the full layout. |
| 213 | */ |
| 214 | export function compactItem( |
| 215 | compareWith: Layout, |
| 216 | l: LayoutItem, |
| 217 | compactType: CompactType, |
| 218 | cols: number, |
| 219 | fullLayout: Layout, |
| 220 | allowOverlap: boolean | undefined, |
| 221 | maxY: number | undefined |
| 222 | ): LayoutItem { |
| 223 | return compactItemInternal( |
| 224 | compareWith, |
| 225 | cloneLayoutItem(l), |
| 226 | compactType, |
| 227 | cols, |
| 228 | fullLayout, |
| 229 | allowOverlap, |
| 230 | maxY |
| 231 | ); |
| 232 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…