Skip to content

Commit 1cb0427

Browse files
committed
Merge branch 'develop'
2 parents 907ea34 + 577c493 commit 1cb0427

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@silevis/reactgrid",
33
"description": "Add spreadsheet-like behavior to your React app.",
4-
"version": "4.1.14",
4+
"version": "4.1.15",
55
"homepage": "https://reactgrid.com",
66
"license": "MIT",
77
"author": "Silevis Software",

src/lib/Model/PublicModel.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -626,8 +626,8 @@ export interface Row<TCell extends Cell = DefaultCellTypes> {
626626
export interface MenuOption {
627627
/** Text that identifies each menu option */
628628
id: string;
629-
/** Text label displayed as its title */
630-
label: string;
629+
/** Label displayed as its title */
630+
label: React.ReactNode;
631631
/**
632632
* Function that is called when an option is clicked
633633
*
@@ -643,4 +643,4 @@ export interface MenuOption {
643643
export interface ReactGridInstance extends React.Component<ReactGridProps, any, any> {
644644
/** This method is used to clear the selected item */
645645
clearSelections(): void;
646-
}
646+
}

0 commit comments

Comments
 (0)