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: CHANGELOG.md
+38
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,44 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
***dayView:** add the event.cssClass to the event container instead of the event itself ([591dd4a](https://github.com/mattlewis92/angular-calendar/commit/591dd4a)), closes [#299](https://github.com/mattlewis92/angular-calendar/issues/299)
12
+
***monthView:** only call beforeViewRender once when refreshing the view ([3dd3118](https://github.com/mattlewis92/angular-calendar/commit/3dd3118)), closes [#293](https://github.com/mattlewis92/angular-calendar/issues/293)
13
+
***weekView:** custom event `cssClass`'s are now added to the event container instead of the event i ([712ded8](https://github.com/mattlewis92/angular-calendar/commit/712ded8))
14
+
15
+
16
+
### BREAKING CHANGES
17
+
18
+
***weekView:** you may need to adjust your CSS slightly to account for this change. See the day
19
+
view breaking change for how to migrate.
20
+
***dayView:** the `event.cssClass` property is now added to the parent container element, rather
21
+
than the event itself. You may need to update your CSS.
22
+
23
+
Before:
24
+
```
25
+
.my-custom-event-class {}
26
+
```
27
+
28
+
After:
29
+
```
30
+
.my-custom-event-class .cal-event {}
31
+
```
32
+
33
+
People using custom day event event templates can also remove these lines from their template:
0 commit comments