refactor(vue): drop support for "on" prefixed overlay events and bump minimum required version of vue to 3.0.6 (#23229)

refactor(vue): drop support for "on" prefixed overlay events and bump minimum required version of vue to 3.0.6

BREAKING CHANGE:

- Dropped support for prefixed overlay events in favor of non prefixed events (I.e. `@onDidDismiss` becomes `@didDismiss`).
- Minimum required version of Vue is now Vue v3.0.6 or newer.
This commit is contained in:
Liam DeBeasi
2021-04-23 13:06:22 -04:00
committed by GitHub
parent 51c62fafe5
commit 6fcb3a62b1
6 changed files with 221 additions and 140 deletions

View File

@ -57,5 +57,3 @@ export const getConfig = (): CoreConfig | null => {
}
return null;
};
export const needsKebabCase = (version: string) => !['3.0.0', '3.0.1', '3.0.2', '3.0.3', '3.0.4', '3.0.5'].includes(version);