File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,8 @@ export interface MenuProps
101101 itemIcon ?: RenderIconType ;
102102 expandIcon ?: RenderIconType ;
103103 overflowedIndicator ?: React . ReactNode ;
104+ /** @private Internal usage. Do not use in your production. */
105+ overflowedIndicatorPopupClassName ?: string ;
104106
105107 // >>>>> Function
106108 getPopupContainer ?: ( node : HTMLElement ) => HTMLElement ;
@@ -168,6 +170,7 @@ const Menu: React.FC<MenuProps> = props => {
168170 itemIcon,
169171 expandIcon,
170172 overflowedIndicator = '...' ,
173+ overflowedIndicatorPopupClassName,
171174
172175 // Function
173176 getPopupContainer,
@@ -476,6 +479,7 @@ const Menu: React.FC<MenuProps> = props => {
476479 title = { overflowedIndicator }
477480 disabled = { allVisible }
478481 internalPopupClose = { len === 0 }
482+ popupClassName = { overflowedIndicatorPopupClassName }
479483 >
480484 { originOmitItems }
481485 </ SubMenu >
You can’t perform that action at this time.
0 commit comments