Skip to content

Commit 5a54080

Browse files
committed
fix: Prettier after merge to main branch
1 parent 0eaf6b9 commit 5a54080

File tree

5 files changed

+18
-21
lines changed

5 files changed

+18
-21
lines changed

projects/material-addons/src/lib/alert/alert-configuration.ts

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,14 @@ export interface AlertDefaultOptions {
66
size?: AlertSize;
77
}
88

9-
export const MAD_ALERT_DEFAULT_CONFIGURATION = new InjectionToken(
10-
"mad-alert-configuration",
11-
{
12-
providedIn: "root",
13-
factory: MAD_ALERT_DEFAULT_CONFIGURATION_FACTORY,
14-
},
15-
);
9+
export const MAD_ALERT_DEFAULT_CONFIGURATION = new InjectionToken('mad-alert-configuration', {
10+
providedIn: 'root',
11+
factory: MAD_ALERT_DEFAULT_CONFIGURATION_FACTORY,
12+
});
1613

1714
export function MAD_ALERT_DEFAULT_CONFIGURATION_FACTORY(): AlertDefaultOptions {
1815
return {
19-
size: "medium",
20-
type: "info",
16+
size: 'medium',
17+
type: 'info',
2118
};
2219
}

projects/material-addons/src/lib/alert/alert.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class AlertComponent {
3838
}
3939
}
4040

41-
constructor(@Inject(MAD_ALERT_DEFAULT_CONFIGURATION) private alertConfig: AlertDefaultOptions){}
41+
constructor(@Inject(MAD_ALERT_DEFAULT_CONFIGURATION) private alertConfig: AlertDefaultOptions) {}
4242

4343
closeAlert() {
4444
this.close.emit();
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from './alert-configuration'
2-
export * from './alert.component'
1+
export * from './alert-configuration';
2+
export * from './alert.component';

projects/material-addons/src/lib/stepper/stepper.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
last: isLast,
2222
first: isFirst,
2323
nextBtnLbl: this.nextButtonLabel,
24-
doneBtnLbl: this.doneButtonLabel,
24+
doneBtnLbl: this.doneButtonLabel
2525
}"
2626
></ng-container>
2727
</div>

projects/material-addons/src/themes/carcat.scss

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ $custom-theme: theme.build-custom-theme($theme-name, $primary-palette, common.$d
3737
@include mat.all-component-typographies($custom-theme);
3838
@include common.theme($theme-name, $custom-theme);
3939

40-
mad-alert {
41-
.alert.small {
42-
@include mat.icon-button-density(-3);
43-
border-width: 2px;
44-
border-radius: 0.5rem;
45-
font-size: 1rem !important;
46-
}
47-
}
40+
mad-alert {
41+
.alert.small {
42+
@include mat.icon-button-density(-3);
43+
border-width: 2px;
44+
border-radius: 0.5rem;
45+
font-size: 1rem !important;
46+
}
47+
}

0 commit comments

Comments
 (0)