sf-i-events 1.0.691 → 1.0.693
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/README.md +1 -1
- package/package.json +1 -1
- package/sf-i-events.js +9 -0
- package/src/sf-i-events.ts +9 -0
package/README.md
CHANGED
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -6933,6 +6933,9 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
6933
6933
|
"cancelable": false
|
|
6934
6934
|
});
|
|
6935
6935
|
this._SfDetailContainer.querySelector('#button-detail-close').dispatchEvent(clickEvent);
|
|
6936
|
+
if (this.selectedItemIds.length > 0) {
|
|
6937
|
+
this.fetchBulkReportingData();
|
|
6938
|
+
}
|
|
6936
6939
|
// if(currentColumnButton != null) {
|
|
6937
6940
|
// currentColumnButton.click();
|
|
6938
6941
|
// }
|
|
@@ -7019,6 +7022,9 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7019
7022
|
}
|
|
7020
7023
|
else {
|
|
7021
7024
|
this.renderAppropriateStream(this.sdate, this.edate, true);
|
|
7025
|
+
if (this.selectedItemIds.length > 0) {
|
|
7026
|
+
this.fetchBulkReportingData();
|
|
7027
|
+
}
|
|
7022
7028
|
// if(currentColumnButton != null) {
|
|
7023
7029
|
// currentColumnButton.click();
|
|
7024
7030
|
// }
|
|
@@ -7190,6 +7196,9 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7190
7196
|
}
|
|
7191
7197
|
else {
|
|
7192
7198
|
this.renderAppropriateStream(this.sdate, this.edate, true);
|
|
7199
|
+
if (this.selectedItemIds.length > 0) {
|
|
7200
|
+
this.fetchBulkReportingData();
|
|
7201
|
+
}
|
|
7193
7202
|
// if(currentColumnButton != null) {
|
|
7194
7203
|
// currentColumnButton.click();
|
|
7195
7204
|
// }
|
package/src/sf-i-events.ts
CHANGED
|
@@ -10298,6 +10298,9 @@ export class SfIEvents extends LitElement {
|
|
|
10298
10298
|
"cancelable": false
|
|
10299
10299
|
});
|
|
10300
10300
|
((this._SfDetailContainer as HTMLDivElement).querySelector('#button-detail-close') as HTMLButtonElement)!.dispatchEvent(clickEvent);
|
|
10301
|
+
if(this.selectedItemIds.length > 0) {
|
|
10302
|
+
this.fetchBulkReportingData();
|
|
10303
|
+
}
|
|
10301
10304
|
// if(currentColumnButton != null) {
|
|
10302
10305
|
// currentColumnButton.click();
|
|
10303
10306
|
// }
|
|
@@ -10396,6 +10399,9 @@ export class SfIEvents extends LitElement {
|
|
|
10396
10399
|
this.processFindSelection((this._SfFindContainer as HTMLDivElement), searchString);
|
|
10397
10400
|
} else {
|
|
10398
10401
|
this.renderAppropriateStream(this.sdate,this.edate,true);
|
|
10402
|
+
if(this.selectedItemIds.length > 0) {
|
|
10403
|
+
this.fetchBulkReportingData();
|
|
10404
|
+
}
|
|
10399
10405
|
// if(currentColumnButton != null) {
|
|
10400
10406
|
// currentColumnButton.click();
|
|
10401
10407
|
// }
|
|
@@ -10608,6 +10614,9 @@ export class SfIEvents extends LitElement {
|
|
|
10608
10614
|
this.processFindSelection((this._SfFindContainer as HTMLDivElement), searchString);
|
|
10609
10615
|
} else {
|
|
10610
10616
|
this.renderAppropriateStream(this.sdate,this.edate,true)
|
|
10617
|
+
if(this.selectedItemIds.length > 0) {
|
|
10618
|
+
this.fetchBulkReportingData();
|
|
10619
|
+
}
|
|
10611
10620
|
// if(currentColumnButton != null) {
|
|
10612
10621
|
// currentColumnButton.click();
|
|
10613
10622
|
// }
|