You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,7 @@ Use
93
93
| name |`string`|`undefined`| Name to attach to the generated input field |
94
94
| fontSize |`number`|`10`| Font size in pixels |
95
95
| fontColor | `string | toggleConfig` |`undefined`| If `string` - color when checked <br>If `toggleConfig` - colors for labels when checked/uncheked <br>Example: `{checked: '#25EF02', unchecked: '#35DB15'}` by default the text color is white.|
96
+
| textAlign |`string \| toggleConfig`|`{checked: 'left', unchecked: 'right'}`| If `string`: text-align is applied both `checked` and `unchecked` labels<br>If `toggleConfig`: Text align of checked/unchecked labels<br>Example: `{checked: 'center', unchecked: 'center'}`|
96
97
| values |`{checked: any, unchecked: any}`|`{checked: true, unchecked: false}`| Values for checked and unchecked states, by default checked value is `true` and unchecked value is `false` <br>Example: `{checked: 1, unchecked: 0}`.|
Copy file name to clipboardexpand all lines: projects/ng-toggle/README.md
+11
Original file line number
Diff line number
Diff line change
@@ -86,8 +86,19 @@ Use
86
86
| name |`string`|`undefined`| Name to attach to the generated input field |
87
87
| fontSize |`number`|`10`| Font size in pixels |
88
88
| fontColor |`string Object`|`undefined`| If `string` - color when checked <br>If `Object` - colors for labels when checked/uncheked <br>Example: `{checked: '#25EF02', unchecked: '#35DB15'}` by default the text color is white.|
89
+
| textAlign |`string \| toggleConfig`|`{checked: 'left', unchecked: 'right'}`| If `string`: text-align is applied both `checked` and `unchecked` labels<br>If `toggleConfig`: Text align of checked/unchecked labels<br>Example: `{checked: 'center', unchecked: 'center'}`|
89
90
| values |`{checked: any, unchecked: any}`|`{checked: true, unchecked: false}`| Values for checked and unchecked states, by default checked value is `true` and unchecked value is `false` <br>Example: `{checked: 1, unchecked: 0}`.|
0 commit comments