From 03d8238edb29e3d69bb36b570e6f9091f319972e Mon Sep 17 00:00:00 2001 From: Lea Verou Date: Thu, 16 Jan 2025 15:55:55 -0500 Subject: [PATCH] Add missing `:state(blank)` docs --- src/components/select/select.ts | 2 ++ src/components/textarea/textarea.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/components/select/select.ts b/src/components/select/select.ts index 0ed981cc3..e24eb7639 100644 --- a/src/components/select/select.ts +++ b/src/components/select/select.ts @@ -83,6 +83,8 @@ import styles from './select.css'; * @cssproperty --border-color - The border color of the select's combobox. * @cssproperty --border-width - The width of the select's borders, including the listbox. * @cssproperty --box-shadow - The shadow effects around the edges of the select's combobox. + * + * @cssstate blank - The select is empty. */ @customElement('wa-select') export default class WaSelect extends WebAwesomeFormAssociatedElement { diff --git a/src/components/textarea/textarea.ts b/src/components/textarea/textarea.ts index bba425fe1..ddbaf573e 100644 --- a/src/components/textarea/textarea.ts +++ b/src/components/textarea/textarea.ts @@ -43,6 +43,8 @@ import styles from './textarea.css'; * @cssproperty --border-color - The color of the textarea's borders. * @cssproperty --border-width - The width of the textarea's borders. * @cssproperty --box-shadow - The shadow effects around the edges of the textarea. + * + * @cssstate blank - The textarea is empty. */ @customElement('wa-textarea') export default class WaTextarea extends WebAwesomeFormAssociatedElement {