diff --git a/CHANGELOG.md b/CHANGELOG.md index 94fb8fb6b..0182fdf15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ Changelog is rather internal in nature. See release notes for the public overvie ## Upcoming version 5.x.x (`develop` branch) + + [#705] + - **Description:** Update`KCard` updates: Add preserveAboveTitle prop for flexible aboveTitle slot management. + - **Products impact:** Card updates + - **Addresses:** https://github.com/learningequality/kolibri-design-system/issues/702 + - **Components:** `KCard` + - **Breaking:** N0 + - **Impacts a11y:** No + - **Guidance:** + [#705] https://github.com/learningequality/kolibri-design-system/pull/705 + + + - [#687] - **Description:** Adds logic that inserts ARIA live assertive and polite regions to an application's document body during KDS initialization and documents this on the new "Installation" page. Relatedly adds `useKLiveRegion` composable with public methods for updating the live regions with assertive and polite messages. - **Products impact:** new API diff --git a/lib/KCard/index.vue b/lib/KCard/index.vue index 4b62da485..df7ef35d5 100644 --- a/lib/KCard/index.vue +++ b/lib/KCard/index.vue @@ -188,9 +188,8 @@ preserveBelowTitle: { type: Boolean, default: false, - }, - /** + /** * Dictates whether to preserve the space for the footer slot when it's empty. * @type {Boolean} * @default false @@ -199,6 +198,7 @@ type: Boolean, default: false, }, + }, computed: { rootClass() { return this.stylesAndClasses.rootClass;