update jsdoc (#1038)

This commit is contained in:
Cory LaViska
2025-06-06 08:29:19 -04:00
committed by GitHub
parent c162983ca2
commit 2331e88dcf
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;
/**