open-plant 1.4.20 → 1.4.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2721 -2751
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/react/heatmap-layer.d.ts +41 -49
- package/dist/types/react/heatmap-layer.d.ts.map +1 -1
- package/dist/types/wsi/wsi-tile-renderer.d.ts +2 -0
- package/dist/types/wsi/wsi-tile-renderer.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -329,13 +329,13 @@ import {
|
|
|
329
329
|
| `data` | `HeatmapPointData \| null` | `count`, `positions`, optional `weights` |
|
|
330
330
|
| `visible` | `boolean` | 독립 토글 |
|
|
331
331
|
| `opacity` | `number` | `0..1` |
|
|
332
|
-
| `radius` / `blur` | `number` | 커널 크기 (CSS px) |
|
|
332
|
+
| `radius` / `blur` | `number` | 커널 core / blur 크기 (CSS px, 1 unit = 1 px) |
|
|
333
|
+
| `radiusByMagnification` / `blurByMagnification` | `Record<number, number>` | magnification 기준 커널 크기 override. 값은 CSS px |
|
|
333
334
|
| `gradient` | `readonly string[]` | 색상 stop 배열 |
|
|
334
335
|
| `backgroundColor` | `string \| null` | 기본 `null` |
|
|
335
336
|
| `scaleMode` | `"screen" \| "fixed-zoom"` | 최소 지원 모드 |
|
|
336
337
|
| `fixedZoom` | `number` | `scaleMode="fixed-zoom"`일 때의 continuous zoom 기준값 |
|
|
337
|
-
| `
|
|
338
|
-
| `densityContrast` | `number` | sparse 영역은 더 눌러두고 dense 영역은 더 빨리 강조하는 대비 계수 |
|
|
338
|
+
| `densityParams` | `Partial<HeatmapDensityParams>` | density color mapping override. 생략 시 내부 기본값 사용 |
|
|
339
339
|
| `clipToRegions` | `WsiRegion[]` | ROI 내부로 mask + point filter |
|
|
340
340
|
| `maxRenderedPoints` | `number` | visible bin budget. 기본 `52000` |
|
|
341
341
|
| `zIndex` | `number` | 오버레이 draw priority |
|