Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
webloopbox committed Jan 24, 2025
2 parents 907ea34 + 577c493 commit 1cb0427
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@silevis/reactgrid",
"description": "Add spreadsheet-like behavior to your React app.",
"version": "4.1.14",
"version": "4.1.15",
"homepage": "https://reactgrid.com",
"license": "MIT",
"author": "Silevis Software",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/Model/PublicModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -626,8 +626,8 @@ export interface Row<TCell extends Cell = DefaultCellTypes> {
export interface MenuOption {
/** Text that identifies each menu option */
id: string;
/** Text label displayed as its title */
label: string;
/** Label displayed as its title */
label: React.ReactNode;
/**
* Function that is called when an option is clicked
*
Expand All @@ -643,4 +643,4 @@ export interface MenuOption {
export interface ReactGridInstance extends React.Component<ReactGridProps, any, any> {
/** This method is used to clear the selected item */
clearSelections(): void;
}
}

0 comments on commit 1cb0427

Please sign in to comment.