sf-i-events 1.0.975 → 1.0.976
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 +3 -0
- package/src/sf-i-events.ts +3 -0
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -15347,6 +15347,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
15347
15347
|
if (this.mode == "next") {
|
|
15348
15348
|
// this.fetchNext(this.nextPage)
|
|
15349
15349
|
// this.renderRoleTabsNext(this.nextPage)
|
|
15350
|
+
buttonClose === null || buttonClose === void 0 ? void 0 : buttonClose.dispatchEvent(new Event('click'));
|
|
15350
15351
|
this.renderNextEvents(this.nextEvents, this.nextPage, this.nextTabRole);
|
|
15351
15352
|
}
|
|
15352
15353
|
else {
|
|
@@ -15464,6 +15465,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
15464
15465
|
}
|
|
15465
15466
|
if (this.mode == "next") {
|
|
15466
15467
|
// this.fetchNext(this.nextPage, this.nextTabRole, this.nextTabStatus)
|
|
15468
|
+
buttonClose === null || buttonClose === void 0 ? void 0 : buttonClose.dispatchEvent(new Event('click'));
|
|
15467
15469
|
this.renderNextEvents(this.nextEvents, this.nextPage, this.nextTabRole);
|
|
15468
15470
|
}
|
|
15469
15471
|
else {
|
|
@@ -15726,6 +15728,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
15726
15728
|
}
|
|
15727
15729
|
if (this.mode == "next") {
|
|
15728
15730
|
// this.fetchNext(this.nextPage, this.nextTabRole, this.nextTabStatus)
|
|
15731
|
+
buttonClose === null || buttonClose === void 0 ? void 0 : buttonClose.dispatchEvent(new Event('click'));
|
|
15729
15732
|
this.renderNextEvents(this.nextEvents, this.nextPage, this.nextTabRole);
|
|
15730
15733
|
}
|
|
15731
15734
|
else {
|
package/src/sf-i-events.ts
CHANGED
|
@@ -19417,6 +19417,7 @@ export class SfIEvents extends LitElement {
|
|
|
19417
19417
|
if (this.mode == "next") {
|
|
19418
19418
|
// this.fetchNext(this.nextPage)
|
|
19419
19419
|
// this.renderRoleTabsNext(this.nextPage)
|
|
19420
|
+
buttonClose?.dispatchEvent(new Event('click'))
|
|
19420
19421
|
this.renderNextEvents(this.nextEvents, this.nextPage, this.nextTabRole)
|
|
19421
19422
|
} else {
|
|
19422
19423
|
// if(this.getCurrentTab() == this.TAB_CUSTOM) {
|
|
@@ -19539,6 +19540,7 @@ export class SfIEvents extends LitElement {
|
|
|
19539
19540
|
}
|
|
19540
19541
|
if (this.mode == "next") {
|
|
19541
19542
|
// this.fetchNext(this.nextPage, this.nextTabRole, this.nextTabStatus)
|
|
19543
|
+
buttonClose?.dispatchEvent(new Event('click'))
|
|
19542
19544
|
this.renderNextEvents(this.nextEvents, this.nextPage, this.nextTabRole)
|
|
19543
19545
|
} else {
|
|
19544
19546
|
// if(this.getCurrentTab() == this.TAB_CUSTOM) {
|
|
@@ -19833,6 +19835,7 @@ export class SfIEvents extends LitElement {
|
|
|
19833
19835
|
|
|
19834
19836
|
if (this.mode == "next") {
|
|
19835
19837
|
// this.fetchNext(this.nextPage, this.nextTabRole, this.nextTabStatus)
|
|
19838
|
+
buttonClose?.dispatchEvent(new Event('click'))
|
|
19836
19839
|
this.renderNextEvents(this.nextEvents, this.nextPage, this.nextTabRole)
|
|
19837
19840
|
} else {
|
|
19838
19841
|
// if(this.getCurrentTab() == this.TAB_CUSTOM) {
|