diff --git a/lib/KCard/index.vue b/lib/KCard/index.vue index 811858561..14d7b08a2 100644 --- a/lib/KCard/index.vue +++ b/lib/KCard/index.vue @@ -211,28 +211,28 @@ preserveAboveTitle: { type: Boolean, default: false, + }, + /** + * When true, preserves the space for the belowTitle slot even when it's empty. + * When false, removes the space entirely if the slot is empty. + * @type {Boolean} + * @default false + */ + preserveBelowTitle: { + type: Boolean, + default: false, + }, + /** + * When true, preserves the space for the footer slot even when it's empty. + * When false, removes the space entirely if the slot is empty. + * @type {Boolean} + * @default false + */ + preserveFooter: { + type: Boolean, + default: false, + }, }, - /** - * When true, preserves the space for the belowTitle slot even when it's empty. - * When false, removes the space entirely if the slot is empty. - * @type {Boolean} - * @default false - */ - preserveBelowTitle: { - type: Boolean, - default: false, - }, - /** - * When true, preserves the space for the footer slot even when it's empty. - * When false, removes the space entirely if the slot is empty. - * @type {Boolean} - * @default false - */ - preserveFooter: { - type: Boolean, - default: false, - }, - }, computed: { rootClass() { return this.stylesAndClasses.rootClass;