mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
chore: format string values in comments with double quotes (#26857)
This commit is contained in:
@ -217,9 +217,9 @@ export class Range implements ComponentInterface {
|
||||
|
||||
/**
|
||||
* Where to place the label relative to the range.
|
||||
* `'start'`: The label will appear to the left of the range in LTR and to the right in RTL.
|
||||
* `'end'`: The label will appear to the right of the range in LTR and to the left in RTL.
|
||||
* `'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 range in LTR and to the right in RTL.
|
||||
* `"end"`: The label will appear to the right of the range in LTR and to the left in RTL.
|
||||
* `"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' | 'fixed' = 'start';
|
||||
|
||||
|
Reference in New Issue
Block a user