Package v0.2.12→v0.2.124: manifest, actions, version graph
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { VersionInfo } from '@start9labs/start-sdk'
|
||||
|
||||
export const v_0_2_42 = VersionInfo.of({
|
||||
version: '0.2.42:0',
|
||||
releaseNotes: {
|
||||
en_US:
|
||||
'Column-resize + header-wrap fixes after the v0.2.39 changes produced a 1-letter-per-line vertical stack on narrow headers ("T / X / C / H / U / N / K / S"). (1) Header text is now wrapped inside an inner span with display: -webkit-box + -webkit-line-clamp: 2 + word-break: normal + overflow-wrap: break-word. Concretely: headers can wrap at WORD boundaries (spaces, between "TX" and "CHUNKS") to a maximum of 2 lines; if the column is too narrow even for that, the second line ellipsis-truncates. NEVER breaks inside a word — that\'s what produced the letter-per-line stack before. The TH itself stays display: table-cell so the table layout works; the line-clamp lives on the inner .th-label span. Native browser tooltip shows the full label on hover when ellipsised. (2) Cells now update WIDTH LIVE during the drag, not just after mouseup. The previous behavior set inline width on the TH only, but auto-layout tables use the cell content as the column-width floor — so the user dragged the TH smaller and saw no visual change until mouseup triggered a full re-render. Now onJobsColResizeMove also stamps max-width on every TD in the dragged column for instant feedback. (3) Minimum column width raised from 40px to 60px. Narrower than that is unusable (one-digit numbers + resize handle alone need ~50px combined). (4) Resize handle widened from 6px → 8px with a 2px visual accent that appears on hover. Easier to grab on narrow columns. (5) TH right padding reduced from 28px → 14px so the resize handle is reachable on tight columns and headers have room to lay out the label.',
|
||||
},
|
||||
migrations: {
|
||||
up: async ({ effects }) => {},
|
||||
down: async ({ effects }) => {},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user