sf-i-events 1.0.691 → 1.0.692
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 -0
- package/src/sf-i-events.ts +6 -0
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
|
// }
|
|
@@ -7190,6 +7193,9 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7190
7193
|
}
|
|
7191
7194
|
else {
|
|
7192
7195
|
this.renderAppropriateStream(this.sdate, this.edate, true);
|
|
7196
|
+
if (this.selectedItemIds.length > 0) {
|
|
7197
|
+
this.fetchBulkReportingData();
|
|
7198
|
+
}
|
|
7193
7199
|
// if(currentColumnButton != null) {
|
|
7194
7200
|
// currentColumnButton.click();
|
|
7195
7201
|
// }
|
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
|
// }
|
|
@@ -10608,6 +10611,9 @@ export class SfIEvents extends LitElement {
|
|
|
10608
10611
|
this.processFindSelection((this._SfFindContainer as HTMLDivElement), searchString);
|
|
10609
10612
|
} else {
|
|
10610
10613
|
this.renderAppropriateStream(this.sdate,this.edate,true)
|
|
10614
|
+
if(this.selectedItemIds.length > 0) {
|
|
10615
|
+
this.fetchBulkReportingData();
|
|
10616
|
+
}
|
|
10611
10617
|
// if(currentColumnButton != null) {
|
|
10612
10618
|
// currentColumnButton.click();
|
|
10613
10619
|
// }
|