File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
projects/coreui-angular/src/lib/progress Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
---
4
4
5
+ #### ` 5.5.1 `
6
+
7
+ - fix(progress): TS2540: Cannot assign to ` value ` because it is a read-only property - conflicting on directive composition with ProgressBarDirective
8
+
9
+ ---
10
+
5
11
#### ` 5.5.0 `
6
12
7
13
- chore(dependencies): update to ` Angular 20 `
Original file line number Diff line number Diff line change 2
2
< ng-container *ngTemplateOutlet ="defaultContent " />
3
3
} @else {
4
4
@let pbd = progressBarDirective;
5
- < c-progress-bar [animated] ="pbd?.animated() " [variant] ="pbd?.variant() " [color] ="pbd?.color() " [value] ="value () ">
5
+ < c-progress-bar [animated] ="pbd?.animated() " [variant] ="pbd?.variant() " [color] ="pbd?.color() " [value] ="barValue () ">
6
6
< ng-container *ngTemplateOutlet ="defaultContent " />
7
7
</ c-progress-bar >
8
8
}
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export class ProgressComponent {
47
47
48
48
readonly stacked = this . #progressService. stacked ;
49
49
readonly percent = this . #progressService. percent ;
50
- readonly value = this . #progressService. value ;
50
+ readonly barValue = this . #progressService. value ;
51
51
52
52
readonly contentProgressBars = contentChildren ( ProgressBarComponent ) ;
53
53
You can’t perform that action at this time.
0 commit comments