Skip to content

Commit 3ac7fc6

Browse files
authored
add textAlign property (#54)
1 parent 0bd1ac6 commit 3ac7fc6

12 files changed

+866
-455
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [1.5.3] - 2024-07-20
5+
### Added
6+
- Add `textAlign` input property ([#53](https://github.com/vicmans/ng-toggle-button/issues/53))
7+
48
## [1.5.2] - 2023-08-06
59
### Added
610
- Add config for disabled styles (#52)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Use
9393
| name | `string` | `undefined` | Name to attach to the generated input field |
9494
| fontSize | `number` | `10` | Font size in pixels |
9595
| 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'}`|
9697
| 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}`.|
9798

9899
`toggleConfig` type is described below:

package-lock.json

+787-447
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ng-toggle-button",
33
"description": "A toggle button component",
44
"author": "vicmans",
5-
"version": "1.5.2",
5+
"version": "1.5.3",
66
"homepage": "https://github.com/vicmans/ng-toggle-button#readme",
77
"repository": {
88
"type": "git",

projects/demo/src/app/app.component.html

+32-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2 class="subtitle">
2424
[(ngModel)]="prueba"
2525
[labels]="{checked: 'Encendido', unchecked: 'Apagado'}"
2626
[color]="{checked: '#007a66', unchecked: '#ddd', disabled: '#bfbfbf'}"
27-
[width]="82"
27+
[width]="90"
2828
></ng-toggle>
2929
<p class="is-family-code">ngModel: {{prueba}}</p>
3030

@@ -124,6 +124,7 @@ <h2 class="subtitle">
124124
[fontColor]="config.fontColor"
125125
[fontSize]="config.fontSize"
126126
[values]="config.values"
127+
[textAlign]="config.textAlign"
127128
(change)="changeEvent()"
128129
></ng-toggle>
129130
<br>
@@ -139,6 +140,7 @@ <h2 class="subtitle">
139140
[color]="{{config.color|json}}"
140141
[switchColor]="{{config.switchColor|json}}"
141142
[values]="{{config.values|json}}"
143+
[textAlign]="{{config.textAlign|json}}"
142144
[fontColor]="{{config.fontColor|json}}">
143145
&lt;/ng-toggle>
144146
</pre>
@@ -269,6 +271,35 @@ <h2 class="subtitle">
269271
</div>
270272
</div>
271273

274+
<div class="field is-horizontal">
275+
<div class="field-label">
276+
<label class="label">checked alignment: </label>
277+
</div>
278+
<div class="field-body">
279+
<div class="select">
280+
<select [(ngModel)]="config.textAlign.checked">
281+
<option>left</option>
282+
<option>center</option>
283+
<option>right</option>
284+
</select>
285+
</div>
286+
</div>
287+
</div>
288+
289+
<div class="field is-horizontal">
290+
<div class="field-label">
291+
<label class="label">unchecked alignment: </label>
292+
</div>
293+
<div class="field-body">
294+
<div class="select">
295+
<select [(ngModel)]="config.textAlign.unchecked">
296+
<option>left</option>
297+
<option>center</option>
298+
<option>right</option>
299+
</select>
300+
</div>
301+
</div>
302+
</div>
272303

273304
<div class="field is-horizontal">
274305
<div class="field-label">

projects/demo/src/app/app.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ export class AppComponent {
4444
checked: '#fafafa',
4545
unchecked: '#f45a32',
4646
disabled: '#ffffff'
47+
},
48+
textAlign: {
49+
checked: 'left',
50+
unchecked: 'right',
4751
}
4852
}
4953
myForm: FormGroup;

projects/ng-toggle/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,19 @@ Use
8686
| name | `string` | `undefined` | Name to attach to the generated input field |
8787
| fontSize | `number` | `10` | Font size in pixels |
8888
| 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'}`|
8990
| 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}`.|
9091

92+
`toggleConfig` type is described below:
93+
94+
```ts
95+
toggleConfig = {
96+
checked: string;
97+
unchecked: string;
98+
disabled?: string;
99+
};
100+
```
101+
91102
### Outputs events
92103

93104
| Name | Payload | Description |

projects/ng-toggle/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-toggle-button",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "Angular toggle button switch",
55
"author": "vicmans",
66
"license": "MIT",

projects/ng-toggle/src/lib/ng-toggle.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
<ng-container *ngIf="labels">
2929
<span
3030
class="ng-toggle-switch-label ng-toggle-left"
31-
[ngStyle]="labelStyle"
31+
[ngStyle]="labelLeftStyle"
3232
*ngIf="toggled"
3333
>
3434
{{labelChecked}}
3535
</span>
3636
<span
3737
class="ng-toggle-switch-label ng-toggle-right"
38-
[ngStyle]="labelStyle"
38+
[ngStyle]="labelRightStyle"
3939
*ngIf="!toggled"
4040
>
4141
{{labelUnchecked}}

projects/ng-toggle/src/lib/ng-toggle.component.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ label {
2525
font-weight: 600;
2626
color: white;
2727
z-index: 1;
28+
padding: 0 10px;
29+
box-sizing: border-box;
2830
&.ng-toggle-left {
29-
left: 10px;
31+
left: 0;
3032
}
3133
&.ng-toggle-right {
32-
right: 10px;
34+
right: 0;
3335
}
3436
}
3537
.ng-toggle-switch-core {

projects/ng-toggle/src/lib/ng-toggle.component.ts

+18-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ export class NgToggleComponent implements OnInit, ControlValueAccessor, OnChange
3939
@Input() labels: boolean | toggleConfig = this.config.labels || true
4040
@Input() fontColor: string | toggleConfig = this.config.fontColor || undefined
4141
@Input() values: valueConfig = this.config.values || {checked: true, unchecked: false}
42+
@Input() textAlign: string | toggleConfig = this.config.textAlign || {
43+
checked: 'left',
44+
unchecked: 'right',
45+
}
4246
@Input() id: string = ''
4347
@Input('aria-label') ariaLabel: string | null = null;
4448
@Input('aria-labelledby') ariaLabelledby: string | null = null;
@@ -142,7 +146,20 @@ export class NgToggleComponent implements OnInit, ControlValueAccessor, OnChange
142146
return {
143147
lineHeight: px(this.height),
144148
fontSize: this.fontSize ? px(this.fontSize) : null,
145-
color: this.fontColor ? this.fontColorCurrent : null
149+
color: this.fontColor ? this.fontColorCurrent : null,
150+
width: px(this.width - this.buttonRadius - this.margin),
151+
}
152+
}
153+
get labelLeftStyle () {
154+
return {
155+
...this.labelStyle,
156+
textAlign: (this.textAlign as toggleConfig).checked || this.textAlign
157+
}
158+
}
159+
get labelRightStyle () {
160+
return {
161+
...this.labelStyle,
162+
textAlign: (this.textAlign as toggleConfig).unchecked || this.textAlign
146163
}
147164
}
148165

projects/ng-toggle/src/lib/ng-toggle.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ export class NgToggleConfig {
1616
labels?: boolean | toggleConfig;
1717
values?: valueConfig;
1818
fontColor?: string | toggleConfig;
19+
textAlign?: string | toggleConfig;
1920
}

0 commit comments

Comments
 (0)