From 9a49a76cceb72029870b0c01d353bfee384d66ad Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 6 Jun 2025 08:13:17 -0400 Subject: [PATCH] update jsdoc --- packages/webawesome/src/components/dialog/dialog.ts | 5 +---- packages/webawesome/src/components/drawer/drawer.ts | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/packages/webawesome/src/components/dialog/dialog.ts b/packages/webawesome/src/components/dialog/dialog.ts index 95e4ad3ee..de94effca 100644 --- a/packages/webawesome/src/components/dialog/dialog.ts +++ b/packages/webawesome/src/components/dialog/dialog.ts @@ -63,10 +63,7 @@ export default class WaDialog extends WebAwesomeElement { @query('.dialog') dialog: HTMLDialogElement; - /** - * Indicates whether or not the dialog is open. You can toggle this attribute to show and hide the dialog, or you can - * use the `show()` and `hide()` methods and this attribute will reflect the dialog's open state. - */ + /** Indicates whether or not the dialog is open. Toggle this attribute to show and hide the dialog. */ @property({ type: Boolean, reflect: true }) open = false; /** diff --git a/packages/webawesome/src/components/drawer/drawer.ts b/packages/webawesome/src/components/drawer/drawer.ts index 936db88fe..e5b40b007 100644 --- a/packages/webawesome/src/components/drawer/drawer.ts +++ b/packages/webawesome/src/components/drawer/drawer.ts @@ -68,10 +68,7 @@ export default class WaDrawer extends WebAwesomeElement { @query('.drawer') drawer: HTMLDialogElement; - /** - * Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can - * use the `show()` and `hide()` methods and this attribute will reflect the drawer's open state. - */ + /** Indicates whether or not the drawer is open. Toggle this attribute to show and hide the drawer. */ @property({ type: Boolean, reflect: true }) open = false; /**