From 69d09507c8dff5c1b0472b13ab87d48a9dc1925e Mon Sep 17 00:00:00 2001 From: Eric Y Liu Date: Fri, 9 Jul 2021 11:21:53 -0700 Subject: [PATCH] fix(data-table): deprecate Table shouldShowBorder prop Ref: https://github.com/carbon-design-system/carbon/commit/0f7324156 --- src/DataTable/Table.svelte | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/DataTable/Table.svelte b/src/DataTable/Table.svelte index d93fcc74..ffb83af2 100644 --- a/src/DataTable/Table.svelte +++ b/src/DataTable/Table.svelte @@ -11,7 +11,10 @@ /** Set to `true` to use static width */ export let useStaticWidth = false; - /** Set to `true` for the bordered variant */ + /** + * Set to `true` for the bordered variant + * @deprecated this prop will be removed in the next major release + */ export let shouldShowBorder = false; /** Set to `true` for the sortable variant */