@social-mail/social-mail-client 1.4.110 → 1.4.111
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/dist/public/channel/ChannelApp.pack.js +7 -4
- package/dist/public/channel/ChannelApp.pack.js.map +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
- package/dist/public/channel/pages/ChannelDetailPage.d.ts +3 -4
- package/dist/public/channel/pages/ChannelDetailPage.d.ts.map +1 -1
- package/dist/public/channel/pages/ChannelDetailPage.js +7 -4
- package/dist/public/channel/pages/ChannelDetailPage.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/public/channel/pages/ChannelDetailPage.tsx +6 -4
|
@@ -26346,13 +26346,15 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "@web-atom
|
|
|
26346
26346
|
});
|
|
26347
26347
|
}
|
|
26348
26348
|
engagementClick({
|
|
26349
|
-
email,
|
|
26350
26349
|
engagement
|
|
26351
26350
|
}) {
|
|
26352
26351
|
const emoji = engagement.engagement;
|
|
26353
|
-
this.reactAction(
|
|
26352
|
+
this.reactAction(emoji);
|
|
26354
26353
|
}
|
|
26355
|
-
reactAction(
|
|
26354
|
+
reactAction(emoji) {
|
|
26355
|
+
const {
|
|
26356
|
+
email
|
|
26357
|
+
} = this;
|
|
26356
26358
|
const {
|
|
26357
26359
|
headerMessageID
|
|
26358
26360
|
} = email;
|
|
@@ -26383,12 +26385,13 @@ System.register(["tslib", "@web-atoms/core/dist/core/InjectProperty", "@web-atom
|
|
|
26383
26385
|
const emoji = yield EmojiPopup.showControl(ce.target, {
|
|
26384
26386
|
parentElement: ce.target
|
|
26385
26387
|
});
|
|
26386
|
-
this.reactAction(
|
|
26388
|
+
this.reactAction(emoji);
|
|
26387
26389
|
});
|
|
26388
26390
|
}
|
|
26389
26391
|
replyEmail(email, ce) {
|
|
26390
26392
|
return __awaiter(this, void 0, void 0, function* () {
|
|
26391
26393
|
const emoji = commentIcon;
|
|
26394
|
+
email = this.email;
|
|
26392
26395
|
const {
|
|
26393
26396
|
headerMessageID
|
|
26394
26397
|
} = email;
|