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:
@ -86,9 +86,9 @@ export class Toggle implements ComponentInterface {
|
||||
|
||||
/**
|
||||
* Where to place the label relative to the input.
|
||||
* `'start'`: The label will appear to the left of the toggle in LTR and to the right in RTL.
|
||||
* `'end'`: The label will appear to the right of the toggle 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 toggle in LTR and to the right in RTL.
|
||||
* `"end"`: The label will appear to the right of the toggle 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';
|
||||
|
||||
@ -105,11 +105,11 @@ export class Toggle implements ComponentInterface {
|
||||
|
||||
/**
|
||||
* How to pack the label and toggle within a line.
|
||||
* `'start'`: The label and toggle will appear on the left in LTR and
|
||||
* `"start"`: The label and toggle will appear on the left in LTR and
|
||||
* on the right in RTL.
|
||||
* `'end'`: The label and toggle will appear on the right in LTR and
|
||||
* `"end"`: The label and toggle will appear on the right in LTR and
|
||||
* on the left in RTL.
|
||||
* `'space-between'`: The label and toggle will appear on opposite
|
||||
* `"space-between"`: The label and toggle will appear on opposite
|
||||
* ends of the line with space between the two elements.
|
||||
*/
|
||||
@Prop() justify: 'start' | 'end' | 'space-between' = 'space-between';
|
||||
|
Reference in New Issue
Block a user