Skip to content

Commit 54d2846

Browse files
committed
chore(calendar): mark DayDigitPipe as standalone
1 parent 536682d commit 54d2846

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

projects/igniteui-angular/calendar/src/calendar/day-digit.pipe.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { Pipe, PipeTransform } from '@angular/core';
22
import { IFormattingViews } from "./calendar";
33

4-
@Pipe({ name: 'dayDigit' })
4+
@Pipe({
5+
name: 'dayDigit',
6+
standalone: true
7+
})
58
export class DayDigitPipe implements PipeTransform {
69
public transform(value: string, formatViews: IFormattingViews): string {
710
if (!value) {

0 commit comments

Comments
 (0)