update jsdoc

This commit is contained in:
Cory LaViska
2025-06-06 08:13:17 -04:00
parent 0d09037916
commit 9a49a76cce
2 changed files with 2 additions and 8 deletions

View File

@@ -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;
/**

View File

@@ -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;
/**