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 {