chore: format string values in comments with double quotes (#26857)

This commit is contained in:
Sean Perkins
2023-02-28 21:16:15 -05:00
committed by GitHub
parent ac66215399
commit 67578f6246
13 changed files with 121 additions and 121 deletions

View File

@ -146,8 +146,8 @@ export class Input implements ComponentInterface {
@Prop() errorText?: string;
/**
* The fill for the item. If `'solid'` the item will have a background. If
* `'outline'` the item will be transparent with a border. Only available in `md` mode.
* The fill for the item. If `"solid"` the item will have a background. If
* `"outline"` the item will be transparent with a border. Only available in `md` mode.
*/
@Prop() fill?: 'outline' | 'solid';
@ -170,11 +170,11 @@ export class Input implements ComponentInterface {
/**
* Where to place the label relative to the input.
* `'start'`: The label will appear to the left of the input in LTR and to the right in RTL.
* `'end'`: The label will appear to the right of the input in LTR and to the left in RTL.
* `'floating'`: The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input.
* `'stacked'`: The label will appear smaller and above the input regardless even when the input is blurred or has no value.
* `'fixed'`: The label has the same behavior as `'start'` except it also has a fixed width. Long text will be truncated with ellipses ("...").
* `"start"`: The label will appear to the left of the input in LTR and to the right in RTL.
* `"end"`: The label will appear to the right of the input in LTR and to the left in RTL.
* `"floating"`: The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input.
* `"stacked"`: The label will appear smaller and above the input regardless even when the input is blurred or has no value.
* `"fixed"`: The label has the same behavior as `"start"` except it also has a fixed width. Long text will be truncated with ellipses ("...").
*/
@Prop() labelPlacement: 'start' | 'end' | 'floating' | 'stacked' | 'fixed' = 'start';