sf-i-events 1.0.441 → 1.0.443
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 +1 -1
- package/sf-i-events.js +6 -6
- package/sf-i-events.js.map +1 -1
- package/src/sf-i-events.ts +6 -6
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -5177,7 +5177,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
5177
5177
|
// })
|
|
5178
5178
|
// }
|
|
5179
5179
|
};
|
|
5180
|
-
this.renderPast = (index =
|
|
5180
|
+
this.renderPast = (index = 1, showGraph = true) => {
|
|
5181
5181
|
var _a, _b;
|
|
5182
5182
|
this.clearGraphData();
|
|
5183
5183
|
this.clearSelectedGraphParam();
|
|
@@ -5383,7 +5383,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
5383
5383
|
if (showGraph)
|
|
5384
5384
|
this.renderCompletenessGraph(this._SfPastContainer);
|
|
5385
5385
|
};
|
|
5386
|
-
this.renderUpcoming = (index =
|
|
5386
|
+
this.renderUpcoming = (index = 1, showGraph = true) => {
|
|
5387
5387
|
var _a, _b;
|
|
5388
5388
|
this.clearGraphData();
|
|
5389
5389
|
this.clearSelectedGraphParam();
|
|
@@ -5615,7 +5615,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
5615
5615
|
if (showGraph)
|
|
5616
5616
|
this.renderCompletenessGraph(this._SfUpcomingContainer);
|
|
5617
5617
|
};
|
|
5618
|
-
this.renderThis = (index =
|
|
5618
|
+
this.renderThis = (index = 1, showGraph = true) => {
|
|
5619
5619
|
var _a, _b;
|
|
5620
5620
|
this.clearGraphData();
|
|
5621
5621
|
this.clearSelectedGraphParam();
|
|
@@ -11829,7 +11829,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
11829
11829
|
this.renderTabs(this.TAB_UPCOMING);
|
|
11830
11830
|
const dateResult = this.calculateStartAndEndDateOfUpcoming(0);
|
|
11831
11831
|
console.log('dateresult', dateResult);
|
|
11832
|
-
this.currentColumnIndex =
|
|
11832
|
+
this.currentColumnIndex = 1 + "";
|
|
11833
11833
|
await this.fetchAndYearlyRenderUserCalendar_2(dateResult.startDate, dateResult.endDate);
|
|
11834
11834
|
this.renderUpcoming();
|
|
11835
11835
|
});
|
|
@@ -11838,7 +11838,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
11838
11838
|
this.renderTabs(this.TAB_THIS);
|
|
11839
11839
|
const dateResult = this.calculateStartAndEndDateOfThis(0);
|
|
11840
11840
|
console.log('dateresult', dateResult);
|
|
11841
|
-
this.currentColumnIndex =
|
|
11841
|
+
this.currentColumnIndex = 1 + "";
|
|
11842
11842
|
await this.fetchAndYearlyRenderUserCalendar_2(dateResult.startDate, dateResult.endDate);
|
|
11843
11843
|
this.renderThis();
|
|
11844
11844
|
});
|
|
@@ -11847,7 +11847,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
11847
11847
|
this.renderTabs(this.TAB_PAST);
|
|
11848
11848
|
const dateResult = this.calculateStartAndEndDateOfPast(0);
|
|
11849
11849
|
console.log('dateresult', dateResult);
|
|
11850
|
-
this.currentColumnIndex =
|
|
11850
|
+
this.currentColumnIndex = 1 + "";
|
|
11851
11851
|
await this.fetchAndYearlyRenderUserCalendar_2(dateResult.startDate, dateResult.endDate);
|
|
11852
11852
|
this.renderPast();
|
|
11853
11853
|
});
|