mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
feat(accordion): ionChange will only emit from user committed changes (#25922)
BREAKING CHANGE: `ionChange` is no longer emitted when the `value` of `ion-accordion-group` is modified externally. `ionChange` is only emitted from user committed changes, such as clicking or tapping the accordion header.
This commit is contained in:
@ -92,7 +92,8 @@ export const IonAccordionGroup = /*@__PURE__*/ defineContainer<JSX.IonAccordionG
|
||||
'disabled',
|
||||
'readonly',
|
||||
'expand',
|
||||
'ionChange'
|
||||
'ionChange',
|
||||
'ionValueChange'
|
||||
],
|
||||
'value', 'v-ion-change', 'ionChange');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user