You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: button/dropdownbutton.d.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -42,10 +42,10 @@ export declare class DropDownButton extends React.Component<React.HTMLAttributes
42
42
getdisabled(): boolean;
43
43
setdisabled(value: boolean);
44
44
/** Sets the parent container of the dropDown (the popup). Used when a CSS property of unknowned parent is interfering with the visibility of the dropDown.
45
-
* Property type: any
45
+
* Property type: string
46
46
*/
47
-
getdropDownAppendTo(): any;
48
-
setdropDownAppendTo(value: any);
47
+
getdropDownAppendTo(): string;
48
+
setdropDownAppendTo(value: string);
49
49
/** Determines the position of the drop down button.
Copy file name to clipboardExpand all lines: button/multisplitbutton.d.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -60,11 +60,11 @@ export declare class MultiSplitButton extends React.Component<React.HTMLAttribut
60
60
*/
61
61
getdisplayMember(): string;
62
62
setdisplayMember(value: string);
63
-
/** Sets the parent container of the button's dropDown list (the popup). Used when a CSS property of unknowned parent is interfering with the visibility of the dropDown list.
64
-
* Property type: any
63
+
/** Sets the parent container of the button's dropDown list (the popup). The expected value is CSS Selector, ID or 'body'. Used when a CSS property of unknowned parent is interfering with the visibility of the dropDown list.
0 commit comments