File tree Expand file tree Collapse file tree 5 files changed +14
-3
lines changed
Expand file tree Collapse file tree 5 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1313
1414
1515
16+
17+ ## v8.11.0 (2025-12-14)
18+
19+ #### :rocket : Enhancement
20+ * [ #1038 ] ( https://github.com/cibernox/ember-basic-dropdown/pull/1038 ) Add ` @contentHtmlTag ` ([ @mkszepp ] ( https://github.com/mkszepp ) )
21+
22+ #### Committers: 1
23+ - Markus Sanin ([ @mkszepp ] ( https://github.com/mkszepp ) )
24+
1625## v8.10.0 (2025-12-13)
1726
1827#### :rocket : Enhancement
Original file line number Diff line number Diff line change 11{
22 "name" : " ember-basic-dropdown" ,
3- "version" : " 8.10 .0" ,
3+ "version" : " 8.11 .0" ,
44 "description" : " The basic dropdown that your ember app needs" ,
55 "keywords" : [
66 " ember-addon"
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export interface BasicDropdownContentSignature {
4747 vPosition? : VerticalPosition | null ;
4848 defaultClass? : string ;
4949 overlay? : boolean ;
50- htmlTag? : keyof HTMLElementTagNameMap ;
50+ htmlTag? : keyof HTMLElementTagNameMap | undefined ;
5151 onFocusIn? : (dropdown ? : Dropdown , event ? : FocusEvent ) => void ;
5252 onFocusOut? : (dropdown ? : Dropdown , event ? : FocusEvent ) => void ;
5353 onMouseEnter? : (dropdown ? : Dropdown , event ? : MouseEvent ) => void ;
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ export interface BasicDropdownArgs<
7878 preventScroll? : boolean ;
7979 matchTriggerWidth? : boolean ;
8080 triggerHtmlTag? : TriggerHtmlTag ;
81+ contentHtmlTag? : keyof HTMLElementTagNameMap ;
8182 onInit? : (dropdown : Dropdown ) => void ;
8283 registerAPI? : (dropdown : Dropdown | null ) => void ;
8384 onOpen? : (dropdown : Dropdown , e ? : Event ) => boolean | void ;
@@ -549,6 +550,7 @@ export default class BasicDropdown<
549550 preventScroll =@ preventScroll
550551 rootEventType =( or @ rootEventType " click" )
551552 vPosition =this . vPosition
553+ htmlTag =@ contentHtmlTag
552554 destination =this . destination
553555 destinationElement =this . destinationElement
554556 top =this . top
Original file line number Diff line number Diff line change 4242 },
4343 "npm" : false
4444 },
45- "version" : " 8.10 .0" ,
45+ "version" : " 8.11 .0" ,
4646 "packageManager" :
" [email protected] " ,
4747 "devDependencies" : {
4848 "@release-it-plugins/lerna-changelog" : " ^8.0.1" ,
You can’t perform that action at this time.
0 commit comments