Skip to content

Commit 4bffe97

Browse files
authored
merge release-8.4.0 (#29995)
v8.4.0
2 parents 2d6eeee + ec14e13 commit 4bffe97

File tree

89 files changed

+2163
-201
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+2163
-201
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.4.0](https://github.com/ionic-team/ionic-framework/compare/v8.3.4...v8.4.0) (2024-11-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **alert:** use correct heading structure for subHeader when header exists ([#29964](https://github.com/ionic-team/ionic-framework/issues/29964)) ([0fdcb32](https://github.com/ionic-team/ionic-framework/commit/0fdcb32ce0f99b284b314f79f7d0b071bc37faec))
12+
13+
14+
### Features
15+
16+
* **menu:** pass role to ionWillClose and ionDidClose events ([#29954](https://github.com/ionic-team/ionic-framework/issues/29954)) ([ee2fa19](https://github.com/ionic-team/ionic-framework/commit/ee2fa19a1e9f09d492c7c08340d95ba6a56ebb2b))
17+
* **segment-view:** adds support for new `ion-segment-view` component ([#29969](https://github.com/ionic-team/ionic-framework/issues/29969)) ([89508fb](https://github.com/ionic-team/ionic-framework/commit/89508fb89172900b1d11cc3fc18883f57a7fbab6))
18+
* **select:** add `modal` as interface ([#29972](https://github.com/ionic-team/ionic-framework/issues/29972)) ([3628ea8](https://github.com/ionic-team/ionic-framework/commit/3628ea875a66a717783de5e0a4df440872339040))
19+
20+
21+
22+
23+
624
## [8.3.4](https://github.com/ionic-team/ionic-framework/compare/v8.3.3...v8.3.4) (2024-10-30)
725

826

core/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.4.0](https://github.com/ionic-team/ionic-framework/compare/v8.3.4...v8.4.0) (2024-11-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **alert:** use correct heading structure for subHeader when header exists ([#29964](https://github.com/ionic-team/ionic-framework/issues/29964)) ([0fdcb32](https://github.com/ionic-team/ionic-framework/commit/0fdcb32ce0f99b284b314f79f7d0b071bc37faec))
12+
13+
14+
### Features
15+
16+
* **menu:** pass role to ionWillClose and ionDidClose events ([#29954](https://github.com/ionic-team/ionic-framework/issues/29954)) ([ee2fa19](https://github.com/ionic-team/ionic-framework/commit/ee2fa19a1e9f09d492c7c08340d95ba6a56ebb2b))
17+
* **segment-view:** adds support for new `ion-segment-view` component ([#29969](https://github.com/ionic-team/ionic-framework/issues/29969)) ([89508fb](https://github.com/ionic-team/ionic-framework/commit/89508fb89172900b1d11cc3fc18883f57a7fbab6))
18+
* **select:** add `modal` as interface ([#29972](https://github.com/ionic-team/ionic-framework/issues/29972)) ([3628ea8](https://github.com/ionic-team/ionic-framework/commit/3628ea875a66a717783de5e0a4df440872339040))
19+
20+
21+
22+
23+
624
## [8.3.4](https://github.com/ionic-team/ionic-framework/compare/v8.3.3...v8.3.4) (2024-10-30)
725

826

core/api.txt

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,15 +1000,15 @@ ion-menu,prop,menuId,string | undefined,undefined,false,true
10001000
ion-menu,prop,side,"end" | "start",'start',false,true
10011001
ion-menu,prop,swipeGesture,boolean,true,false,false
10021002
ion-menu,prop,type,"overlay" | "push" | "reveal" | undefined,undefined,false,false
1003-
ion-menu,method,close,close(animated?: boolean) => Promise<boolean>
1003+
ion-menu,method,close,close(animated?: boolean, role?: string) => Promise<boolean>
10041004
ion-menu,method,isActive,isActive() => Promise<boolean>
10051005
ion-menu,method,isOpen,isOpen() => Promise<boolean>
10061006
ion-menu,method,open,open(animated?: boolean) => Promise<boolean>
1007-
ion-menu,method,setOpen,setOpen(shouldOpen: boolean, animated?: boolean) => Promise<boolean>
1007+
ion-menu,method,setOpen,setOpen(shouldOpen: boolean, animated?: boolean, role?: string) => Promise<boolean>
10081008
ion-menu,method,toggle,toggle(animated?: boolean) => Promise<boolean>
1009-
ion-menu,event,ionDidClose,void,true
1009+
ion-menu,event,ionDidClose,MenuCloseEventDetail,true
10101010
ion-menu,event,ionDidOpen,void,true
1011-
ion-menu,event,ionWillClose,void,true
1011+
ion-menu,event,ionWillClose,MenuCloseEventDetail,true
10121012
ion-menu,event,ionWillOpen,void,true
10131013
ion-menu,css-prop,--background,ios
10141014
ion-menu,css-prop,--background,md
@@ -1542,6 +1542,7 @@ ion-segment,css-prop,--background,ios
15421542
ion-segment,css-prop,--background,md
15431543

15441544
ion-segment-button,shadow
1545+
ion-segment-button,prop,contentId,string | undefined,undefined,false,true
15451546
ion-segment-button,prop,disabled,boolean,false,false,false
15461547
ion-segment-button,prop,layout,"icon-bottom" | "icon-end" | "icon-hide" | "icon-start" | "icon-top" | "label-hide" | undefined,'icon-top',false,false
15471548
ion-segment-button,prop,mode,"ios" | "md",undefined,false,false
@@ -1607,14 +1608,20 @@ ion-segment-button,part,indicator
16071608
ion-segment-button,part,indicator-background
16081609
ion-segment-button,part,native
16091610

1611+
ion-segment-content,shadow
1612+
1613+
ion-segment-view,shadow
1614+
ion-segment-view,prop,disabled,boolean,false,false,false
1615+
ion-segment-view,event,ionSegmentViewScroll,SegmentViewScrollEvent,true
1616+
16101617
ion-select,shadow
16111618
ion-select,prop,cancelText,string,'Cancel',false,false
16121619
ion-select,prop,color,"danger" | "dark" | "light" | "medium" | "primary" | "secondary" | "success" | "tertiary" | "warning" | string & Record<never, never> | undefined,undefined,false,true
16131620
ion-select,prop,compareWith,((currentValue: any, compareValue: any) => boolean) | null | string | undefined,undefined,false,false
16141621
ion-select,prop,disabled,boolean,false,false,false
16151622
ion-select,prop,expandedIcon,string | undefined,undefined,false,false
16161623
ion-select,prop,fill,"outline" | "solid" | undefined,undefined,false,false
1617-
ion-select,prop,interface,"action-sheet" | "alert" | "popover",'alert',false,false
1624+
ion-select,prop,interface,"action-sheet" | "alert" | "modal" | "popover",'alert',false,false
16181625
ion-select,prop,interfaceOptions,any,{},false,false
16191626
ion-select,prop,justify,"end" | "space-between" | "start" | undefined,undefined,false,false
16201627
ion-select,prop,label,string | undefined,undefined,false,false
@@ -1672,6 +1679,11 @@ ion-select,part,label
16721679
ion-select,part,placeholder
16731680
ion-select,part,text
16741681

1682+
ion-select-modal,scoped
1683+
ion-select-modal,prop,header,string | undefined,undefined,false,false
1684+
ion-select-modal,prop,multiple,boolean | undefined,undefined,false,false
1685+
ion-select-modal,prop,options,SelectModalOption[],[],false,false
1686+
16751687
ion-select-option,shadow
16761688
ion-select-option,prop,disabled,boolean,false,false,false
16771689
ion-select-option,prop,value,any,undefined,false,false

core/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ionic/core",
3-
"version": "8.3.4",
3+
"version": "8.4.0",
44
"description": "Base components for Ionic",
55
"keywords": [
66
"ionic",

0 commit comments

Comments
 (0)