βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β π shadcn/directory/1771-technologies/lytenyte/changelog/latest β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
import { V1Image } from "./components/release"; import { DateTag } from "./components/date-tag";
<Callout>Minor releases that include only internal code refactors or performance enhancements will not have a corresponding changelog entry. Changelog entries are added only for externally visible changes, such as bug fixes or new features.
</Callout><DateTag>v1.0.18 - Oct 27, 2025</DateTag>
Adds LyteNyte Grid to the shadcn registry. See the installation guide to get started with LyteNyte Grid in shadcn.
Introduces three new prebuilt themes for LyteNyte Grid: shadcn light, shadcn dark, and cotton candy. See the demo for live examples, or refer to the theming guide for instructions on using the prebuilt themes.
<DateTag>v1.0.17 - Oct 17, 2025</DateTag>
Enhanced useServerDataSource interfaces. This patch adds several useful server data loading
methods available from the returned server data source hook:
const ds = useServerDataSource({ });
ds.[method_name] // use method here
refresh: Triggers a new data fetch for the current view. Enables easy polling.requestForGroup: Returns the DataRequest for a given group row.requestForNextSlice: Returns the DataRequest for the next slice to aid optimistic data fetching.requestsForView: Returns the DataRequests for the current view.seenRequests: A writable set that lets users clear or add request IDs to LyteNyte Grid's seen requests cache.Additionally, the useServerDataSource hook now accepts an optional dataFetchExternals dependency array.
Use this to make the server data source depend on external React state.
See the server data loading guides for full details on using the server data source in LyteNyte Grid.
full-width rows in Firefox not being positioned correctly in the view.<DateTag>v1.0.16 - Oct 08, 2025</DateTag>
Bug fixes for Firefox
<DateTag>v1.0.0 - Aug 19, 2025</DateTag>
<V1Image />LyteNyte Grid v1.0.0 marks the official stabilization of the LyteNyte Grid API. This release incorporates lessons learned from earlier iterations and developer feedback, with a strong focus on flexibility.
At a glance, v1.0.0 delivers:
headerName β nameheaderAutosizeFn β autosizeHeaderFncellAutosizeFn β autosizeCellFncellAutosizeFn removed. Instead, define only the columns you want to autosize in the API.type now accepts arbitrary strings and includes support for datetime. The complex type has been removed.aggFnsAllowed and aggFnDefault moved to uiHints. Any column can now be aggregated without explicit configuration.hidable removed. All columns are now hidable.cellEditPredicate, cellEditParser, cellEditUnparser, cellEditProvider, cellEditParams, and cellEditRowUpdater
are replaced by editRenderer, editSetter, and editable. See our cell editing guide.sortable moved to uiHints. All columns are sortable when added to the sort model.sortCycle and sortComparator removed. Define custom logic in your own code as needed.inFilterLabelFormatter removed. Now handled at the row data source level.inFilterField removed. no longer needed.quickSearchField removed. no longer needed.groupVisibility simplified to always, open, or closed.rowGroupable moved to uiHints. Any column can now be grouped when added to the group model.rowGroupField removed. The row group model now accepts a field object directly, making it more flexible.measureFnsAllowed and measureFnDefault removed. The pivot model now accepts an aggregation model.resizable and movable moved to uiHints.aggFns removed. Aggregations are now defined at the row data source level.autosizeDoubleClickHeader β columnDoubleClickToAutosizecellEditPointerActivator β editClickActivatorcellEditProviders β editRendererscolumnHeaderHeight β headerHeightcolumnHeaderRenderers removed. unnecessary in headless mode.columnGroupHeaderHeight β headerGroupHeightcolumnGroupHeaderRenderer removed. unnecessary in headless mode.columnGroupStickHeaders removed. unnecessary in headless mode.columnGroupIdDelimiter β columnGroupJoinDelimiter (clearer naming).columnGroupExpansionState β columnGroupExpansionscolumnSpanScanDistance β colScanDistancerowDetailMarker removed. unnecessary.rowDetailEnabled removed. Row detail is always available via detail expansion state.rowDragEnabled, rowDragMultiRow, rowDragExternalGrid, rowDragPredicate) removed. Use grid.api.useRowDrag instead.rowGroupAutoApplyAggDefault removed. unnecessary.rowGroupColumnTemplate β rowGroupColumnpaginate, paginatePageSize, paginateCurrentPage) removed. Controlled by row data source.rowSelectionCheckbox removed. unnecessary.rowSelectionPointerActivator β rowSelectionActivatorrowSelectionPredicate removed. Row selection can now be prevented via the rowSelectBegin event.rowSelectionSelectChildren β rowSelectChildrenrowSelectionMultiSelectOnClick removed. unnecessary.sortComparatorFns removed. Use custom comparators directly in sortModel.overlayToShow, overlays, columnMenuRenderer, contextMenuRenderer,
contextMenuPredicate, panelFrames, panelFrameButtons, menuFrames) removed. unnecessary in headless mode.columnPivotModel now holds the complete pivot configuration. See the column pivoting guide.filterQuickSearch β quickSearchfilterModel split into FilterModel (simple filters) and FilterInModel (set filters).measureModel removed. Now defined in columnPivotModel.treeData removed. unnecessary.autosizeMeasure removed. Use the new measureText function exported by LyteNyte Grid packages.cellEditBegin β editBegincellEditEnd β editEndcellEditIsActive β editIsCellActivecellEdit* APIs removed. Use events (editBegin, editEnd) instead.columnField now takes (column, row) instead of (row, column).columnGroupToggle β columnToggleGroupcolumnUpdate now handles both single and multiple updates.columnUpdateMany, columnResize, and columnResizeMany.columnMove.columnIs* and columnSort* helpers removed. No longer necessary.focusCell instead of navigate*.navigateScrollIntoView β scrollIntoViewrowSelectionGetSelected β rowSelectedrowSelectionSelect β rowSelectrowSelectionSelectAll β rowSelectAllcolumnPivotModel.Replace:
function MyGrid() {
const grid = useLyteNytePro(...); // or core
return <LyteNyteGrid grid={grid} />;
}
With:
import { Grid } from "@1771technologies/lytenyte-pro";
function MyGrid() {
const grid = Grid.useLyteNyte(...);
return (
<Grid.Root grid={grid}>
<Grid.Viewport>
<Grid.Header>
{view.header.layout.map((row, i) => (
<Grid.HeaderRow key={i} headerRowIndex={i}>
{row.map((c) =>
c.kind === "group" ? (
<Grid.HeaderGroupCell key={c.idOccurrence} cell={c} />
) : (
<Grid.HeaderCell key={c.id} cell={c} />
)
)}
</Grid.HeaderRow>
))}
</Grid.Header>
<Grid.RowsContainer>
<Grid.RowsCenter>
{view.rows.center.map((row) =>
row.kind === "full-width" ? (
<Grid.RowFullWidth key={row.id} row={row} />
) : (
<Grid.Row key={row.id} row={row}>
{row.cells.map((c) => (
<Grid.Cell key={c.id} cell={c} />
))}
</Grid.Row>
)
)}
</Grid.RowsCenter>
</Grid.RowsContainer>
</Grid.Viewport>
</Grid.Root>
);
}
β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ