@forcecalendar/interface 1.0.40 → 1.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forcecalendar/interface",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "type": "module",
5
5
  "description": "Official interface layer for forceCalendar Core - Enterprise calendar components",
6
6
  "main": "dist/force-calendar-interface.umd.js",
@@ -24,6 +24,7 @@ export class DayViewRenderer extends BaseViewRenderer {
24
24
  }
25
25
 
26
26
  this.cleanup();
27
+ this._scrolled = false;
27
28
  const config = this.stateManager.getState().config;
28
29
  const html = this._renderDayView(viewData, config);
29
30
  this.container.innerHTML = html;
@@ -24,6 +24,7 @@ export class WeekViewRenderer extends BaseViewRenderer {
24
24
  }
25
25
 
26
26
  this.cleanup();
27
+ this._scrolled = false;
27
28
  const config = this.stateManager.getState().config;
28
29
  const html = this._renderWeekView(viewData, config);
29
30
  this.container.innerHTML = html;