File tree Expand file tree Collapse file tree
ember-basic-dropdown/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export interface BasicDropdownContentSignature {
4848 dir? : string ;
4949 defaultClass? : string ;
5050 overlay? : boolean ;
51- htmlTag? : keyof HTMLElementTagNameMap ;
51+ htmlTag? : keyof HTMLElementTagNameMap | undefined ;
5252 onFocusIn? : (dropdown ? : Dropdown , event ? : FocusEvent ) => void ;
5353 onFocusOut? : (dropdown ? : Dropdown , event ? : FocusEvent ) => void ;
5454 onMouseEnter? : (dropdown ? : Dropdown , event ? : MouseEvent ) => void ;
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ export interface BasicDropdownArgs {
6666 preventScroll? : boolean ;
6767 matchTriggerWidth? : boolean ;
6868 triggerHtmlTag? : keyof HTMLElementTagNameMap ;
69+ contentHtmlTag? : keyof HTMLElementTagNameMap ;
6970 onInit? : (dropdown : Dropdown ) => void ;
7071 registerAPI? : (dropdown : Dropdown | null ) => void ;
7172 onOpen? : (dropdown : Dropdown , e ? : Event ) => boolean | void ;
@@ -544,6 +545,7 @@ export default class BasicDropdown extends Component<BasicDropdownSignature> {
544545 preventScroll =@ preventScroll
545546 rootEventType =( or @ rootEventType " click" )
546547 vPosition =this . vPosition
548+ htmlTag =@ contentHtmlTag
547549 destination =this . destination
548550 destinationElement =this . destinationElement
549551 top =this . top
You can’t perform that action at this time.
0 commit comments