gantt-lib 0.131.1 → 0.132.0
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 +1 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +20 -1
- package/dist/index.d.ts +20 -1
- package/dist/index.js +309 -218
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +255 -165
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +105 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -154,6 +154,7 @@ Main component that renders the interactive Gantt chart.
|
|
|
154
154
|
| `viewMode` | `'day' \| 'week' \| 'month'` | `'day'` | Time scale mode. |
|
|
155
155
|
| `dayWidth` | `number` | `40` | Width of one day column in pixels. |
|
|
156
156
|
| `rowHeight` | `number` | `40` | Height of one task row. |
|
|
157
|
+
| `skeletonRowCount` | `number` | `0` | Display-only placeholder rows appended below the visible task rows. Useful for streamed generation previews. |
|
|
157
158
|
| `headerHeight` | `number` | `40` | Height of the time-scale header. |
|
|
158
159
|
| `containerHeight` | `number \| string` | `undefined` | Container height in px, `%`, `vh`, or auto. |
|
|
159
160
|
| `showTaskList` | `boolean` | `false` | Shows the left-side task list. |
|