sceyt-chat-react-uikit 1.7.7-beta.14 → 1.7.7-beta.16

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/index.modern.js CHANGED
@@ -2669,6 +2669,13 @@ var CHANNEL_GROUP_TYPES = {
2669
2669
  DIRECT_PRIVATE: 'chats_groups',
2670
2670
  PUBLIC: 'channels'
2671
2671
  };
2672
+ var FIXED_TIMER_OPTIONS = {
2673
+ off: 0,
2674
+ '1day': 60 * 60 * 24,
2675
+ '1week': 60 * 60 * 24 * 7,
2676
+ '1month': 60 * 60 * 24 * 30,
2677
+ custom: 60 * 60 * 24 * 2
2678
+ };
2672
2679
 
2673
2680
  // A type of promise-like that resolves synchronously and supports only one observer
2674
2681
  const _Pact = /*#__PURE__*/(function() {
@@ -9035,6 +9042,7 @@ var memberCount = 10;
9035
9042
  var disableFrowardMentionsCount = false;
9036
9043
  var onUpdateChannel = function onUpdateChannel() {};
9037
9044
  var useInviteLink = false;
9045
+ var disappearingSettings;
9038
9046
  var inviteLinkOptions = null;
9039
9047
  function setBaseUrlForInviteMembers(url) {
9040
9048
  baseUrlForInviteMembers = url;
@@ -9253,6 +9261,12 @@ var setShowChannelDetails = function setShowChannelDetails(state) {
9253
9261
  var getShowChannelDetails = function getShowChannelDetails() {
9254
9262
  return showChannelDetails;
9255
9263
  };
9264
+ var setDisappearingSettings = function setDisappearingSettings(settings) {
9265
+ disappearingSettings = settings;
9266
+ };
9267
+ var getDisappearingSettings = function getDisappearingSettings() {
9268
+ return disappearingSettings;
9269
+ };
9256
9270
  var sortChannelByLastMessage = function sortChannelByLastMessage(channels) {
9257
9271
  return channels.sort(function (a, b) {
9258
9272
  var aPinnedAt = a.pinnedAt ? new Date(a.pinnedAt) : null;
@@ -9701,6 +9715,7 @@ var UPDATE_CHANNEL_INVITE_KEY = 'UPDATE_CHANNEL_INVITE_KEY';
9701
9715
  var DESTROY_SESSION = 'DESTROY_SESSION';
9702
9716
  var GET_CHANNEL_BY_INVITE_KEY = 'GET_CHANNEL_BY_INVITE_KEY';
9703
9717
  var JOIN_TO_CHANNEL_WITH_INVITE_KEY = 'JOIN_TO_CHANNEL_WITH_INVITE_KEY';
9718
+ var SET_MESSAGE_RETENTION_PERIOD = 'SET_MESSAGE_RETENTION_PERIOD';
9704
9719
  var CHANNEL_EVENT_TYPES = {
9705
9720
  POLL_ADDED: 'POLL_ADDED',
9706
9721
  POLL_DELETED: 'POLL_DELETED',
@@ -10041,6 +10056,48 @@ var hashString = function hashString(str) {
10041
10056
  return Promise.reject(e);
10042
10057
  }
10043
10058
  };
10059
+ var formatDisappearingMessageTime = function formatDisappearingMessageTime(periodInMilliseconds) {
10060
+ var _getDisappearingSetti;
10061
+ if (!periodInMilliseconds) return 'Off';
10062
+ var periodInSeconds = periodInMilliseconds / 1000;
10063
+ switch (periodInSeconds) {
10064
+ case FIXED_TIMER_OPTIONS['1day']:
10065
+ return '1 day';
10066
+ case FIXED_TIMER_OPTIONS['1week']:
10067
+ return '1 week';
10068
+ case FIXED_TIMER_OPTIONS['1month']:
10069
+ return '1 month';
10070
+ }
10071
+ var customOptions = ((_getDisappearingSetti = getDisappearingSettings()) === null || _getDisappearingSetti === void 0 ? void 0 : _getDisappearingSetti.customOptions) || [];
10072
+ var customMatch = customOptions.find(function (option) {
10073
+ return option.seconds === periodInSeconds;
10074
+ });
10075
+ if (customMatch) return customMatch.label;
10076
+ var SECONDS_PER_MINUTE = 60;
10077
+ var SECONDS_PER_HOUR = SECONDS_PER_MINUTE * 60;
10078
+ var SECONDS_PER_DAY = SECONDS_PER_HOUR * 24;
10079
+ var DAYS_PER_WEEK = 7;
10080
+ var DAYS_PER_MONTH = 30;
10081
+ var days = Math.floor(periodInSeconds / SECONDS_PER_DAY);
10082
+ var weeks = Math.floor(days / DAYS_PER_WEEK);
10083
+ var months = Math.floor(days / DAYS_PER_MONTH);
10084
+ var hours = Math.floor(periodInSeconds / SECONDS_PER_HOUR);
10085
+ var minutes = Math.floor(periodInSeconds / SECONDS_PER_MINUTE);
10086
+ switch (true) {
10087
+ case months > 0:
10088
+ return months + " " + (months === 1 ? 'month' : 'months');
10089
+ case weeks > 0:
10090
+ return weeks + " " + (weeks === 1 ? 'week' : 'weeks');
10091
+ case days > 0:
10092
+ return days + " " + (days === 1 ? 'day' : 'days');
10093
+ case hours > 0:
10094
+ return hours + " " + (hours === 1 ? 'hour' : 'hours');
10095
+ case minutes > 0:
10096
+ return minutes + " " + (minutes === 1 ? 'minute' : 'minutes');
10097
+ default:
10098
+ return periodInSeconds + " " + (periodInSeconds === 1 ? 'second' : 'seconds');
10099
+ }
10100
+ };
10044
10101
 
10045
10102
  var GET_MESSAGES = 'GET_MESSAGES';
10046
10103
  var GET_MESSAGE = 'GET_MESSAGE';
@@ -10160,10 +10217,13 @@ function setMessageToEditAC(message) {
10160
10217
  message: message
10161
10218
  });
10162
10219
  }
10163
- function getMessagesAC(channel, loadWithLastMessage, messageId, limit, withDeliveredMessages, highlight, behavior) {
10220
+ function getMessagesAC(channel, loadWithLastMessage, messageId, limit, withDeliveredMessages, highlight, behavior, scrollToMessage) {
10164
10221
  if (highlight === void 0) {
10165
10222
  highlight = true;
10166
10223
  }
10224
+ if (scrollToMessage === void 0) {
10225
+ scrollToMessage = true;
10226
+ }
10167
10227
  return {
10168
10228
  type: GET_MESSAGES,
10169
10229
  payload: {
@@ -10173,7 +10233,8 @@ function getMessagesAC(channel, loadWithLastMessage, messageId, limit, withDeliv
10173
10233
  limit: limit,
10174
10234
  withDeliveredMessages: withDeliveredMessages,
10175
10235
  highlight: highlight,
10176
- behavior: behavior
10236
+ behavior: behavior,
10237
+ scrollToMessage: scrollToMessage
10177
10238
  }
10178
10239
  };
10179
10240
  }
@@ -12734,6 +12795,15 @@ var joinChannelWithInviteKeyAC = function joinChannelWithInviteKeyAC(key) {
12734
12795
  }
12735
12796
  };
12736
12797
  };
12798
+ var setMessageRetentionPeriodAC = function setMessageRetentionPeriodAC(channelId, periodInMilliseconds) {
12799
+ return {
12800
+ type: SET_MESSAGE_RETENTION_PERIOD,
12801
+ payload: {
12802
+ channelId: channelId,
12803
+ periodInMilliseconds: periodInMilliseconds
12804
+ }
12805
+ };
12806
+ };
12737
12807
 
12738
12808
  var getUsersAC = function getUsersAC(params) {
12739
12809
  return {
@@ -13585,7 +13655,9 @@ var Button = styled.button(_templateObject12 || (_templateObject12 = _taggedTemp
13585
13655
  }, function (props) {
13586
13656
  return props.disabled ? props.disabledOpacity || 0.5 : 0.8;
13587
13657
  });
13588
- var PopupName = styled.h3(_templateObject13 || (_templateObject13 = _taggedTemplateLiteralLoose(["\n font-style: normal;\n font-weight: 500;\n font-size: 20px;\n line-height: 23px;\n color: ", ";\n margin: 0;\n margin-top: ", ";\n margin-bottom: ", ";\n padding: ", ";\n word-break: break-word;\n\n ", "\n"])), function (props) {
13658
+ var PopupName = styled.h3(_templateObject13 || (_templateObject13 = _taggedTemplateLiteralLoose(["\n font-style: normal;\n font-weight: 500;\n font-size: 20px;\n line-height: ", ";\n color: ", ";\n margin: 0;\n margin-top: ", ";\n margin-bottom: ", ";\n padding: ", ";\n word-break: break-word;\n\n ", "\n"])), function (props) {
13659
+ return props.lineHeight || '23px';
13660
+ }, function (props) {
13589
13661
  return props.color;
13590
13662
  }, function (props) {
13591
13663
  return props.marginTop;
@@ -13631,8 +13703,10 @@ var Popup = styled.div(_templateObject15 || (_templateObject15 = _taggedTemplate
13631
13703
  }, function (props) {
13632
13704
  return props.isLoading && "\n user-select: none;\n\n & > * {\n pointer-events: none;\n user-select: none;\n }\n\n " + ButtonBlock + " {\n a, button {\n pointer-events: none;\n user-select: none;\n opacity: 0.7;\n }\n }\n ";
13633
13705
  });
13634
- var PopupBody = styled.div(_templateObject16 || (_templateObject16 = _taggedTemplateLiteralLoose(["\n padding: ", ";\n margin-bottom: 8px;\n height: ", ";\n"])), function (props) {
13706
+ var PopupBody = styled.div(_templateObject16 || (_templateObject16 = _taggedTemplateLiteralLoose(["\n padding: ", ";\n margin-bottom: ", ";\n height: ", ";\n"])), function (props) {
13635
13707
  return (props.paddingV || 0) + " " + (props.paddingH || 0);
13708
+ }, function (props) {
13709
+ return props.marginBottom || '8px';
13636
13710
  }, function (props) {
13637
13711
  return props.withFooter ? "calc(100% - (54px + " + props.paddingV + "))" : 'calc(100% - 54px)';
13638
13712
  });
@@ -15919,7 +15993,8 @@ var _marked$2 = /*#__PURE__*/_regenerator().m(createChannel),
15919
15993
  _marked32 = /*#__PURE__*/_regenerator().m(updateChannelInviteKey),
15920
15994
  _marked33 = /*#__PURE__*/_regenerator().m(getChannelByInviteKey),
15921
15995
  _marked34 = /*#__PURE__*/_regenerator().m(joinChannelWithInviteKey),
15922
- _marked35 = /*#__PURE__*/_regenerator().m(ChannelsSaga);
15996
+ _marked35 = /*#__PURE__*/_regenerator().m(setMessageRetentionPeriod),
15997
+ _marked36 = /*#__PURE__*/_regenerator().m(ChannelsSaga);
15923
15998
  function createChannel(action) {
15924
15999
  var payload, channelData, dontCreateIfNotExists, callback, SceytChatClient, createChannelData, fileToUpload, isSelfChannel, channelIsExistOnAllChannels, createdChannel, allChannels, memberId, checkChannelExist, messageToSend, _allChannels, _memberId, _t;
15925
16000
  return _regenerator().w(function (_context) {
@@ -18204,121 +18279,177 @@ function joinChannelWithInviteKey(action) {
18204
18279
  }
18205
18280
  }, _marked34, null, [[0, 6]]);
18206
18281
  }
18207
- function ChannelsSaga() {
18282
+ function setMessageRetentionPeriod(action) {
18283
+ var payload, channelId, periodInMilliseconds, channel, messageToSend, _t35;
18208
18284
  return _regenerator().w(function (_context35) {
18209
- while (1) switch (_context35.n) {
18285
+ while (1) switch (_context35.p = _context35.n) {
18210
18286
  case 0:
18287
+ _context35.p = 0;
18288
+ payload = action.payload;
18289
+ channelId = payload.channelId, periodInMilliseconds = payload.periodInMilliseconds;
18211
18290
  _context35.n = 1;
18212
- return takeLatest(CREATE_CHANNEL, createChannel);
18291
+ return call(getChannelFromMap, channelId);
18213
18292
  case 1:
18293
+ channel = _context35.v;
18294
+ if (!channel) {
18295
+ channel = getChannelFromAllChannels(channelId);
18296
+ }
18297
+ if (!channel) {
18298
+ _context35.n = 4;
18299
+ break;
18300
+ }
18214
18301
  _context35.n = 2;
18215
- return takeLatest(GET_CHANNELS, getChannels);
18302
+ return call(channel.setMessageRetentionPeriod, periodInMilliseconds);
18216
18303
  case 2:
18217
18304
  _context35.n = 3;
18218
- return takeLatest(SEARCH_CHANNELS, searchChannels);
18305
+ return put(updateChannelDataAC(channelId, {
18306
+ messageRetentionPeriod: periodInMilliseconds
18307
+ }));
18219
18308
  case 3:
18309
+ updateChannelOnAllChannels(channelId, {
18310
+ messageRetentionPeriod: periodInMilliseconds
18311
+ });
18312
+ messageToSend = {
18313
+ metadata: {
18314
+ autoDeletePeriod: periodInMilliseconds.toString()
18315
+ },
18316
+ body: 'ADM',
18317
+ mentionedUsers: [],
18318
+ attachments: [],
18319
+ type: 'system'
18320
+ };
18220
18321
  _context35.n = 4;
18322
+ return put(sendTextMessageAC(messageToSend, channelId, CONNECTION_STATUS.CONNECTED));
18323
+ case 4:
18324
+ _context35.n = 6;
18325
+ break;
18326
+ case 5:
18327
+ _context35.p = 5;
18328
+ _t35 = _context35.v;
18329
+ log.error('ERROR in set message retention period', _t35);
18330
+ case 6:
18331
+ return _context35.a(2);
18332
+ }
18333
+ }, _marked35, null, [[0, 5]]);
18334
+ }
18335
+ function ChannelsSaga() {
18336
+ return _regenerator().w(function (_context36) {
18337
+ while (1) switch (_context36.n) {
18338
+ case 0:
18339
+ _context36.n = 1;
18340
+ return takeLatest(CREATE_CHANNEL, createChannel);
18341
+ case 1:
18342
+ _context36.n = 2;
18343
+ return takeLatest(GET_CHANNELS, getChannels);
18344
+ case 2:
18345
+ _context36.n = 3;
18346
+ return takeLatest(SEARCH_CHANNELS, searchChannels);
18347
+ case 3:
18348
+ _context36.n = 4;
18221
18349
  return takeLatest(GET_CHANNELS_FOR_FORWARD, getChannelsForForward);
18222
18350
  case 4:
18223
- _context35.n = 5;
18351
+ _context36.n = 5;
18224
18352
  return takeLatest(SEARCH_CHANNELS_FOR_FORWARD, searchChannelsForForward);
18225
18353
  case 5:
18226
- _context35.n = 6;
18354
+ _context36.n = 6;
18227
18355
  return takeLatest(LOAD_MORE_CHANNEL, channelsLoadMore);
18228
18356
  case 6:
18229
- _context35.n = 7;
18357
+ _context36.n = 7;
18230
18358
  return takeLatest(LOAD_MORE_CHANNELS_FOR_FORWARD, channelsForForwardLoadMore);
18231
18359
  case 7:
18232
- _context35.n = 8;
18360
+ _context36.n = 8;
18233
18361
  return takeEvery(SWITCH_CHANNEL, switchChannel);
18234
18362
  case 8:
18235
- _context35.n = 9;
18363
+ _context36.n = 9;
18236
18364
  return takeLatest(LEAVE_CHANNEL, leaveChannel);
18237
18365
  case 9:
18238
- _context35.n = 10;
18366
+ _context36.n = 10;
18239
18367
  return takeLatest(DELETE_CHANNEL, deleteChannel);
18240
18368
  case 10:
18241
- _context35.n = 11;
18369
+ _context36.n = 11;
18242
18370
  return takeLatest(BLOCK_CHANNEL, blockChannel);
18243
18371
  case 11:
18244
- _context35.n = 12;
18372
+ _context36.n = 12;
18245
18373
  return takeLatest(UPDATE_CHANNEL, updateChannel);
18246
18374
  case 12:
18247
- _context35.n = 13;
18375
+ _context36.n = 13;
18248
18376
  return takeEvery(MARK_MESSAGES_AS_READ, markMessagesRead);
18249
18377
  case 13:
18250
- _context35.n = 14;
18378
+ _context36.n = 14;
18251
18379
  return takeLatest(MARK_MESSAGES_AS_DELIVERED, markMessagesDelivered);
18252
18380
  case 14:
18253
- _context35.n = 15;
18381
+ _context36.n = 15;
18254
18382
  return takeLatest(MARK_VOICE_MESSAGE_AS_PLAYED, markVoiceMessageAsPlayed);
18255
18383
  case 15:
18256
- _context35.n = 16;
18384
+ _context36.n = 16;
18257
18385
  return takeLatest(WATCH_FOR_EVENTS, watchForChannelEvents);
18258
18386
  case 16:
18259
- _context35.n = 17;
18387
+ _context36.n = 17;
18260
18388
  return takeLatest(TURN_OFF_NOTIFICATION, notificationsTurnOff);
18261
18389
  case 17:
18262
- _context35.n = 18;
18390
+ _context36.n = 18;
18263
18391
  return takeLatest(TURN_ON_NOTIFICATION, notificationsTurnOn);
18264
18392
  case 18:
18265
- _context35.n = 19;
18393
+ _context36.n = 19;
18266
18394
  return takeLatest(MARK_CHANNEL_AS_READ, markChannelAsRead);
18267
18395
  case 19:
18268
- _context35.n = 20;
18396
+ _context36.n = 20;
18269
18397
  return takeLatest(MARK_CHANNEL_AS_UNREAD, markChannelAsUnRead);
18270
18398
  case 20:
18271
- _context35.n = 21;
18399
+ _context36.n = 21;
18272
18400
  return takeLatest(CHECK_USER_STATUS, checkUsersStatus);
18273
18401
  case 21:
18274
- _context35.n = 22;
18402
+ _context36.n = 22;
18275
18403
  return takeLatest(SEND_TYPING, sendTyping);
18276
18404
  case 22:
18277
- _context35.n = 23;
18405
+ _context36.n = 23;
18278
18406
  return takeLatest(SEND_RECORDING, sendRecording);
18279
18407
  case 23:
18280
- _context35.n = 24;
18408
+ _context36.n = 24;
18281
18409
  return takeLatest(PIN_CHANNEL, pinChannel);
18282
18410
  case 24:
18283
- _context35.n = 25;
18411
+ _context36.n = 25;
18284
18412
  return takeLatest(UNPIN_CHANNEL, unpinChannel);
18285
18413
  case 25:
18286
- _context35.n = 26;
18414
+ _context36.n = 26;
18287
18415
  return takeLatest(CLEAR_HISTORY, clearHistory);
18288
18416
  case 26:
18289
- _context35.n = 27;
18417
+ _context36.n = 27;
18290
18418
  return takeLatest(JOIN_TO_CHANNEL, joinChannel);
18291
18419
  case 27:
18292
- _context35.n = 28;
18420
+ _context36.n = 28;
18293
18421
  return takeLatest(DELETE_ALL_MESSAGES, deleteAllMessages);
18294
18422
  case 28:
18295
- _context35.n = 29;
18423
+ _context36.n = 29;
18296
18424
  return takeLatest(REMOVE_CHANNEL_CACHES, removeChannelCaches);
18297
18425
  case 29:
18298
- _context35.n = 30;
18426
+ _context36.n = 30;
18299
18427
  return takeLatest(GET_CHANNEL_MENTIONS, getChannelMentions);
18300
18428
  case 30:
18301
- _context35.n = 31;
18429
+ _context36.n = 31;
18302
18430
  return takeLatest(CREATE_CHANNEL_INVITE_KEY, createChannelInviteKey);
18303
18431
  case 31:
18304
- _context35.n = 32;
18432
+ _context36.n = 32;
18305
18433
  return takeLatest(UPDATE_CHANNEL_INVITE_KEY, updateChannelInviteKey);
18306
18434
  case 32:
18307
- _context35.n = 33;
18435
+ _context36.n = 33;
18308
18436
  return takeLatest(REGENERATE_CHANNEL_INVITE_KEY, regenerateChannelInviteKey);
18309
18437
  case 33:
18310
- _context35.n = 34;
18438
+ _context36.n = 34;
18311
18439
  return takeLatest(GET_CHANNEL_INVITE_KEYS, getChannelInviteKeys);
18312
18440
  case 34:
18313
- _context35.n = 35;
18441
+ _context36.n = 35;
18314
18442
  return takeLatest(GET_CHANNEL_BY_INVITE_KEY, getChannelByInviteKey);
18315
18443
  case 35:
18316
- _context35.n = 36;
18444
+ _context36.n = 36;
18317
18445
  return takeLatest(JOIN_TO_CHANNEL_WITH_INVITE_KEY, joinChannelWithInviteKey);
18318
18446
  case 36:
18319
- return _context35.a(2);
18447
+ _context36.n = 37;
18448
+ return takeLatest(SET_MESSAGE_RETENTION_PERIOD, setMessageRetentionPeriod);
18449
+ case 37:
18450
+ return _context36.a(2);
18320
18451
  }
18321
- }, _marked35);
18452
+ }, _marked36);
18322
18453
  }
18323
18454
 
18324
18455
  function rgbaToThumbHash(w, h, rgba) {
@@ -19060,7 +19191,7 @@ function sendMessage(action) {
19060
19191
  }
19061
19192
  case 11:
19062
19193
  _loop2 = /*#__PURE__*/_regenerator().m(function _callee2() {
19063
- var messageAttachment, messageToSend, messageCopy, _attachmentsToSend, linkAttachmentToSend, linkAttachmentBuilder, messageResponse, k, pendingAttachment, attachmentsToUpdate, currentAttachmentsMap, messageUpdateData, messageToUpdate, channelUpdateParam, pendingMessage, _t;
19194
+ var messageAttachment, messageToSend, messageCopy, _attachmentsToSend, linkAttachmentToSend, linkAttachmentBuilder, messageResponse, k, pendingAttachment, attachmentsToUpdate, currentAttachmentsMap, messageUpdateData, messageToUpdate, channelUpdateParam, pendingMessage, connectionIsDisconnected, _t;
19064
19195
  return _regenerator().w(function (_context2) {
19065
19196
  while (1) switch (_context2.p = _context2.n) {
19066
19197
  case 0:
@@ -19195,7 +19326,7 @@ function sendMessage(action) {
19195
19326
  case 12:
19196
19327
  throw new Error('Connection required to send message');
19197
19328
  case 13:
19198
- _context2.n = 17;
19329
+ _context2.n = 19;
19199
19330
  break;
19200
19331
  case 14:
19201
19332
  _context2.p = 14;
@@ -19204,24 +19335,31 @@ function sendMessage(action) {
19204
19335
  return pendingMessage.tid === messageToSend.tid;
19205
19336
  });
19206
19337
  if (!(channel && pendingMessage && action.type !== RESEND_MESSAGE)) {
19207
- _context2.n = 15;
19338
+ _context2.n = 17;
19208
19339
  break;
19209
19340
  }
19210
- if (!isAddToPendingMessagesMap) {
19211
- _context2.n = 15;
19341
+ connectionIsDisconnected = store.getState().UserReducer.connectionStatus !== CONNECTION_STATUS.CONNECTED;
19342
+ if (!(isAddToPendingMessagesMap && connectionIsDisconnected)) {
19343
+ _context2.n = 16;
19212
19344
  break;
19213
19345
  }
19214
19346
  _context2.n = 15;
19215
19347
  return call(addPendingMessage, message, pendingMessage, channel);
19216
19348
  case 15:
19349
+ _context2.n = 17;
19350
+ break;
19351
+ case 16:
19352
+ _context2.n = 17;
19353
+ return put(removePendingMessageAC(channel.id, pendingMessage.tid));
19354
+ case 17:
19217
19355
  log.error('Error on uploading attachment', messageToSend.tid, _t);
19218
19356
  if (!(messageToSend.attachments && messageToSend.attachments.length)) {
19219
- _context2.n = 16;
19357
+ _context2.n = 18;
19220
19358
  break;
19221
19359
  }
19222
- _context2.n = 16;
19360
+ _context2.n = 18;
19223
19361
  return put(updateAttachmentUploadingStateAC(UPLOAD_STATE.FAIL, messageToSend.attachments[0].tid));
19224
- case 16:
19362
+ case 18:
19225
19363
  updateMessageOnMap(channel.id, {
19226
19364
  messageId: messageToSend.tid,
19227
19365
  params: {
@@ -19231,11 +19369,11 @@ function sendMessage(action) {
19231
19369
  updateMessageOnAllMessages(messageToSend.tid, {
19232
19370
  state: MESSAGE_STATUS.FAILED
19233
19371
  });
19234
- _context2.n = 17;
19372
+ _context2.n = 19;
19235
19373
  return put(updateMessageAC(messageToSend.tid, {
19236
19374
  state: MESSAGE_STATUS.FAILED
19237
19375
  }));
19238
- case 17:
19376
+ case 19:
19239
19377
  return _context2.a(2);
19240
19378
  }
19241
19379
  }, _callee2, null, [[1, 14]]);
@@ -19259,12 +19397,18 @@ function sendMessage(action) {
19259
19397
  _t2 = _context3.v;
19260
19398
  log.error('error on send message ... ', _t2);
19261
19399
  case 16:
19400
+ _context3.p = 16;
19401
+ _context3.n = 17;
19402
+ return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19403
+ case 17:
19404
+ return _context3.f(16);
19405
+ case 18:
19262
19406
  return _context3.a(2);
19263
19407
  }
19264
- }, _marked$3, null, [[1, 15]]);
19408
+ }, _marked$3, null, [[1, 15, 16, 18]]);
19265
19409
  }
19266
19410
  function sendTextMessage(action) {
19267
- var payload, message, connectionState, channelId, isAddToPendingMessagesMap, channel, sendMessageTid, pendingMessage, activeChannelId, SceytChatClient, createChannelData, mentionedUserIds, attachments, attachmentBuilder, att, messageBuilder, createdMessage, messageToSend, _messageResponse, messageResponse, messageUpdateData, messageToUpdate, channelUpdateParam, _t3;
19411
+ var payload, message, connectionState, channelId, isAddToPendingMessagesMap, channel, sendMessageTid, pendingMessage, activeChannelId, SceytChatClient, createChannelData, mentionedUserIds, attachments, attachmentBuilder, att, messageBuilder, createdMessage, messageToSend, _messageResponse, messageResponse, messageUpdateData, messageToUpdate, channelUpdateParam, connectionIsDisconnected, _t3;
19268
19412
  return _regenerator().w(function (_context4) {
19269
19413
  while (1) switch (_context4.p = _context4.n) {
19270
19414
  case 0:
@@ -19420,25 +19564,29 @@ function sendTextMessage(action) {
19420
19564
  case 15:
19421
19565
  throw new Error('Connection required to send message');
19422
19566
  case 16:
19423
- _context4.n = 17;
19424
- return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19425
- case 17:
19426
19567
  _context4.n = 21;
19427
19568
  break;
19428
- case 18:
19429
- _context4.p = 18;
19569
+ case 17:
19570
+ _context4.p = 17;
19430
19571
  _t3 = _context4.v;
19431
19572
  if (!(activeChannelId === channel.id && pendingMessage && action.type !== RESEND_MESSAGE)) {
19432
- _context4.n = 19;
19573
+ _context4.n = 20;
19433
19574
  break;
19434
19575
  }
19435
- if (!isAddToPendingMessagesMap) {
19576
+ connectionIsDisconnected = store.getState().UserReducer.connectionStatus !== CONNECTION_STATUS.CONNECTED;
19577
+ if (!(isAddToPendingMessagesMap && connectionIsDisconnected)) {
19436
19578
  _context4.n = 19;
19437
19579
  break;
19438
19580
  }
19439
- _context4.n = 19;
19581
+ _context4.n = 18;
19440
19582
  return call(addPendingMessage, message, pendingMessage, channel);
19583
+ case 18:
19584
+ _context4.n = 20;
19585
+ break;
19441
19586
  case 19:
19587
+ _context4.n = 20;
19588
+ return put(removePendingMessageAC(channel.id, pendingMessage.tid));
19589
+ case 20:
19442
19590
  log.error('error on send text message ... ', _t3);
19443
19591
  updateMessageOnMap(channel.id, {
19444
19592
  messageId: sendMessageTid,
@@ -19447,26 +19595,29 @@ function sendTextMessage(action) {
19447
19595
  }
19448
19596
  });
19449
19597
  if (!(activeChannelId === channel.id)) {
19450
- _context4.n = 20;
19598
+ _context4.n = 21;
19451
19599
  break;
19452
19600
  }
19453
19601
  updateMessageOnAllMessages(sendMessageTid, {
19454
19602
  state: MESSAGE_STATUS.FAILED
19455
19603
  });
19456
- _context4.n = 20;
19604
+ _context4.n = 21;
19457
19605
  return put(updateMessageAC(sendMessageTid, {
19458
19606
  state: MESSAGE_STATUS.FAILED
19459
19607
  }));
19460
- case 20:
19461
- _context4.n = 21;
19462
- return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19463
19608
  case 21:
19609
+ _context4.p = 21;
19610
+ _context4.n = 22;
19611
+ return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19612
+ case 22:
19613
+ return _context4.f(21);
19614
+ case 23:
19464
19615
  return _context4.a(2);
19465
19616
  }
19466
- }, _marked2$2, null, [[3, 18]]);
19617
+ }, _marked2$2, null, [[3, 17, 21, 23]]);
19467
19618
  }
19468
19619
  function forwardMessage(action) {
19469
- var payload, message, channelId, connectionState, isForward, isAddToPendingMessagesMap, pendingMessage, channel, activeChannelId, messageTid, SceytChatClient, mentionedUserIds, attachments, attachmentBuilder, att, messageBuilder, pollDetails, messageToSend, hasNextMessages, messageResponse, messageUpdateData, messageToUpdate, channelUpdateParam, _t4;
19620
+ var payload, message, channelId, connectionState, isForward, isAddToPendingMessagesMap, pendingMessage, channel, activeChannelId, messageTid, SceytChatClient, mentionedUserIds, attachments, attachmentBuilder, att, messageBuilder, pollDetails, messageToSend, hasNextMessages, messageResponse, messageUpdateData, messageToUpdate, channelUpdateParam, connectionIsDisconnected, _t4;
19470
19621
  return _regenerator().w(function (_context5) {
19471
19622
  while (1) switch (_context5.p = _context5.n) {
19472
19623
  case 0:
@@ -19636,24 +19787,31 @@ function forwardMessage(action) {
19636
19787
  case 14:
19637
19788
  throw new Error('Connection required to forward message');
19638
19789
  case 15:
19639
- _context5.n = 20;
19790
+ _context5.n = 21;
19640
19791
  break;
19641
19792
  case 16:
19642
19793
  _context5.p = 16;
19643
19794
  _t4 = _context5.v;
19644
19795
  if (!(pendingMessage && channel && action.type !== RESEND_MESSAGE)) {
19645
- _context5.n = 17;
19796
+ _context5.n = 19;
19646
19797
  break;
19647
19798
  }
19648
- if (!isAddToPendingMessagesMap) {
19649
- _context5.n = 17;
19799
+ connectionIsDisconnected = store.getState().UserReducer.connectionStatus !== CONNECTION_STATUS.CONNECTED;
19800
+ if (!(isAddToPendingMessagesMap && connectionIsDisconnected)) {
19801
+ _context5.n = 18;
19650
19802
  break;
19651
19803
  }
19652
19804
  _context5.n = 17;
19653
19805
  return call(addPendingMessage, message, pendingMessage, channel);
19654
19806
  case 17:
19807
+ _context5.n = 19;
19808
+ break;
19809
+ case 18:
19810
+ _context5.n = 19;
19811
+ return put(removePendingMessageAC(channel.id, pendingMessage.tid));
19812
+ case 19:
19655
19813
  if (!(channel && messageTid)) {
19656
- _context5.n = 18;
19814
+ _context5.n = 20;
19657
19815
  break;
19658
19816
  }
19659
19817
  updateMessageOnMap(channel.id, {
@@ -19663,28 +19821,28 @@ function forwardMessage(action) {
19663
19821
  }
19664
19822
  });
19665
19823
  if (!(activeChannelId === channel.id)) {
19666
- _context5.n = 18;
19824
+ _context5.n = 20;
19667
19825
  break;
19668
19826
  }
19669
19827
  updateMessageOnAllMessages(messageTid, {
19670
19828
  state: MESSAGE_STATUS.FAILED
19671
19829
  });
19672
- _context5.n = 18;
19830
+ _context5.n = 20;
19673
19831
  return put(updateMessageAC(messageTid, {
19674
19832
  state: MESSAGE_STATUS.FAILED
19675
19833
  }));
19676
- case 18:
19677
- _context5.n = 19;
19678
- return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19679
- case 19:
19680
- log.error('error on forward message ... ', _t4);
19681
19834
  case 20:
19682
- _context5.n = 21;
19683
- return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19835
+ log.error('error on forward message ... ', _t4);
19684
19836
  case 21:
19837
+ _context5.p = 21;
19838
+ _context5.n = 22;
19839
+ return put(setMessagesLoadingStateAC(LOADING_STATE.LOADED));
19840
+ case 22:
19841
+ return _context5.f(21);
19842
+ case 23:
19685
19843
  return _context5.a(2);
19686
19844
  }
19687
- }, _marked3$1, null, [[1, 16]]);
19845
+ }, _marked3$1, null, [[1, 16, 21, 23]]);
19688
19846
  }
19689
19847
  function resendMessage(action) {
19690
19848
  var payload, message, connectionState, channelId, sendAttachmentsAsSeparateMessage, isVoiceMessage;
@@ -19929,7 +20087,7 @@ var sendPendingMessages = /*#__PURE__*/_regenerator().m(function _callee3(connec
19929
20087
  }, _callee3, null, [[3, 9]]);
19930
20088
  });
19931
20089
  function getMessagesQuery(action) {
19932
- var _action$payload, channel, loadWithLastMessage, messageId, limit, withDeliveredMessages, highlight, behavior, connectionState, SceytChatClient, messageQueryBuilder, messageQuery, cachedMessages, result, allMessages, havLastMessage, secondResult, sentMessages, messagesMap, filteredSentMessages, _allMessages, messageIndex, maxLengthPart, _secondResult, thirdResult, _secondResult2, _thirdResult, _secondResult3, _updatedMessages, _Object$values, previousAllMessages, _secondResult4, updatedMessages, lastMessageId, _allMessages2, setMappedAllMessages, allMessagesAfterLastMessage, pendingMessages, _messagesMap, filteredPendingMessages, waitToSendPendingMessages, _t0, _t1, _t10, _t11, _t12, _t13, _t14, _t15, _t16, _t17, _t18, _t19, _t20, _t21;
20090
+ var _action$payload, channel, loadWithLastMessage, messageId, limit, withDeliveredMessages, highlight, behavior, scrollToMessage, connectionState, SceytChatClient, messageQueryBuilder, messageQuery, cachedMessages, result, allMessages, havLastMessage, secondResult, sentMessages, messagesMap, filteredSentMessages, _allMessages, messageIndex, maxLengthPart, _secondResult, thirdResult, _secondResult2, _thirdResult, _secondResult3, _updatedMessages, _Object$values, previousAllMessages, _secondResult4, updatedMessages, lastMessageId, _allMessages2, setMappedAllMessages, allMessagesAfterLastMessage, pendingMessages, _messagesMap, filteredPendingMessages, waitToSendPendingMessages, _t0, _t1, _t10, _t11, _t12, _t13, _t14, _t15, _t16, _t17, _t18, _t19, _t20, _t21;
19933
20091
  return _regenerator().w(function (_context0) {
19934
20092
  while (1) switch (_context0.p = _context0.n) {
19935
20093
  case 0:
@@ -19937,7 +20095,7 @@ function getMessagesQuery(action) {
19937
20095
  _context0.n = 1;
19938
20096
  return put(setMessagesLoadingStateAC(LOADING_STATE.LOADING));
19939
20097
  case 1:
19940
- _action$payload = action.payload, channel = _action$payload.channel, loadWithLastMessage = _action$payload.loadWithLastMessage, messageId = _action$payload.messageId, limit = _action$payload.limit, withDeliveredMessages = _action$payload.withDeliveredMessages, highlight = _action$payload.highlight, behavior = _action$payload.behavior;
20098
+ _action$payload = action.payload, channel = _action$payload.channel, loadWithLastMessage = _action$payload.loadWithLastMessage, messageId = _action$payload.messageId, limit = _action$payload.limit, withDeliveredMessages = _action$payload.withDeliveredMessages, highlight = _action$payload.highlight, behavior = _action$payload.behavior, scrollToMessage = _action$payload.scrollToMessage;
19941
20099
  connectionState = store.getState().UserReducer.connectionStatus;
19942
20100
  if (!(channel.id && !channel.isMockChannel)) {
19943
20101
  _context0.n = 76;
@@ -20058,7 +20216,7 @@ function getMessagesQuery(action) {
20058
20216
  return put(setMessagesHasNextAC(false));
20059
20217
  case 17:
20060
20218
  setHasNextCached(false);
20061
- if (!messageId) {
20219
+ if (!(messageId && scrollToMessage)) {
20062
20220
  _context0.n = 18;
20063
20221
  break;
20064
20222
  }
@@ -20169,6 +20327,10 @@ function getMessagesQuery(action) {
20169
20327
  _context0.n = 35;
20170
20328
  return put(setMessagesHasNextAC(true));
20171
20329
  case 35:
20330
+ if (!scrollToMessage) {
20331
+ _context0.n = 36;
20332
+ break;
20333
+ }
20172
20334
  _context0.n = 36;
20173
20335
  return put(setScrollToMessagesAC(messageId, true, behavior));
20174
20336
  case 36:
@@ -23800,19 +23962,32 @@ var SceytChatContainer = function SceytChatContainer(_ref) {
23800
23962
  } : _ref$inviteLinkOption,
23801
23963
  _ref$embeddedJoinGrou = _ref.embeddedJoinGroupPopup,
23802
23964
  embeddedJoinGroupPopup = _ref$embeddedJoinGrou === void 0 ? false : _ref$embeddedJoinGrou,
23803
- onUpdateChannel = _ref.onUpdateChannel;
23965
+ onUpdateChannel = _ref.onUpdateChannel,
23966
+ _ref$disappearingSett = _ref.disappearingSettings,
23967
+ disappearingSettings = _ref$disappearingSett === void 0 ? null : _ref$disappearingSett;
23804
23968
  useEffect(function () {
23805
23969
  log.setLevel(logLevel);
23970
+ }, [logLevel]);
23971
+ useEffect(function () {
23806
23972
  if (baseUrlForInviteMembers) {
23807
23973
  setBaseUrlForInviteMembers(baseUrlForInviteMembers);
23808
23974
  }
23975
+ }, [baseUrlForInviteMembers]);
23976
+ useEffect(function () {
23809
23977
  if (useInviteLink) {
23810
23978
  setUseInviteLink(useInviteLink);
23811
23979
  }
23980
+ }, [useInviteLink]);
23981
+ useEffect(function () {
23812
23982
  if (inviteLinkOptions) {
23813
23983
  setInviteLinkOptions(inviteLinkOptions);
23814
23984
  }
23815
- }, []);
23985
+ }, [inviteLinkOptions]);
23986
+ useEffect(function () {
23987
+ if (disappearingSettings) {
23988
+ setDisappearingSettings(disappearingSettings);
23989
+ }
23990
+ }, [disappearingSettings]);
23816
23991
  return /*#__PURE__*/React__default.createElement(Provider, {
23817
23992
  store: store,
23818
23993
  context: SceytReduxContext
@@ -24090,7 +24265,57 @@ function SvgPoll(props) {
24090
24265
  })));
24091
24266
  }
24092
24267
 
24093
- var _templateObject$6, _templateObject2$5, _templateObject3$5, _templateObject4$4, _templateObject5$3, _templateObject6$2, _templateObject7$2, _templateObject8$2, _templateObject9$1, _templateObject0$1, _templateObject1$1, _templateObject10$1, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15$1, _templateObject16$1, _templateObject17$1, _templateObject18$1, _templateObject19$1, _templateObject20$1;
24268
+ var _path$g, _g, _defs;
24269
+ function _extends$h() {
24270
+ return _extends$h = Object.assign ? Object.assign.bind() : function (n) {
24271
+ for (var e = 1; e < arguments.length; e++) {
24272
+ var t = arguments[e];
24273
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24274
+ }
24275
+ return n;
24276
+ }, _extends$h.apply(null, arguments);
24277
+ }
24278
+ function SvgBadge(props) {
24279
+ return /*#__PURE__*/createElement$1("svg", _extends$h({
24280
+ width: 24,
24281
+ height: 24,
24282
+ fill: "none",
24283
+ xmlns: "http://www.w3.org/2000/svg"
24284
+ }, props), _path$g || (_path$g = /*#__PURE__*/createElement$1("path", {
24285
+ d: "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1z",
24286
+ fill: "url(#badge_svg__paint0_linear_5007_111116)",
24287
+ stroke: "transparent",
24288
+ strokeWidth: 2
24289
+ })), _g || (_g = /*#__PURE__*/createElement$1("g", {
24290
+ clipPath: "url(#badge_svg__clip0_5007_111116)"
24291
+ }, /*#__PURE__*/createElement$1("path", {
24292
+ d: "M12 8v4l2.667 1.333m-2.667-8A6.666 6.666 0 0116.92 16.5M5.667 9.917a6.667 6.667 0 00-.333 2m.553 2.75a6.668 6.668 0 001.62 2.266M7.09 7.49c.186-.203.384-.393.594-.571m2.078 11.36a6.666 6.666 0 005.087-.252",
24293
+ stroke: "transparent",
24294
+ strokeWidth: 1.6,
24295
+ strokeLinecap: "round",
24296
+ strokeLinejoin: "round"
24297
+ }))), _defs || (_defs = /*#__PURE__*/createElement$1("defs", null, /*#__PURE__*/createElement$1("linearGradient", {
24298
+ id: "badge_svg__paint0_linear_5007_111116",
24299
+ x1: -3.5,
24300
+ y1: -4,
24301
+ x2: 13,
24302
+ y2: 22,
24303
+ gradientUnits: "userSpaceOnUse"
24304
+ }, /*#__PURE__*/createElement$1("stop", {
24305
+ stopColor: "#EDEDED"
24306
+ }), /*#__PURE__*/createElement$1("stop", {
24307
+ offset: 1,
24308
+ stopColor: "#818C99"
24309
+ })), /*#__PURE__*/createElement$1("clipPath", {
24310
+ id: "badge_svg__clip0_5007_111116"
24311
+ }, /*#__PURE__*/createElement$1("path", {
24312
+ fill: "#fff",
24313
+ transform: "translate(4 4)",
24314
+ d: "M0 0h16v16H0z"
24315
+ })))));
24316
+ }
24317
+
24318
+ var _templateObject$6, _templateObject2$5, _templateObject3$5, _templateObject4$4, _templateObject5$3, _templateObject6$2, _templateObject7$2, _templateObject8$2, _templateObject9$1, _templateObject0$1, _templateObject1$1, _templateObject10$1, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15$1, _templateObject16$1, _templateObject17$1, _templateObject18$1, _templateObject19$1, _templateObject20$1, _templateObject21$1;
24094
24319
  var LastMessageAttachments = function LastMessageAttachments(_ref) {
24095
24320
  var lastMessage = _ref.lastMessage;
24096
24321
  return !!(lastMessage.attachments && lastMessage.attachments.length || lastMessage !== null && lastMessage !== void 0 && lastMessage.pollDetails && (lastMessage === null || lastMessage === void 0 ? void 0 : lastMessage.type) === MESSAGE_TYPE.POLL) && (lastMessage !== null && lastMessage !== void 0 && lastMessage.pollDetails && (lastMessage === null || lastMessage === void 0 ? void 0 : lastMessage.type) === MESSAGE_TYPE.POLL ? (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(SvgPoll, null), lastMessage.body ? '' : 'Poll')) : lastMessage.attachments[0].type === attachmentTypes.image ? (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(SvgPicture, null), lastMessage.body ? '' : 'Photo')) : lastMessage.attachments[0].type === attachmentTypes.video ? (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(SvgVideoCall, null), lastMessage.body ? '' : 'Video')) : lastMessage.attachments[0].type === attachmentTypes.file ? (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(SvgChoseFile, null), lastMessage.body ? '' : 'File')) : lastMessage.attachments[0].type === attachmentTypes.voice ? (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(SvgVoiceIcon, null), lastMessage.body ? '' : 'Voice')) : null);
@@ -24130,7 +24355,7 @@ var ChannelMessageText = function ChannelMessageText(_ref2) {
24130
24355
  return mem === user.id ? ' You' : " " + systemMessageUserName(mem, contactsMap && contactsMap[mem], lastMessage.mentionedUsers);
24131
24356
  })) + " " + (lastMessageMetas && lastMessageMetas.m && lastMessageMetas.m.length > 5 ? "and " + (lastMessageMetas.m.length - 5) + " more" : '') : lastMessage.body === 'RM' ? " removed " + (lastMessageMetas && lastMessageMetas.m && lastMessageMetas.m.slice(0, 5).map(function (mem) {
24132
24357
  return mem === user.id ? ' You' : " " + systemMessageUserName(mem, contactsMap && contactsMap[mem], lastMessage.mentionedUsers);
24133
- })) + " " + (lastMessageMetas && lastMessageMetas.m && lastMessageMetas.m.length > 5 ? "and " + (lastMessageMetas.m.length - 5) + " more" : '') : lastMessage.body === 'LG' ? 'Left this group' : lastMessage.body === 'JL' ? 'joined via invite link' : '') : (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(LastMessageDescription, {
24358
+ })) + " " + (lastMessageMetas && lastMessageMetas.m && lastMessageMetas.m.length > 5 ? "and " + (lastMessageMetas.m.length - 5) + " more" : '') : lastMessage.body === 'LG' ? 'Left this group' : lastMessage.body === 'JL' ? 'joined via invite link' : lastMessage.body === 'ADM' ? !Number(lastMessageMetas === null || lastMessageMetas === void 0 ? void 0 : lastMessageMetas.autoDeletePeriod) ? 'disabled disappearing messages' : "set the disappearing messages timer to " + formatDisappearingMessageTime(lastMessageMetas !== null && lastMessageMetas !== void 0 && lastMessageMetas.autoDeletePeriod ? Number(lastMessageMetas.autoDeletePeriod) : null) : '') : (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(LastMessageDescription, {
24134
24359
  poll: (lastMessage === null || lastMessage === void 0 ? void 0 : lastMessage.pollDetails) && (lastMessage === null || lastMessage === void 0 ? void 0 : lastMessage.type) === MESSAGE_TYPE.POLL
24135
24360
  }, channel.lastReactedMessage && (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, "Reacted", /*#__PURE__*/React__default.createElement(ReactionItem, null, channel.newReactions && channel.newReactions[0] && channel.newReactions[0].key), "to", ' "')), LastMessageAttachments({
24136
24361
  lastMessage: lastMessage
@@ -24347,6 +24572,7 @@ var Channel = function Channel(_ref3) {
24347
24572
  }, [channel, activeChannel.id, setSelectedChannel]);
24348
24573
  return /*#__PURE__*/React__default.createElement(Container$3, {
24349
24574
  theme: theme,
24575
+ backgroundColor: background,
24350
24576
  selectedChannel: channel.id === activeChannel.id,
24351
24577
  selectedChannelLeftBorder: selectedChannelLeftBorder,
24352
24578
  selectedBackgroundColor: selectedChannelBackground || backgroundFocused,
@@ -24366,7 +24592,10 @@ var Channel = function Channel(_ref3) {
24366
24592
  size: channelAvatarSize || 50,
24367
24593
  textSize: channelAvatarTextSize || 16,
24368
24594
  setDefaultAvatar: isDirectChannel
24369
- }), isDirectChannel && directChannelUser && hideUserPresence && (hideUserPresence(directChannelUser) ? '' : directChannelUser.presence && directChannelUser.presence.state === USER_PRESENCE_STATUS.ONLINE) && (/*#__PURE__*/React__default.createElement(UserStatus, {
24595
+ }), !!(channel !== null && channel !== void 0 && channel.messageRetentionPeriod) && (/*#__PURE__*/React__default.createElement(DisappearingMessagesBadge, {
24596
+ color: accentColor,
24597
+ className: 'disappearing-messages-badge'
24598
+ })), isDirectChannel && directChannelUser && hideUserPresence && (hideUserPresence(directChannelUser) ? '' : directChannelUser.presence && directChannelUser.presence.state === USER_PRESENCE_STATUS.ONLINE) && (/*#__PURE__*/React__default.createElement(UserStatus, {
24370
24599
  backgroundColor: onlineStatus,
24371
24600
  borderColor: background
24372
24601
  })))), /*#__PURE__*/React__default.createElement(ChannelInfo, {
@@ -24425,7 +24654,7 @@ var Channel = function Channel(_ref3) {
24425
24654
  color: textPrimary
24426
24655
  }, /*#__PURE__*/React__default.createElement("span", {
24427
24656
  ref: messageAuthorRef
24428
- }, lastMessage.user.id === user.id ? 'You' : makeUsername(contactsMap && contactsMap[lastMessage.user.id], lastMessage.user, getFromContacts, true)))), !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isTyping) && !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isRecording) && (isDirectChannel ? !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isTyping) && !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isRecording) && (draftMessageText || lastMessage.user && lastMessage.state !== MESSAGE_STATUS.DELETE && (channel.lastReactedMessage && channel.newReactions && channel.newReactions[0] ? channel.newReactions[0].user && channel.newReactions[0].user.id === user.id : lastMessage.user.id === user.id)) : draftMessageText || lastMessage && lastMessage.state !== MESSAGE_STATUS.DELETE && lastMessage.type !== 'system') && (/*#__PURE__*/React__default.createElement(Points, {
24657
+ }, lastMessage.user.id === user.id ? 'You' : makeUsername(contactsMap && contactsMap[lastMessage.user.id], lastMessage.user, getFromContacts, true)))), !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isTyping) && !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isRecording) && (isDirectChannel ? !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isTyping) && !(typingOrRecording !== null && typingOrRecording !== void 0 && typingOrRecording.isRecording) && (draftMessageText || lastMessage.user && lastMessage.state !== MESSAGE_STATUS.DELETE && (channel.lastReactedMessage && channel.newReactions && channel.newReactions[0] ? channel.newReactions[0].user && channel.newReactions[0].user.id === user.id : lastMessage.user.id === user.id && lastMessage.type !== MESSAGE_TYPE.SYSTEM)) : draftMessageText || lastMessage && lastMessage.state !== MESSAGE_STATUS.DELETE && lastMessage.type !== MESSAGE_TYPE.SYSTEM) && (/*#__PURE__*/React__default.createElement(Points, {
24429
24658
  color: draftMessageText && warningColor || textPrimary
24430
24659
  }, ": ")), /*#__PURE__*/React__default.createElement(LastMessageText, {
24431
24660
  color: textSecondary,
@@ -24487,12 +24716,15 @@ var LastMessage = styled.div(_templateObject3$5 || (_templateObject3$5 = _tagged
24487
24716
  return props.height || '20px';
24488
24717
  });
24489
24718
  var AvatarWrapper = styled.div(_templateObject4$4 || (_templateObject4$4 = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n position: relative;\n"])));
24490
- var UserStatus = styled.span(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteralLoose(["\n position: absolute;\n width: 12px;\n height: 12px;\n right: 0;\n bottom: 0;\n border-radius: 50%;\n background-color: ", ";\n border: 2.5px solid ", ";\n box-sizing: border-box;\n"])), function (props) {
24719
+ var DisappearingMessagesBadge = styled(SvgBadge)(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteralLoose(["\n position: absolute;\n top: -7px;\n right: -7px;\n width: 24px;\n height: 24px;\n display: flex;\n align-items: center;\n justify-content: center;\n z-index: 1;\n color: ", ";\n"])), function (props) {
24720
+ return props.color;
24721
+ });
24722
+ var UserStatus = styled.span(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteralLoose(["\n position: absolute;\n width: 12px;\n height: 12px;\n right: 0;\n bottom: 0;\n border-radius: 50%;\n background-color: ", ";\n border: 2.5px solid ", ";\n box-sizing: border-box;\n"])), function (props) {
24491
24723
  return props.backgroundColor || '#56E464';
24492
24724
  }, function (props) {
24493
24725
  return props.borderColor || '#ffffff';
24494
24726
  });
24495
- var Container$3 = styled.div(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n cursor: pointer;\n background-color: ", ";\n border-left: ", ";\n // padding: selectedChannel ? '8px 16px 8px 13px' : '8px 16px'\n padding: ", ";\n margin: ", ";\n border-radius: ", ";\n\n transition: all 0.2s;\n &:hover {\n ", "\n ", " {\n border-color: ", ";\n }\n }\n ", " {\n ", "\n }\n"])), function (props) {
24727
+ var Container$3 = styled.div(_templateObject7$2 || (_templateObject7$2 = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n cursor: pointer;\n background-color: ", ";\n border-left: ", ";\n // padding: selectedChannel ? '8px 16px 8px 13px' : '8px 16px'\n padding: ", ";\n margin: ", ";\n border-radius: ", ";\n\n transition: all 0.2s;\n .disappearing-messages-badge {\n & > path:nth-child(1) {\n stroke: ", ";\n }\n g {\n path {\n stroke: ", ";\n }\n }\n }\n &:hover {\n ", "\n ", " {\n border-color: ", ";\n }\n .disappearing-messages-badge {\n & > path:nth-child(1) {\n stroke: ", ";\n }\n g {\n path {\n stroke: ", ";\n }\n }\n }\n }\n ", " {\n ", "\n }\n"])), function (props) {
24496
24728
  return props.selectedChannel ? props.selectedBackgroundColor : 'inherit';
24497
24729
  }, function (props) {
24498
24730
  return props.selectedChannel ? props.selectedChannelLeftBorder : null;
@@ -24502,32 +24734,40 @@ var Container$3 = styled.div(_templateObject6$2 || (_templateObject6$2 = _tagged
24502
24734
  return props.channelsMargin || '0 8px';
24503
24735
  }, function (props) {
24504
24736
  return props.selectedChannelBorderRadius || '12px';
24737
+ }, function (props) {
24738
+ return props.selectedChannel ? props.selectedBackgroundColor : props.backgroundColor;
24739
+ }, function (props) {
24740
+ return props.selectedChannel ? props.selectedBackgroundColor : props.backgroundColor;
24505
24741
  }, function (_ref5) {
24506
24742
  var selectedChannel = _ref5.selectedChannel,
24507
24743
  hoverBackground = _ref5.hoverBackground;
24508
24744
  return !selectedChannel && "\n background-color: " + hoverBackground + ";\n ";
24509
24745
  }, UserStatus, function (props) {
24510
24746
  return props.selectedChannel ? props.selectedBackgroundColor : props.hoverBackground;
24747
+ }, function (props) {
24748
+ return props.selectedChannel ? props.selectedBackgroundColor : props.hoverBackground;
24749
+ }, function (props) {
24750
+ return props.selectedChannel ? props.selectedBackgroundColor : props.hoverBackground;
24511
24751
  }, UserStatus, function (props) {
24512
24752
  return props.selectedChannel && "\n border-color: " + props.selectedBackgroundColor + ";\n ";
24513
24753
  });
24514
- var DraftMessageTitle = styled.span(_templateObject7$2 || (_templateObject7$2 = _taggedTemplateLiteralLoose(["\n color: ", ";\n margin-right: 4px;\n"])), function (props) {
24754
+ var DraftMessageTitle = styled.span(_templateObject8$2 || (_templateObject8$2 = _taggedTemplateLiteralLoose(["\n color: ", ";\n margin-right: 4px;\n"])), function (props) {
24515
24755
  return props.color;
24516
24756
  });
24517
- var DraftMessageText = styled.span(_templateObject8$2 || (_templateObject8$2 = _taggedTemplateLiteralLoose(["\n color: ", ";\n display: flex;\n align-items: flex-end;\n gap: 4px;\n"])), function (props) {
24757
+ var DraftMessageText = styled.span(_templateObject9$1 || (_templateObject9$1 = _taggedTemplateLiteralLoose(["\n color: ", ";\n display: flex;\n align-items: flex-end;\n gap: 4px;\n"])), function (props) {
24518
24758
  return props.color;
24519
24759
  });
24520
- var LastMessageAuthor = styled.div(_templateObject9$1 || (_templateObject9$1 = _taggedTemplateLiteralLoose(["\n max-width: 120px;\n font-weight: 500;\n color: ", ";\n\n ", "\n & > span {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n }\n"])), function (props) {
24760
+ var LastMessageAuthor = styled.div(_templateObject0$1 || (_templateObject0$1 = _taggedTemplateLiteralLoose(["\n max-width: 120px;\n font-weight: 500;\n color: ", ";\n\n ", "\n & > span {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n }\n"])), function (props) {
24521
24761
  return props.color;
24522
24762
  }, function (_ref6) {
24523
24763
  var typing = _ref6.typing,
24524
24764
  recording = _ref6.recording;
24525
24765
  return (typing || recording) && "\n font-weight: 500;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: calc(100% - " + (typing ? 62 : 76) + "px);\n ";
24526
24766
  });
24527
- var Points = styled.span(_templateObject0$1 || (_templateObject0$1 = _taggedTemplateLiteralLoose(["\n margin-right: 4px;\n color: ", ";\n font-style: normal;\n"])), function (props) {
24767
+ var Points = styled.span(_templateObject1$1 || (_templateObject1$1 = _taggedTemplateLiteralLoose(["\n margin-right: 4px;\n color: ", ";\n font-style: normal;\n"])), function (props) {
24528
24768
  return props.color;
24529
24769
  });
24530
- var LastMessageText = styled.span(_templateObject1$1 || (_templateObject1$1 = _taggedTemplateLiteralLoose(["\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n color: ", ";\n font-style: ", ";\n transform: ", ";\n //height: 20px;\n\n > svg {\n width: 16px;\n height: 16px;\n min-width: 16px;\n min-height: 16px;\n margin-right: 4px;\n color: ", ";\n transform: translate(0px, 3px);\n }\n & > span {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n }\n & > div {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n & > svg {\n width: 18px;\n height: 18px;\n min-width: 18px;\n min-height: 18px;\n color: ", ";\n }\n }\n"])), function (props) {
24770
+ var LastMessageText = styled.span(_templateObject10$1 || (_templateObject10$1 = _taggedTemplateLiteralLoose(["\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n color: ", ";\n font-style: ", ";\n transform: ", ";\n //height: 20px;\n\n > svg {\n width: 16px;\n height: 16px;\n min-width: 16px;\n min-height: 16px;\n margin-right: 4px;\n color: ", ";\n transform: translate(0px, 3px);\n }\n & > span {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n }\n & > div {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n & > svg {\n width: 18px;\n height: 18px;\n min-width: 18px;\n min-height: 18px;\n color: ", ";\n }\n }\n"])), function (props) {
24531
24771
  return props.color;
24532
24772
  }, function (props) {
24533
24773
  return props.deletedMessage && 'italic';
@@ -24538,29 +24778,29 @@ var LastMessageText = styled.span(_templateObject1$1 || (_templateObject1$1 = _t
24538
24778
  }, function (props) {
24539
24779
  return props.color;
24540
24780
  });
24541
- var LastMessageDescription = styled.div(_templateObject10$1 || (_templateObject10$1 = _taggedTemplateLiteralLoose(["\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n & > svg {\n width: 18px;\n height: 18px;\n margin: ", ";\n margin-right: 4px;\n }\n"])), function (props) {
24781
+ var LastMessageDescription = styled.div(_templateObject11$1 || (_templateObject11$1 = _taggedTemplateLiteralLoose(["\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 100%;\n & > svg {\n width: 18px;\n height: 18px;\n margin: ", ";\n margin-right: 4px;\n }\n"])), function (props) {
24542
24782
  return props.poll ? '0 0 -3px 0' : '3px 0 -3px 0';
24543
24783
  });
24544
- var ChannelStatus = styled.div(_templateObject11$1 || (_templateObject11$1 = _taggedTemplateLiteralLoose(["\n position: absolute;\n right: 16px;\n top: 15px;\n display: flex;\n flex-wrap: wrap;\n height: 42px;\n margin-left: auto;\n\n & > svg {\n width: 16px;\n height: 16px;\n color: ", ";\n }\n"])), function (props) {
24784
+ var ChannelStatus = styled.div(_templateObject12$1 || (_templateObject12$1 = _taggedTemplateLiteralLoose(["\n position: absolute;\n right: 16px;\n top: 15px;\n display: flex;\n flex-wrap: wrap;\n height: 42px;\n margin-left: auto;\n\n & > svg {\n width: 16px;\n height: 16px;\n color: ", ";\n }\n"])), function (props) {
24545
24785
  return props.color;
24546
24786
  });
24547
- var LastMessageDate = styled.span(_templateObject12$1 || (_templateObject12$1 = _taggedTemplateLiteralLoose(["\n color: ", ";\n font-size: ", ";\n line-height: 16px;\n"])), function (props) {
24787
+ var LastMessageDate = styled.span(_templateObject13$1 || (_templateObject13$1 = _taggedTemplateLiteralLoose(["\n color: ", ";\n font-size: ", ";\n line-height: 16px;\n"])), function (props) {
24548
24788
  return props.color;
24549
24789
  }, function (props) {
24550
24790
  return props.fontSize || '12px';
24551
24791
  });
24552
- var DeliveryIconCont = styled.span(_templateObject13$1 || (_templateObject13$1 = _taggedTemplateLiteralLoose(["\n margin-right: 6px;\n line-height: 13px;\n"])));
24553
- var UnreadMentionIconWrapper = styled.span(_templateObject14$1 || (_templateObject14$1 = _taggedTemplateLiteralLoose(["\n margin-right: ", ";\n line-height: 13px;\n\n & > svg {\n color: ", ";\n }\n"])), function (props) {
24792
+ var DeliveryIconCont = styled.span(_templateObject14$1 || (_templateObject14$1 = _taggedTemplateLiteralLoose(["\n margin-right: 6px;\n line-height: 13px;\n"])));
24793
+ var UnreadMentionIconWrapper = styled.span(_templateObject15$1 || (_templateObject15$1 = _taggedTemplateLiteralLoose(["\n margin-right: ", ";\n line-height: 13px;\n\n & > svg {\n color: ", ";\n }\n"])), function (props) {
24554
24794
  return props.rightMargin && '8px';
24555
24795
  }, function (props) {
24556
24796
  return props.iconColor;
24557
24797
  });
24558
- var TypingIndicator = styled.span(_templateObject15$1 || (_templateObject15$1 = _taggedTemplateLiteralLoose(["\n font-style: italic;\n"])));
24559
- var ReactionItem = styled.span(_templateObject16$1 || (_templateObject16$1 = _taggedTemplateLiteralLoose(["\n font-family:\n apple color emoji,\n segoe ui emoji,\n noto color emoji,\n android emoji,\n emojisymbols,\n emojione mozilla,\n twemoji mozilla,\n segoe ui symbol;\n padding: 0 3px;\n"])));
24560
- var UnreadInfo = styled.span(_templateObject17$1 || (_templateObject17$1 = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: ", ";\n right: 16px;\n display: flex;\n margin-top: 7px;\n align-items: center;\n flex: 0 0 auto;\n margin-left: auto;\n"])), function (props) {
24798
+ var TypingIndicator = styled.span(_templateObject16$1 || (_templateObject16$1 = _taggedTemplateLiteralLoose(["\n font-style: italic;\n"])));
24799
+ var ReactionItem = styled.span(_templateObject17$1 || (_templateObject17$1 = _taggedTemplateLiteralLoose(["\n font-family:\n apple color emoji,\n segoe ui emoji,\n noto color emoji,\n android emoji,\n emojisymbols,\n emojione mozilla,\n twemoji mozilla,\n segoe ui symbol;\n padding: 0 3px;\n"])));
24800
+ var UnreadInfo = styled.span(_templateObject18$1 || (_templateObject18$1 = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: ", ";\n right: 16px;\n display: flex;\n margin-top: 7px;\n align-items: center;\n flex: 0 0 auto;\n margin-left: auto;\n"])), function (props) {
24561
24801
  return props.bottom || '11px';
24562
24802
  });
24563
- var UnreadCount = styled.span(_templateObject18$1 || (_templateObject18$1 = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n align-items: center;\n justify-content: center;\n background-color: ", ";\n padding: 0 4px;\n font-size: ", ";\n min-width: ", ";\n height: ", ";\n text-align: center;\n font-weight: 500;\n color: ", ";\n border-radius: 10px;\n box-sizing: border-box;\n\n ", "\n"])), function (props) {
24803
+ var UnreadCount = styled.span(_templateObject19$1 || (_templateObject19$1 = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n align-items: center;\n justify-content: center;\n background-color: ", ";\n padding: 0 4px;\n font-size: ", ";\n min-width: ", ";\n height: ", ";\n text-align: center;\n font-weight: 500;\n color: ", ";\n border-radius: 10px;\n box-sizing: border-box;\n\n ", "\n"])), function (props) {
24564
24804
  return props.backgroundColor;
24565
24805
  }, function (props) {
24566
24806
  return props.fontSize || '13px';
@@ -24573,10 +24813,10 @@ var UnreadCount = styled.span(_templateObject18$1 || (_templateObject18$1 = _tag
24573
24813
  }, function (props) {
24574
24814
  return props.isMuted && "background-color: " + props.mutedBackgroundColor + ";";
24575
24815
  });
24576
- var PinnedIconWrapper = styled.span(_templateObject19$1 || (_templateObject19$1 = _taggedTemplateLiteralLoose(["\n & > svg {\n color: ", ";\n }\n"])), function (props) {
24816
+ var PinnedIconWrapper = styled.span(_templateObject20$1 || (_templateObject20$1 = _taggedTemplateLiteralLoose(["\n & > svg {\n color: ", ";\n }\n"])), function (props) {
24577
24817
  return props.color;
24578
24818
  });
24579
- var MessageTextContainer = styled.div(_templateObject20$1 || (_templateObject20$1 = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: flex-end;\n gap: 4px;\n"])));
24819
+ var MessageTextContainer = styled.div(_templateObject21$1 || (_templateObject21$1 = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: flex-end;\n gap: 4px;\n"])));
24580
24820
 
24581
24821
  var _templateObject$7, _templateObject2$6;
24582
24822
  var SearchInputContainer = styled.div(_templateObject$7 || (_templateObject$7 = _taggedTemplateLiteralLoose(["\n position: relative;\n width: 100%;\n max-width: ", ";\n box-sizing: border-box;\n padding: ", ";\n\n & ", " {\n ", ";\n }\n"])), function (props) {
@@ -24711,23 +24951,23 @@ var Container$4 = styled.div(_templateObject4$5 || (_templateObject4$5 = _tagged
24711
24951
  return props.hoverBackground;
24712
24952
  });
24713
24953
 
24714
- var _path$g;
24715
- function _extends$h() {
24716
- return _extends$h = Object.assign ? Object.assign.bind() : function (n) {
24954
+ var _path$h;
24955
+ function _extends$i() {
24956
+ return _extends$i = Object.assign ? Object.assign.bind() : function (n) {
24717
24957
  for (var e = 1; e < arguments.length; e++) {
24718
24958
  var t = arguments[e];
24719
24959
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24720
24960
  }
24721
24961
  return n;
24722
- }, _extends$h.apply(null, arguments);
24962
+ }, _extends$i.apply(null, arguments);
24723
24963
  }
24724
24964
  function SvgCreateChannel(props) {
24725
- return /*#__PURE__*/createElement$1("svg", _extends$h({
24965
+ return /*#__PURE__*/createElement$1("svg", _extends$i({
24726
24966
  width: 20,
24727
24967
  height: 20,
24728
24968
  fill: "none",
24729
24969
  xmlns: "http://www.w3.org/2000/svg"
24730
- }, props), _path$g || (_path$g = /*#__PURE__*/createElement$1("path", {
24970
+ }, props), _path$h || (_path$h = /*#__PURE__*/createElement$1("path", {
24731
24971
  fillRule: "evenodd",
24732
24972
  clipRule: "evenodd",
24733
24973
  d: "M15.582 1.3c.31.117.517.414.517.745v2.833a3.448 3.448 0 010 6.71v2.831a.795.795 0 01-1.395.524c-.556-.636-1.531-1.238-2.857-1.68a13.047 13.047 0 00-1.935-.477v3.613a2.35 2.35 0 01-4.565.79l-.002-.005-1.788-5.122a4.33 4.33 0 012.024-8.16H7.2a16.675 16.675 0 001.837-.1 13.724 13.724 0 002.81-.6c1.325-.442 2.3-1.044 2.856-1.68a.795.795 0 01.878-.221zM8.322 5.46c-.368.022-.742.033-1.12.033H5.58a2.74 2.74 0 00-1.071 5.263M8.32 5.46v5.547a18.531 18.531 0 00-1.12-.034H5.58a2.73 2.73 0 01-1.07-.217m5.402.42V5.29c.87-.133 1.69-.329 2.439-.579a10.253 10.253 0 002.156-.988v9.019a10.257 10.257 0 00-2.156-.988c-.75-.25-1.57-.447-2.44-.58zm6.187-4.62V9.91a1.856 1.856 0 000-3.355zM8.32 12.6a16.92 16.92 0 00-1.12-.037H5.58c-.055 0-.11 0-.165-.003l1.43 4.095v.002a.76.76 0 001.475-.258V12.6z",
@@ -24735,23 +24975,23 @@ function SvgCreateChannel(props) {
24735
24975
  })));
24736
24976
  }
24737
24977
 
24738
- var _path$h;
24739
- function _extends$i() {
24740
- return _extends$i = Object.assign ? Object.assign.bind() : function (n) {
24978
+ var _path$i;
24979
+ function _extends$j() {
24980
+ return _extends$j = Object.assign ? Object.assign.bind() : function (n) {
24741
24981
  for (var e = 1; e < arguments.length; e++) {
24742
24982
  var t = arguments[e];
24743
24983
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24744
24984
  }
24745
24985
  return n;
24746
- }, _extends$i.apply(null, arguments);
24986
+ }, _extends$j.apply(null, arguments);
24747
24987
  }
24748
24988
  function SvgCreateGroup(props) {
24749
- return /*#__PURE__*/createElement$1("svg", _extends$i({
24989
+ return /*#__PURE__*/createElement$1("svg", _extends$j({
24750
24990
  width: 20,
24751
24991
  height: 20,
24752
24992
  fill: "none",
24753
24993
  xmlns: "http://www.w3.org/2000/svg"
24754
- }, props), _path$h || (_path$h = /*#__PURE__*/createElement$1("path", {
24994
+ }, props), _path$i || (_path$i = /*#__PURE__*/createElement$1("path", {
24755
24995
  fillRule: "evenodd",
24756
24996
  clipRule: "evenodd",
24757
24997
  d: "M14.716 15.9h2.996a3.587 3.587 0 00-3.689-3.02c.01.085.031.175.065.259.35.862.567 1.792.628 2.76zM6.02 7.957a1.512 1.512 0 100-3.023 1.512 1.512 0 000 3.023zm8.15 0a1.511 1.511 0 100-3.023 1.511 1.511 0 000 3.023zM9.562 15.9a3.587 3.587 0 00-7.084 0h7.084zM6.02 9.557a3.112 3.112 0 100-6.224 3.112 3.112 0 000 6.224zm7.113 6.906c0 .55.418 1.037.967 1.037h4.22c.572 0 1.037-.464 1.037-1.037a5.187 5.187 0 00-5.848-5.145c-1.074.137-1.31 1.417-.904 2.421.34.841.528 1.76.528 2.724zm4.15-10.018a3.112 3.112 0 11-6.225 0 3.112 3.112 0 016.224 0zm-6.076 10.018a5.187 5.187 0 00-10.374 0c0 .573.465 1.037 1.038 1.037h8.298c.573 0 1.038-.464 1.038-1.037z",
@@ -24759,23 +24999,23 @@ function SvgCreateGroup(props) {
24759
24999
  })));
24760
25000
  }
24761
25001
 
24762
- var _path$i;
24763
- function _extends$j() {
24764
- return _extends$j = Object.assign ? Object.assign.bind() : function (n) {
25002
+ var _path$j;
25003
+ function _extends$k() {
25004
+ return _extends$k = Object.assign ? Object.assign.bind() : function (n) {
24765
25005
  for (var e = 1; e < arguments.length; e++) {
24766
25006
  var t = arguments[e];
24767
25007
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24768
25008
  }
24769
25009
  return n;
24770
- }, _extends$j.apply(null, arguments);
25010
+ }, _extends$k.apply(null, arguments);
24771
25011
  }
24772
25012
  function SvgCreateChat(props) {
24773
- return /*#__PURE__*/createElement$1("svg", _extends$j({
25013
+ return /*#__PURE__*/createElement$1("svg", _extends$k({
24774
25014
  width: 20,
24775
25015
  height: 20,
24776
25016
  fill: "none",
24777
25017
  xmlns: "http://www.w3.org/2000/svg"
24778
- }, props), _path$i || (_path$i = /*#__PURE__*/createElement$1("path", {
25018
+ }, props), _path$j || (_path$j = /*#__PURE__*/createElement$1("path", {
24779
25019
  fillRule: "evenodd",
24780
25020
  clipRule: "evenodd",
24781
25021
  d: "M10 3.25a6.75 6.75 0 00-5.525 10.628 12.365 12.365 0 015.526-1.295c1.983 0 3.86.466 5.524 1.295a6.748 6.748 0 00-.752-8.651A6.75 6.75 0 0010 3.25zm6.323 12.05A8.249 8.249 0 004.166 4.166 8.25 8.25 0 1016.323 15.3zm-1.838-.256a10.872 10.872 0 00-4.485-.96h-.001a10.865 10.865 0 00-4.484.96 6.75 6.75 0 008.97 0zm-4.484-2.46l-.001.75v-.75zm-.001-6a1.75 1.75 0 100 3.5 1.75 1.75 0 000-3.5zm-2.298-.549a3.25 3.25 0 114.596 4.596 3.25 3.25 0 01-4.596-4.596z",
@@ -24783,24 +25023,24 @@ function SvgCreateChat(props) {
24783
25023
  })));
24784
25024
  }
24785
25025
 
24786
- var _path$j, _path2$2, _path3$1;
24787
- function _extends$k() {
24788
- return _extends$k = Object.assign ? Object.assign.bind() : function (n) {
25026
+ var _path$k, _path2$2, _path3$1;
25027
+ function _extends$l() {
25028
+ return _extends$l = Object.assign ? Object.assign.bind() : function (n) {
24789
25029
  for (var e = 1; e < arguments.length; e++) {
24790
25030
  var t = arguments[e];
24791
25031
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24792
25032
  }
24793
25033
  return n;
24794
- }, _extends$k.apply(null, arguments);
25034
+ }, _extends$l.apply(null, arguments);
24795
25035
  }
24796
25036
  function SvgAddChat(props) {
24797
- return /*#__PURE__*/createElement$1("svg", _extends$k({
25037
+ return /*#__PURE__*/createElement$1("svg", _extends$l({
24798
25038
  width: 24,
24799
25039
  height: 24,
24800
25040
  viewBox: "0 0 24.01 24.01",
24801
25041
  fill: "none",
24802
25042
  xmlns: "http://www.w3.org/2000/svg"
24803
- }, props), _path$j || (_path$j = /*#__PURE__*/createElement$1("path", {
25043
+ }, props), _path$k || (_path$k = /*#__PURE__*/createElement$1("path", {
24804
25044
  fillRule: "evenodd",
24805
25045
  clipRule: "evenodd",
24806
25046
  d: "M4.128 2.179c.989-.529 1.962-.713 4.109-.713h7.66a1 1 0 110 2h-7.66c-2.041 0-2.615.182-3.165.476a2.86 2.86 0 00-1.196 1.196c-.294.55-.476 1.124-.476 3.165v7.66c0 2.041.182 2.615.476 3.165a2.86 2.86 0 001.196 1.196c.55.294 1.124.476 3.165.476h7.66c2.04 0 2.614-.182 3.165-.476a2.86 2.86 0 001.195-1.196c.295-.55.476-1.124.476-3.165v-7.66a1 1 0 012 0v7.66c0 2.147-.184 3.12-.712 4.108a4.86 4.86 0 01-2.016 2.016c-.989.53-1.962.713-4.109.713h-7.66c-2.146 0-3.12-.184-4.108-.713a4.86 4.86 0 01-2.016-2.016c-.528-.988-.712-1.961-.712-4.108v-7.66c0-2.147.184-3.12.712-4.108a4.86 4.86 0 012.016-2.016z",
@@ -24816,46 +25056,46 @@ function SvgAddChat(props) {
24816
25056
  })));
24817
25057
  }
24818
25058
 
24819
- var _path$k;
24820
- function _extends$l() {
24821
- return _extends$l = Object.assign ? Object.assign.bind() : function (n) {
25059
+ var _path$l;
25060
+ function _extends$m() {
25061
+ return _extends$m = Object.assign ? Object.assign.bind() : function (n) {
24822
25062
  for (var e = 1; e < arguments.length; e++) {
24823
25063
  var t = arguments[e];
24824
25064
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24825
25065
  }
24826
25066
  return n;
24827
- }, _extends$l.apply(null, arguments);
25067
+ }, _extends$m.apply(null, arguments);
24828
25068
  }
24829
25069
  function SvgCross(props) {
24830
- return /*#__PURE__*/createElement$1("svg", _extends$l({
25070
+ return /*#__PURE__*/createElement$1("svg", _extends$m({
24831
25071
  width: 16,
24832
25072
  height: 16,
24833
25073
  fill: "none",
24834
25074
  xmlns: "http://www.w3.org/2000/svg"
24835
- }, props), _path$k || (_path$k = /*#__PURE__*/createElement$1("path", {
25075
+ }, props), _path$l || (_path$l = /*#__PURE__*/createElement$1("path", {
24836
25076
  d: "M7.114 8L4.85 5.736a.626.626 0 11.886-.886L8 7.114l2.264-2.264a.626.626 0 11.886.886L8.886 8l2.264 2.264a.626.626 0 01-.886.886L8 8.886 5.736 11.15a.626.626 0 01-.886-.886L7.114 8z",
24837
25077
  fill: "#818C99"
24838
25078
  })));
24839
25079
  }
24840
25080
 
24841
- var _path$l;
24842
- function _extends$m() {
24843
- return _extends$m = Object.assign ? Object.assign.bind() : function (n) {
25081
+ var _path$m;
25082
+ function _extends$n() {
25083
+ return _extends$n = Object.assign ? Object.assign.bind() : function (n) {
24844
25084
  for (var e = 1; e < arguments.length; e++) {
24845
25085
  var t = arguments[e];
24846
25086
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24847
25087
  }
24848
25088
  return n;
24849
- }, _extends$m.apply(null, arguments);
25089
+ }, _extends$n.apply(null, arguments);
24850
25090
  }
24851
25091
  function SvgTick(props) {
24852
- return /*#__PURE__*/createElement$1("svg", _extends$m({
25092
+ return /*#__PURE__*/createElement$1("svg", _extends$n({
24853
25093
  width: 11,
24854
25094
  height: 9,
24855
25095
  viewBox: "0 0 10 10",
24856
25096
  fill: "none",
24857
25097
  xmlns: "http://www.w3.org/2000/svg"
24858
- }, props), _path$l || (_path$l = /*#__PURE__*/createElement$1("path", {
25098
+ }, props), _path$m || (_path$m = /*#__PURE__*/createElement$1("path", {
24859
25099
  d: "M1.28 4.775a.75.75 0 00-1.06 1.06l2.722 2.723a.75.75 0 001.06 0l6.445-6.445a.75.75 0 10-1.06-1.06L3.471 6.967 1.28 4.775z",
24860
25100
  fill: "#fff"
24861
25101
  })));
@@ -24920,23 +25160,23 @@ var CustomLabel = styled.label(_templateObject$9 || (_templateObject$9 = _tagged
24920
25160
  });
24921
25161
  var Checkbox = styled.input(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteralLoose(["\n display: none;\n"])));
24922
25162
 
24923
- var _path$m;
24924
- function _extends$n() {
24925
- return _extends$n = Object.assign ? Object.assign.bind() : function (n) {
25163
+ var _path$n;
25164
+ function _extends$o() {
25165
+ return _extends$o = Object.assign ? Object.assign.bind() : function (n) {
24926
25166
  for (var e = 1; e < arguments.length; e++) {
24927
25167
  var t = arguments[e];
24928
25168
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
24929
25169
  }
24930
25170
  return n;
24931
- }, _extends$n.apply(null, arguments);
25171
+ }, _extends$o.apply(null, arguments);
24932
25172
  }
24933
25173
  function SvgLinkIconWb(props) {
24934
- return /*#__PURE__*/createElement$1("svg", _extends$n({
25174
+ return /*#__PURE__*/createElement$1("svg", _extends$o({
24935
25175
  width: 19,
24936
25176
  height: 19,
24937
25177
  fill: "none",
24938
25178
  xmlns: "http://www.w3.org/2000/svg"
24939
- }, props), _path$m || (_path$m = /*#__PURE__*/createElement$1("path", {
25179
+ }, props), _path$n || (_path$n = /*#__PURE__*/createElement$1("path", {
24940
25180
  d: "M7.832 10.652c.41.39.41 1.03 0 1.42-.39.39-1.03.39-1.42 0a5.003 5.003 0 010-7.07l3.54-3.54a5.003 5.003 0 017.07 0 5.003 5.003 0 010 7.07l-1.49 1.49c.01-.82-.12-1.64-.4-2.42l.47-.48a2.982 2.982 0 000-4.24 2.982 2.982 0 00-4.24 0l-3.53 3.53a2.982 2.982 0 000 4.24zm2.82-4.24c.39-.39 1.03-.39 1.42 0a5.003 5.003 0 010 7.07l-3.54 3.54a5.003 5.003 0 01-7.07 0 5.003 5.003 0 010-7.07l1.49-1.49c-.01.82.12 1.64.4 2.43l-.47.47a2.982 2.982 0 000 4.24 2.982 2.982 0 004.24 0l3.53-3.53a2.982 2.982 0 000-4.24.973.973 0 010-1.42z",
24941
25181
  fill: "#0DBD8B"
24942
25182
  })));
@@ -25372,23 +25612,23 @@ var SelectedMemberName = styled.span(_templateObject0$2 || (_templateObject0$2 =
25372
25612
  });
25373
25613
  var StyledSubtractSvg = styled(SvgCross)(_templateObject1$2 || (_templateObject1$2 = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n margin-left: 4px;\n transform: translate(2px, 0);\n"])));
25374
25614
 
25375
- var _path$n;
25376
- function _extends$o() {
25377
- return _extends$o = Object.assign ? Object.assign.bind() : function (n) {
25615
+ var _path$o;
25616
+ function _extends$p() {
25617
+ return _extends$p = Object.assign ? Object.assign.bind() : function (n) {
25378
25618
  for (var e = 1; e < arguments.length; e++) {
25379
25619
  var t = arguments[e];
25380
25620
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
25381
25621
  }
25382
25622
  return n;
25383
- }, _extends$o.apply(null, arguments);
25623
+ }, _extends$p.apply(null, arguments);
25384
25624
  }
25385
25625
  function SvgCameraIcon(props) {
25386
- return /*#__PURE__*/createElement$1("svg", _extends$o({
25626
+ return /*#__PURE__*/createElement$1("svg", _extends$p({
25387
25627
  width: 42,
25388
25628
  height: 42,
25389
25629
  fill: "none",
25390
25630
  xmlns: "http://www.w3.org/2000/svg"
25391
- }, props), _path$n || (_path$n = /*#__PURE__*/createElement$1("path", {
25631
+ }, props), _path$o || (_path$o = /*#__PURE__*/createElement$1("path", {
25392
25632
  fillRule: "evenodd",
25393
25633
  clipRule: "evenodd",
25394
25634
  d: "M11.55 11.55c1.206 0 2.119-.428 2.813-1.095.511-.49.899-1.124 1.164-1.559l.115-.186c.315-.505.542-.802.82-1.005.238-.172.624-.355 1.388-.355h6.3c.763 0 1.15.183 1.387.355.278.203.505.5.82 1.005l.116.186c.265.435.652 1.068 1.163 1.56.695.666 1.607 1.094 2.814 1.094 1.539 0 2.078.008 2.496.091a4.725 4.725 0 013.713 3.712c.083.418.09.958.09 2.497v7.245c0 1.79 0 3.038-.08 4.01-.078.953-.223 1.5-.434 1.915a4.725 4.725 0 01-2.065 2.065c-.415.212-.963.357-1.916.435-.971.079-2.22.08-4.01.08H13.753c-1.79 0-3.038-.001-4.01-.08-.953-.078-1.5-.224-1.915-.435a4.725 4.725 0 01-2.065-2.065c-.212-.415-.357-.962-.435-1.915-.079-.972-.08-2.22-.08-4.01v-7.242c0-1.542.007-2.083.09-2.501a4.725 4.725 0 013.711-3.71c.42-.084.96-.092 2.502-.092zm6.3-7.35c-1.337 0-2.394.342-3.24.958-.804.585-1.299 1.337-1.64 1.882l-.158.255c-.285.459-.434.7-.63.888-.126.12-.264.217-.632.217h-.183c-1.29 0-2.17 0-2.934.152a7.875 7.875 0 00-6.184 6.184c-.153.765-.153 1.644-.152 2.934V25.163c0 1.707 0 3.083.09 4.198.095 1.148.293 2.156.768 3.09a7.875 7.875 0 003.442 3.44c.932.476 1.94.674 3.089.768 1.115.091 2.491.091 4.198.091h14.628c1.707 0 3.084 0 4.199-.09 1.148-.095 2.156-.293 3.089-.768a7.875 7.875 0 003.441-3.442c.476-.933.674-1.94.768-3.089.09-1.115.09-2.491.09-4.198v-7.495c.001-1.288.001-2.166-.15-2.93a7.875 7.875 0 00-6.188-6.186c-.764-.152-1.641-.152-2.93-.152h-.181c-.369 0-.506-.096-.632-.217-.197-.189-.346-.43-.63-.888-.05-.078-.102-.163-.159-.255-.34-.545-.835-1.297-1.64-1.882-.846-.616-1.903-.958-3.24-.958h-6.3zm7.875 17.325a4.725 4.725 0 11-9.45 0 4.725 4.725 0 019.45 0zm3.15 0a7.875 7.875 0 11-15.75 0 7.875 7.875 0 0115.75 0z",
@@ -26165,24 +26405,24 @@ var CreateDropdownButton = styled.div(_templateObject$f || (_templateObject$f =
26165
26405
  return props.iconColor;
26166
26406
  });
26167
26407
 
26168
- var _path$o;
26169
- function _extends$p() {
26170
- return _extends$p = Object.assign ? Object.assign.bind() : function (n) {
26408
+ var _path$p;
26409
+ function _extends$q() {
26410
+ return _extends$q = Object.assign ? Object.assign.bind() : function (n) {
26171
26411
  for (var e = 1; e < arguments.length; e++) {
26172
26412
  var t = arguments[e];
26173
26413
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
26174
26414
  }
26175
26415
  return n;
26176
- }, _extends$p.apply(null, arguments);
26416
+ }, _extends$q.apply(null, arguments);
26177
26417
  }
26178
26418
  function SvgArrowLeft(props) {
26179
- return /*#__PURE__*/createElement$1("svg", _extends$p({
26419
+ return /*#__PURE__*/createElement$1("svg", _extends$q({
26180
26420
  width: 32,
26181
26421
  height: 32,
26182
26422
  viewBox: "0 0 32.01 32.01",
26183
26423
  fill: "none",
26184
26424
  xmlns: "http://www.w3.org/2000/svg"
26185
- }, props), _path$o || (_path$o = /*#__PURE__*/createElement$1("path", {
26425
+ }, props), _path$p || (_path$p = /*#__PURE__*/createElement$1("path", {
26186
26426
  fillRule: "evenodd",
26187
26427
  clipRule: "evenodd",
26188
26428
  d: "M15.489 9.276a.941.941 0 010 1.33l-4.276 4.276H23.06a.941.941 0 110 1.883H11.213l4.276 4.275a.941.941 0 11-1.331 1.331L8.276 16.49a.941.941 0 010-1.331l5.882-5.882a.941.941 0 011.331 0z",
@@ -26190,70 +26430,70 @@ function SvgArrowLeft(props) {
26190
26430
  })));
26191
26431
  }
26192
26432
 
26193
- var _path$p;
26194
- function _extends$q() {
26195
- return _extends$q = Object.assign ? Object.assign.bind() : function (n) {
26433
+ var _path$q;
26434
+ function _extends$r() {
26435
+ return _extends$r = Object.assign ? Object.assign.bind() : function (n) {
26196
26436
  for (var e = 1; e < arguments.length; e++) {
26197
26437
  var t = arguments[e];
26198
26438
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
26199
26439
  }
26200
26440
  return n;
26201
- }, _extends$q.apply(null, arguments);
26441
+ }, _extends$r.apply(null, arguments);
26202
26442
  }
26203
26443
  function SvgNotifications(props) {
26204
- return /*#__PURE__*/createElement$1("svg", _extends$q({
26444
+ return /*#__PURE__*/createElement$1("svg", _extends$r({
26205
26445
  width: 20,
26206
26446
  height: 20,
26207
26447
  viewBox: "0 0 20.01 20.01",
26208
26448
  fill: "none",
26209
26449
  xmlns: "http://www.w3.org/2000/svg"
26210
- }, props), _path$p || (_path$p = /*#__PURE__*/createElement$1("path", {
26450
+ }, props), _path$q || (_path$q = /*#__PURE__*/createElement$1("path", {
26211
26451
  d: "M10.246 1.75c3.449 0 5.924 2.816 5.924 6.47v1.375c0 .196.166.457.619.924l.232.236c.929.942 1.296 1.485 1.296 2.358 0 .382-.044.68-.23 1.037-.391.754-1.222 1.174-2.464 1.174H13.98c-.54 2.004-1.83 3.093-3.738 3.093-1.928 0-3.225-1.112-3.755-3.157l.016.064H4.861c-1.278 0-2.118-.432-2.493-1.212-.164-.341-.201-.618-.201-.998 0-.874.367-1.417 1.296-2.359.12-.12.174-.176.232-.236.453-.467.62-.728.62-.924V8.22c0-3.652 2.48-6.47 5.93-6.47zm2.114 13.575H8.125c.391 1.071 1.066 1.545 2.118 1.545 1.052 0 1.727-.474 2.118-1.545zM10.247 3.296c-2.55 0-4.385 2.085-4.385 4.924v1.375c0 .732-.335 1.257-1.055 2l-.242.246c-.642.65-.851.96-.851 1.273 0 .164.012.25.049.328.092.192.372.335 1.1.335h10.76c.705 0 .991-.144 1.093-.34.043-.082.056-.17.056-.323 0-.313-.21-.622-.851-1.273-.12-.12-.179-.181-.242-.246-.72-.743-1.055-1.268-1.055-2V8.22c0-2.84-1.83-4.924-4.377-4.924z",
26212
26452
  fill: "currentColor"
26213
26453
  })));
26214
26454
  }
26215
26455
 
26216
- var _path$q;
26217
- function _extends$r() {
26218
- return _extends$r = Object.assign ? Object.assign.bind() : function (n) {
26456
+ var _path$r;
26457
+ function _extends$s() {
26458
+ return _extends$s = Object.assign ? Object.assign.bind() : function (n) {
26219
26459
  for (var e = 1; e < arguments.length; e++) {
26220
26460
  var t = arguments[e];
26221
26461
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
26222
26462
  }
26223
26463
  return n;
26224
- }, _extends$r.apply(null, arguments);
26464
+ }, _extends$s.apply(null, arguments);
26225
26465
  }
26226
26466
  function SvgLock(props) {
26227
- return /*#__PURE__*/createElement$1("svg", _extends$r({
26467
+ return /*#__PURE__*/createElement$1("svg", _extends$s({
26228
26468
  width: 20,
26229
26469
  height: 20,
26230
26470
  viewBox: "0 0 21 21",
26231
26471
  fill: "none",
26232
26472
  xmlns: "http://www.w3.org/2000/svg"
26233
- }, props), _path$q || (_path$q = /*#__PURE__*/createElement$1("path", {
26473
+ }, props), _path$r || (_path$r = /*#__PURE__*/createElement$1("path", {
26234
26474
  d: "M10 2.5a4.167 4.167 0 014.166 4.167v1.666h.364c.743 0 1.012.078 1.284.223.271.145.485.358.63.63.145.272.222.541.222 1.284v4.893c0 .743-.077 1.013-.222 1.284a1.514 1.514 0 01-.63.63c-.272.146-.541.223-1.284.223H5.47c-.743 0-1.013-.077-1.284-.223a1.515 1.515 0 01-.63-.63c-.146-.271-.223-.54-.223-1.284V10.47c0-.743.077-1.012.223-1.284.145-.272.358-.485.63-.63.271-.145.54-.223 1.284-.223h.362l.001-1.666A4.167 4.167 0 0110 2.5zm0 1.667a2.5 2.5 0 00-2.5 2.5l-.001 1.666h5V6.667a2.5 2.5 0 00-2.5-2.5z",
26235
26475
  fill: "CurrentColor"
26236
26476
  })));
26237
26477
  }
26238
26478
 
26239
- var _path$r;
26240
- function _extends$s() {
26241
- return _extends$s = Object.assign ? Object.assign.bind() : function (n) {
26479
+ var _path$s;
26480
+ function _extends$t() {
26481
+ return _extends$t = Object.assign ? Object.assign.bind() : function (n) {
26242
26482
  for (var e = 1; e < arguments.length; e++) {
26243
26483
  var t = arguments[e];
26244
26484
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
26245
26485
  }
26246
26486
  return n;
26247
- }, _extends$s.apply(null, arguments);
26487
+ }, _extends$t.apply(null, arguments);
26248
26488
  }
26249
26489
  function SvgLeave(props) {
26250
- return /*#__PURE__*/createElement$1("svg", _extends$s({
26490
+ return /*#__PURE__*/createElement$1("svg", _extends$t({
26251
26491
  width: 20,
26252
26492
  height: 20,
26253
26493
  viewBox: "0 0 20.01 20.01",
26254
26494
  fill: "none",
26255
26495
  xmlns: "http://www.w3.org/2000/svg"
26256
- }, props), _path$r || (_path$r = /*#__PURE__*/createElement$1("path", {
26496
+ }, props), _path$s || (_path$s = /*#__PURE__*/createElement$1("path", {
26257
26497
  d: "M9.457 9.68h-7.03c-.47 0-.86.362-.86.82 0 .458.39.82.86.82h7.03l-1.56 1.477a.793.793 0 000 1.163.89.89 0 001.213 0l3.038-2.878h0l.006-.006h0a.799.799 0 00.248-.573v-.005a.784.784 0 00-.066-.313M9.457 9.68l2.88.505m-2.88-.505l-1.56-1.477a.793.793 0 010-1.163.89.89 0 011.213 0l3.038 2.878m-2.69-.238l2.69.238m.188.267s0 0 0 0l-.091.04.091-.04zm-.188-.267l-.069.073.069-.073h0zm-1.365 8.599h2.011c.82 0 1.488 0 2.03-.042.559-.043 1.06-.135 1.525-.36a3.805 3.805 0 001.705-1.616c.238-.443.336-.919.381-1.45.045-.514.045-1.146.045-1.923V7.874c0-.776 0-1.409-.045-1.923-.045-.53-.143-1.007-.381-1.45a3.805 3.805 0 00-1.705-1.615c-.466-.225-.966-.317-1.526-.36-.541-.043-1.208-.043-2.029-.042h-.003 0-2.008c-.47 0-.86.361-.86.82 0 .457.39.819.86.819h1.975c.865 0 1.462 0 1.926.036.454.036.704.1.888.19.41.197.744.513.952.9.093.173.16.408.198.837.038.438.038 1.003.038 1.823v5.182c0 .82 0 1.385-.038 1.824-.037.429-.105.664-.198.836-.208.387-.541.703-.952.901-.184.089-.434.154-.888.189-.464.036-1.061.036-1.926.036h-1.975c-.47 0-.86.362-.86.82 0 .458.39.82.86.82z",
26258
26498
  fill: "CurrentColor",
26259
26499
  stroke: "CurrentColor",
@@ -27101,24 +27341,24 @@ var ChannelListHeader = styled.div(_templateObject0$3 || (_templateObject0$3 = _
27101
27341
  return props.withCustomList && "1px solid " + props.borderColor;
27102
27342
  });
27103
27343
 
27104
- var _path$s;
27105
- function _extends$t() {
27106
- return _extends$t = Object.assign ? Object.assign.bind() : function (n) {
27344
+ var _path$t;
27345
+ function _extends$u() {
27346
+ return _extends$u = Object.assign ? Object.assign.bind() : function (n) {
27107
27347
  for (var e = 1; e < arguments.length; e++) {
27108
27348
  var t = arguments[e];
27109
27349
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27110
27350
  }
27111
27351
  return n;
27112
- }, _extends$t.apply(null, arguments);
27352
+ }, _extends$u.apply(null, arguments);
27113
27353
  }
27114
27354
  function SvgMessage(props) {
27115
- return /*#__PURE__*/createElement$1("svg", _extends$t({
27355
+ return /*#__PURE__*/createElement$1("svg", _extends$u({
27116
27356
  width: 48,
27117
27357
  height: 48,
27118
27358
  viewBox: "0 0 48.01 48.01",
27119
27359
  fill: "none",
27120
27360
  xmlns: "http://www.w3.org/2000/svg"
27121
- }, props), _path$s || (_path$s = /*#__PURE__*/createElement$1("path", {
27361
+ }, props), _path$t || (_path$t = /*#__PURE__*/createElement$1("path", {
27122
27362
  fillRule: "evenodd",
27123
27363
  clipRule: "evenodd",
27124
27364
  d: "M15.524 4.2h16.951c1.616 0 2.938 0 4.012.088 1.112.09 2.116.285 3.054.762a7.8 7.8 0 013.409 3.41c.477.937.671 1.941.762 3.053.088 1.074.088 2.396.088 4.012v10.95c0 1.617 0 2.938-.088 4.013-.09 1.111-.285 2.115-.762 3.053a7.8 7.8 0 01-3.409 3.409c-.938.478-1.942.672-3.054.762-1.074.088-2.396.088-4.012.088h-5.108c-1.32 0-1.73.009-2.107.086a4.2 4.2 0 00-1.066.374c-.342.175-.668.425-1.7 1.25l-4.822 3.858c-.37.296-.739.59-1.06.803-.308.204-.877.548-1.61.549a2.8 2.8 0 01-2.19-1.054c-.457-.572-.544-1.23-.577-1.599-.035-.383-.035-.855-.035-1.33V37.79c-.86-.02-1.573-.081-2.219-.255a7.8 7.8 0 01-5.515-5.515c-.267-.997-.267-2.152-.266-3.76V15.525c0-1.616 0-2.938.088-4.012.09-1.112.284-2.116.762-3.054A7.8 7.8 0 018.459 5.05c.938-.477 1.942-.671 3.053-.762 1.075-.088 2.396-.088 4.012-.088zm-3.718 3.676c-.89.073-1.367.206-1.713.382a4.2 4.2 0 00-1.835 1.835c-.177.346-.31.824-.382 1.713-.075.91-.076 2.084-.076 3.794V28c0 1.976.015 2.61.143 3.087a4.2 4.2 0 002.97 2.97c.476.128 1.111.143 3.087.143a1.8 1.8 0 011.8 1.8v4.255l4.446-3.557.126-.101c.853-.682 1.476-1.18 2.184-1.543a7.795 7.795 0 011.98-.695c.78-.16 1.577-.16 2.67-.159H32.4c1.71 0 2.884-.001 3.794-.076.89-.072 1.367-.205 1.713-.382a4.2 4.2 0 001.835-1.835c.176-.346.31-.823.382-1.713.075-.91.076-2.084.076-3.794V15.6c0-1.71-.002-2.884-.076-3.794-.073-.89-.206-1.367-.382-1.713a4.2 4.2 0 00-1.835-1.835c-.346-.176-.824-.31-1.713-.382-.91-.074-2.084-.076-3.794-.076H15.6c-1.71 0-2.884.002-3.794.076zM12.2 17a1.8 1.8 0 011.8-1.8h10a1.8 1.8 0 010 3.6H14a1.8 1.8 0 01-1.8-1.8zm0 7a1.8 1.8 0 011.8-1.8h16a1.8 1.8 0 010 3.6H14a1.8 1.8 0 01-1.8-1.8z",
@@ -27230,23 +27470,23 @@ var SelectChatDescription = styled.p(_templateObject5$8 || (_templateObject5$8 =
27230
27470
  return props.color;
27231
27471
  });
27232
27472
 
27233
- var _path$t;
27234
- function _extends$u() {
27235
- return _extends$u = Object.assign ? Object.assign.bind() : function (n) {
27473
+ var _path$u;
27474
+ function _extends$v() {
27475
+ return _extends$v = Object.assign ? Object.assign.bind() : function (n) {
27236
27476
  for (var e = 1; e < arguments.length; e++) {
27237
27477
  var t = arguments[e];
27238
27478
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27239
27479
  }
27240
27480
  return n;
27241
- }, _extends$u.apply(null, arguments);
27481
+ }, _extends$v.apply(null, arguments);
27242
27482
  }
27243
27483
  function SvgInfo(props) {
27244
- return /*#__PURE__*/createElement$1("svg", _extends$u({
27484
+ return /*#__PURE__*/createElement$1("svg", _extends$v({
27245
27485
  width: 22,
27246
27486
  height: 22,
27247
27487
  fill: "none",
27248
27488
  xmlns: "http://www.w3.org/2000/svg"
27249
- }, props), _path$t || (_path$t = /*#__PURE__*/createElement$1("path", {
27489
+ }, props), _path$u || (_path$u = /*#__PURE__*/createElement$1("path", {
27250
27490
  d: "M11 20.167a9.167 9.167 0 100-18.333 9.167 9.167 0 000 18.333zM11 14.667V11M11 7.334h.01",
27251
27491
  stroke: "CurrentColor",
27252
27492
  strokeWidth: 2,
@@ -27500,24 +27740,24 @@ var unreadScrollToSelector = function unreadScrollToSelector(store) {
27500
27740
  return store.MessageReducer.unreadScrollTo;
27501
27741
  };
27502
27742
 
27503
- var _path$u;
27504
- function _extends$v() {
27505
- return _extends$v = Object.assign ? Object.assign.bind() : function (n) {
27743
+ var _path$v;
27744
+ function _extends$w() {
27745
+ return _extends$w = Object.assign ? Object.assign.bind() : function (n) {
27506
27746
  for (var e = 1; e < arguments.length; e++) {
27507
27747
  var t = arguments[e];
27508
27748
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27509
27749
  }
27510
27750
  return n;
27511
- }, _extends$v.apply(null, arguments);
27751
+ }, _extends$w.apply(null, arguments);
27512
27752
  }
27513
27753
  function SvgChoseMedia(props) {
27514
- return /*#__PURE__*/createElement$1("svg", _extends$v({
27754
+ return /*#__PURE__*/createElement$1("svg", _extends$w({
27515
27755
  width: 18,
27516
27756
  height: 18,
27517
27757
  viewBox: "0 0 19 19",
27518
27758
  fill: "none",
27519
27759
  xmlns: "http://www.w3.org/2000/svg"
27520
- }, props), _path$u || (_path$u = /*#__PURE__*/createElement$1("path", {
27760
+ }, props), _path$v || (_path$v = /*#__PURE__*/createElement$1("path", {
27521
27761
  fillRule: "evenodd",
27522
27762
  clipRule: "evenodd",
27523
27763
  d: "M3.614 2.052C4.366 1.65 5.107 1.5 6.798 1.5h4.404c1.691 0 2.432.15 3.184.552.672.36 1.203.89 1.562 1.562.402.752.552 1.493.552 3.184v4.404c0 1.691-.15 2.432-.552 3.184a3.763 3.763 0 01-1.562 1.562c-.752.402-1.493.552-3.184.552H6.798c-1.691 0-2.432-.15-3.184-.552a3.764 3.764 0 01-1.562-1.562c-.402-.752-.552-1.493-.552-3.184V6.798c0-1.691.15-2.432.552-3.184.36-.672.89-1.203 1.562-1.562zm7.16 7.07a.297.297 0 01.482.004l3.04 4.193c.101.139.074.335-.06.44a.297.297 0 01-.183.062h-9.57a.309.309 0 01-.304-.314c0-.07.022-.137.064-.192l2.22-2.954a.297.297 0 01.473-.008l1.528 1.861 2.31-3.092zM5.785 6.857a1.071 1.071 0 100-2.143 1.071 1.071 0 000 2.143z",
@@ -27525,27 +27765,27 @@ function SvgChoseMedia(props) {
27525
27765
  })));
27526
27766
  }
27527
27767
 
27528
- var _path$v, _defs;
27529
- function _extends$w() {
27530
- return _extends$w = Object.assign ? Object.assign.bind() : function (n) {
27768
+ var _path$w, _defs$1;
27769
+ function _extends$x() {
27770
+ return _extends$x = Object.assign ? Object.assign.bind() : function (n) {
27531
27771
  for (var e = 1; e < arguments.length; e++) {
27532
27772
  var t = arguments[e];
27533
27773
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27534
27774
  }
27535
27775
  return n;
27536
- }, _extends$w.apply(null, arguments);
27776
+ }, _extends$x.apply(null, arguments);
27537
27777
  }
27538
27778
  function SvgNoMessagesIcon(props) {
27539
- return /*#__PURE__*/createElement$1("svg", _extends$w({
27779
+ return /*#__PURE__*/createElement$1("svg", _extends$x({
27540
27780
  width: 49,
27541
27781
  height: 49,
27542
27782
  fill: "none",
27543
27783
  xmlns: "http://www.w3.org/2000/svg",
27544
27784
  xmlnsXlink: "http://www.w3.org/1999/xlink"
27545
- }, props), _path$v || (_path$v = /*#__PURE__*/createElement$1("path", {
27785
+ }, props), _path$w || (_path$w = /*#__PURE__*/createElement$1("path", {
27546
27786
  d: "M.5 48.36h48v-48H.5v48z",
27547
27787
  fill: "url(#noMessagesIcon_svg__pattern0)"
27548
- })), _defs || (_defs = /*#__PURE__*/createElement$1("defs", null, /*#__PURE__*/createElement$1("pattern", {
27788
+ })), _defs$1 || (_defs$1 = /*#__PURE__*/createElement$1("defs", null, /*#__PURE__*/createElement$1("pattern", {
27549
27789
  id: "noMessagesIcon_svg__pattern0",
27550
27790
  patternContentUnits: "objectBoundingBox",
27551
27791
  width: 1,
@@ -27652,70 +27892,70 @@ function MessageDivider(_ref) {
27652
27892
  }, dividerText)));
27653
27893
  }
27654
27894
 
27655
- var _path$w;
27656
- function _extends$x() {
27657
- return _extends$x = Object.assign ? Object.assign.bind() : function (n) {
27895
+ var _path$x;
27896
+ function _extends$y() {
27897
+ return _extends$y = Object.assign ? Object.assign.bind() : function (n) {
27658
27898
  for (var e = 1; e < arguments.length; e++) {
27659
27899
  var t = arguments[e];
27660
27900
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27661
27901
  }
27662
27902
  return n;
27663
- }, _extends$x.apply(null, arguments);
27903
+ }, _extends$y.apply(null, arguments);
27664
27904
  }
27665
27905
  function SvgDownload(props) {
27666
- return /*#__PURE__*/createElement$1("svg", _extends$x({
27906
+ return /*#__PURE__*/createElement$1("svg", _extends$y({
27667
27907
  width: 32,
27668
27908
  height: 32,
27669
27909
  viewBox: "0 0 32.01 32.01",
27670
27910
  fill: "none",
27671
27911
  xmlns: "http://www.w3.org/2000/svg"
27672
- }, props), _path$w || (_path$w = /*#__PURE__*/createElement$1("path", {
27912
+ }, props), _path$x || (_path$x = /*#__PURE__*/createElement$1("path", {
27673
27913
  d: "M17.5 3.5a1.5 1.5 0 00-3 0v13.379l-4.44-4.44a1.5 1.5 0 00-2.12 2.122l7 7a1.5 1.5 0 002.12 0l7-7a1.5 1.5 0 00-2.12-2.122l-4.44 4.44V3.5zM5.5 25a1.5 1.5 0 000 3h21a1.5 1.5 0 000-3h-21z",
27674
27914
  fill: "#fff"
27675
27915
  })));
27676
27916
  }
27677
27917
 
27678
- var _path$x;
27679
- function _extends$y() {
27680
- return _extends$y = Object.assign ? Object.assign.bind() : function (n) {
27918
+ var _path$y;
27919
+ function _extends$z() {
27920
+ return _extends$z = Object.assign ? Object.assign.bind() : function (n) {
27681
27921
  for (var e = 1; e < arguments.length; e++) {
27682
27922
  var t = arguments[e];
27683
27923
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27684
27924
  }
27685
27925
  return n;
27686
- }, _extends$y.apply(null, arguments);
27926
+ }, _extends$z.apply(null, arguments);
27687
27927
  }
27688
27928
  function SvgCancel(props) {
27689
- return /*#__PURE__*/createElement$1("svg", _extends$y({
27929
+ return /*#__PURE__*/createElement$1("svg", _extends$z({
27690
27930
  width: 20,
27691
27931
  height: 20,
27692
27932
  viewBox: "0 0 20.01 20.01",
27693
27933
  fill: "none",
27694
27934
  xmlns: "http://www.w3.org/2000/svg"
27695
- }, props), _path$x || (_path$x = /*#__PURE__*/createElement$1("path", {
27935
+ }, props), _path$y || (_path$y = /*#__PURE__*/createElement$1("path", {
27696
27936
  d: "M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z",
27697
27937
  fill: "#fff"
27698
27938
  })));
27699
27939
  }
27700
27940
 
27701
- var _path$y;
27702
- function _extends$z() {
27703
- return _extends$z = Object.assign ? Object.assign.bind() : function (n) {
27941
+ var _path$z;
27942
+ function _extends$A() {
27943
+ return _extends$A = Object.assign ? Object.assign.bind() : function (n) {
27704
27944
  for (var e = 1; e < arguments.length; e++) {
27705
27945
  var t = arguments[e];
27706
27946
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27707
27947
  }
27708
27948
  return n;
27709
- }, _extends$z.apply(null, arguments);
27949
+ }, _extends$A.apply(null, arguments);
27710
27950
  }
27711
27951
  function SvgSliderButtonRight(props) {
27712
- return /*#__PURE__*/createElement$1("svg", _extends$z({
27952
+ return /*#__PURE__*/createElement$1("svg", _extends$A({
27713
27953
  width: 28,
27714
27954
  height: 28,
27715
27955
  viewBox: "0 0 28.01 28.01",
27716
27956
  fill: "none",
27717
27957
  xmlns: "http://www.w3.org/2000/svg"
27718
- }, props), _path$y || (_path$y = /*#__PURE__*/createElement$1("path", {
27958
+ }, props), _path$z || (_path$z = /*#__PURE__*/createElement$1("path", {
27719
27959
  fillRule: "evenodd",
27720
27960
  clipRule: "evenodd",
27721
27961
  d: "M9.846 5.763a1.75 1.75 0 012.475 0l7 7a1.75 1.75 0 010 2.474l-7 7a1.75 1.75 0 11-2.475-2.474L15.61 14 9.846 8.237a1.75 1.75 0 010-2.474z",
@@ -27723,24 +27963,24 @@ function SvgSliderButtonRight(props) {
27723
27963
  })));
27724
27964
  }
27725
27965
 
27726
- var _path$z;
27727
- function _extends$A() {
27728
- return _extends$A = Object.assign ? Object.assign.bind() : function (n) {
27966
+ var _path$A;
27967
+ function _extends$B() {
27968
+ return _extends$B = Object.assign ? Object.assign.bind() : function (n) {
27729
27969
  for (var e = 1; e < arguments.length; e++) {
27730
27970
  var t = arguments[e];
27731
27971
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27732
27972
  }
27733
27973
  return n;
27734
- }, _extends$A.apply(null, arguments);
27974
+ }, _extends$B.apply(null, arguments);
27735
27975
  }
27736
27976
  function SvgSliderButtonLeft(props) {
27737
- return /*#__PURE__*/createElement$1("svg", _extends$A({
27977
+ return /*#__PURE__*/createElement$1("svg", _extends$B({
27738
27978
  width: 28,
27739
27979
  height: 28,
27740
27980
  viewBox: "0 0 28.01 28.01",
27741
27981
  fill: "none",
27742
27982
  xmlns: "http://www.w3.org/2000/svg"
27743
- }, props), _path$z || (_path$z = /*#__PURE__*/createElement$1("path", {
27983
+ }, props), _path$A || (_path$A = /*#__PURE__*/createElement$1("path", {
27744
27984
  fillRule: "evenodd",
27745
27985
  clipRule: "evenodd",
27746
27986
  d: "M18.154 5.763a1.75 1.75 0 00-2.475 0l-7 7a1.75 1.75 0 000 2.474l7 7a1.75 1.75 0 102.475-2.474L12.392 14l5.762-5.763a1.75 1.75 0 000-2.474z",
@@ -27748,24 +27988,24 @@ function SvgSliderButtonLeft(props) {
27748
27988
  })));
27749
27989
  }
27750
27990
 
27751
- var _path$A, _path2$3;
27752
- function _extends$B() {
27753
- return _extends$B = Object.assign ? Object.assign.bind() : function (n) {
27991
+ var _path$B, _path2$3;
27992
+ function _extends$C() {
27993
+ return _extends$C = Object.assign ? Object.assign.bind() : function (n) {
27754
27994
  for (var e = 1; e < arguments.length; e++) {
27755
27995
  var t = arguments[e];
27756
27996
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27757
27997
  }
27758
27998
  return n;
27759
- }, _extends$B.apply(null, arguments);
27999
+ }, _extends$C.apply(null, arguments);
27760
28000
  }
27761
28001
  function SvgForward(props) {
27762
- return /*#__PURE__*/createElement$1("svg", _extends$B({
28002
+ return /*#__PURE__*/createElement$1("svg", _extends$C({
27763
28003
  width: 18,
27764
28004
  height: 18,
27765
28005
  viewBox: "0 0 18.01 18.01",
27766
28006
  fill: "none",
27767
28007
  xmlns: "http://www.w3.org/2000/svg"
27768
- }, props), _path$A || (_path$A = /*#__PURE__*/createElement$1("path", {
28008
+ }, props), _path$B || (_path$B = /*#__PURE__*/createElement$1("path", {
27769
28009
  fillRule: "evenodd",
27770
28010
  clipRule: "evenodd",
27771
28011
  d: "M14.764 7.12a.86.86 0 00-.86-.86h-7.63C3.77 6.26 1.8 8.36 1.8 10.88c0 2.519 1.97 4.62 4.473 4.62H7.96a.86.86 0 000-1.72H6.273c-1.49 0-2.754-1.266-2.754-2.9 0-1.635 1.265-2.901 2.754-2.901h7.631a.86.86 0 00.86-.86z",
@@ -27778,29 +28018,6 @@ function SvgForward(props) {
27778
28018
  })));
27779
28019
  }
27780
28020
 
27781
- var _path$B;
27782
- function _extends$C() {
27783
- return _extends$C = Object.assign ? Object.assign.bind() : function (n) {
27784
- for (var e = 1; e < arguments.length; e++) {
27785
- var t = arguments[e];
27786
- for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
27787
- }
27788
- return n;
27789
- }, _extends$C.apply(null, arguments);
27790
- }
27791
- function SvgDeleteChannel(props) {
27792
- return /*#__PURE__*/createElement$1("svg", _extends$C({
27793
- width: 20,
27794
- height: 21,
27795
- viewBox: "0 0 20.01 21.01",
27796
- fill: "none",
27797
- xmlns: "http://www.w3.org/2000/svg"
27798
- }, props), _path$B || (_path$B = /*#__PURE__*/createElement$1("path", {
27799
- d: "M5 16.333C5 17.25 5.75 18 6.667 18h6.666C14.25 18 15 17.25 15 16.333V8c0-.917-.75-1.667-1.667-1.667H6.667C5.75 6.333 5 7.083 5 8v8.333zm10-12.5h-2.083l-.592-.591A.84.84 0 0011.742 3H8.258a.84.84 0 00-.583.242l-.592.591H5a.836.836 0 00-.833.834c0 .458.375.833.833.833h10a.836.836 0 00.833-.833.836.836 0 00-.833-.834z",
27800
- fill: "CurrentColor"
27801
- })));
27802
- }
27803
-
27804
28021
  var _path$C;
27805
28022
  function _extends$D() {
27806
28023
  return _extends$D = Object.assign ? Object.assign.bind() : function (n) {
@@ -27811,16 +28028,16 @@ function _extends$D() {
27811
28028
  return n;
27812
28029
  }, _extends$D.apply(null, arguments);
27813
28030
  }
27814
- function SvgVideoPlayerPlay(props) {
28031
+ function SvgDeleteChannel(props) {
27815
28032
  return /*#__PURE__*/createElement$1("svg", _extends$D({
27816
28033
  width: 20,
27817
- height: 20,
27818
- viewBox: "0 0 20.01 20.01",
28034
+ height: 21,
28035
+ viewBox: "0 0 20.01 21.01",
27819
28036
  fill: "none",
27820
28037
  xmlns: "http://www.w3.org/2000/svg"
27821
28038
  }, props), _path$C || (_path$C = /*#__PURE__*/createElement$1("path", {
27822
- d: "M16.28 8.913c.793.48.793 1.692 0 2.172l-8.265 4.997c-.787.475-1.765-.126-1.765-1.086V5.002c0-.96.979-1.561 1.765-1.086l8.265 4.997z",
27823
- fill: "#fff"
28039
+ d: "M5 16.333C5 17.25 5.75 18 6.667 18h6.666C14.25 18 15 17.25 15 16.333V8c0-.917-.75-1.667-1.667-1.667H6.667C5.75 6.333 5 7.083 5 8v8.333zm10-12.5h-2.083l-.592-.591A.84.84 0 0011.742 3H8.258a.84.84 0 00-.583.242l-.592.591H5a.836.836 0 00-.833.834c0 .458.375.833.833.833h10a.836.836 0 00.833-.833.836.836 0 00-.833-.834z",
28040
+ fill: "CurrentColor"
27824
28041
  })));
27825
28042
  }
27826
28043
 
@@ -27834,7 +28051,7 @@ function _extends$E() {
27834
28051
  return n;
27835
28052
  }, _extends$E.apply(null, arguments);
27836
28053
  }
27837
- function SvgVideoPlayerPause(props) {
28054
+ function SvgVideoPlayerPlay(props) {
27838
28055
  return /*#__PURE__*/createElement$1("svg", _extends$E({
27839
28056
  width: 20,
27840
28057
  height: 20,
@@ -27842,7 +28059,7 @@ function SvgVideoPlayerPause(props) {
27842
28059
  fill: "none",
27843
28060
  xmlns: "http://www.w3.org/2000/svg"
27844
28061
  }, props), _path$D || (_path$D = /*#__PURE__*/createElement$1("path", {
27845
- d: "M7.468 3.75c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77v9.936c0 .446-.046.607-.134.77a.908.908 0 01-.378.378c-.163.088-.324.134-.77.134H6.282c-.446 0-.607-.046-.77-.134a.908.908 0 01-.378-.378c-.088-.162-.134-.324-.134-.77V5.032c0-.446.046-.607.134-.77a.909.909 0 01.378-.378c.163-.088.324-.134.77-.134h1.186zm6.25 0c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77v9.936c0 .446-.046.607-.134.77a.908.908 0 01-.378.378c-.162.088-.324.134-.77.134h-1.186c-.446 0-.607-.046-.77-.134a.908.908 0 01-.378-.378c-.088-.162-.134-.324-.134-.77V5.032c0-.446.046-.607.134-.77a.908.908 0 01.378-.378c.162-.088.324-.134.77-.134h1.186z",
28062
+ d: "M16.28 8.913c.793.48.793 1.692 0 2.172l-8.265 4.997c-.787.475-1.765-.126-1.765-1.086V5.002c0-.96.979-1.561 1.765-1.086l8.265 4.997z",
27846
28063
  fill: "#fff"
27847
28064
  })));
27848
28065
  }
@@ -27857,7 +28074,7 @@ function _extends$F() {
27857
28074
  return n;
27858
28075
  }, _extends$F.apply(null, arguments);
27859
28076
  }
27860
- function SvgVolume(props) {
28077
+ function SvgVideoPlayerPause(props) {
27861
28078
  return /*#__PURE__*/createElement$1("svg", _extends$F({
27862
28079
  width: 20,
27863
28080
  height: 20,
@@ -27865,7 +28082,7 @@ function SvgVolume(props) {
27865
28082
  fill: "none",
27866
28083
  xmlns: "http://www.w3.org/2000/svg"
27867
28084
  }, props), _path$E || (_path$E = /*#__PURE__*/createElement$1("path", {
27868
- d: "M11.667 2.5c.46 0 .833.373.833.833v13.334c0 .46-.373.833-.833.833a2.062 2.062 0 01-1.433-.579L5.66 12.5H3.334c-.92 0-1.667-.746-1.667-1.667V9.167c0-.92.746-1.667 1.667-1.667h2.304l4.595-4.422c.385-.37.9-.578 1.434-.578zm4.487 2.786a.75.75 0 011.06 0 6.667 6.667 0 010 9.428.75.75 0 01-1.06-1.06 5.167 5.167 0 000-7.307.75.75 0 010-1.061zm-2.122 2.121a.75.75 0 011.061 0 3.667 3.667 0 010 5.186.75.75 0 01-1.06-1.06 2.167 2.167 0 000-3.065.75.75 0 010-1.06z",
28085
+ d: "M7.468 3.75c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77v9.936c0 .446-.046.607-.134.77a.908.908 0 01-.378.378c-.163.088-.324.134-.77.134H6.282c-.446 0-.607-.046-.77-.134a.908.908 0 01-.378-.378c-.088-.162-.134-.324-.134-.77V5.032c0-.446.046-.607.134-.77a.909.909 0 01.378-.378c.163-.088.324-.134.77-.134h1.186zm6.25 0c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77v9.936c0 .446-.046.607-.134.77a.908.908 0 01-.378.378c-.162.088-.324.134-.77.134h-1.186c-.446 0-.607-.046-.77-.134a.908.908 0 01-.378-.378c-.088-.162-.134-.324-.134-.77V5.032c0-.446.046-.607.134-.77a.908.908 0 01.378-.378c.162-.088.324-.134.77-.134h1.186z",
27869
28086
  fill: "#fff"
27870
28087
  })));
27871
28088
  }
@@ -27880,7 +28097,7 @@ function _extends$G() {
27880
28097
  return n;
27881
28098
  }, _extends$G.apply(null, arguments);
27882
28099
  }
27883
- function SvgVolumeMute(props) {
28100
+ function SvgVolume(props) {
27884
28101
  return /*#__PURE__*/createElement$1("svg", _extends$G({
27885
28102
  width: 20,
27886
28103
  height: 20,
@@ -27888,7 +28105,7 @@ function SvgVolumeMute(props) {
27888
28105
  fill: "none",
27889
28106
  xmlns: "http://www.w3.org/2000/svg"
27890
28107
  }, props), _path$F || (_path$F = /*#__PURE__*/createElement$1("path", {
27891
- d: "M4.763 2.746l11.655 11.658a.833.833 0 01-1.1 1.248l-.078-.07-2.74-2.74v3.825c0 .427-.321.78-.736.827l-.097.006a2.062 2.062 0 01-1.433-.579L5.66 12.5H3.334c-.92 0-1.667-.746-1.667-1.667V9.167c0-.92.746-1.667 1.667-1.667h2.304l.775-.747-2.829-2.828a.833.833 0 011.179-1.179zm6.904-.246c.46 0 .833.373.833.833v4.8L8.812 4.445l1.421-1.367a2.068 2.068 0 011.274-.572l.16-.006z",
28108
+ d: "M11.667 2.5c.46 0 .833.373.833.833v13.334c0 .46-.373.833-.833.833a2.062 2.062 0 01-1.433-.579L5.66 12.5H3.334c-.92 0-1.667-.746-1.667-1.667V9.167c0-.92.746-1.667 1.667-1.667h2.304l4.595-4.422c.385-.37.9-.578 1.434-.578zm4.487 2.786a.75.75 0 011.06 0 6.667 6.667 0 010 9.428.75.75 0 01-1.06-1.06 5.167 5.167 0 000-7.307.75.75 0 010-1.061zm-2.122 2.121a.75.75 0 011.061 0 3.667 3.667 0 010 5.186.75.75 0 01-1.06-1.06 2.167 2.167 0 000-3.065.75.75 0 010-1.06z",
27892
28109
  fill: "#fff"
27893
28110
  })));
27894
28111
  }
@@ -27903,7 +28120,7 @@ function _extends$H() {
27903
28120
  return n;
27904
28121
  }, _extends$H.apply(null, arguments);
27905
28122
  }
27906
- function SvgFullscreen(props) {
28123
+ function SvgVolumeMute(props) {
27907
28124
  return /*#__PURE__*/createElement$1("svg", _extends$H({
27908
28125
  width: 20,
27909
28126
  height: 20,
@@ -27911,9 +28128,7 @@ function SvgFullscreen(props) {
27911
28128
  fill: "none",
27912
28129
  xmlns: "http://www.w3.org/2000/svg"
27913
28130
  }, props), _path$G || (_path$G = /*#__PURE__*/createElement$1("path", {
27914
- fillRule: "evenodd",
27915
- clipRule: "evenodd",
27916
- d: "M11.875 3.344c0-.466.378-.844.844-.844h3.937c.466 0 .844.378.844.844V7.28a.844.844 0 01-1.688 0v-1.9l-3.434 3.434a.844.844 0 01-1.193-1.193l3.434-3.434h-1.9a.844.844 0 01-.844-.844zM8.815 11.185c.33.33.33.863 0 1.193l-3.434 3.434H7.28a.844.844 0 010 1.688H3.344a.844.844 0 01-.844-.844V12.72a.844.844 0 111.688 0v1.9l3.434-3.434a.844.844 0 011.193 0z",
28131
+ d: "M4.763 2.746l11.655 11.658a.833.833 0 01-1.1 1.248l-.078-.07-2.74-2.74v3.825c0 .427-.321.78-.736.827l-.097.006a2.062 2.062 0 01-1.433-.579L5.66 12.5H3.334c-.92 0-1.667-.746-1.667-1.667V9.167c0-.92.746-1.667 1.667-1.667h2.304l.775-.747-2.829-2.828a.833.833 0 011.179-1.179zm6.904-.246c.46 0 .833.373.833.833v4.8L8.812 4.445l1.421-1.367a2.068 2.068 0 011.274-.572l.16-.006z",
27917
28132
  fill: "#fff"
27918
28133
  })));
27919
28134
  }
@@ -27928,7 +28143,7 @@ function _extends$I() {
27928
28143
  return n;
27929
28144
  }, _extends$I.apply(null, arguments);
27930
28145
  }
27931
- function SvgFullscreenExit(props) {
28146
+ function SvgFullscreen(props) {
27932
28147
  return /*#__PURE__*/createElement$1("svg", _extends$I({
27933
28148
  width: 20,
27934
28149
  height: 20,
@@ -27936,6 +28151,31 @@ function SvgFullscreenExit(props) {
27936
28151
  fill: "none",
27937
28152
  xmlns: "http://www.w3.org/2000/svg"
27938
28153
  }, props), _path$H || (_path$H = /*#__PURE__*/createElement$1("path", {
28154
+ fillRule: "evenodd",
28155
+ clipRule: "evenodd",
28156
+ d: "M11.875 3.344c0-.466.378-.844.844-.844h3.937c.466 0 .844.378.844.844V7.28a.844.844 0 01-1.688 0v-1.9l-3.434 3.434a.844.844 0 01-1.193-1.193l3.434-3.434h-1.9a.844.844 0 01-.844-.844zM8.815 11.185c.33.33.33.863 0 1.193l-3.434 3.434H7.28a.844.844 0 010 1.688H3.344a.844.844 0 01-.844-.844V12.72a.844.844 0 111.688 0v1.9l3.434-3.434a.844.844 0 011.193 0z",
28157
+ fill: "#fff"
28158
+ })));
28159
+ }
28160
+
28161
+ var _path$I;
28162
+ function _extends$J() {
28163
+ return _extends$J = Object.assign ? Object.assign.bind() : function (n) {
28164
+ for (var e = 1; e < arguments.length; e++) {
28165
+ var t = arguments[e];
28166
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
28167
+ }
28168
+ return n;
28169
+ }, _extends$J.apply(null, arguments);
28170
+ }
28171
+ function SvgFullscreenExit(props) {
28172
+ return /*#__PURE__*/createElement$1("svg", _extends$J({
28173
+ width: 20,
28174
+ height: 20,
28175
+ viewBox: "0 0 20.01 20.01",
28176
+ fill: "none",
28177
+ xmlns: "http://www.w3.org/2000/svg"
28178
+ }, props), _path$I || (_path$I = /*#__PURE__*/createElement$1("path", {
27939
28179
  fillRule: "evenodd",
27940
28180
  clipRule: "evenodd",
27941
28181
  d: "M3.438 11.781c0-.466.377-.844.843-.844H8.22c.466 0 .844.378.844.844v3.938a.844.844 0 01-1.688 0v-1.9L3.94 17.252a.844.844 0 11-1.193-1.193l3.435-3.435h-1.9a.844.844 0 01-.844-.844zM17.253 2.747c.33.33.33.864 0 1.193l-3.435 3.435h1.899a.844.844 0 110 1.688h-3.936a.844.844 0 01-.844-.844V4.28a.844.844 0 011.688 0v1.9l3.435-3.434a.844.844 0 011.193 0z",
@@ -28529,7 +28769,10 @@ var CustomRadio = function CustomRadio(_ref) {
28529
28769
  border = _ref.border,
28530
28770
  borderRadius = _ref.borderRadius,
28531
28771
  size = _ref.size,
28532
- disabled = _ref.disabled;
28772
+ disabled = _ref.disabled,
28773
+ _ref$variant = _ref.variant,
28774
+ variant = _ref$variant === void 0 ? 'radio' : _ref$variant;
28775
+ var isCheckboxStyle = variant === 'checkbox';
28533
28776
  return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(CustomLabel$1, {
28534
28777
  isChecked: state,
28535
28778
  size: size,
@@ -28537,8 +28780,9 @@ var CustomRadio = function CustomRadio(_ref) {
28537
28780
  borderColor: borderColor,
28538
28781
  border: border,
28539
28782
  borderRadius: borderRadius,
28783
+ isCheckboxStyle: isCheckboxStyle,
28540
28784
  htmlFor: "radio-" + index
28541
- }), /*#__PURE__*/React__default.createElement(Radio, {
28785
+ }, state && isCheckboxStyle && /*#__PURE__*/React__default.createElement(SvgTick, null)), /*#__PURE__*/React__default.createElement(Radio, {
28542
28786
  disabled: disabled,
28543
28787
  type: 'radio',
28544
28788
  id: "radio-" + index,
@@ -28548,7 +28792,7 @@ var CustomRadio = function CustomRadio(_ref) {
28548
28792
  }
28549
28793
  }));
28550
28794
  };
28551
- var CustomLabel$1 = styled.label(_templateObject$o || (_templateObject$o = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n box-sizing: border-box;\n width: ", ";\n height: ", ";\n cursor: pointer;\n border: ", ";\n border-radius: ", ";\n\n ", "\n"])), function (props) {
28795
+ var CustomLabel$1 = styled.label(_templateObject$o || (_templateObject$o = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n box-sizing: border-box;\n width: ", ";\n height: ", ";\n cursor: pointer;\n border: ", ";\n border-radius: ", ";\n\n ", "\n\n ", "\n"])), function (props) {
28552
28796
  return props.size || '12px';
28553
28797
  }, function (props) {
28554
28798
  return props.size || '12px';
@@ -28557,7 +28801,9 @@ var CustomLabel$1 = styled.label(_templateObject$o || (_templateObject$o = _tagg
28557
28801
  }, function (props) {
28558
28802
  return props.borderRadius || '50%';
28559
28803
  }, function (props) {
28560
- return props.isChecked && "\n &::after {\n content: '';\n position: absolute;\n width: calc(100% - 3px);\n height: calc(100% - 3px);\n border-radius: 50%;\n background-color: " + props.checkedBorderColor + ";\n }\n ";
28804
+ return props.isChecked && !props.isCheckboxStyle && "\n &::after {\n content: '';\n position: absolute;\n width: calc(100% - 3px);\n height: calc(100% - 3px);\n border-radius: 50%;\n background-color: " + props.checkedBorderColor + ";\n }\n ";
28805
+ }, function (props) {
28806
+ return props.isCheckboxStyle && "\n background-color: " + (props.isChecked ? props.checkedBorderColor : 'transparent') + ";\n border: " + (props.isChecked ? 'none' : props.border || "1px solid " + props.borderColor) + ";\n &::after {\n display: none;\n }\n & > svg {\n width: calc(100% - 4px);\n height: calc(100% - 4px);\n }\n ";
28561
28807
  });
28562
28808
  var Radio = styled.input(_templateObject2$l || (_templateObject2$l = _taggedTemplateLiteralLoose(["\n display: none;\n"])));
28563
28809
 
@@ -29338,7 +29584,7 @@ var Message = function Message(_ref) {
29338
29584
  return mem === user.id ? 'You' : " " + systemMessageUserName(mem, contactsMap[mem], message.mentionedUsers);
29339
29585
  })) + " " + (messageMetas && messageMetas.m && messageMetas.m.length > 5 ? "and " + (messageMetas.m.length - 5) + " more" : '') : message.body === 'RM' ? " removed " + (messageMetas && messageMetas.m && messageMetas.m.slice(0, 5).map(function (mem) {
29340
29586
  return mem === user.id ? 'You' : " " + systemMessageUserName(mem, contactsMap[mem], message.mentionedUsers);
29341
- })) + " " + (messageMetas && messageMetas.m && messageMetas.m.length > 5 ? "and " + (messageMetas.m.length - 5) + " more" : '') : message.body === 'LG' ? ' left the group' : message.body === 'JL' ? " joined via invite link" : ''));
29587
+ })) + " " + (messageMetas && messageMetas.m && messageMetas.m.length > 5 ? "and " + (messageMetas.m.length - 5) + " more" : '') : message.body === 'LG' ? ' left the group' : message.body === 'JL' ? " joined via invite link" : message.body === 'ADM' ? !Number(messageMetas === null || messageMetas === void 0 ? void 0 : messageMetas.autoDeletePeriod) ? ' disabled disappearing messages' : " set the disappearing messages timer to " + formatDisappearingMessageTime(messageMetas !== null && messageMetas !== void 0 && messageMetas.autoDeletePeriod ? Number(messageMetas.autoDeletePeriod) : null) : ''));
29342
29588
  };
29343
29589
  var SystemMessage = /*#__PURE__*/React__default.memo(Message, function (prevProps, nextProps) {
29344
29590
  return prevProps.message.deliveryStatus === nextProps.message.deliveryStatus && prevProps.message.state === nextProps.message.state && prevProps.message.userMarkers === nextProps.message.userMarkers && prevProps.nextMessage === nextProps.nextMessage && prevProps.connectionStatus === nextProps.connectionStatus && prevProps.tabIsActive === nextProps.tabIsActive;
@@ -29359,18 +29605,18 @@ var Container$c = styled.div(_templateObject$r || (_templateObject$r = _taggedTe
29359
29605
  return props.borderRadius || '14px';
29360
29606
  });
29361
29607
 
29362
- var _circle$1, _path$I;
29363
- function _extends$J() {
29364
- return _extends$J = Object.assign ? Object.assign.bind() : function (n) {
29608
+ var _circle$1, _path$J;
29609
+ function _extends$K() {
29610
+ return _extends$K = Object.assign ? Object.assign.bind() : function (n) {
29365
29611
  for (var e = 1; e < arguments.length; e++) {
29366
29612
  var t = arguments[e];
29367
29613
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29368
29614
  }
29369
29615
  return n;
29370
- }, _extends$J.apply(null, arguments);
29616
+ }, _extends$K.apply(null, arguments);
29371
29617
  }
29372
29618
  function SvgErrorIcon(props) {
29373
- return /*#__PURE__*/createElement$1("svg", _extends$J({
29619
+ return /*#__PURE__*/createElement$1("svg", _extends$K({
29374
29620
  width: 32,
29375
29621
  height: 32,
29376
29622
  viewBox: "0 0 32.01 32.01",
@@ -29382,7 +29628,7 @@ function SvgErrorIcon(props) {
29382
29628
  r: 12,
29383
29629
  stroke: "#FA4C56",
29384
29630
  strokeWidth: 2
29385
- })), _path$I || (_path$I = /*#__PURE__*/createElement$1("path", {
29631
+ })), _path$J || (_path$J = /*#__PURE__*/createElement$1("path", {
29386
29632
  fillRule: "evenodd",
29387
29633
  clipRule: "evenodd",
29388
29634
  d: "M16 9c.552 0 1 .537 1 1.2v6c0 .663-.448 1.2-1 1.2s-1-.537-1-1.2v-6c0-.663.448-1.2 1-1.2zM15 20.994c0-.55.445-.994.994-.994h.012a.994.994 0 110 1.988h-.012a.994.994 0 01-.994-.994z",
@@ -29390,24 +29636,24 @@ function SvgErrorIcon(props) {
29390
29636
  })));
29391
29637
  }
29392
29638
 
29393
- var _path$J;
29394
- function _extends$K() {
29395
- return _extends$K = Object.assign ? Object.assign.bind() : function (n) {
29639
+ var _path$K;
29640
+ function _extends$L() {
29641
+ return _extends$L = Object.assign ? Object.assign.bind() : function (n) {
29396
29642
  for (var e = 1; e < arguments.length; e++) {
29397
29643
  var t = arguments[e];
29398
29644
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29399
29645
  }
29400
29646
  return n;
29401
- }, _extends$K.apply(null, arguments);
29647
+ }, _extends$L.apply(null, arguments);
29402
29648
  }
29403
29649
  function SvgSelectionIcon(props) {
29404
- return /*#__PURE__*/createElement$1("svg", _extends$K({
29650
+ return /*#__PURE__*/createElement$1("svg", _extends$L({
29405
29651
  width: 24,
29406
29652
  height: 24,
29407
29653
  viewBox: "0 0 24.01 24.01",
29408
29654
  fill: "none",
29409
29655
  xmlns: "http://www.w3.org/2000/svg"
29410
- }, props), _path$J || (_path$J = /*#__PURE__*/createElement$1("path", {
29656
+ }, props), _path$K || (_path$K = /*#__PURE__*/createElement$1("path", {
29411
29657
  fillRule: "evenodd",
29412
29658
  clipRule: "evenodd",
29413
29659
  d: "M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11zm5.749-13.501a1 1 0 00-1.414-1.414l-6.168 6.167-2.502-2.5a1 1 0 00-1.414 1.413l3.209 3.209a1 1 0 001.414 0l6.875-6.875z",
@@ -29678,46 +29924,46 @@ var ReactionItem$1 = styled.li(_templateObject0$8 || (_templateObject0$8 = _tagg
29678
29924
  return props.hoverBackgroundColor;
29679
29925
  }, UserStatus);
29680
29926
 
29681
- var _path$K;
29682
- function _extends$L() {
29683
- return _extends$L = Object.assign ? Object.assign.bind() : function (n) {
29927
+ var _path$L;
29928
+ function _extends$M() {
29929
+ return _extends$M = Object.assign ? Object.assign.bind() : function (n) {
29684
29930
  for (var e = 1; e < arguments.length; e++) {
29685
29931
  var t = arguments[e];
29686
29932
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29687
29933
  }
29688
29934
  return n;
29689
- }, _extends$L.apply(null, arguments);
29935
+ }, _extends$M.apply(null, arguments);
29690
29936
  }
29691
29937
  function SvgDeleteIcon(props) {
29692
- return /*#__PURE__*/createElement$1("svg", _extends$L({
29938
+ return /*#__PURE__*/createElement$1("svg", _extends$M({
29693
29939
  width: 20,
29694
29940
  height: 20,
29695
29941
  fill: "none",
29696
29942
  xmlns: "http://www.w3.org/2000/svg"
29697
- }, props), _path$K || (_path$K = /*#__PURE__*/createElement$1("path", {
29943
+ }, props), _path$L || (_path$L = /*#__PURE__*/createElement$1("path", {
29698
29944
  d: "M15.714 7.143v7.5a3.214 3.214 0 01-3.214 3.214h-5a3.214 3.214 0 01-3.214-3.214v-7.5h-.507a.922.922 0 01-.922-.922V5.178c0-1.085.88-1.964 1.964-1.964h1.18a2.144 2.144 0 011.856-1.071h4.286c.783 0 1.482.423 1.856 1.071h1.18c1.085 0 1.964.88 1.964 1.964v1.043a.922.922 0 01-.922.922h-.507zM15 5.714h.714v-.536a.536.536 0 00-.535-.535h-1.652a.714.714 0 01-.692-.537.715.715 0 00-.692-.535H7.857a.715.715 0 00-.692.535.714.714 0 01-.691.537H4.82a.536.536 0 00-.535.535v.536H15zM5.714 7.143v7.5c0 .986.8 1.785 1.786 1.785h5c.986 0 1.786-.8 1.786-1.785v-7.5H5.714z",
29699
29945
  fill: "CurrentColor"
29700
29946
  })));
29701
29947
  }
29702
29948
 
29703
- var _path$L;
29704
- function _extends$M() {
29705
- return _extends$M = Object.assign ? Object.assign.bind() : function (n) {
29949
+ var _path$M;
29950
+ function _extends$N() {
29951
+ return _extends$N = Object.assign ? Object.assign.bind() : function (n) {
29706
29952
  for (var e = 1; e < arguments.length; e++) {
29707
29953
  var t = arguments[e];
29708
29954
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29709
29955
  }
29710
29956
  return n;
29711
- }, _extends$M.apply(null, arguments);
29957
+ }, _extends$N.apply(null, arguments);
29712
29958
  }
29713
29959
  function SvgCheckCircle(props) {
29714
- return /*#__PURE__*/createElement$1("svg", _extends$M({
29960
+ return /*#__PURE__*/createElement$1("svg", _extends$N({
29715
29961
  width: 18,
29716
29962
  height: 18,
29717
29963
  viewBox: "0 0 18.01 18.01",
29718
29964
  fill: "none",
29719
29965
  xmlns: "http://www.w3.org/2000/svg"
29720
- }, props), _path$L || (_path$L = /*#__PURE__*/createElement$1("path", {
29966
+ }, props), _path$M || (_path$M = /*#__PURE__*/createElement$1("path", {
29721
29967
  fillRule: "evenodd",
29722
29968
  clipRule: "evenodd",
29723
29969
  d: "M9 2.6a6.4 6.4 0 100 12.8A6.4 6.4 0 009 2.6zm-5.657.743a8 8 0 1111.314 11.314A8 8 0 013.343 3.343zm8.623 3.491a.8.8 0 010 1.132l-3.2 3.2a.8.8 0 01-1.132 0l-1.6-1.6a.8.8 0 011.132-1.132L8.2 9.47l2.634-2.635a.8.8 0 011.132 0z",
@@ -29725,23 +29971,23 @@ function SvgCheckCircle(props) {
29725
29971
  })));
29726
29972
  }
29727
29973
 
29728
- var _path$M;
29729
- function _extends$N() {
29730
- return _extends$N = Object.assign ? Object.assign.bind() : function (n) {
29974
+ var _path$N;
29975
+ function _extends$O() {
29976
+ return _extends$O = Object.assign ? Object.assign.bind() : function (n) {
29731
29977
  for (var e = 1; e < arguments.length; e++) {
29732
29978
  var t = arguments[e];
29733
29979
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29734
29980
  }
29735
29981
  return n;
29736
- }, _extends$N.apply(null, arguments);
29982
+ }, _extends$O.apply(null, arguments);
29737
29983
  }
29738
29984
  function SvgReportIcon(props) {
29739
- return /*#__PURE__*/createElement$1("svg", _extends$N({
29985
+ return /*#__PURE__*/createElement$1("svg", _extends$O({
29740
29986
  width: 18,
29741
29987
  height: 18,
29742
29988
  fill: "none",
29743
29989
  xmlns: "http://www.w3.org/2000/svg"
29744
- }, props), _path$M || (_path$M = /*#__PURE__*/createElement$1("path", {
29990
+ }, props), _path$N || (_path$N = /*#__PURE__*/createElement$1("path", {
29745
29991
  fillRule: "evenodd",
29746
29992
  clipRule: "evenodd",
29747
29993
  d: "M6.623 1.5h4.754c.51-.001.908.16 1.274.528l3.321 3.32c.362.361.53.756.528 1.275v4.754c.001.519-.166.914-.528 1.274l-3.32 3.321c-.36.362-.756.53-1.275.528H6.623a1.675 1.675 0 01-1.274-.528l-3.321-3.32a1.675 1.675 0 01-.528-1.275V6.623a1.675 1.675 0 01.528-1.274l3.32-3.321A1.675 1.675 0 016.624 1.5zm-.337 1.52L3.02 6.285c-.136.136-.155.183-.155.375v4.678c0 .19.019.239.155.375l3.267 3.267c.136.136.183.155.375.155h4.678c.192 0 .239-.019.375-.155l3.267-3.267c.136-.136.155-.186.155-.375V6.66c0-.192-.02-.24-.155-.375L11.714 3.02c-.137-.136-.184-.155-.375-.155H6.66c-.192 0-.241.021-.375.155zm3.472 9.01a.758.758 0 11-1.516 0 .758.758 0 011.516 0zm-.076-6.136a.682.682 0 00-1.364 0v3.94a.682.682 0 001.364 0v-3.94z",
@@ -29749,24 +29995,24 @@ function SvgReportIcon(props) {
29749
29995
  })));
29750
29996
  }
29751
29997
 
29752
- var _path$N;
29753
- function _extends$O() {
29754
- return _extends$O = Object.assign ? Object.assign.bind() : function (n) {
29998
+ var _path$O;
29999
+ function _extends$P() {
30000
+ return _extends$P = Object.assign ? Object.assign.bind() : function (n) {
29755
30001
  for (var e = 1; e < arguments.length; e++) {
29756
30002
  var t = arguments[e];
29757
30003
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29758
30004
  }
29759
30005
  return n;
29760
- }, _extends$O.apply(null, arguments);
30006
+ }, _extends$P.apply(null, arguments);
29761
30007
  }
29762
30008
  function SvgEditIcon(props) {
29763
- return /*#__PURE__*/createElement$1("svg", _extends$O({
30009
+ return /*#__PURE__*/createElement$1("svg", _extends$P({
29764
30010
  width: 20,
29765
30011
  height: 20,
29766
30012
  viewBox: "0 0 20.01 20.01",
29767
30013
  fill: "none",
29768
30014
  xmlns: "http://www.w3.org/2000/svg"
29769
- }, props), _path$N || (_path$N = /*#__PURE__*/createElement$1("path", {
30015
+ }, props), _path$O || (_path$O = /*#__PURE__*/createElement$1("path", {
29770
30016
  fillRule: "evenodd",
29771
30017
  clipRule: "evenodd",
29772
30018
  d: "M11.883 6.232l-7.531 7.53a.917.917 0 00-.269.65v1.422c0 .046.038.083.084.083h1.422a.917.917 0 00.648-.268l7.531-7.531-1.885-1.886zm1.06-1.06l1.886 1.885.943-.943a.5.5 0 000-.707l-1.179-1.179a.5.5 0 00-.707 0l-.943.943zm-9.652 7.53l9.534-9.534a2 2 0 012.829 0l1.178 1.178a2 2 0 010 2.829l-9.534 9.534a2.417 2.417 0 01-1.709.708H4.167a1.583 1.583 0 01-1.584-1.583V14.41c0-.64.255-1.256.708-1.709z",
@@ -29774,47 +30020,47 @@ function SvgEditIcon(props) {
29774
30020
  })));
29775
30021
  }
29776
30022
 
29777
- var _path$O;
29778
- function _extends$P() {
29779
- return _extends$P = Object.assign ? Object.assign.bind() : function (n) {
30023
+ var _path$P;
30024
+ function _extends$Q() {
30025
+ return _extends$Q = Object.assign ? Object.assign.bind() : function (n) {
29780
30026
  for (var e = 1; e < arguments.length; e++) {
29781
30027
  var t = arguments[e];
29782
30028
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29783
30029
  }
29784
30030
  return n;
29785
- }, _extends$P.apply(null, arguments);
30031
+ }, _extends$Q.apply(null, arguments);
29786
30032
  }
29787
30033
  function SvgResend(props) {
29788
- return /*#__PURE__*/createElement$1("svg", _extends$P({
30034
+ return /*#__PURE__*/createElement$1("svg", _extends$Q({
29789
30035
  width: 17,
29790
30036
  height: 15,
29791
30037
  fill: "none",
29792
30038
  xmlns: "http://www.w3.org/2000/svg"
29793
- }, props), _path$O || (_path$O = /*#__PURE__*/createElement$1("path", {
30039
+ }, props), _path$P || (_path$P = /*#__PURE__*/createElement$1("path", {
29794
30040
  d: "M15.913 7.425l-7.23-6.281a.1.1 0 00-.165.075v3.585a.101.101 0 01-.095.101c-.616.037-4.069.305-5.627 1.728C.894 8.371.966 12.608 1.02 13.726c.005.093.123.126.179.05.49-.66 2.003-2.597 3.359-3.243 1.268-.604 3.411-.476 3.872-.44a.097.097 0 01.089.098v3.59a.1.1 0 00.166.075l7.23-6.28a.1.1 0 000-.151z",
29795
30041
  stroke: "currentColor",
29796
30042
  strokeWidth: 1.4
29797
30043
  })));
29798
30044
  }
29799
30045
 
29800
- var _path$P, _path2$4;
29801
- function _extends$Q() {
29802
- return _extends$Q = Object.assign ? Object.assign.bind() : function (n) {
30046
+ var _path$Q, _path2$4;
30047
+ function _extends$R() {
30048
+ return _extends$R = Object.assign ? Object.assign.bind() : function (n) {
29803
30049
  for (var e = 1; e < arguments.length; e++) {
29804
30050
  var t = arguments[e];
29805
30051
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29806
30052
  }
29807
30053
  return n;
29808
- }, _extends$Q.apply(null, arguments);
30054
+ }, _extends$R.apply(null, arguments);
29809
30055
  }
29810
30056
  function SvgEmojiSmileIcon(props) {
29811
- return /*#__PURE__*/createElement$1("svg", _extends$Q({
30057
+ return /*#__PURE__*/createElement$1("svg", _extends$R({
29812
30058
  width: 20,
29813
30059
  height: 20,
29814
30060
  viewBox: "0 0 20.01 20.01",
29815
30061
  fill: "none",
29816
30062
  xmlns: "http://www.w3.org/2000/svg"
29817
- }, props), _path$P || (_path$P = /*#__PURE__*/createElement$1("path", {
30063
+ }, props), _path$Q || (_path$Q = /*#__PURE__*/createElement$1("path", {
29818
30064
  fillRule: "evenodd",
29819
30065
  clipRule: "evenodd",
29820
30066
  d: "M10 3.043a6.957 6.957 0 100 13.914 6.957 6.957 0 000-13.914zM1.667 10a8.333 8.333 0 1116.666 0 8.333 8.333 0 01-16.666 0zm4.97-2.293a1.07 1.07 0 112.14 0 1.07 1.07 0 01-2.14 0zm4.586 0a1.07 1.07 0 112.141 0 1.07 1.07 0 01-2.14 0z",
@@ -29827,24 +30073,24 @@ function SvgEmojiSmileIcon(props) {
29827
30073
  })));
29828
30074
  }
29829
30075
 
29830
- var _path$Q;
29831
- function _extends$R() {
29832
- return _extends$R = Object.assign ? Object.assign.bind() : function (n) {
30076
+ var _path$R;
30077
+ function _extends$S() {
30078
+ return _extends$S = Object.assign ? Object.assign.bind() : function (n) {
29833
30079
  for (var e = 1; e < arguments.length; e++) {
29834
30080
  var t = arguments[e];
29835
30081
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29836
30082
  }
29837
30083
  return n;
29838
- }, _extends$R.apply(null, arguments);
30084
+ }, _extends$S.apply(null, arguments);
29839
30085
  }
29840
30086
  function SvgReplyIcon(props) {
29841
- return /*#__PURE__*/createElement$1("svg", _extends$R({
30087
+ return /*#__PURE__*/createElement$1("svg", _extends$S({
29842
30088
  width: 20,
29843
30089
  height: 20,
29844
30090
  viewBox: "0 0 20.01 20.01",
29845
30091
  fill: "none",
29846
30092
  xmlns: "http://www.w3.org/2000/svg"
29847
- }, props), _path$Q || (_path$Q = /*#__PURE__*/createElement$1("path", {
30093
+ }, props), _path$R || (_path$R = /*#__PURE__*/createElement$1("path", {
29848
30094
  fillRule: "evenodd",
29849
30095
  clipRule: "evenodd",
29850
30096
  d: "M6.364 3.637a.75.75 0 010 1.06L4.31 6.75h9.439a4.5 4.5 0 110 9H10a.75.75 0 010-1.5h3.75a3 3 0 100-6H4.31l2.054 2.053a.75.75 0 01-1.061 1.061L1.97 8.031a.75.75 0 010-1.061l3.333-3.333a.75.75 0 011.06 0z",
@@ -29852,23 +30098,23 @@ function SvgReplyIcon(props) {
29852
30098
  })));
29853
30099
  }
29854
30100
 
29855
- var _path$R, _path2$5;
29856
- function _extends$S() {
29857
- return _extends$S = Object.assign ? Object.assign.bind() : function (n) {
30101
+ var _path$S, _path2$5;
30102
+ function _extends$T() {
30103
+ return _extends$T = Object.assign ? Object.assign.bind() : function (n) {
29858
30104
  for (var e = 1; e < arguments.length; e++) {
29859
30105
  var t = arguments[e];
29860
30106
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29861
30107
  }
29862
30108
  return n;
29863
- }, _extends$S.apply(null, arguments);
30109
+ }, _extends$T.apply(null, arguments);
29864
30110
  }
29865
30111
  function SvgRetractVote(props) {
29866
- return /*#__PURE__*/createElement$1("svg", _extends$S({
30112
+ return /*#__PURE__*/createElement$1("svg", _extends$T({
29867
30113
  width: 18,
29868
30114
  height: 18,
29869
30115
  fill: "none",
29870
30116
  xmlns: "http://www.w3.org/2000/svg"
29871
- }, props), _path$R || (_path$R = /*#__PURE__*/createElement$1("path", {
30117
+ }, props), _path$S || (_path$S = /*#__PURE__*/createElement$1("path", {
29872
30118
  d: "M10.998 1.875c.746 0 1.35 0 1.84.04.507.041.956.129 1.374.341.404.206.762.488 1.056.826a.748.748 0 01-1.13.98 2.008 2.008 0 00-.605-.472c-.171-.088-.402-.15-.816-.184-.421-.035-.965-.036-1.749-.036H7.032c-.784 0-1.327.001-1.75.036-.413.034-.644.096-.815.184-.378.192-.685.5-.877.877-.088.171-.15.402-.184.816-.035.422-.036.965-.036 1.749v3.936c0 .784.001 1.328.036 1.75.034.413.096.643.184.815.192.378.5.685.877.877.171.088.402.15.816.184.422.035.965.036 1.749.036h3.936c.784 0 1.328-.001 1.75-.036.413-.034.643-.096.815-.184.378-.192.685-.5.877-.877.083-.162.143-.377.178-.75a.749.749 0 011.49.14c-.044.471-.133.894-.334 1.29a3.505 3.505 0 01-1.532 1.53c-.418.213-.867.3-1.373.342-.49.04-1.095.04-1.84.04H7.001c-.746 0-1.35 0-1.84-.04-.507-.041-.956-.129-1.374-.341a3.505 3.505 0 01-1.532-1.532c-.212-.418-.3-.867-.341-1.373-.04-.49-.04-1.095-.04-1.84V7.001c0-.746 0-1.35.04-1.84.041-.507.129-.956.341-1.374a3.506 3.506 0 011.532-1.532c.418-.212.867-.3 1.373-.341.49-.04 1.095-.04 1.84-.04h3.997z",
29873
30119
  fill: "#818C99"
29874
30120
  })), _path2$5 || (_path2$5 = /*#__PURE__*/createElement$1("path", {
@@ -29877,23 +30123,23 @@ function SvgRetractVote(props) {
29877
30123
  })));
29878
30124
  }
29879
30125
 
29880
- var _path$S, _path2$6;
29881
- function _extends$T() {
29882
- return _extends$T = Object.assign ? Object.assign.bind() : function (n) {
30126
+ var _path$T, _path2$6;
30127
+ function _extends$U() {
30128
+ return _extends$U = Object.assign ? Object.assign.bind() : function (n) {
29883
30129
  for (var e = 1; e < arguments.length; e++) {
29884
30130
  var t = arguments[e];
29885
30131
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29886
30132
  }
29887
30133
  return n;
29888
- }, _extends$T.apply(null, arguments);
30134
+ }, _extends$U.apply(null, arguments);
29889
30135
  }
29890
30136
  function SvgEndVote(props) {
29891
- return /*#__PURE__*/createElement$1("svg", _extends$T({
30137
+ return /*#__PURE__*/createElement$1("svg", _extends$U({
29892
30138
  width: 18,
29893
30139
  height: 18,
29894
30140
  fill: "none",
29895
30141
  xmlns: "http://www.w3.org/2000/svg"
29896
- }, props), _path$S || (_path$S = /*#__PURE__*/createElement$1("path", {
30142
+ }, props), _path$T || (_path$T = /*#__PURE__*/createElement$1("path", {
29897
30143
  d: "M11.265 6.802a.783.783 0 111.107 1.108L8.771 11.51a.783.783 0 01-1.108 0L5.627 9.476a.783.783 0 011.108-1.108L8.217 9.85l3.048-3.048z",
29898
30144
  fill: "#818C99"
29899
30145
  })), _path2$6 || (_path2$6 = /*#__PURE__*/createElement$1("path", {
@@ -29904,24 +30150,24 @@ function SvgEndVote(props) {
29904
30150
  })));
29905
30151
  }
29906
30152
 
29907
- var _path$T;
29908
- function _extends$U() {
29909
- return _extends$U = Object.assign ? Object.assign.bind() : function (n) {
30153
+ var _path$U;
30154
+ function _extends$V() {
30155
+ return _extends$V = Object.assign ? Object.assign.bind() : function (n) {
29910
30156
  for (var e = 1; e < arguments.length; e++) {
29911
30157
  var t = arguments[e];
29912
30158
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29913
30159
  }
29914
30160
  return n;
29915
- }, _extends$U.apply(null, arguments);
30161
+ }, _extends$V.apply(null, arguments);
29916
30162
  }
29917
30163
  function SvgCopyIcon(props) {
29918
- return /*#__PURE__*/createElement$1("svg", _extends$U({
30164
+ return /*#__PURE__*/createElement$1("svg", _extends$V({
29919
30165
  width: 20,
29920
30166
  height: 20,
29921
30167
  viewBox: "0 0 20.01 20.01",
29922
30168
  fill: "none",
29923
30169
  xmlns: "http://www.w3.org/2000/svg"
29924
- }, props), _path$T || (_path$T = /*#__PURE__*/createElement$1("path", {
30170
+ }, props), _path$U || (_path$U = /*#__PURE__*/createElement$1("path", {
29925
30171
  fillRule: "evenodd",
29926
30172
  clipRule: "evenodd",
29927
30173
  d: "M14.121 3.564c-.497-.041-1.134-.042-2.042-.042H6.401a.72.72 0 010-1.439h5.71c.868 0 1.565 0 2.127.046.578.047 1.079.146 1.54.381a3.919 3.919 0 011.711 1.712c.235.46.334.961.382 1.54.046.562.046 1.258.046 2.127v5.71a.72.72 0 01-1.44 0V7.92c0-.908 0-1.545-.041-2.043-.04-.489-.115-.778-.229-1.002a2.48 2.48 0 00-1.083-1.083c-.224-.114-.514-.19-1.003-.23zM5.334 4.882h6.533c.424 0 .785 0 1.081.024.311.025.614.081.904.229.436.222.79.577 1.013 1.013.147.29.203.592.229.903.024.297.024.657.024 1.081v6.534c0 .424 0 .784-.024 1.08-.026.312-.082.615-.229.904a2.32 2.32 0 01-1.013 1.014c-.29.147-.593.203-.904.228-.296.024-.657.024-1.08.024H5.333c-.424 0-.785 0-1.081-.024-.311-.025-.614-.08-.904-.228a2.32 2.32 0 01-1.013-1.014c-.147-.29-.203-.592-.229-.903-.024-.296-.024-.657-.024-1.081V8.132c0-.424 0-.784.024-1.08.026-.312.082-.615.229-.904a2.319 2.319 0 011.013-1.013c.29-.148.593-.204.904-.229.296-.024.657-.024 1.08-.024zM4.37 6.34c-.222.018-.314.05-.367.076a.88.88 0 00-.384.385c-.027.052-.059.144-.077.367-.019.23-.02.532-.02.991v6.478c0 .46.001.761.02.992.018.222.05.314.077.367a.88.88 0 00.384.384c.053.027.145.058.367.076.23.02.532.02.992.02h6.477c.46 0 .761 0 .992-.02.222-.018.314-.05.367-.076a.88.88 0 00.384-.384c.027-.053.059-.145.077-.367.019-.231.02-.533.02-.992V8.16c0-.46-.001-.76-.02-.991-.018-.223-.05-.315-.077-.367a.88.88 0 00-.384-.385c-.053-.027-.145-.058-.367-.076-.23-.02-.532-.02-.992-.02H5.362c-.46 0-.761 0-.992.02z",
@@ -29929,24 +30175,24 @@ function SvgCopyIcon(props) {
29929
30175
  })));
29930
30176
  }
29931
30177
 
29932
- var _path$U;
29933
- function _extends$V() {
29934
- return _extends$V = Object.assign ? Object.assign.bind() : function (n) {
30178
+ var _path$V;
30179
+ function _extends$W() {
30180
+ return _extends$W = Object.assign ? Object.assign.bind() : function (n) {
29935
30181
  for (var e = 1; e < arguments.length; e++) {
29936
30182
  var t = arguments[e];
29937
30183
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29938
30184
  }
29939
30185
  return n;
29940
- }, _extends$V.apply(null, arguments);
30186
+ }, _extends$W.apply(null, arguments);
29941
30187
  }
29942
30188
  function SvgReplyInThreadIcon(props) {
29943
- return /*#__PURE__*/createElement$1("svg", _extends$V({
30189
+ return /*#__PURE__*/createElement$1("svg", _extends$W({
29944
30190
  width: 20,
29945
30191
  height: 20,
29946
30192
  viewBox: "0 0 20.01 20.01",
29947
30193
  fill: "none",
29948
30194
  xmlns: "http://www.w3.org/2000/svg"
29949
- }, props), _path$U || (_path$U = /*#__PURE__*/createElement$1("path", {
30195
+ }, props), _path$V || (_path$V = /*#__PURE__*/createElement$1("path", {
29950
30196
  fillRule: "evenodd",
29951
30197
  clipRule: "evenodd",
29952
30198
  d: "M6.469 1.75h7.062c.674 0 1.225 0 1.672.037.463.037.882.118 1.273.317a3.25 3.25 0 011.42 1.42c.199.391.28.81.317 1.273.037.448.037.998.037 1.672v4.562c0 .674 0 1.224-.037 1.672-.037.463-.118.882-.317 1.273a3.25 3.25 0 01-1.42 1.42c-.391.199-.81.28-1.273.317-.447.037-.998.037-1.671.037h-2.129c-.55 0-.72.004-.878.036a1.752 1.752 0 00-.444.156c-.143.073-.279.177-.708.52l-2.01 1.608a6.553 6.553 0 01-.441.334c-.129.085-.366.229-.67.23-.356 0-.692-.162-.914-.44-.19-.238-.226-.513-.24-.666-.015-.16-.015-.356-.015-.554v-1.229c-.358-.008-.655-.034-.924-.106a3.25 3.25 0 01-2.298-2.298c-.111-.415-.111-.896-.111-1.566V6.469c0-.674 0-1.224.037-1.672.037-.463.118-.882.317-1.272a3.25 3.25 0 011.42-1.42c.391-.2.81-.28 1.273-.318.448-.037.998-.037 1.672-.037zm-1.55 1.532c-.37.03-.57.085-.713.159a1.75 1.75 0 00-.765.765c-.074.144-.13.343-.16.713-.03.38-.03.869-.03 1.581v5.167c0 .823.006 1.087.059 1.286a1.75 1.75 0 001.237 1.237c.199.054.463.06 1.286.06a.75.75 0 01.75.75v1.773l1.853-1.482.053-.042c.355-.285.614-.492.91-.643.26-.133.538-.23.825-.29.324-.066.657-.066 1.112-.066H13.5c.713 0 1.202 0 1.581-.032.37-.03.57-.085.713-.159a1.75 1.75 0 00.765-.764c.074-.145.13-.344.16-.714.03-.38.031-.869.031-1.581V6.5c0-.712 0-1.202-.032-1.58-.03-.371-.085-.57-.159-.714a1.75 1.75 0 00-.765-.765c-.144-.074-.343-.13-.713-.16-.38-.03-.868-.031-1.58-.031h-7c-.713 0-1.203 0-1.582.032zm.164 3.801a.75.75 0 01.75-.75H10a.75.75 0 010 1.5H5.833a.75.75 0 01-.75-.75zm0 2.917a.75.75 0 01.75-.75H12.5a.75.75 0 010 1.5H5.833a.75.75 0 01-.75-.75z",
@@ -29954,24 +30200,24 @@ function SvgReplyInThreadIcon(props) {
29954
30200
  })));
29955
30201
  }
29956
30202
 
29957
- var _path$V;
29958
- function _extends$W() {
29959
- return _extends$W = Object.assign ? Object.assign.bind() : function (n) {
30203
+ var _path$W;
30204
+ function _extends$X() {
30205
+ return _extends$X = Object.assign ? Object.assign.bind() : function (n) {
29960
30206
  for (var e = 1; e < arguments.length; e++) {
29961
30207
  var t = arguments[e];
29962
30208
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29963
30209
  }
29964
30210
  return n;
29965
- }, _extends$W.apply(null, arguments);
30211
+ }, _extends$X.apply(null, arguments);
29966
30212
  }
29967
30213
  function SvgArrowDown(props) {
29968
- return /*#__PURE__*/createElement$1("svg", _extends$W({
30214
+ return /*#__PURE__*/createElement$1("svg", _extends$X({
29969
30215
  width: 20,
29970
30216
  height: 8,
29971
30217
  viewBox: "0 0 20 20",
29972
30218
  fill: "none",
29973
30219
  xmlns: "http://www.w3.org/2000/svg"
29974
- }, props), _path$V || (_path$V = /*#__PURE__*/createElement$1("path", {
30220
+ }, props), _path$W || (_path$W = /*#__PURE__*/createElement$1("path", {
29975
30221
  fillRule: "evenodd",
29976
30222
  clipRule: "evenodd",
29977
30223
  d: "M10 8C7 8 4 0 0 0h20c-3.975 0-7 8-10 8z",
@@ -29979,23 +30225,23 @@ function SvgArrowDown(props) {
29979
30225
  })));
29980
30226
  }
29981
30227
 
29982
- var _path$W, _path2$7, _path3$2;
29983
- function _extends$X() {
29984
- return _extends$X = Object.assign ? Object.assign.bind() : function (n) {
30228
+ var _path$X, _path2$7, _path3$2;
30229
+ function _extends$Y() {
30230
+ return _extends$Y = Object.assign ? Object.assign.bind() : function (n) {
29985
30231
  for (var e = 1; e < arguments.length; e++) {
29986
30232
  var t = arguments[e];
29987
30233
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
29988
30234
  }
29989
30235
  return n;
29990
- }, _extends$X.apply(null, arguments);
30236
+ }, _extends$Y.apply(null, arguments);
29991
30237
  }
29992
30238
  function SvgInfoAction(props) {
29993
- return /*#__PURE__*/createElement$1("svg", _extends$X({
30239
+ return /*#__PURE__*/createElement$1("svg", _extends$Y({
29994
30240
  width: 18,
29995
30241
  height: 18,
29996
30242
  fill: "none",
29997
30243
  xmlns: "http://www.w3.org/2000/svg"
29998
- }, props), _path$W || (_path$W = /*#__PURE__*/createElement$1("path", {
30244
+ }, props), _path$X || (_path$X = /*#__PURE__*/createElement$1("path", {
29999
30245
  fillRule: "evenodd",
30000
30246
  clipRule: "evenodd",
30001
30247
  d: "M8.333 1.376a6.957 6.957 0 100 13.914 6.957 6.957 0 000-13.914zM0 8.333a8.333 8.333 0 1116.667 0A8.333 8.333 0 010 8.333z",
@@ -30281,18 +30527,18 @@ var Action = styled.div(_templateObject3$k || (_templateObject3$k = _taggedTempl
30281
30527
  return props.hoverBackgroundColor;
30282
30528
  }, ItemNote);
30283
30529
 
30284
- var _rect$1, _path$X;
30285
- function _extends$Y() {
30286
- return _extends$Y = Object.assign ? Object.assign.bind() : function (n) {
30530
+ var _rect$1, _path$Y;
30531
+ function _extends$Z() {
30532
+ return _extends$Z = Object.assign ? Object.assign.bind() : function (n) {
30287
30533
  for (var e = 1; e < arguments.length; e++) {
30288
30534
  var t = arguments[e];
30289
30535
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
30290
30536
  }
30291
30537
  return n;
30292
- }, _extends$Y.apply(null, arguments);
30538
+ }, _extends$Z.apply(null, arguments);
30293
30539
  }
30294
30540
  function SvgFileIcon(props) {
30295
- return /*#__PURE__*/createElement$1("svg", _extends$Y({
30541
+ return /*#__PURE__*/createElement$1("svg", _extends$Z({
30296
30542
  width: 40,
30297
30543
  height: 40,
30298
30544
  viewBox: "0 0 40.01 40.01",
@@ -30303,24 +30549,24 @@ function SvgFileIcon(props) {
30303
30549
  height: 40,
30304
30550
  rx: 20,
30305
30551
  fill: "Transparent"
30306
- })), _path$X || (_path$X = /*#__PURE__*/createElement$1("path", {
30552
+ })), _path$Y || (_path$Y = /*#__PURE__*/createElement$1("path", {
30307
30553
  d: "M22.48 10.097c.298.068.56.177.819.338.258.162.468.332 1.015.88l3.372 3.37c.547.548.717.758.879 1.016.161.258.27.521.338.818.069.297.097.565.097 1.34v7.295c0 1.337-.14 1.822-.4 2.311a2.726 2.726 0 01-1.135 1.134c-.489.262-.974.401-2.31.401h-9.31c-1.337 0-1.821-.14-2.31-.4a2.726 2.726 0 01-1.134-1.135c-.262-.489-.401-.974-.401-2.31v-11.31c0-1.337.14-1.821.4-2.31a2.726 2.726 0 011.135-1.134c.489-.262.973-.401 2.31-.401h5.296c.775 0 1.043.028 1.34.097zm-.68 1.827a.3.3 0 00-.3.3V16a.5.5 0 00.5.5h3.776a.3.3 0 00.212-.512l-3.976-3.976a.3.3 0 00-.212-.088z",
30308
30554
  fill: "#fff"
30309
30555
  })));
30310
30556
  }
30311
30557
 
30312
- var _circle$2, _path$Y;
30313
- function _extends$Z() {
30314
- return _extends$Z = Object.assign ? Object.assign.bind() : function (n) {
30558
+ var _circle$2, _path$Z;
30559
+ function _extends$_() {
30560
+ return _extends$_ = Object.assign ? Object.assign.bind() : function (n) {
30315
30561
  for (var e = 1; e < arguments.length; e++) {
30316
30562
  var t = arguments[e];
30317
30563
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
30318
30564
  }
30319
30565
  return n;
30320
- }, _extends$Z.apply(null, arguments);
30566
+ }, _extends$_.apply(null, arguments);
30321
30567
  }
30322
30568
  function SvgDeleteUpload(props) {
30323
- return /*#__PURE__*/createElement$1("svg", _extends$Z({
30569
+ return /*#__PURE__*/createElement$1("svg", _extends$_({
30324
30570
  width: 20,
30325
30571
  height: 20,
30326
30572
  viewBox: "0 0 20.01 20.01",
@@ -30333,7 +30579,7 @@ function SvgDeleteUpload(props) {
30333
30579
  fill: "CurrentColor",
30334
30580
  stroke: "#fff",
30335
30581
  strokeWidth: 1.4
30336
- })), _path$Y || (_path$Y = /*#__PURE__*/createElement$1("path", {
30582
+ })), _path$Z || (_path$Z = /*#__PURE__*/createElement$1("path", {
30337
30583
  d: "M13.5 6.5l-7 7M6.5 6.5l7 7",
30338
30584
  stroke: "#fff",
30339
30585
  strokeWidth: 1.4,
@@ -30342,24 +30588,24 @@ function SvgDeleteUpload(props) {
30342
30588
  })));
30343
30589
  }
30344
30590
 
30345
- var _path$Z;
30346
- function _extends$_() {
30347
- return _extends$_ = Object.assign ? Object.assign.bind() : function (n) {
30591
+ var _path$_;
30592
+ function _extends$$() {
30593
+ return _extends$$ = Object.assign ? Object.assign.bind() : function (n) {
30348
30594
  for (var e = 1; e < arguments.length; e++) {
30349
30595
  var t = arguments[e];
30350
30596
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
30351
30597
  }
30352
30598
  return n;
30353
- }, _extends$_.apply(null, arguments);
30599
+ }, _extends$$.apply(null, arguments);
30354
30600
  }
30355
30601
  function SvgUpload(props) {
30356
- return /*#__PURE__*/createElement$1("svg", _extends$_({
30602
+ return /*#__PURE__*/createElement$1("svg", _extends$$({
30357
30603
  width: 32,
30358
30604
  height: 32,
30359
30605
  viewBox: "0 0 32.01 32.01",
30360
30606
  fill: "none",
30361
30607
  xmlns: "http://www.w3.org/2000/svg"
30362
- }, props), _path$Z || (_path$Z = /*#__PURE__*/createElement$1("path", {
30608
+ }, props), _path$_ || (_path$_ = /*#__PURE__*/createElement$1("path", {
30363
30609
  fillRule: "evenodd",
30364
30610
  clipRule: "evenodd",
30365
30611
  d: "M14.5 20.5a1.5 1.5 0 003 0V7.121l4.44 4.44a1.5 1.5 0 002.12-2.122l-7-7a1.5 1.5 0 00-2.12 0l-7 7a1.5 1.5 0 002.12 2.122l4.44-4.44V20.5zm-9 4.5a1.5 1.5 0 000 3h21a1.5 1.5 0 000-3h-21z",
@@ -30367,18 +30613,18 @@ function SvgUpload(props) {
30367
30613
  })));
30368
30614
  }
30369
30615
 
30370
- var _circle$3, _path$_;
30371
- function _extends$$() {
30372
- return _extends$$ = Object.assign ? Object.assign.bind() : function (n) {
30616
+ var _circle$3, _path$$;
30617
+ function _extends$10() {
30618
+ return _extends$10 = Object.assign ? Object.assign.bind() : function (n) {
30373
30619
  for (var e = 1; e < arguments.length; e++) {
30374
30620
  var t = arguments[e];
30375
30621
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
30376
30622
  }
30377
30623
  return n;
30378
- }, _extends$$.apply(null, arguments);
30624
+ }, _extends$10.apply(null, arguments);
30379
30625
  }
30380
30626
  function SvgPlayVideo(props) {
30381
- return /*#__PURE__*/createElement$1("svg", _extends$$({
30627
+ return /*#__PURE__*/createElement$1("svg", _extends$10({
30382
30628
  width: 56,
30383
30629
  height: 56,
30384
30630
  fill: "none",
@@ -30389,7 +30635,7 @@ function SvgPlayVideo(props) {
30389
30635
  r: 28,
30390
30636
  fill: "#17191C",
30391
30637
  fillOpacity: 0.4
30392
- })), _path$_ || (_path$_ = /*#__PURE__*/createElement$1("path", {
30638
+ })), _path$$ || (_path$$ = /*#__PURE__*/createElement$1("path", {
30393
30639
  d: "M38.048 26.262c1.27.767 1.27 2.706 0 3.473l-13.224 7.996c-1.258.76-2.824-.202-2.824-1.737V20.003c0-1.535 1.566-2.498 2.824-1.737l13.224 7.996z",
30394
30640
  fill: "#fff"
30395
30641
  })));
@@ -30573,18 +30819,18 @@ var AttachmentImg = styled.img(_templateObject7$b || (_templateObject7$b = _tagg
30573
30819
  return props.borderRadius || '6px';
30574
30820
  });
30575
30821
 
30576
- var _circle$4, _path$$;
30577
- function _extends$10() {
30578
- return _extends$10 = Object.assign ? Object.assign.bind() : function (n) {
30822
+ var _circle$4, _path$10;
30823
+ function _extends$11() {
30824
+ return _extends$11 = Object.assign ? Object.assign.bind() : function (n) {
30579
30825
  for (var e = 1; e < arguments.length; e++) {
30580
30826
  var t = arguments[e];
30581
30827
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
30582
30828
  }
30583
30829
  return n;
30584
- }, _extends$10.apply(null, arguments);
30830
+ }, _extends$11.apply(null, arguments);
30585
30831
  }
30586
30832
  function SvgPlay(props) {
30587
- return /*#__PURE__*/createElement$1("svg", _extends$10({
30833
+ return /*#__PURE__*/createElement$1("svg", _extends$11({
30588
30834
  width: 32,
30589
30835
  height: 32,
30590
30836
  viewBox: "0 0 33 33",
@@ -30595,24 +30841,24 @@ function SvgPlay(props) {
30595
30841
  cy: 16,
30596
30842
  r: 16,
30597
30843
  fill: "CurrentColor"
30598
- })), _path$$ || (_path$$ = /*#__PURE__*/createElement$1("path", {
30844
+ })), _path$10 || (_path$10 = /*#__PURE__*/createElement$1("path", {
30599
30845
  d: "M21.652 15.022c.714.432.714 1.522 0 1.954l-7.438 4.498c-.708.428-1.589-.114-1.589-.977v-8.995c0-.864.88-1.405 1.589-.977l7.438 4.497z",
30600
30846
  fill: "#fff"
30601
30847
  })));
30602
30848
  }
30603
30849
 
30604
- var _circle$5, _path$10;
30605
- function _extends$11() {
30606
- return _extends$11 = Object.assign ? Object.assign.bind() : function (n) {
30850
+ var _circle$5, _path$11;
30851
+ function _extends$12() {
30852
+ return _extends$12 = Object.assign ? Object.assign.bind() : function (n) {
30607
30853
  for (var e = 1; e < arguments.length; e++) {
30608
30854
  var t = arguments[e];
30609
30855
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
30610
30856
  }
30611
30857
  return n;
30612
- }, _extends$11.apply(null, arguments);
30858
+ }, _extends$12.apply(null, arguments);
30613
30859
  }
30614
30860
  function SvgPause(props) {
30615
- return /*#__PURE__*/createElement$1("svg", _extends$11({
30861
+ return /*#__PURE__*/createElement$1("svg", _extends$12({
30616
30862
  width: 32,
30617
30863
  height: 32,
30618
30864
  viewBox: "0 0 33 33",
@@ -30623,7 +30869,7 @@ function SvgPause(props) {
30623
30869
  cy: 16,
30624
30870
  r: 16,
30625
30871
  fill: "CurrentColor"
30626
- })), _path$10 || (_path$10 = /*#__PURE__*/createElement$1("path", {
30872
+ })), _path$11 || (_path$11 = /*#__PURE__*/createElement$1("path", {
30627
30873
  d: "M13.721 10.375c.401 0 .547.042.694.12a.818.818 0 01.34.34c.078.147.12.293.12.694v8.942c0 .401-.042.547-.12.694a.818.818 0 01-.34.34c-.147.078-.293.12-.694.12h-1.067c-.401 0-.547-.042-.694-.12a.818.818 0 01-.34-.34c-.078-.147-.12-.293-.12-.694V11.53c0-.401.042-.547.12-.694a.818.818 0 01.34-.34c.147-.078.293-.12.694-.12h1.067zm5.625 0c.401 0 .547.042.694.12a.818.818 0 01.34.34c.078.147.12.293.12.694v8.942c0 .401-.042.547-.12.694a.818.818 0 01-.34.34c-.147.078-.293.12-.694.12H18.28c-.401 0-.547-.042-.694-.12a.818.818 0 01-.34-.34c-.078-.147-.12-.293-.12-.694V11.53c0-.401.042-.547.12-.694a.818.818 0 01.34-.34c.147-.078.293-.12.694-.12h1.067z",
30628
30874
  fill: "#fff"
30629
30875
  })));
@@ -33730,24 +33976,24 @@ var MessageHeaderCont = styled.div(_templateObject$z || (_templateObject$z = _ta
33730
33976
  return props.withPadding && (props.isForwarded ? '8px 0 2px 12px' : !props.isReplied && !props.messageBody ? props.withMediaAttachment ? '8px 0 8px 12px' : '8px 0 0 12px' : '8px 0 0 12px');
33731
33977
  });
33732
33978
 
33733
- var _path$11;
33734
- function _extends$12() {
33735
- return _extends$12 = Object.assign ? Object.assign.bind() : function (n) {
33979
+ var _path$12;
33980
+ function _extends$13() {
33981
+ return _extends$13 = Object.assign ? Object.assign.bind() : function (n) {
33736
33982
  for (var e = 1; e < arguments.length; e++) {
33737
33983
  var t = arguments[e];
33738
33984
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
33739
33985
  }
33740
33986
  return n;
33741
- }, _extends$12.apply(null, arguments);
33987
+ }, _extends$13.apply(null, arguments);
33742
33988
  }
33743
33989
  function SvgEmojiAnimalIcon(props) {
33744
- return /*#__PURE__*/createElement$1("svg", _extends$12({
33990
+ return /*#__PURE__*/createElement$1("svg", _extends$13({
33745
33991
  width: 20,
33746
33992
  height: 20,
33747
33993
  viewBox: "0 0 20.01 20.01",
33748
33994
  fill: "none",
33749
33995
  xmlns: "http://www.w3.org/2000/svg"
33750
- }, props), _path$11 || (_path$11 = /*#__PURE__*/createElement$1("path", {
33996
+ }, props), _path$12 || (_path$12 = /*#__PURE__*/createElement$1("path", {
33751
33997
  fillRule: "evenodd",
33752
33998
  clipRule: "evenodd",
33753
33999
  d: "M7.188 3.875a.813.813 0 100 1.625.813.813 0 000-1.625zm-2.313.813a2.312 2.312 0 114.625 0 2.312 2.312 0 01-4.625 0zm7.938-.813a.813.813 0 100 1.625.813.813 0 000-1.625zm-2.313.813a2.312 2.312 0 114.625 0 2.312 2.312 0 01-4.625 0zM3.437 7.624a.813.813 0 100 1.625.813.813 0 000-1.625zm-2.312.813a2.312 2.312 0 114.625 0 2.312 2.312 0 01-4.625 0zm15.438-.813a.813.813 0 100 1.625.813.813 0 000-1.625zm-2.313.813a2.312 2.312 0 114.625 0 2.312 2.312 0 01-4.625 0zm-6.393-.359a3.563 3.563 0 015.567 1.862c.193.672.643 1.24 1.252 1.582a3.25 3.25 0 01-1.548 6.102h-.002c-.435 0-.864-.086-1.265-.253a4.859 4.859 0 00-3.722 0h.001a3.28 3.28 0 01-1.265.253h-.003a3.25 3.25 0 01-1.548-6.101A2.657 2.657 0 006.576 9.94a3.563 3.563 0 011.28-1.862zM10 8.863a2.062 2.062 0 00-1.982 1.493 4.156 4.156 0 01-1.964 2.478l-.008.004a1.75 1.75 0 001.517 3.15l.001-.001a6.358 6.358 0 014.872 0h.001a1.75 1.75 0 001.516-3.15l-.007-.003a4.156 4.156 0 01-1.964-2.478A2.062 2.062 0 0010 8.863z",
@@ -33755,24 +34001,24 @@ function SvgEmojiAnimalIcon(props) {
33755
34001
  })));
33756
34002
  }
33757
34003
 
33758
- var _path$12, _path2$8, _path3$3;
33759
- function _extends$13() {
33760
- return _extends$13 = Object.assign ? Object.assign.bind() : function (n) {
34004
+ var _path$13, _path2$8, _path3$3;
34005
+ function _extends$14() {
34006
+ return _extends$14 = Object.assign ? Object.assign.bind() : function (n) {
33761
34007
  for (var e = 1; e < arguments.length; e++) {
33762
34008
  var t = arguments[e];
33763
34009
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
33764
34010
  }
33765
34011
  return n;
33766
- }, _extends$13.apply(null, arguments);
34012
+ }, _extends$14.apply(null, arguments);
33767
34013
  }
33768
34014
  function SvgEmojiFoodIcon(props) {
33769
- return /*#__PURE__*/createElement$1("svg", _extends$13({
34015
+ return /*#__PURE__*/createElement$1("svg", _extends$14({
33770
34016
  width: 20,
33771
34017
  height: 20,
33772
34018
  viewBox: "0 0 20.01 20.01",
33773
34019
  fill: "none",
33774
34020
  xmlns: "http://www.w3.org/2000/svg"
33775
- }, props), _path$12 || (_path$12 = /*#__PURE__*/createElement$1("path", {
34021
+ }, props), _path$13 || (_path$13 = /*#__PURE__*/createElement$1("path", {
33776
34022
  fillRule: "evenodd",
33777
34023
  clipRule: "evenodd",
33778
34024
  d: "M12.143 7.855c0-.395.32-.714.714-.714.779 0 1.501.261 2.033.779.535.52.824 1.249.824 2.078a.714.714 0 11-1.428 0c0-.49-.165-.833-.392-1.054-.23-.224-.579-.375-1.037-.375a.714.714 0 01-.714-.714z",
@@ -33790,24 +34036,24 @@ function SvgEmojiFoodIcon(props) {
33790
34036
  })));
33791
34037
  }
33792
34038
 
33793
- var _path$13;
33794
- function _extends$14() {
33795
- return _extends$14 = Object.assign ? Object.assign.bind() : function (n) {
34039
+ var _path$14;
34040
+ function _extends$15() {
34041
+ return _extends$15 = Object.assign ? Object.assign.bind() : function (n) {
33796
34042
  for (var e = 1; e < arguments.length; e++) {
33797
34043
  var t = arguments[e];
33798
34044
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
33799
34045
  }
33800
34046
  return n;
33801
- }, _extends$14.apply(null, arguments);
34047
+ }, _extends$15.apply(null, arguments);
33802
34048
  }
33803
34049
  function SvgEmojiTravelIcon(props) {
33804
- return /*#__PURE__*/createElement$1("svg", _extends$14({
34050
+ return /*#__PURE__*/createElement$1("svg", _extends$15({
33805
34051
  width: 20,
33806
34052
  height: 20,
33807
34053
  viewBox: "0 0 20.01 20.01",
33808
34054
  fill: "none",
33809
34055
  xmlns: "http://www.w3.org/2000/svg"
33810
- }, props), _path$13 || (_path$13 = /*#__PURE__*/createElement$1("path", {
34056
+ }, props), _path$14 || (_path$14 = /*#__PURE__*/createElement$1("path", {
33811
34057
  fillRule: "evenodd",
33812
34058
  clipRule: "evenodd",
33813
34059
  d: "M13.763 2.458a2.6 2.6 0 013.748 3.604l-2.135 2.236a5.065 5.065 0 00-.188.204.076.076 0 00-.004.017l.004.03c.008.05.024.116.053.241l1.327 5.754.012.05c.044.189.096.412.079.639-.015.197-.07.39-.162.564-.106.202-.268.364-.406.5l-.036.037-.306.306c-.215.215-.409.408-.58.55-.175.147-.406.309-.705.362a1.46 1.46 0 01-1.124-.266c-.244-.18-.378-.429-.47-.638-.089-.204-.175-.464-.272-.752l-1.2-3.6-1.779 1.78a4.815 4.815 0 00-.172.178.076.076 0 00-.005.015l.001.027c.003.045.01.105.022.22l.141 1.27.005.045c.02.168.042.368.01.567a1.46 1.46 0 01-.172.49c-.1.176-.242.317-.362.437l-.032.032-.152.151-.018.019c-.166.166-.32.32-.46.438-.15.125-.338.258-.583.322a1.46 1.46 0 01-1.007-.1 1.49 1.49 0 01-.508-.43c-.114-.142-.236-.325-.366-.52l-1.22-1.83a4.929 4.929 0 00-.063-.09l-.009-.006a4.655 4.655 0 00-.077-.052l-1.829-1.22a7.783 7.783 0 01-.52-.365 1.492 1.492 0 01-.43-.509 1.46 1.46 0 01-.1-1.006c.065-.245.197-.434.323-.584.117-.14.272-.294.438-.46l.018-.018.152-.152.031-.032c.12-.12.262-.262.437-.362.152-.086.318-.145.49-.172a2.09 2.09 0 01.568.01l.044.005 1.27.141a4.747 4.747 0 00.247.023.075.075 0 00.015-.005 4.867 4.867 0 00.178-.172l1.78-1.78-3.6-1.199a9.48 9.48 0 01-.752-.272c-.209-.092-.457-.226-.638-.47a1.46 1.46 0 01-.265-1.124c.053-.298.215-.53.36-.705.143-.171.337-.365.552-.58l.02-.02.285-.285.037-.037c.136-.137.298-.3.5-.406a1.46 1.46 0 01.564-.161c.228-.018.45.034.64.078l.05.012 5.731 1.323a5.096 5.096 0 00.275.057.075.075 0 00.019-.005 5.146 5.146 0 00.199-.197l2.082-2.152zm2.728.948a1.216 1.216 0 00-1.734.014l-2.082 2.151-.036.037c-.132.137-.288.3-.483.407a1.46 1.46 0 01-.602.178c-.223.016-.442-.036-.627-.079l-.05-.011L5.146 4.78a5.06 5.06 0 00-.279-.059.077.077 0 00-.017.005 5.065 5.065 0 00-.205.197l-.285.285c-.243.243-.39.392-.487.508a.915.915 0 00-.063.083c0 .006.002.012.004.018.016.01.045.025.094.046.138.06.337.128.662.236l4.633 1.544a.692.692 0 01.27 1.146l-2.57 2.57-.032.032c-.12.12-.261.262-.436.362a1.459 1.459 0 01-.492.172 2.09 2.09 0 01-.567-.01l-.044-.005-1.27-.141a4.747 4.747 0 00-.247-.023.075.075 0 00-.015.005 4.867 4.867 0 00-.178.172l-.152.152c-.19.19-.301.302-.375.39a.735.735 0 00-.045.058c0 .008 0 .015.002.023.01.009.027.025.056.048.09.072.22.16.444.309l1.808 1.205.015.01a1.466 1.466 0 01.507.507l.01.016 1.206 1.807c.15.225.237.355.308.444.024.03.04.047.049.056a.076.076 0 00.022.002.723.723 0 00.059-.045c.087-.073.199-.184.39-.375l.151-.151a4.89 4.89 0 00.172-.178.077.077 0 00.005-.016v-.026a4.94 4.94 0 00-.023-.22l-.14-1.27-.006-.045a2.091 2.091 0 01-.01-.567 1.46 1.46 0 01.172-.491c.1-.175.242-.317.363-.437l.031-.031 2.57-2.57a.692.692 0 011.146.27L13.9 15.43c.109.325.175.523.236.662a.9.9 0 00.046.093.073.073 0 00.019.004.917.917 0 00.083-.063c.116-.096.264-.244.507-.486l.285-.285a5.078 5.078 0 00.197-.206.073.073 0 00.005-.017 5.042 5.042 0 00-.058-.279l-1.328-5.753-.011-.049c-.044-.184-.095-.401-.079-.624a1.46 1.46 0 01.152-.553c.1-.199.255-.36.386-.496l.034-.037 2.136-2.236a1.216 1.216 0 00-.02-1.7z",
@@ -33815,31 +34061,31 @@ function SvgEmojiTravelIcon(props) {
33815
34061
  })));
33816
34062
  }
33817
34063
 
33818
- var _g, _defs$1;
33819
- function _extends$15() {
33820
- return _extends$15 = Object.assign ? Object.assign.bind() : function (n) {
34064
+ var _g$1, _defs$2;
34065
+ function _extends$16() {
34066
+ return _extends$16 = Object.assign ? Object.assign.bind() : function (n) {
33821
34067
  for (var e = 1; e < arguments.length; e++) {
33822
34068
  var t = arguments[e];
33823
34069
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
33824
34070
  }
33825
34071
  return n;
33826
- }, _extends$15.apply(null, arguments);
34072
+ }, _extends$16.apply(null, arguments);
33827
34073
  }
33828
34074
  function SvgEmojiObjectIcon(props) {
33829
- return /*#__PURE__*/createElement$1("svg", _extends$15({
34075
+ return /*#__PURE__*/createElement$1("svg", _extends$16({
33830
34076
  width: 20,
33831
34077
  height: 20,
33832
34078
  viewBox: "0 0 20.01 20.01",
33833
34079
  fill: "none",
33834
34080
  xmlns: "http://www.w3.org/2000/svg"
33835
- }, props), _g || (_g = /*#__PURE__*/createElement$1("g", {
34081
+ }, props), _g$1 || (_g$1 = /*#__PURE__*/createElement$1("g", {
33836
34082
  clipPath: "url(#emojiObjectIcon_svg__clip0_1048_8610)"
33837
34083
  }, /*#__PURE__*/createElement$1("path", {
33838
34084
  fillRule: "evenodd",
33839
34085
  clipRule: "evenodd",
33840
34086
  d: "M10 .917a.75.75 0 01.75.75V2.5a.75.75 0 01-1.5 0v-.833a.75.75 0 01.75-.75zM3.553 3.553a.75.75 0 011.06 0l.5.5a.75.75 0 11-1.06 1.061l-.5-.5a.75.75 0 010-1.06zm12.894 0a.75.75 0 010 1.061l-.5.5a.75.75 0 11-1.06-1.06l.5-.5a.75.75 0 011.06 0zM10 5.75a4.25 4.25 0 100 8.5 4.25 4.25 0 000-8.5zM4.25 10a5.75 5.75 0 118.167 5.22v1.447a2.417 2.417 0 01-4.834 0v-1.448A5.75 5.75 0 014.25 10zm4.833 5.678v.989a.917.917 0 101.834 0v-.99a5.795 5.795 0 01-1.834 0zM.917 10a.75.75 0 01.75-.75H2.5a.75.75 0 110 1.5h-.833a.75.75 0 01-.75-.75zm15.833 0a.75.75 0 01.75-.75h.833a.75.75 0 110 1.5H17.5a.75.75 0 01-.75-.75z",
33841
34087
  fill: "CurrentColor"
33842
- }))), _defs$1 || (_defs$1 = /*#__PURE__*/createElement$1("defs", null, /*#__PURE__*/createElement$1("clipPath", {
34088
+ }))), _defs$2 || (_defs$2 = /*#__PURE__*/createElement$1("defs", null, /*#__PURE__*/createElement$1("clipPath", {
33843
34089
  id: "emojiObjectIcon_svg__clip0_1048_8610"
33844
34090
  }, /*#__PURE__*/createElement$1("path", {
33845
34091
  fill: "CurrentColor",
@@ -33847,24 +34093,24 @@ function SvgEmojiObjectIcon(props) {
33847
34093
  })))));
33848
34094
  }
33849
34095
 
33850
- var _path$14;
33851
- function _extends$16() {
33852
- return _extends$16 = Object.assign ? Object.assign.bind() : function (n) {
34096
+ var _path$15;
34097
+ function _extends$17() {
34098
+ return _extends$17 = Object.assign ? Object.assign.bind() : function (n) {
33853
34099
  for (var e = 1; e < arguments.length; e++) {
33854
34100
  var t = arguments[e];
33855
34101
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
33856
34102
  }
33857
34103
  return n;
33858
- }, _extends$16.apply(null, arguments);
34104
+ }, _extends$17.apply(null, arguments);
33859
34105
  }
33860
34106
  function SvgEmojiSymbolsIcon(props) {
33861
- return /*#__PURE__*/createElement$1("svg", _extends$16({
34107
+ return /*#__PURE__*/createElement$1("svg", _extends$17({
33862
34108
  width: 20,
33863
34109
  height: 20,
33864
34110
  viewBox: "0 0 20.01 20.01",
33865
34111
  fill: "none",
33866
34112
  xmlns: "http://www.w3.org/2000/svg"
33867
- }, props), _path$14 || (_path$14 = /*#__PURE__*/createElement$1("path", {
34113
+ }, props), _path$15 || (_path$15 = /*#__PURE__*/createElement$1("path", {
33868
34114
  fillRule: "evenodd",
33869
34115
  clipRule: "evenodd",
33870
34116
  d: "M8.04 1.76a.75.75 0 01.616.863l-.548 3.294h5.146l.59-3.54a.75.75 0 111.48.246l-.55 3.294h2.31a.75.75 0 010 1.5h-2.56l-.86 5.167h2.586a.75.75 0 110 1.5h-2.837l-.59 3.54a.75.75 0 11-1.48-.247l.55-3.293H6.745l-.59 3.54a.75.75 0 11-1.48-.247l.55-3.293H2.083a.75.75 0 010-1.5h3.393l.86-5.167h-3.42a.75.75 0 110-1.5h3.67l.59-3.54a.75.75 0 01.864-.617zm-.182 5.657l-.862 5.167h5.146l.862-5.167H7.858z",
@@ -33872,24 +34118,24 @@ function SvgEmojiSymbolsIcon(props) {
33872
34118
  })));
33873
34119
  }
33874
34120
 
33875
- var _path$15;
33876
- function _extends$17() {
33877
- return _extends$17 = Object.assign ? Object.assign.bind() : function (n) {
34121
+ var _path$16;
34122
+ function _extends$18() {
34123
+ return _extends$18 = Object.assign ? Object.assign.bind() : function (n) {
33878
34124
  for (var e = 1; e < arguments.length; e++) {
33879
34125
  var t = arguments[e];
33880
34126
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
33881
34127
  }
33882
34128
  return n;
33883
- }, _extends$17.apply(null, arguments);
34129
+ }, _extends$18.apply(null, arguments);
33884
34130
  }
33885
34131
  function SvgEmojiFlagicon(props) {
33886
- return /*#__PURE__*/createElement$1("svg", _extends$17({
34132
+ return /*#__PURE__*/createElement$1("svg", _extends$18({
33887
34133
  width: 20,
33888
34134
  height: 20,
33889
34135
  viewBox: "0 0 20.01 20.01",
33890
34136
  fill: "none",
33891
34137
  xmlns: "http://www.w3.org/2000/svg"
33892
- }, props), _path$15 || (_path$15 = /*#__PURE__*/createElement$1("path", {
34138
+ }, props), _path$16 || (_path$16 = /*#__PURE__*/createElement$1("path", {
33893
34139
  fillRule: "evenodd",
33894
34140
  clipRule: "evenodd",
33895
34141
  d: "M4.167 3.25a.917.917 0 00-.917.917v7.764c.288-.118.6-.181.917-.181h5.416a.75.75 0 01.53.22l.614.613h5.56L14.329 8.67a.75.75 0 010-.671l1.957-3.915H10.75V7.5a.75.75 0 01-1.5 0V3.25H4.167zm6.56-.667l-.613-.613a.75.75 0 00-.53-.22H4.166A2.417 2.417 0 001.75 4.167V17.5a.75.75 0 001.5 0v-3.333a.917.917 0 01.917-.917h5.106l.613.614c.141.14.332.22.53.22H17.5a.75.75 0 00.67-1.086l-2.332-4.665 2.333-4.664a.75.75 0 00-.671-1.086h-6.773z",
@@ -34385,24 +34631,24 @@ var Emoji = styled.li(_templateObject8$c || (_templateObject8$c = _taggedTemplat
34385
34631
  return props.hoverBackgroundColor;
34386
34632
  });
34387
34633
 
34388
- var _path$16;
34389
- function _extends$18() {
34390
- return _extends$18 = Object.assign ? Object.assign.bind() : function (n) {
34634
+ var _path$17;
34635
+ function _extends$19() {
34636
+ return _extends$19 = Object.assign ? Object.assign.bind() : function (n) {
34391
34637
  for (var e = 1; e < arguments.length; e++) {
34392
34638
  var t = arguments[e];
34393
34639
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
34394
34640
  }
34395
34641
  return n;
34396
- }, _extends$18.apply(null, arguments);
34642
+ }, _extends$19.apply(null, arguments);
34397
34643
  }
34398
34644
  function SvgPlus(props) {
34399
- return /*#__PURE__*/createElement$1("svg", _extends$18({
34645
+ return /*#__PURE__*/createElement$1("svg", _extends$19({
34400
34646
  width: 20,
34401
34647
  height: 20,
34402
34648
  viewBox: "0 0 20.01 20.01",
34403
34649
  fill: "none",
34404
34650
  xmlns: "http://www.w3.org/2000/svg"
34405
- }, props), _path$16 || (_path$16 = /*#__PURE__*/createElement$1("path", {
34651
+ }, props), _path$17 || (_path$17 = /*#__PURE__*/createElement$1("path", {
34406
34652
  d: "M10 3.778c.43 0 .778.348.778.778v4.666h4.666a.778.778 0 110 1.556h-4.666v4.666a.778.778 0 11-1.556 0v-4.666H4.556a.778.778 0 110-1.556h4.666V4.556c0-.43.348-.778.778-.778z",
34407
34653
  fill: "currentColor"
34408
34654
  })));
@@ -34960,23 +35206,23 @@ var Question = styled.div(_templateObject10$5 || (_templateObject10$5 = _taggedT
34960
35206
  return p.color;
34961
35207
  });
34962
35208
 
34963
- var _path$17;
34964
- function _extends$19() {
34965
- return _extends$19 = Object.assign ? Object.assign.bind() : function (n) {
35209
+ var _path$18;
35210
+ function _extends$1a() {
35211
+ return _extends$1a = Object.assign ? Object.assign.bind() : function (n) {
34966
35212
  for (var e = 1; e < arguments.length; e++) {
34967
35213
  var t = arguments[e];
34968
35214
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
34969
35215
  }
34970
35216
  return n;
34971
- }, _extends$19.apply(null, arguments);
35217
+ }, _extends$1a.apply(null, arguments);
34972
35218
  }
34973
35219
  function SvgFilledCheckbox(props) {
34974
- return /*#__PURE__*/createElement$1("svg", _extends$19({
35220
+ return /*#__PURE__*/createElement$1("svg", _extends$1a({
34975
35221
  width: 19,
34976
35222
  height: 19,
34977
35223
  fill: "none",
34978
35224
  xmlns: "http://www.w3.org/2000/svg"
34979
- }, props), _path$17 || (_path$17 = /*#__PURE__*/createElement$1("path", {
35225
+ }, props), _path$18 || (_path$18 = /*#__PURE__*/createElement$1("path", {
34980
35226
  d: "M9.167 0a9.167 9.167 0 11-.001 18.333A9.167 9.167 0 019.167 0zm4.79 5.904a.834.834 0 00-1.179 0l-5.14 5.139-2.084-2.084a.834.834 0 00-1.178 1.179l2.673 2.674a.834.834 0 001.179 0l5.729-5.73a.833.833 0 000-1.178z",
34981
35227
  fill: "currentColor"
34982
35228
  })));
@@ -38498,7 +38744,7 @@ var MessageList = function MessageList(_ref2) {
38498
38744
  nextDisableRef.current = false;
38499
38745
  clearMessagesMap();
38500
38746
  removeAllMessages();
38501
- dispatch(getMessagesAC(channel));
38747
+ dispatch(getMessagesAC(channel, false, lastVisibleMessageId, 0, false, false, 'instant', false));
38502
38748
  }
38503
38749
  }, [connectionStatus]);
38504
38750
  useEffect(function () {
@@ -39577,24 +39823,24 @@ var MemberName$2 = styled.h3(_templateObject5$q || (_templateObject5$q = _tagged
39577
39823
  return props.color;
39578
39824
  });
39579
39825
 
39580
- var _path$18;
39581
- function _extends$1a() {
39582
- return _extends$1a = Object.assign ? Object.assign.bind() : function (n) {
39826
+ var _path$19;
39827
+ function _extends$1b() {
39828
+ return _extends$1b = Object.assign ? Object.assign.bind() : function (n) {
39583
39829
  for (var e = 1; e < arguments.length; e++) {
39584
39830
  var t = arguments[e];
39585
39831
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
39586
39832
  }
39587
39833
  return n;
39588
- }, _extends$1a.apply(null, arguments);
39834
+ }, _extends$1b.apply(null, arguments);
39589
39835
  }
39590
39836
  function SvgBold(props) {
39591
- return /*#__PURE__*/createElement$1("svg", _extends$1a({
39837
+ return /*#__PURE__*/createElement$1("svg", _extends$1b({
39592
39838
  width: 18,
39593
39839
  height: 18,
39594
39840
  viewBox: "0 0 18.01 18.01",
39595
39841
  fill: "none",
39596
39842
  xmlns: "http://www.w3.org/2000/svg"
39597
- }, props), _path$18 || (_path$18 = /*#__PURE__*/createElement$1("path", {
39843
+ }, props), _path$19 || (_path$19 = /*#__PURE__*/createElement$1("path", {
39598
39844
  fillRule: "evenodd",
39599
39845
  clipRule: "evenodd",
39600
39846
  d: "M6.35 3.029A1.1 1.1 0 005 4.1v10a1.1 1.1 0 001.35 1.072c.08.018.164.028.25.028h3.429c1.998 0 3.671-1.583 3.671-3.6a3.566 3.566 0 00-1.596-2.969c.38-.588.596-1.294.596-2.031 0-1.904-1.444-3.6-3.408-3.6H6.6c-.086 0-.17.01-.25.029zm3.41 7.138a3.318 3.318 0 01-.468.033H7.2V13h2.829c.842 0 1.471-.656 1.471-1.4 0-.744-.63-1.4-1.471-1.4a1.1 1.1 0 01-.268-.033zM7.2 8h2.092c.586 0 1.208-.542 1.208-1.4 0-.858-.622-1.4-1.208-1.4H7.2V8z",
@@ -39602,24 +39848,24 @@ function SvgBold(props) {
39602
39848
  })));
39603
39849
  }
39604
39850
 
39605
- var _path$19;
39606
- function _extends$1b() {
39607
- return _extends$1b = Object.assign ? Object.assign.bind() : function (n) {
39851
+ var _path$1a;
39852
+ function _extends$1c() {
39853
+ return _extends$1c = Object.assign ? Object.assign.bind() : function (n) {
39608
39854
  for (var e = 1; e < arguments.length; e++) {
39609
39855
  var t = arguments[e];
39610
39856
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
39611
39857
  }
39612
39858
  return n;
39613
- }, _extends$1b.apply(null, arguments);
39859
+ }, _extends$1c.apply(null, arguments);
39614
39860
  }
39615
39861
  function SvgItalic(props) {
39616
- return /*#__PURE__*/createElement$1("svg", _extends$1b({
39862
+ return /*#__PURE__*/createElement$1("svg", _extends$1c({
39617
39863
  width: 18,
39618
39864
  height: 18,
39619
39865
  viewBox: "0 0 18.01 18.01",
39620
39866
  fill: "none",
39621
39867
  xmlns: "http://www.w3.org/2000/svg"
39622
- }, props), _path$19 || (_path$19 = /*#__PURE__*/createElement$1("path", {
39868
+ }, props), _path$1a || (_path$1a = /*#__PURE__*/createElement$1("path", {
39623
39869
  fillRule: "evenodd",
39624
39870
  clipRule: "evenodd",
39625
39871
  d: "M9.984 3.2H8a.8.8 0 000 1.6h1.024l-1.68 8.4H6a.8.8 0 100 1.6h4a.8.8 0 000-1.6H8.976l1.68-8.4H12a.8.8 0 000-1.6H9.984z",
@@ -39627,24 +39873,24 @@ function SvgItalic(props) {
39627
39873
  })));
39628
39874
  }
39629
39875
 
39630
- var _g$1;
39631
- function _extends$1c() {
39632
- return _extends$1c = Object.assign ? Object.assign.bind() : function (n) {
39876
+ var _g$2;
39877
+ function _extends$1d() {
39878
+ return _extends$1d = Object.assign ? Object.assign.bind() : function (n) {
39633
39879
  for (var e = 1; e < arguments.length; e++) {
39634
39880
  var t = arguments[e];
39635
39881
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
39636
39882
  }
39637
39883
  return n;
39638
- }, _extends$1c.apply(null, arguments);
39884
+ }, _extends$1d.apply(null, arguments);
39639
39885
  }
39640
39886
  function SvgStrikethrough(props) {
39641
- return /*#__PURE__*/createElement$1("svg", _extends$1c({
39887
+ return /*#__PURE__*/createElement$1("svg", _extends$1d({
39642
39888
  width: 18,
39643
39889
  height: 18,
39644
39890
  viewBox: "0 0 18.01 18.01",
39645
39891
  fill: "none",
39646
39892
  xmlns: "http://www.w3.org/2000/svg"
39647
- }, props), _g$1 || (_g$1 = /*#__PURE__*/createElement$1("g", {
39893
+ }, props), _g$2 || (_g$2 = /*#__PURE__*/createElement$1("g", {
39648
39894
  fillRule: "evenodd",
39649
39895
  clipRule: "evenodd",
39650
39896
  fill: "CurrentColor"
@@ -39655,47 +39901,47 @@ function SvgStrikethrough(props) {
39655
39901
  }))));
39656
39902
  }
39657
39903
 
39658
- var _path$1a;
39659
- function _extends$1d() {
39660
- return _extends$1d = Object.assign ? Object.assign.bind() : function (n) {
39904
+ var _path$1b;
39905
+ function _extends$1e() {
39906
+ return _extends$1e = Object.assign ? Object.assign.bind() : function (n) {
39661
39907
  for (var e = 1; e < arguments.length; e++) {
39662
39908
  var t = arguments[e];
39663
39909
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
39664
39910
  }
39665
39911
  return n;
39666
- }, _extends$1d.apply(null, arguments);
39912
+ }, _extends$1e.apply(null, arguments);
39667
39913
  }
39668
39914
  function SvgMono(props) {
39669
- return /*#__PURE__*/createElement$1("svg", _extends$1d({
39915
+ return /*#__PURE__*/createElement$1("svg", _extends$1e({
39670
39916
  width: 18,
39671
39917
  height: 18,
39672
39918
  viewBox: "0 0 18.01 18.01",
39673
39919
  fill: "none",
39674
39920
  xmlns: "http://www.w3.org/2000/svg"
39675
- }, props), _path$1a || (_path$1a = /*#__PURE__*/createElement$1("path", {
39921
+ }, props), _path$1b || (_path$1b = /*#__PURE__*/createElement$1("path", {
39676
39922
  d: "M4.98 14.753A.826.826 0 014.37 15a.882.882 0 01-.624-.247.882.882 0 01-.247-.624V3.87c0-.24.082-.444.247-.608A.853.853 0 014.37 3c.581 0 1.003.258 1.266.773l3.238 6.28c0 .01.006.015.017.015.01 0 .016-.005.016-.016l3.222-6.247c.274-.537.712-.805 1.315-.805.252 0 .466.088.641.263a.873.873 0 01.263.641v10.192a.873.873 0 01-.263.641.872.872 0 01-.64.263.873.873 0 01-.642-.263.873.873 0 01-.263-.641V6.14c0-.011-.005-.017-.016-.017s-.017.006-.017.017l-2.433 4.833c-.252.493-.646.74-1.183.74s-.932-.247-1.184-.74L5.275 6.14c0-.011-.005-.017-.016-.017s-.017.006-.017.017v7.989c0 .24-.087.45-.263.624z",
39677
39923
  fill: "CurrentColor"
39678
39924
  })));
39679
39925
  }
39680
39926
 
39681
- var _g$2;
39682
- function _extends$1e() {
39683
- return _extends$1e = Object.assign ? Object.assign.bind() : function (n) {
39927
+ var _g$3;
39928
+ function _extends$1f() {
39929
+ return _extends$1f = Object.assign ? Object.assign.bind() : function (n) {
39684
39930
  for (var e = 1; e < arguments.length; e++) {
39685
39931
  var t = arguments[e];
39686
39932
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
39687
39933
  }
39688
39934
  return n;
39689
- }, _extends$1e.apply(null, arguments);
39935
+ }, _extends$1f.apply(null, arguments);
39690
39936
  }
39691
39937
  function SvgUnderline(props) {
39692
- return /*#__PURE__*/createElement$1("svg", _extends$1e({
39938
+ return /*#__PURE__*/createElement$1("svg", _extends$1f({
39693
39939
  width: 18,
39694
39940
  height: 18,
39695
39941
  viewBox: "0 0 18.01 18.01",
39696
39942
  fill: "none",
39697
39943
  xmlns: "http://www.w3.org/2000/svg"
39698
- }, props), _g$2 || (_g$2 = /*#__PURE__*/createElement$1("g", {
39944
+ }, props), _g$3 || (_g$3 = /*#__PURE__*/createElement$1("g", {
39699
39945
  fill: "CurrentColor"
39700
39946
  }, /*#__PURE__*/createElement$1("path", {
39701
39947
  d: "M13 9c0 2.79-1.368 4.184-4.105 4.184S4.789 11.79 4.789 9V2.384c0-.242.085-.447.253-.616a.864.864 0 01.632-.268c.242 0 .447.09.615.268a.814.814 0 01.269.616V9.08c0 .926.19 1.6.568 2.021.39.421.99.632 1.8.632s1.406-.21 1.784-.632c.39-.421.585-1.095.585-2.021V2.353a.82.82 0 01.252-.6.82.82 0 01.6-.253.82.82 0 01.6.253.82.82 0 01.253.6V9z"
@@ -40651,18 +40897,18 @@ var Emoji$1 = styled.li(_templateObject8$k || (_templateObject8$k = _taggedTempl
40651
40897
 
40652
40898
  var CAN_USE_DOM = typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined';
40653
40899
 
40654
- var _circle$6, _path$1b;
40655
- function _extends$1f() {
40656
- return _extends$1f = Object.assign ? Object.assign.bind() : function (n) {
40900
+ var _circle$6, _path$1c;
40901
+ function _extends$1g() {
40902
+ return _extends$1g = Object.assign ? Object.assign.bind() : function (n) {
40657
40903
  for (var e = 1; e < arguments.length; e++) {
40658
40904
  var t = arguments[e];
40659
40905
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40660
40906
  }
40661
40907
  return n;
40662
- }, _extends$1f.apply(null, arguments);
40908
+ }, _extends$1g.apply(null, arguments);
40663
40909
  }
40664
40910
  function SvgSend(props) {
40665
- return /*#__PURE__*/createElement$1("svg", _extends$1f({
40911
+ return /*#__PURE__*/createElement$1("svg", _extends$1g({
40666
40912
  width: 32,
40667
40913
  height: 32,
40668
40914
  fill: "none",
@@ -40672,142 +40918,142 @@ function SvgSend(props) {
40672
40918
  cy: 16,
40673
40919
  r: 16,
40674
40920
  fill: "currentColor"
40675
- })), _path$1b || (_path$1b = /*#__PURE__*/createElement$1("path", {
40921
+ })), _path$1c || (_path$1c = /*#__PURE__*/createElement$1("path", {
40676
40922
  d: "M10.953 18.945c-.545 1.46-.888 2.485-1.028 3.076-.439 1.856-.758 2.274.879 1.392 1.637-.882 9.56-5.251 11.329-6.222 2.304-1.266 2.335-1.167-.124-2.511-1.873-1.024-9.704-5.279-11.205-6.115-1.501-.835-1.318-.464-.879 1.392.142.6.49 1.634 1.043 3.105a3.143 3.143 0 002.35 1.98l4.595.88a.079.079 0 010 .155l-4.606.88a3.143 3.143 0 00-2.354 1.988z",
40677
40923
  fill: "#fff"
40678
40924
  })));
40679
40925
  }
40680
40926
 
40681
- var _path$1c;
40682
- function _extends$1g() {
40683
- return _extends$1g = Object.assign ? Object.assign.bind() : function (n) {
40927
+ var _path$1d;
40928
+ function _extends$1h() {
40929
+ return _extends$1h = Object.assign ? Object.assign.bind() : function (n) {
40684
40930
  for (var e = 1; e < arguments.length; e++) {
40685
40931
  var t = arguments[e];
40686
40932
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40687
40933
  }
40688
40934
  return n;
40689
- }, _extends$1g.apply(null, arguments);
40935
+ }, _extends$1h.apply(null, arguments);
40690
40936
  }
40691
40937
  function SvgEye(props) {
40692
- return /*#__PURE__*/createElement$1("svg", _extends$1g({
40938
+ return /*#__PURE__*/createElement$1("svg", _extends$1h({
40693
40939
  width: 25,
40694
40940
  height: 24,
40695
40941
  fill: "none",
40696
40942
  xmlns: "http://www.w3.org/2000/svg"
40697
- }, props), _path$1c || (_path$1c = /*#__PURE__*/createElement$1("path", {
40943
+ }, props), _path$1d || (_path$1d = /*#__PURE__*/createElement$1("path", {
40698
40944
  d: "M12.5 5c6 0 10 5.6 10 7 0 1.4-4 7-10 7s-10-5.6-10-7c0-1.4 4-7 10-7zm0 2a5 5 0 100 10 5 5 0 000-10zm.001 2.5a2.5 2.5 0 110 5 2.5 2.5 0 010-5z",
40699
40945
  fill: "CurrentColor"
40700
40946
  })));
40701
40947
  }
40702
40948
 
40703
- var _path$1d;
40704
- function _extends$1h() {
40705
- return _extends$1h = Object.assign ? Object.assign.bind() : function (n) {
40949
+ var _path$1e;
40950
+ function _extends$1i() {
40951
+ return _extends$1i = Object.assign ? Object.assign.bind() : function (n) {
40706
40952
  for (var e = 1; e < arguments.length; e++) {
40707
40953
  var t = arguments[e];
40708
40954
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40709
40955
  }
40710
40956
  return n;
40711
- }, _extends$1h.apply(null, arguments);
40957
+ }, _extends$1i.apply(null, arguments);
40712
40958
  }
40713
40959
  function SvgAddAttachment(props) {
40714
- return /*#__PURE__*/createElement$1("svg", _extends$1h({
40960
+ return /*#__PURE__*/createElement$1("svg", _extends$1i({
40715
40961
  width: 24,
40716
40962
  height: 24,
40717
40963
  viewBox: "0 0 24.01 24.01",
40718
40964
  fill: "none",
40719
40965
  xmlns: "http://www.w3.org/2000/svg"
40720
- }, props), _path$1d || (_path$1d = /*#__PURE__*/createElement$1("path", {
40966
+ }, props), _path$1e || (_path$1e = /*#__PURE__*/createElement$1("path", {
40721
40967
  d: "M12 1.714c5.68 0 10.286 4.605 10.286 10.286 0 5.68-4.605 10.286-10.286 10.286C6.32 22.286 1.714 17.68 1.714 12 1.714 6.32 6.32 1.714 12 1.714zm0 1.715a8.571 8.571 0 100 17.143 8.571 8.571 0 000-17.143zm0 3.428c.473 0 .857.384.857.857v3.429h3.429a.857.857 0 010 1.714h-3.429v3.429a.857.857 0 11-1.714 0v-3.429H7.714a.857.857 0 110-1.714h3.429V7.714c0-.473.384-.857.857-.857z",
40722
40968
  fill: "CurrentColor"
40723
40969
  })));
40724
40970
  }
40725
40971
 
40726
- var _path$1e;
40727
- function _extends$1i() {
40728
- return _extends$1i = Object.assign ? Object.assign.bind() : function (n) {
40972
+ var _path$1f;
40973
+ function _extends$1j() {
40974
+ return _extends$1j = Object.assign ? Object.assign.bind() : function (n) {
40729
40975
  for (var e = 1; e < arguments.length; e++) {
40730
40976
  var t = arguments[e];
40731
40977
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40732
40978
  }
40733
40979
  return n;
40734
- }, _extends$1i.apply(null, arguments);
40980
+ }, _extends$1j.apply(null, arguments);
40735
40981
  }
40736
40982
  function SvgErrorCircle(props) {
40737
- return /*#__PURE__*/createElement$1("svg", _extends$1i({
40983
+ return /*#__PURE__*/createElement$1("svg", _extends$1j({
40738
40984
  width: 25,
40739
40985
  height: 24,
40740
40986
  fill: "none",
40741
40987
  xmlns: "http://www.w3.org/2000/svg"
40742
- }, props), _path$1e || (_path$1e = /*#__PURE__*/createElement$1("path", {
40988
+ }, props), _path$1f || (_path$1f = /*#__PURE__*/createElement$1("path", {
40743
40989
  d: "M12.5 1.714c5.68 0 10.286 4.605 10.286 10.286 0 5.68-4.605 10.285-10.286 10.285C6.82 22.285 2.214 17.68 2.214 12 2.214 6.319 6.82 1.714 12.5 1.714zm0 1.714a8.571 8.571 0 100 17.143 8.571 8.571 0 000-17.143zm0 11.657a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4zm.063-8.228c.204 0 .332.032.443.091.112.06.2.148.26.26.06.111.091.24.091.443v5.269c0 .204-.032.331-.091.443a.623.623 0 01-.26.26c-.111.059-.24.09-.443.09h-.126c-.204 0-.332-.031-.443-.09a.624.624 0 01-.26-.26c-.06-.112-.091-.24-.091-.443V7.65c0-.203.032-.33.091-.442.06-.112.148-.2.26-.26.111-.06.24-.091.443-.091h.126z",
40744
40990
  fill: "#FFB73D"
40745
40991
  })));
40746
40992
  }
40747
40993
 
40748
- var _path$1f;
40749
- function _extends$1j() {
40750
- return _extends$1j = Object.assign ? Object.assign.bind() : function (n) {
40994
+ var _path$1g;
40995
+ function _extends$1k() {
40996
+ return _extends$1k = Object.assign ? Object.assign.bind() : function (n) {
40751
40997
  for (var e = 1; e < arguments.length; e++) {
40752
40998
  var t = arguments[e];
40753
40999
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40754
41000
  }
40755
41001
  return n;
40756
- }, _extends$1j.apply(null, arguments);
41002
+ }, _extends$1k.apply(null, arguments);
40757
41003
  }
40758
41004
  function SvgPlayRecord(props) {
40759
- return /*#__PURE__*/createElement$1("svg", _extends$1j({
41005
+ return /*#__PURE__*/createElement$1("svg", _extends$1k({
40760
41006
  width: 20,
40761
41007
  height: 20,
40762
41008
  viewBox: "0 0 20.01 20.01",
40763
41009
  fill: "none",
40764
41010
  xmlns: "http://www.w3.org/2000/svg"
40765
- }, props), _path$1f || (_path$1f = /*#__PURE__*/createElement$1("path", {
41011
+ }, props), _path$1g || (_path$1g = /*#__PURE__*/createElement$1("path", {
40766
41012
  d: "M16.28 8.913c.793.48.793 1.692 0 2.172l-8.265 4.997c-.787.475-1.765-.126-1.765-1.086V5.002c0-.96.979-1.561 1.765-1.086l8.265 4.997z",
40767
41013
  fill: "CurrentColor"
40768
41014
  })));
40769
41015
  }
40770
41016
 
40771
- var _path$1g;
40772
- function _extends$1k() {
40773
- return _extends$1k = Object.assign ? Object.assign.bind() : function (n) {
41017
+ var _path$1h;
41018
+ function _extends$1l() {
41019
+ return _extends$1l = Object.assign ? Object.assign.bind() : function (n) {
40774
41020
  for (var e = 1; e < arguments.length; e++) {
40775
41021
  var t = arguments[e];
40776
41022
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40777
41023
  }
40778
41024
  return n;
40779
- }, _extends$1k.apply(null, arguments);
41025
+ }, _extends$1l.apply(null, arguments);
40780
41026
  }
40781
41027
  function SvgPauseRecord(props) {
40782
- return /*#__PURE__*/createElement$1("svg", _extends$1k({
41028
+ return /*#__PURE__*/createElement$1("svg", _extends$1l({
40783
41029
  width: 20,
40784
41030
  height: 20,
40785
41031
  viewBox: "0 0 20.01 20.01",
40786
41032
  fill: "none",
40787
41033
  xmlns: "http://www.w3.org/2000/svg"
40788
- }, props), _path$1g || (_path$1g = /*#__PURE__*/createElement$1("path", {
41034
+ }, props), _path$1h || (_path$1h = /*#__PURE__*/createElement$1("path", {
40789
41035
  d: "M7.468 3.75c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77v9.936c0 .446-.046.607-.134.77a.908.908 0 01-.378.378c-.163.088-.324.134-.77.134H6.282c-.446 0-.607-.046-.77-.134a.908.908 0 01-.378-.378c-.088-.162-.134-.324-.134-.77V5.032c0-.446.046-.607.134-.77a.909.909 0 01.378-.378c.163-.088.324-.134.77-.134h1.186zm6.25 0c.446 0 .607.046.77.134.163.087.291.215.378.378.088.163.134.324.134.77v9.936c0 .446-.046.607-.134.77a.908.908 0 01-.378.378c-.162.088-.324.134-.77.134h-1.186c-.446 0-.607-.046-.77-.134a.908.908 0 01-.378-.378c-.088-.162-.134-.324-.134-.77V5.032c0-.446.046-.607.134-.77a.908.908 0 01.378-.378c.162-.088.324-.134.77-.134h1.186z",
40790
41036
  fill: "CurrentColor"
40791
41037
  })));
40792
41038
  }
40793
41039
 
40794
- var _path$1h;
40795
- function _extends$1l() {
40796
- return _extends$1l = Object.assign ? Object.assign.bind() : function (n) {
41040
+ var _path$1i;
41041
+ function _extends$1m() {
41042
+ return _extends$1m = Object.assign ? Object.assign.bind() : function (n) {
40797
41043
  for (var e = 1; e < arguments.length; e++) {
40798
41044
  var t = arguments[e];
40799
41045
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40800
41046
  }
40801
41047
  return n;
40802
- }, _extends$1l.apply(null, arguments);
41048
+ }, _extends$1m.apply(null, arguments);
40803
41049
  }
40804
41050
  function SvgStopRecord(props) {
40805
- return /*#__PURE__*/createElement$1("svg", _extends$1l({
41051
+ return /*#__PURE__*/createElement$1("svg", _extends$1m({
40806
41052
  width: 20,
40807
41053
  height: 20,
40808
41054
  fill: "none",
40809
41055
  xmlns: "http://www.w3.org/2000/svg"
40810
- }, props), _path$1h || (_path$1h = /*#__PURE__*/createElement$1("path", {
41056
+ }, props), _path$1i || (_path$1i = /*#__PURE__*/createElement$1("path", {
40811
41057
  fillRule: "evenodd",
40812
41058
  clipRule: "evenodd",
40813
41059
  d: "M4.421 5.441c-.254.5-.254 1.153-.254 2.46v4.2c0 1.306 0 1.96.254 2.459.224.439.581.796 1.02 1.02.5.254 1.153.254 2.46.254h4.2c1.306 0 1.96 0 2.459-.255.439-.223.796-.58 1.02-1.02.254-.498.254-1.152.254-2.459V7.9c0-1.306 0-1.96-.255-2.459a2.333 2.333 0 00-1.02-1.02c-.498-.254-1.152-.254-2.459-.254H7.9c-1.306 0-1.96 0-2.459.254-.439.224-.796.581-1.02 1.02z",
@@ -40815,18 +41061,18 @@ function SvgStopRecord(props) {
40815
41061
  })));
40816
41062
  }
40817
41063
 
40818
- var _circle$7, _path$1i, _path2$9;
40819
- function _extends$1m() {
40820
- return _extends$1m = Object.assign ? Object.assign.bind() : function (n) {
41064
+ var _circle$7, _path$1j, _path2$9;
41065
+ function _extends$1n() {
41066
+ return _extends$1n = Object.assign ? Object.assign.bind() : function (n) {
40821
41067
  for (var e = 1; e < arguments.length; e++) {
40822
41068
  var t = arguments[e];
40823
41069
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
40824
41070
  }
40825
41071
  return n;
40826
- }, _extends$1m.apply(null, arguments);
41072
+ }, _extends$1n.apply(null, arguments);
40827
41073
  }
40828
41074
  function SvgRecordButton(props) {
40829
- return /*#__PURE__*/createElement$1("svg", _extends$1m({
41075
+ return /*#__PURE__*/createElement$1("svg", _extends$1n({
40830
41076
  width: 32,
40831
41077
  height: 32,
40832
41078
  viewBox: "0 0 32.01 32.01",
@@ -40837,7 +41083,7 @@ function SvgRecordButton(props) {
40837
41083
  cy: 16,
40838
41084
  r: 16,
40839
41085
  fill: "CurrentColor"
40840
- })), _path$1i || (_path$1i = /*#__PURE__*/createElement$1("path", {
41086
+ })), _path$1j || (_path$1j = /*#__PURE__*/createElement$1("path", {
40841
41087
  d: "M12.875 10.375a3.125 3.125 0 116.25 0v5a3.125 3.125 0 11-6.25 0v-5zM15.219 22.406a.781.781 0 111.562 0v1.563a.781.781 0 11-1.562 0v-1.563zM23.5 14.906a.781.781 0 11-1.563 0 .781.781 0 011.563 0zM10.063 14.906a.781.781 0 11-1.563 0 .781.781 0 011.563 0z",
40842
41088
  fill: "#fff"
40843
41089
  })), _path2$9 || (_path2$9 = /*#__PURE__*/createElement$1("path", {
@@ -41497,23 +41743,23 @@ var RecordingAnimation = function RecordingAnimation(_ref2) {
41497
41743
  }));
41498
41744
  };
41499
41745
 
41500
- var _path$1j;
41501
- function _extends$1n() {
41502
- return _extends$1n = Object.assign ? Object.assign.bind() : function (n) {
41746
+ var _path$1k;
41747
+ function _extends$1o() {
41748
+ return _extends$1o = Object.assign ? Object.assign.bind() : function (n) {
41503
41749
  for (var e = 1; e < arguments.length; e++) {
41504
41750
  var t = arguments[e];
41505
41751
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
41506
41752
  }
41507
41753
  return n;
41508
- }, _extends$1n.apply(null, arguments);
41754
+ }, _extends$1o.apply(null, arguments);
41509
41755
  }
41510
41756
  function SvgDotsVertica(props) {
41511
- return /*#__PURE__*/createElement$1("svg", _extends$1n({
41757
+ return /*#__PURE__*/createElement$1("svg", _extends$1o({
41512
41758
  width: 16,
41513
41759
  height: 16,
41514
41760
  fill: "none",
41515
41761
  xmlns: "http://www.w3.org/2000/svg"
41516
- }, props), _path$1j || (_path$1j = /*#__PURE__*/createElement$1("path", {
41762
+ }, props), _path$1k || (_path$1k = /*#__PURE__*/createElement$1("path", {
41517
41763
  d: "M6.5 3a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 13a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM12.5 3a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM12.5 8a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM12.5 13a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z",
41518
41764
  fill: "#757D8B"
41519
41765
  })));
@@ -41939,7 +42185,7 @@ var SettingItem = styled.div(_templateObject9$i || (_templateObject9$i = _tagged
41939
42185
  return props.color;
41940
42186
  });
41941
42187
 
41942
- var _templateObject$R, _templateObject2$M, _templateObject3$F, _templateObject4$z, _templateObject5$u, _templateObject6$q, _templateObject7$p, _templateObject8$m, _templateObject9$j, _templateObject0$h, _templateObject1$e, _templateObject10$8, _templateObject11$6, _templateObject12$5, _templateObject13$3, _templateObject14$2, _templateObject15$2, _templateObject16$2, _templateObject17$2, _templateObject18$2, _templateObject19$2, _templateObject20$2, _templateObject21$1, _templateObject22$1, _templateObject23$1, _templateObject24$1, _templateObject25$1, _templateObject26$1, _templateObject27$1, _templateObject28$1, _templateObject29$1, _templateObject30$1, _templateObject31$1, _templateObject32$1, _templateObject33$1, _templateObject34$1;
42188
+ var _templateObject$R, _templateObject2$M, _templateObject3$F, _templateObject4$z, _templateObject5$u, _templateObject6$q, _templateObject7$p, _templateObject8$m, _templateObject9$j, _templateObject0$h, _templateObject1$e, _templateObject10$8, _templateObject11$6, _templateObject12$5, _templateObject13$3, _templateObject14$2, _templateObject15$2, _templateObject16$2, _templateObject17$2, _templateObject18$2, _templateObject19$2, _templateObject20$2, _templateObject21$2, _templateObject22$1, _templateObject23$1, _templateObject24$1, _templateObject25$1, _templateObject26$1, _templateObject27$1, _templateObject28$1, _templateObject29$1, _templateObject30$1, _templateObject31$1, _templateObject32$1, _templateObject33$1, _templateObject34$1;
41943
42189
  function AutoFocusPlugin(_ref) {
41944
42190
  var messageForReply = _ref.messageForReply;
41945
42191
  var _useLexicalComposerCo = useLexicalComposerContext(),
@@ -43688,7 +43934,7 @@ var TypingFrom = styled.h5(_templateObject19$2 || (_templateObject19$2 = _tagged
43688
43934
  return props.color;
43689
43935
  });
43690
43936
  var sizeAnimation = keyframes(_templateObject20$2 || (_templateObject20$2 = _taggedTemplateLiteralLoose(["\n 0% {\n width: 2px;\n height: 2px;\n opacity: 0.4;\n }\n 50% {\n width: 2px;\n height: 2px;\n opacity: 0.4;\n }\n 100% {\n width: 6px;\n height: 6px;\n opacity: 1;\n }\n"])));
43691
- var DotOne = styled.span(_templateObject21$1 || (_templateObject21$1 = _taggedTemplateLiteralLoose([""])));
43937
+ var DotOne = styled.span(_templateObject21$2 || (_templateObject21$2 = _taggedTemplateLiteralLoose([""])));
43692
43938
  var DotTwo = styled.span(_templateObject22$1 || (_templateObject22$1 = _taggedTemplateLiteralLoose([""])));
43693
43939
  var DotThree = styled.span(_templateObject23$1 || (_templateObject23$1 = _taggedTemplateLiteralLoose([""])));
43694
43940
  var TypingAnimation = styled.div(_templateObject24$1 || (_templateObject24$1 = _taggedTemplateLiteralLoose(["\n display: flex;\n\n & > span {\n position: relative;\n width: 6px;\n height: 6px;\n margin-right: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n animation-timing-function: linear;\n\n &:after {\n content: '';\n position: absolute;\n\n width: 3.5px;\n height: 3.5px;\n border-radius: 50%;\n background-color: ", ";\n animation-name: ", ";\n animation-duration: 0.6s;\n animation-iteration-count: infinite;\n }\n }\n\n & ", " {\n &:after {\n animation-delay: 0s;\n }\n }\n\n & ", " {\n &:after {\n animation-delay: 0.2s;\n }\n }\n\n & ", " {\n &:after {\n animation-delay: 0.3s;\n }\n }\n"])), function (props) {
@@ -43764,23 +44010,23 @@ var copyToClipboard = function copyToClipboard(text) {
43764
44010
  }
43765
44011
  };
43766
44012
 
43767
- var _path$1k;
43768
- function _extends$1o() {
43769
- return _extends$1o = Object.assign ? Object.assign.bind() : function (n) {
44013
+ var _path$1l;
44014
+ function _extends$1p() {
44015
+ return _extends$1p = Object.assign ? Object.assign.bind() : function (n) {
43770
44016
  for (var e = 1; e < arguments.length; e++) {
43771
44017
  var t = arguments[e];
43772
44018
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43773
44019
  }
43774
44020
  return n;
43775
- }, _extends$1o.apply(null, arguments);
44021
+ }, _extends$1p.apply(null, arguments);
43776
44022
  }
43777
44023
  function SvgBottom(props) {
43778
- return /*#__PURE__*/createElement$1("svg", _extends$1o({
44024
+ return /*#__PURE__*/createElement$1("svg", _extends$1p({
43779
44025
  width: 12,
43780
44026
  height: 7,
43781
44027
  fill: "none",
43782
44028
  xmlns: "http://www.w3.org/2000/svg"
43783
- }, props), _path$1k || (_path$1k = /*#__PURE__*/createElement$1("path", {
44029
+ }, props), _path$1l || (_path$1l = /*#__PURE__*/createElement$1("path", {
43784
44030
  d: "M1.5 1.5l4.5 4 4.5-4",
43785
44031
  stroke: "#676A7C",
43786
44032
  strokeWidth: 1.4,
@@ -43789,24 +44035,24 @@ function SvgBottom(props) {
43789
44035
  })));
43790
44036
  }
43791
44037
 
43792
- var _path$1l, _path2$a;
43793
- function _extends$1p() {
43794
- return _extends$1p = Object.assign ? Object.assign.bind() : function (n) {
44038
+ var _path$1m, _path2$a;
44039
+ function _extends$1q() {
44040
+ return _extends$1q = Object.assign ? Object.assign.bind() : function (n) {
43795
44041
  for (var e = 1; e < arguments.length; e++) {
43796
44042
  var t = arguments[e];
43797
44043
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43798
44044
  }
43799
44045
  return n;
43800
- }, _extends$1p.apply(null, arguments);
44046
+ }, _extends$1q.apply(null, arguments);
43801
44047
  }
43802
44048
  function SvgMarkAsUnRead(props) {
43803
- return /*#__PURE__*/createElement$1("svg", _extends$1p({
44049
+ return /*#__PURE__*/createElement$1("svg", _extends$1q({
43804
44050
  width: 20,
43805
44051
  height: 20,
43806
44052
  viewBox: "0 0 20.01 20.01",
43807
44053
  fill: "none",
43808
44054
  xmlns: "http://www.w3.org/2000/svg"
43809
- }, props), _path$1l || (_path$1l = /*#__PURE__*/createElement$1("path", {
44055
+ }, props), _path$1m || (_path$1m = /*#__PURE__*/createElement$1("path", {
43810
44056
  d: "M18.25 7.189v3.843c0 .673 0 1.224-.037 1.671-.037.464-.118.882-.317 1.273a3.25 3.25 0 01-1.42 1.42c-.391.2-.81.28-1.273.318-.447.036-.998.036-1.671.036h-2.129c-.55 0-.72.004-.878.036a1.752 1.752 0 00-.444.156c-.143.073-.279.177-.708.52l-2.01 1.608c-.154.124-.307.246-.441.335-.129.085-.366.228-.67.228-.356 0-.692-.16-.914-.438-.19-.239-.226-.513-.24-.667-.015-.16-.015-.356-.015-.554v-1.228c-.358-.01-.655-.034-.924-.107a3.25 3.25 0 01-2.298-2.298c-.111-.415-.111-.896-.111-1.566V6.469c0-.674 0-1.224.037-1.672.037-.463.118-.881.317-1.272a3.25 3.25 0 011.42-1.42c.391-.2.81-.28 1.273-.318.448-.037.998-.037 1.672-.037h6.342c-.19.464-.3.97-.31 1.5h-6c-.713 0-1.203 0-1.582.032-.37.03-.57.086-.713.159a1.75 1.75 0 00-.765.765c-.074.144-.13.343-.16.713-.03.38-.03.869-.03 1.581v5.167c0 .823.006 1.088.059 1.286a1.75 1.75 0 001.237 1.238c.199.053.463.06 1.286.06a.75.75 0 01.75.75v1.772L8.49 15.25c.355-.284.614-.492.91-.643.26-.133.538-.23.825-.29.324-.066.657-.066 1.112-.066H13.5c.713 0 1.202 0 1.581-.031.37-.03.57-.086.713-.16a1.75 1.75 0 00.765-.764c.074-.144.13-.343.16-.714.03-.38.031-.868.031-1.58V7.498c.53-.01 1.036-.12 1.5-.31z",
43811
44057
  fill: "currentColor"
43812
44058
  })), _path2$a || (_path2$a = /*#__PURE__*/createElement$1("path", {
@@ -43815,24 +44061,24 @@ function SvgMarkAsUnRead(props) {
43815
44061
  })));
43816
44062
  }
43817
44063
 
43818
- var _path$1m;
43819
- function _extends$1q() {
43820
- return _extends$1q = Object.assign ? Object.assign.bind() : function (n) {
44064
+ var _path$1n;
44065
+ function _extends$1r() {
44066
+ return _extends$1r = Object.assign ? Object.assign.bind() : function (n) {
43821
44067
  for (var e = 1; e < arguments.length; e++) {
43822
44068
  var t = arguments[e];
43823
44069
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43824
44070
  }
43825
44071
  return n;
43826
- }, _extends$1q.apply(null, arguments);
44072
+ }, _extends$1r.apply(null, arguments);
43827
44073
  }
43828
44074
  function SvgMarkAsRead(props) {
43829
- return /*#__PURE__*/createElement$1("svg", _extends$1q({
44075
+ return /*#__PURE__*/createElement$1("svg", _extends$1r({
43830
44076
  width: 20,
43831
44077
  height: 20,
43832
44078
  viewBox: "0 0 20.01 20.01",
43833
44079
  fill: "none",
43834
44080
  xmlns: "http://www.w3.org/2000/svg"
43835
- }, props), _path$1m || (_path$1m = /*#__PURE__*/createElement$1("path", {
44081
+ }, props), _path$1n || (_path$1n = /*#__PURE__*/createElement$1("path", {
43836
44082
  fillRule: "evenodd",
43837
44083
  clipRule: "evenodd",
43838
44084
  d: "M6.469 1.75h7.062c.674 0 1.225 0 1.672.037.463.037.882.118 1.273.317a3.25 3.25 0 011.42 1.42c.199.391.28.81.317 1.273.037.448.037.998.037 1.672v4.562c0 .674 0 1.224-.037 1.672-.037.463-.118.882-.317 1.273a3.25 3.25 0 01-1.42 1.42c-.391.199-.81.28-1.273.317-.447.037-.998.037-1.671.037h-2.129c-.55 0-.72.004-.878.036a1.752 1.752 0 00-.444.156c-.143.073-.279.177-.708.52l-2.01 1.608a6.553 6.553 0 01-.441.334c-.129.085-.366.229-.67.23-.356 0-.692-.162-.914-.44-.19-.238-.226-.513-.24-.666-.015-.16-.015-.356-.015-.554v-1.229c-.358-.008-.655-.034-.924-.106a3.25 3.25 0 01-2.298-2.298c-.111-.415-.111-.896-.111-1.566V6.469c0-.674 0-1.224.037-1.672.037-.463.118-.882.317-1.272a3.25 3.25 0 011.42-1.42c.391-.2.81-.28 1.273-.318.448-.037.998-.037 1.672-.037zm-1.55 1.532c-.37.03-.57.085-.713.159a1.75 1.75 0 00-.765.765c-.074.144-.13.343-.16.713-.03.38-.03.869-.03 1.581v5.167c0 .823.006 1.087.059 1.286a1.75 1.75 0 001.237 1.237c.199.054.463.06 1.286.06a.75.75 0 01.75.75v1.773l1.853-1.482.053-.042c.355-.285.614-.492.91-.643.26-.133.538-.23.825-.29.324-.066.657-.066 1.112-.066H13.5c.713 0 1.202 0 1.581-.032.37-.03.57-.085.713-.159a1.75 1.75 0 00.765-.764c.074-.145.13-.344.16-.714.03-.38.031-.869.031-1.581V6.5c0-.712 0-1.202-.032-1.58-.03-.371-.085-.57-.159-.714a1.75 1.75 0 00-.765-.765c-.144-.074-.343-.13-.713-.16-.38-.03-.868-.031-1.58-.031h-7c-.713 0-1.203 0-1.582.032zm.164 3.801a.75.75 0 01.75-.75H10a.75.75 0 010 1.5H5.833a.75.75 0 01-.75-.75zm0 2.917a.75.75 0 01.75-.75H12.5a.75.75 0 010 1.5H5.833a.75.75 0 01-.75-.75z",
@@ -43840,23 +44086,23 @@ function SvgMarkAsRead(props) {
43840
44086
  })));
43841
44087
  }
43842
44088
 
43843
- var _path$1n;
43844
- function _extends$1r() {
43845
- return _extends$1r = Object.assign ? Object.assign.bind() : function (n) {
44089
+ var _path$1o;
44090
+ function _extends$1s() {
44091
+ return _extends$1s = Object.assign ? Object.assign.bind() : function (n) {
43846
44092
  for (var e = 1; e < arguments.length; e++) {
43847
44093
  var t = arguments[e];
43848
44094
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43849
44095
  }
43850
44096
  return n;
43851
- }, _extends$1r.apply(null, arguments);
44097
+ }, _extends$1s.apply(null, arguments);
43852
44098
  }
43853
44099
  function SvgClear(props) {
43854
- return /*#__PURE__*/createElement$1("svg", _extends$1r({
44100
+ return /*#__PURE__*/createElement$1("svg", _extends$1s({
43855
44101
  width: 20,
43856
44102
  height: 21,
43857
44103
  fill: "none",
43858
44104
  xmlns: "http://www.w3.org/2000/svg"
43859
- }, props), _path$1n || (_path$1n = /*#__PURE__*/createElement$1("path", {
44105
+ }, props), _path$1o || (_path$1o = /*#__PURE__*/createElement$1("path", {
43860
44106
  fillRule: "evenodd",
43861
44107
  clipRule: "evenodd",
43862
44108
  d: "M10 3.833a6.667 6.667 0 100 13.333 6.667 6.667 0 000-13.333zm-8.333 6.666a8.333 8.333 0 1116.667 0 8.333 8.333 0 01-16.667 0zM6.911 7.41a.833.833 0 011.179 0L10 9.32l1.911-1.91A.833.833 0 0113.09 8.59l-1.911 1.91 1.91 1.911a.833.833 0 01-1.178 1.179l-1.91-1.911-1.911 1.91A.833.833 0 016.91 12.41l1.91-1.91-1.91-1.911a.833.833 0 010-1.179z",
@@ -43864,46 +44110,46 @@ function SvgClear(props) {
43864
44110
  })));
43865
44111
  }
43866
44112
 
43867
- var _path$1o;
43868
- function _extends$1s() {
43869
- return _extends$1s = Object.assign ? Object.assign.bind() : function (n) {
44113
+ var _path$1p;
44114
+ function _extends$1t() {
44115
+ return _extends$1t = Object.assign ? Object.assign.bind() : function (n) {
43870
44116
  for (var e = 1; e < arguments.length; e++) {
43871
44117
  var t = arguments[e];
43872
44118
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43873
44119
  }
43874
44120
  return n;
43875
- }, _extends$1s.apply(null, arguments);
44121
+ }, _extends$1t.apply(null, arguments);
43876
44122
  }
43877
44123
  function SvgBlockChannel(props) {
43878
- return /*#__PURE__*/createElement$1("svg", _extends$1s({
44124
+ return /*#__PURE__*/createElement$1("svg", _extends$1t({
43879
44125
  width: 20,
43880
44126
  height: 21,
43881
44127
  viewBox: "0 0 20.01 21.01",
43882
44128
  fill: "none",
43883
44129
  xmlns: "http://www.w3.org/2000/svg"
43884
- }, props), _path$1o || (_path$1o = /*#__PURE__*/createElement$1("path", {
44130
+ }, props), _path$1p || (_path$1p = /*#__PURE__*/createElement$1("path", {
43885
44131
  d: "M10 2.167A8.336 8.336 0 001.667 10.5c0 4.6 3.733 8.334 8.333 8.334s8.333-3.734 8.333-8.334S14.6 2.167 10 2.167zm0 15A6.665 6.665 0 013.333 10.5c0-1.541.525-2.958 1.409-4.083l9.341 9.342A6.586 6.586 0 0110 17.167zm5.258-2.583L5.917 5.242A6.585 6.585 0 0110 3.834a6.665 6.665 0 016.667 6.666 6.586 6.586 0 01-1.409 4.084z",
43886
44132
  fill: "CurrentColor"
43887
44133
  })));
43888
44134
  }
43889
44135
 
43890
- var _path$1p, _path2$b;
43891
- function _extends$1t() {
43892
- return _extends$1t = Object.assign ? Object.assign.bind() : function (n) {
44136
+ var _path$1q, _path2$b;
44137
+ function _extends$1u() {
44138
+ return _extends$1u = Object.assign ? Object.assign.bind() : function (n) {
43893
44139
  for (var e = 1; e < arguments.length; e++) {
43894
44140
  var t = arguments[e];
43895
44141
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43896
44142
  }
43897
44143
  return n;
43898
- }, _extends$1t.apply(null, arguments);
44144
+ }, _extends$1u.apply(null, arguments);
43899
44145
  }
43900
44146
  function SvgReport(props) {
43901
- return /*#__PURE__*/createElement$1("svg", _extends$1t({
44147
+ return /*#__PURE__*/createElement$1("svg", _extends$1u({
43902
44148
  width: 20,
43903
44149
  height: 21,
43904
44150
  fill: "none",
43905
44151
  xmlns: "http://www.w3.org/2000/svg"
43906
- }, props), _path$1p || (_path$1p = /*#__PURE__*/createElement$1("path", {
44152
+ }, props), _path$1q || (_path$1q = /*#__PURE__*/createElement$1("path", {
43907
44153
  d: "M9.096 10.402a.882.882 0 011.765 0v3.627a.882.882 0 11-1.765 0v-3.627zM9.979 6.088a.98.98 0 100 1.96.98.98 0 000-1.96z",
43908
44154
  fill: "CurrentColor"
43909
44155
  })), _path2$b || (_path2$b = /*#__PURE__*/createElement$1("path", {
@@ -43914,53 +44160,353 @@ function SvgReport(props) {
43914
44160
  })));
43915
44161
  }
43916
44162
 
43917
- var _path$1q;
43918
- function _extends$1u() {
43919
- return _extends$1u = Object.assign ? Object.assign.bind() : function (n) {
44163
+ var _path$1r;
44164
+ function _extends$1v() {
44165
+ return _extends$1v = Object.assign ? Object.assign.bind() : function (n) {
43920
44166
  for (var e = 1; e < arguments.length; e++) {
43921
44167
  var t = arguments[e];
43922
44168
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43923
44169
  }
43924
44170
  return n;
43925
- }, _extends$1u.apply(null, arguments);
44171
+ }, _extends$1v.apply(null, arguments);
43926
44172
  }
43927
44173
  function SvgStar(props) {
43928
- return /*#__PURE__*/createElement$1("svg", _extends$1u({
44174
+ return /*#__PURE__*/createElement$1("svg", _extends$1v({
43929
44175
  width: 20,
43930
44176
  height: 20,
43931
44177
  fill: "none",
43932
44178
  xmlns: "http://www.w3.org/2000/svg"
43933
- }, props), _path$1q || (_path$1q = /*#__PURE__*/createElement$1("path", {
44179
+ }, props), _path$1r || (_path$1r = /*#__PURE__*/createElement$1("path", {
43934
44180
  d: "M12.888 7.002l3.823.367c1.33.128 1.739 1.43.711 2.285l-2.993 2.49 1.111 4.06c.365 1.332-.767 2.14-1.901 1.337l-3.637-2.573-3.637 2.573c-1.13.799-2.267-.005-1.902-1.338l1.111-4.058-2.993-2.491c-1.032-.86-.625-2.156.711-2.285l3.823-.367 1.684-3.889c.528-1.217 1.878-1.217 2.405 0l1.684 3.889z",
43935
44181
  fill: "#B2B6BE"
43936
44182
  })));
43937
44183
  }
43938
44184
 
43939
- var _path$1r;
43940
- function _extends$1v() {
43941
- return _extends$1v = Object.assign ? Object.assign.bind() : function (n) {
44185
+ var _path$1s;
44186
+ function _extends$1w() {
44187
+ return _extends$1w = Object.assign ? Object.assign.bind() : function (n) {
43942
44188
  for (var e = 1; e < arguments.length; e++) {
43943
44189
  var t = arguments[e];
43944
44190
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
43945
44191
  }
43946
44192
  return n;
43947
- }, _extends$1v.apply(null, arguments);
44193
+ }, _extends$1w.apply(null, arguments);
43948
44194
  }
43949
44195
  function SvgUnpin(props) {
43950
- return /*#__PURE__*/createElement$1("svg", _extends$1v({
44196
+ return /*#__PURE__*/createElement$1("svg", _extends$1w({
43951
44197
  width: 20,
43952
44198
  height: 21,
43953
44199
  viewBox: "0 0 20.01 21.01",
43954
44200
  fill: "none",
43955
44201
  xmlns: "http://www.w3.org/2000/svg"
43956
- }, props), _path$1r || (_path$1r = /*#__PURE__*/createElement$1("path", {
44202
+ }, props), _path$1s || (_path$1s = /*#__PURE__*/createElement$1("path", {
43957
44203
  d: "M8.74 6.616l1.09 1.089 2.995 2.996 1.09 1.088 3.557 3.559a.77.77 0 01-1.09 1.09l-3.365-3.366-.306 3.982a1.059 1.059 0 01-1.805.667l-3.504-3.504-4.356 4.356c-.726.726-1.816-.363-1.09-1.089l4.357-4.356L2.81 9.624a1.059 1.059 0 01.667-1.805l3.982-.306L4.06 4.115a.77.77 0 011.09-1.09l3.59 3.591zm1.634-1.634l.32-.32a.385.385 0 00.106-.197l.34-1.699a.77.77 0 011.3-.394l5.717 5.718a.77.77 0 01-.393 1.3l-1.7.34a.385.385 0 00-.196.105l-.32.32a.77.77 0 01-1.09-1.089l.32-.32c.27-.269.612-.452.985-.526l.288-.058-3.683-3.683-.058.288a1.926 1.926 0 01-.526.984l-.32.32a.77.77 0 11-1.09-1.089zM8.701 8.755a1.925 1.925 0 01-.849.272l-3.214.247 6.617 6.618.248-3.214c.023-.303.117-.593.272-.849L8.7 8.755z",
43958
44204
  fill: "CurrentColor"
43959
44205
  })));
43960
44206
  }
43961
44207
 
43962
- var _templateObject$S, _templateObject2$N, _templateObject3$G, _templateObject4$A, _templateObject5$v, _templateObject6$r, _templateObject7$q, _templateObject8$n, _templateObject9$k, _templateObject0$i, _templateObject1$f, _templateObject10$9, _templateObject11$7, _templateObject12$6, _templateObject13$4, _templateObject14$3, _templateObject15$3, _templateObject16$3;
44208
+ var _path$1t, _path2$c;
44209
+ function _extends$1x() {
44210
+ return _extends$1x = Object.assign ? Object.assign.bind() : function (n) {
44211
+ for (var e = 1; e < arguments.length; e++) {
44212
+ var t = arguments[e];
44213
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
44214
+ }
44215
+ return n;
44216
+ }, _extends$1x.apply(null, arguments);
44217
+ }
44218
+ function SvgWatch(props) {
44219
+ return /*#__PURE__*/createElement$1("svg", _extends$1x({
44220
+ width: 20,
44221
+ height: 20,
44222
+ fill: "none",
44223
+ xmlns: "http://www.w3.org/2000/svg"
44224
+ }, props), _path$1t || (_path$1t = /*#__PURE__*/createElement$1("path", {
44225
+ d: "M11.724 1.329a.814.814 0 110 1.628h-.91V4.23a7.206 7.206 0 013.556 1.42l.204.161.008.006h0l1.01 1.009.009.006-.001.001a7.243 7.243 0 11-6.414-2.603V2.958h-.909a.815.815 0 010-1.628h3.447z",
44226
+ fill: "currentColor",
44227
+ stroke: "currentColor",
44228
+ strokeWidth: 0.2
44229
+ })), _path2$c || (_path2$c = /*#__PURE__*/createElement$1("path", {
44230
+ className: "watch_svg__watch-ticks",
44231
+ fillRule: "evenodd",
44232
+ clipRule: "evenodd",
44233
+ d: "M10.015 7.788c.47 0 .849.38.849.848v2.821l2.48.93a.848.848 0 11-.596 1.59l-3.03-1.137a.849.849 0 01-.551-.795V8.636c0-.468.38-.848.848-.848z",
44234
+ fill: "currentColor"
44235
+ })));
44236
+ }
44237
+
44238
+ var _path$1u;
44239
+ function _extends$1y() {
44240
+ return _extends$1y = Object.assign ? Object.assign.bind() : function (n) {
44241
+ for (var e = 1; e < arguments.length; e++) {
44242
+ var t = arguments[e];
44243
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
44244
+ }
44245
+ return n;
44246
+ }, _extends$1y.apply(null, arguments);
44247
+ }
44248
+ function SvgChevronBottom(props) {
44249
+ return /*#__PURE__*/createElement$1("svg", _extends$1y({
44250
+ width: 16,
44251
+ height: 16,
44252
+ fill: "none",
44253
+ xmlns: "http://www.w3.org/2000/svg"
44254
+ }, props), _path$1u || (_path$1u = /*#__PURE__*/createElement$1("path", {
44255
+ fillRule: "evenodd",
44256
+ clipRule: "evenodd",
44257
+ d: "M3.293 5.626a1 1 0 000 1.414l4 4a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L8 8.919 4.707 5.626a1 1 0 00-1.414 0z",
44258
+ fill: "#818C99"
44259
+ })));
44260
+ }
44261
+
44262
+ var _templateObject$S, _templateObject2$N, _templateObject3$G, _templateObject4$A, _templateObject5$v, _templateObject6$r, _templateObject7$q, _templateObject8$n;
44263
+ var TIMER_OPTIONS = [{
44264
+ key: 'off',
44265
+ label: 'Off'
44266
+ }, {
44267
+ key: '1day',
44268
+ label: '1 day'
44269
+ }, {
44270
+ key: '1week',
44271
+ label: '1 week'
44272
+ }, {
44273
+ key: '1month',
44274
+ label: '1 month'
44275
+ }];
44276
+ function DisappearingMessagesPopup(_ref) {
44277
+ var theme = _ref.theme,
44278
+ togglePopup = _ref.togglePopup,
44279
+ handleSetTimer = _ref.handleSetTimer,
44280
+ currentTimer = _ref.currentTimer;
44281
+ var colors = useColors();
44282
+ var accentColor = colors[THEME_COLORS.ACCENT],
44283
+ background = colors[THEME_COLORS.BACKGROUND],
44284
+ textPrimary = colors[THEME_COLORS.TEXT_PRIMARY],
44285
+ surface1 = colors[THEME_COLORS.SURFACE_1],
44286
+ warningColor = colors[THEME_COLORS.WARNING],
44287
+ iconInactive = colors[THEME_COLORS.ICON_INACTIVE],
44288
+ textOnPrimary = colors[THEME_COLORS.TEXT_ON_PRIMARY],
44289
+ iconPrimary = colors[THEME_COLORS.ICON_PRIMARY],
44290
+ textSecondary = colors[THEME_COLORS.TEXT_SECONDARY],
44291
+ backgroundHovered = colors[THEME_COLORS.BACKGROUND_HOVERED],
44292
+ borderColor = colors[THEME_COLORS.BORDER];
44293
+ var _useState = useState('off'),
44294
+ selectedOption = _useState[0],
44295
+ setSelectedOption = _useState[1];
44296
+ var _useState2 = useState(''),
44297
+ customValue = _useState2[0],
44298
+ setCustomValue = _useState2[1];
44299
+ var _useState3 = useState(true),
44300
+ initialRender = _useState3[0],
44301
+ setInitialRender = _useState3[1];
44302
+ var _useState4 = useState(false),
44303
+ isDropdownOpen = _useState4[0],
44304
+ setDropdownOpen = _useState4[1];
44305
+ var previousTimerRef = useRef(currentTimer);
44306
+ var hasInitializedRef = useRef(false);
44307
+ var CUSTOM_OPTIONS = useMemo(function () {
44308
+ var _getDisappearingSetti;
44309
+ return ((_getDisappearingSetti = getDisappearingSettings()) === null || _getDisappearingSetti === void 0 ? void 0 : _getDisappearingSetti.customOptions) || [];
44310
+ }, []);
44311
+ useEffect(function () {
44312
+ var _CUSTOM_OPTIONS$;
44313
+ if (CUSTOM_OPTIONS.length > 0 && (_CUSTOM_OPTIONS$ = CUSTOM_OPTIONS[0]) !== null && _CUSTOM_OPTIONS$ !== void 0 && _CUSTOM_OPTIONS$.label) {
44314
+ var _CUSTOM_OPTIONS$2;
44315
+ setCustomValue(((_CUSTOM_OPTIONS$2 = CUSTOM_OPTIONS[0]) === null || _CUSTOM_OPTIONS$2 === void 0 ? void 0 : _CUSTOM_OPTIONS$2.label) || '');
44316
+ }
44317
+ }, [CUSTOM_OPTIONS]);
44318
+ var CUSTOM_SECONDS_MAP = useMemo(function () {
44319
+ return Object.fromEntries(CUSTOM_OPTIONS.map(function (o) {
44320
+ return [o.label, o.seconds];
44321
+ }));
44322
+ }, [CUSTOM_OPTIONS]);
44323
+ useEffect(function () {
44324
+ if (previousTimerRef.current !== currentTimer) {
44325
+ setInitialRender(true);
44326
+ hasInitializedRef.current = false;
44327
+ previousTimerRef.current = currentTimer;
44328
+ }
44329
+ if (!currentTimer) {
44330
+ setSelectedOption('off');
44331
+ } else {
44332
+ var fixedMatch = Object.keys(FIXED_TIMER_OPTIONS).find(function (key) {
44333
+ return (FIXED_TIMER_OPTIONS[key] || 0) * 1000 === currentTimer;
44334
+ });
44335
+ if (fixedMatch) {
44336
+ setSelectedOption(fixedMatch);
44337
+ } else {
44338
+ var customMatch = CUSTOM_OPTIONS.find(function (o) {
44339
+ return o.seconds * 1000 === currentTimer;
44340
+ });
44341
+ setSelectedOption('custom');
44342
+ setCustomValue((customMatch === null || customMatch === void 0 ? void 0 : customMatch.label) || '2days');
44343
+ }
44344
+ }
44345
+ }, [currentTimer]);
44346
+ useEffect(function () {
44347
+ if (!hasInitializedRef.current && initialRender) {
44348
+ hasInitializedRef.current = true;
44349
+ setInitialRender(false);
44350
+ }
44351
+ }, [initialRender]);
44352
+ var selectedTimerValue = useMemo(function () {
44353
+ return selectedOption === 'custom' ? CUSTOM_SECONDS_MAP[customValue] : FIXED_TIMER_OPTIONS[selectedOption];
44354
+ }, [selectedOption, customValue]);
44355
+ var isValueUnchanged = useMemo(function () {
44356
+ if (initialRender) return true;
44357
+ if (!selectedTimerValue && !selectedTimerValue) {
44358
+ return true;
44359
+ } else if (selectedTimerValue * 1000 === currentTimer) {
44360
+ return true;
44361
+ }
44362
+ return false;
44363
+ }, [currentTimer, selectedTimerValue, initialRender]);
44364
+ var handleSet = useCallback(function () {
44365
+ if (selectedOption === 'custom') {
44366
+ handleSetTimer(CUSTOM_SECONDS_MAP[customValue]);
44367
+ } else {
44368
+ handleSetTimer(FIXED_TIMER_OPTIONS[selectedOption]);
44369
+ }
44370
+ togglePopup();
44371
+ }, [selectedOption, customValue, handleSetTimer, togglePopup]);
44372
+ var selectedCustomLabel = useMemo(function () {
44373
+ var _CUSTOM_OPTIONS$find;
44374
+ return ((_CUSTOM_OPTIONS$find = CUSTOM_OPTIONS.find(function (o) {
44375
+ return o.label === customValue;
44376
+ })) === null || _CUSTOM_OPTIONS$find === void 0 ? void 0 : _CUSTOM_OPTIONS$find.label) || '2 days';
44377
+ }, [customValue, CUSTOM_OPTIONS]);
44378
+ return /*#__PURE__*/React__default.createElement(PopupContainer, null, /*#__PURE__*/React__default.createElement(Popup, {
44379
+ theme: theme,
44380
+ backgroundColor: background,
44381
+ maxWidth: '522px',
44382
+ minWidth: '522px',
44383
+ width: '100%',
44384
+ padding: '0'
44385
+ }, /*#__PURE__*/React__default.createElement(PopupBody, {
44386
+ paddingH: '24px',
44387
+ paddingV: '24px',
44388
+ marginBottom: '0'
44389
+ }, /*#__PURE__*/React__default.createElement(CloseIcon, {
44390
+ color: iconPrimary,
44391
+ onClick: togglePopup
44392
+ }), /*#__PURE__*/React__default.createElement(PopupName, {
44393
+ color: textPrimary,
44394
+ marginBottom: '20px',
44395
+ lineHeight: '24px'
44396
+ }, "Set a default message timer"), /*#__PURE__*/React__default.createElement(PopupDescription, {
44397
+ color: textPrimary,
44398
+ highlightColor: accentColor
44399
+ }, "Make messages in this chat disappear."), /*#__PURE__*/React__default.createElement(TimerOptionsSection, {
44400
+ marginTop: '20px'
44401
+ }, /*#__PURE__*/React__default.createElement(Label, {
44402
+ color: textPrimary,
44403
+ marginTop: '0'
44404
+ }, "Auto-delete after"), TIMER_OPTIONS.map(function (option) {
44405
+ return /*#__PURE__*/React__default.createElement(TimerOptionItem, {
44406
+ key: option.key,
44407
+ color: textPrimary,
44408
+ onClick: function onClick() {
44409
+ return setSelectedOption(option.key);
44410
+ }
44411
+ }, /*#__PURE__*/React__default.createElement(CustomRadio, {
44412
+ index: option.key,
44413
+ size: '18px',
44414
+ state: selectedOption === option.key,
44415
+ onChange: function onChange() {
44416
+ return setSelectedOption(option.key);
44417
+ },
44418
+ checkedBorderColor: accentColor,
44419
+ borderColor: iconInactive,
44420
+ borderRadius: '4px',
44421
+ variant: 'checkbox'
44422
+ }), option.label);
44423
+ }), CUSTOM_OPTIONS.length > 0 && (/*#__PURE__*/React__default.createElement(TimerOptionItem, {
44424
+ color: textPrimary,
44425
+ onClick: function onClick() {
44426
+ return setSelectedOption('custom');
44427
+ }
44428
+ }, /*#__PURE__*/React__default.createElement(CustomRadio, {
44429
+ index: 'custom',
44430
+ size: '18px',
44431
+ state: selectedOption === 'custom',
44432
+ onChange: function onChange() {
44433
+ return setSelectedOption('custom');
44434
+ },
44435
+ checkedBorderColor: accentColor,
44436
+ borderColor: iconInactive,
44437
+ borderRadius: '4px',
44438
+ variant: 'checkbox'
44439
+ }), "Custom")), selectedOption === 'custom' && (/*#__PURE__*/React__default.createElement(CustomTimerSection, null, /*#__PURE__*/React__default.createElement(Label, {
44440
+ color: textPrimary,
44441
+ marginTop: '0'
44442
+ }, "Auto-delete after"), /*#__PURE__*/React__default.createElement(CustomSelectWrapper, {
44443
+ accentColor: accentColor
44444
+ }, /*#__PURE__*/React__default.createElement(CustomSelect, {
44445
+ backgroundColor: background,
44446
+ color: textPrimary,
44447
+ errorColor: warningColor,
44448
+ placeholderColor: textSecondary,
44449
+ borderColor: isDropdownOpen ? accentColor : borderColor,
44450
+ disabledColor: surface1,
44451
+ minWidth: '474px',
44452
+ maxWidth: '474px'
44453
+ }, /*#__PURE__*/React__default.createElement(DropDown, {
44454
+ withIcon: true,
44455
+ theme: theme,
44456
+ isSelect: true,
44457
+ position: 'top',
44458
+ trigger: /*#__PURE__*/React__default.createElement(CustomSelectTriggerStyled, {
44459
+ color: textPrimary
44460
+ }, selectedCustomLabel),
44461
+ watchToggleState: setDropdownOpen
44462
+ }, /*#__PURE__*/React__default.createElement(CustomDropdownOptionsUl, {
44463
+ theme: theme,
44464
+ accentColor: accentColor
44465
+ }, CUSTOM_OPTIONS.map(function (o) {
44466
+ return /*#__PURE__*/React__default.createElement(CustomDropdownOptionLi, {
44467
+ hoverBackground: backgroundHovered,
44468
+ key: o.label,
44469
+ onClick: function onClick() {
44470
+ return setCustomValue(o.label);
44471
+ },
44472
+ textColor: textPrimary
44473
+ }, o.label);
44474
+ }))))))))), /*#__PURE__*/React__default.createElement(PopupFooter, {
44475
+ backgroundColor: surface1
44476
+ }, /*#__PURE__*/React__default.createElement(Button, {
44477
+ type: 'button',
44478
+ color: textPrimary,
44479
+ backgroundColor: 'transparent',
44480
+ onClick: togglePopup
44481
+ }, "Cancel"), /*#__PURE__*/React__default.createElement(SetButton, {
44482
+ type: 'button',
44483
+ backgroundColor: accentColor,
44484
+ color: textOnPrimary,
44485
+ borderRadius: '8px',
44486
+ onClick: handleSet,
44487
+ disabled: isValueUnchanged
44488
+ }, "Set"))));
44489
+ }
44490
+ var TimerOptionsSection = styled.div(_templateObject$S || (_templateObject$S = _taggedTemplateLiteralLoose(["\n margin-top: ", ";\n"])), function (props) {
44491
+ return props.marginTop || '14px';
44492
+ });
44493
+ var TimerOptionItem = styled.div(_templateObject2$N || (_templateObject2$N = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n cursor: pointer;\n color: ", ";\n padding: 10px 0;\n font-weight: 400;\n font-size: 15px;\n line-height: 20px;\n\n & > label {\n margin-right: 10px;\n }\n"])), function (props) {
44494
+ return props.color;
44495
+ });
44496
+ var CustomTimerSection = styled.div(_templateObject3$G || (_templateObject3$G = _taggedTemplateLiteralLoose(["\n margin: 16px auto 0 auto;\n"])));
44497
+ var CustomSelectWrapper = styled.div(_templateObject4$A || (_templateObject4$A = _taggedTemplateLiteralLoose(["\n position: relative;\n width: 474px;\n\n .dropdown-wrapper {\n width: 100%;\n\n .dropdown-body {\n width: 474px;\n // height: 268px;\n max-height: 268px;\n border-color: ", "\n border-radius: 8px;\n }\n }\n"])), function (props) {
44498
+ return props.accentColor;
44499
+ });
44500
+ var CustomSelectTriggerStyled = styled(CustomSelectTrigger)(_templateObject5$v || (_templateObject5$v = _taggedTemplateLiteralLoose(["\n font-size: 15px;\n text-transform: none;\n"])));
44501
+ var CustomDropdownOptionLi = styled(DropdownOptionLi)(_templateObject6$r || (_templateObject6$r = _taggedTemplateLiteralLoose(["\n font-size: 15px;\n"])));
44502
+ var CustomDropdownOptionsUl = styled(DropdownOptionsUl)(_templateObject7$q || (_templateObject7$q = _taggedTemplateLiteralLoose(["\n border-color: ", ";\n height: 268px;\n max-height: 268px;\n border-radius: 0;\n\n ", " {\n padding-left: 24px;\n padding-right: 24px;\n }\n"])), function (props) {
44503
+ return props.accentColor;
44504
+ }, CustomDropdownOptionLi);
44505
+ var SetButton = styled(Button)(_templateObject8$n || (_templateObject8$n = _taggedTemplateLiteralLoose(["\n width: 57px;\n height: 36px;\n min-width: 57px;\n max-width: 57px;\n padding: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n"])));
44506
+
44507
+ var _templateObject$T, _templateObject2$O, _templateObject3$H, _templateObject4$B, _templateObject5$w, _templateObject6$s, _templateObject7$r, _templateObject8$o, _templateObject9$k, _templateObject0$i, _templateObject1$f, _templateObject10$9, _templateObject11$7, _templateObject12$6, _templateObject13$4, _templateObject14$3, _templateObject15$3, _templateObject16$3, _templateObject17$3, _templateObject18$3, _templateObject19$3, _templateObject20$3;
43963
44508
  var Actions = function Actions(_ref) {
44509
+ var _getDisappearingSetti;
43964
44510
  var setActionsHeight = _ref.setActionsHeight,
43965
44511
  channel = _ref.channel,
43966
44512
  actionMenuOpen = _ref.actionMenuOpen,
@@ -44036,9 +44582,11 @@ var Actions = function Actions(_ref) {
44036
44582
  borderColor = _ref.borderColor;
44037
44583
  var _useColor = useColors(),
44038
44584
  textPrimary = _useColor[THEME_COLORS.TEXT_PRIMARY],
44585
+ textSecondary = _useColor[THEME_COLORS.TEXT_SECONDARY],
44039
44586
  iconPrimary = _useColor[THEME_COLORS.ICON_PRIMARY],
44040
44587
  surface1 = _useColor[THEME_COLORS.SURFACE_1],
44041
- warningColor = _useColor[THEME_COLORS.WARNING];
44588
+ warningColor = _useColor[THEME_COLORS.WARNING],
44589
+ backgroundColor = _useColor[THEME_COLORS.BACKGROUND];
44042
44590
  var ChatClient = getClient();
44043
44591
  var user = ChatClient.user;
44044
44592
  var _useState = useState(false),
@@ -44065,14 +44613,17 @@ var Actions = function Actions(_ref) {
44065
44613
  var _useState8 = useState(false),
44066
44614
  reportUserPopupOpen = _useState8[0],
44067
44615
  setReportUserPopupOpen = _useState8[1];
44616
+ var _useState9 = useState(false),
44617
+ disappearingMessagesPopupOpen = _useState9[0],
44618
+ setDisappearingMessagesPopupOpen = _useState9[1];
44068
44619
  var _usePermissions = usePermissions(channel.userRole),
44069
44620
  checkActionPermission = _usePermissions[0];
44070
- var _useState9 = useState(''),
44071
- popupButtonText = _useState9[0],
44072
- setPopupButtonText = _useState9[1];
44073
44621
  var _useState0 = useState(''),
44074
- popupTitle = _useState0[0],
44075
- setPopupTitle = _useState0[1];
44622
+ popupButtonText = _useState0[0],
44623
+ setPopupButtonText = _useState0[1];
44624
+ var _useState1 = useState(''),
44625
+ popupTitle = _useState1[0],
44626
+ setPopupTitle = _useState1[1];
44076
44627
  var dispatch = useDispatch();
44077
44628
  var oneHour = 60 * 60 * 1000;
44078
44629
  var twoHours = oneHour * 2;
@@ -44086,6 +44637,8 @@ var Actions = function Actions(_ref) {
44086
44637
  var otherMembers = isDirectChannel && channel.members.filter(function (member) {
44087
44638
  return member.id && member.id !== user.id;
44088
44639
  }) || [];
44640
+ var hasPermissiontoSetDM = channel.userRole === 'admin' || channel.userRole === 'owner';
44641
+ var canToggleDisappearingMessages = isDirectChannel || hasPermissiontoSetDM;
44089
44642
  var handleToggleClearHistoryPopup = function handleToggleClearHistoryPopup() {
44090
44643
  setClearHistoryPopupOpen(!clearHistoryPopupOpen);
44091
44644
  };
@@ -44163,6 +44716,13 @@ var Actions = function Actions(_ref) {
44163
44716
  dispatch(pinChannelAC(channel.id));
44164
44717
  }
44165
44718
  };
44719
+ var handleToggleDisappearingMessagesPopup = function handleToggleDisappearingMessagesPopup() {
44720
+ setDisappearingMessagesPopupOpen(!disappearingMessagesPopupOpen);
44721
+ };
44722
+ var handleSetDisappearingMessagesTimer = function handleSetDisappearingMessagesTimer(timerInSeconds) {
44723
+ var periodInMilliseconds = timerInSeconds ? timerInSeconds * 1000 : 0;
44724
+ dispatch(setMessageRetentionPeriodAC(channel.id, periodInMilliseconds));
44725
+ };
44166
44726
  var containerRef = useRef(null);
44167
44727
  useEffect(function () {
44168
44728
  if (containerRef.current) {
@@ -44255,7 +44815,20 @@ var Actions = function Actions(_ref) {
44255
44815
  color: staredMessagesTextColor || textPrimary,
44256
44816
  hoverColor: staredMessagesTextColor || textPrimary,
44257
44817
  fontSize: actionItemsFontSize
44258
- }, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, staredMessagesIcon || /*#__PURE__*/React__default.createElement(DefaultStarIcon, null), " Starred messages "))), showPinChannel && !channel.isMockChannel && (isDirectChannel && directChannelUser ? directChannelUser.state !== USER_STATE.DELETED : true) && (/*#__PURE__*/React__default.createElement(ActionItem, {
44818
+ }, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, staredMessagesIcon || /*#__PURE__*/React__default.createElement(DefaultStarIcon, null), " Starred messages "))), ((_getDisappearingSetti = getDisappearingSettings()) === null || _getDisappearingSetti === void 0 ? void 0 : _getDisappearingSetti.show) && !channel.isMockChannel && canToggleDisappearingMessages && (isDirectChannel && directChannelUser ? directChannelUser.state !== USER_STATE.DELETED : true) && (/*#__PURE__*/React__default.createElement(ActionItem, {
44819
+ key: 1.5,
44820
+ onClick: handleToggleDisappearingMessagesPopup,
44821
+ iconColor: iconPrimary,
44822
+ color: textPrimary,
44823
+ hoverColor: textPrimary,
44824
+ fontSize: actionItemsFontSize
44825
+ }, /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(DefaultWatchIcon, {
44826
+ "$isLightMode": backgroundColor === '#FFFFFF'
44827
+ }), "Disappearing messages", /*#__PURE__*/React__default.createElement(DisappearingMessagesStatusWrapper, null, /*#__PURE__*/React__default.createElement(DisappearingMessagesStatus, {
44828
+ color: textSecondary
44829
+ }, channel.messageRetentionPeriod ? 'On' : 'Off'), /*#__PURE__*/React__default.createElement(ChevronRightIconWrapper, null, /*#__PURE__*/React__default.createElement(SvgChevronBottom, {
44830
+ color: iconPrimary
44831
+ })))))), showPinChannel && !channel.isMockChannel && (isDirectChannel && directChannelUser ? directChannelUser.state !== USER_STATE.DELETED : true) && (/*#__PURE__*/React__default.createElement(ActionItem, {
44259
44832
  key: 2,
44260
44833
  onClick: handlePinUnpinChannel,
44261
44834
  order: pinChannelOrder,
@@ -44421,20 +44994,25 @@ var Actions = function Actions(_ref) {
44421
44994
  buttonText: popupButtonText,
44422
44995
  description: channel.type === DEFAULT_CHANNEL_TYPE.DIRECT ? 'Once you clear the history, the messages in this chat will be permanently removed for you.' : channel.type === DEFAULT_CHANNEL_TYPE.GROUP || channel.type === DEFAULT_CHANNEL_TYPE.PRIVATE ? 'Once you clear the history it will be permanently removed for you.' : channel.type === DEFAULT_CHANNEL_TYPE.BROADCAST || channel.type === DEFAULT_CHANNEL_TYPE.PUBLIC ? 'Once you clear the history, the messages in this channel will be permanently removed for all the subscribers.' : 'Are you sure you want to delete all messages? This action cannot be undone.',
44423
44996
  title: popupTitle
44997
+ })), disappearingMessagesPopupOpen && (/*#__PURE__*/React__default.createElement(DisappearingMessagesPopup, {
44998
+ theme: theme,
44999
+ togglePopup: handleToggleDisappearingMessagesPopup,
45000
+ handleSetTimer: handleSetDisappearingMessagesTimer,
45001
+ currentTimer: channel.messageRetentionPeriod
44424
45002
  })));
44425
45003
  };
44426
- var Container$n = styled.div(_templateObject$S || (_templateObject$S = _taggedTemplateLiteralLoose(["\n padding: 10px 16px;\n border-bottom: 6px solid ", ";\n]"])), function (props) {
45004
+ var Container$n = styled.div(_templateObject$T || (_templateObject$T = _taggedTemplateLiteralLoose(["\n padding: 10px 16px;\n border-bottom: 6px solid ", ";\n]"])), function (props) {
44427
45005
  return props.borderColor;
44428
45006
  });
44429
- var ActionHeader = styled.div(_templateObject2$N || (_templateObject2$N = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin: 25px 0 22px;\n cursor: pointer;\n"])));
44430
- var MenuTriggerIcon = styled.span(_templateObject3$G || (_templateObject3$G = _taggedTemplateLiteralLoose(["\n transition: all 0.2s;\n ", "\n"])), function (props) {
45007
+ var ActionHeader = styled.div(_templateObject2$O || (_templateObject2$O = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin: 25px 0 22px;\n cursor: pointer;\n"])));
45008
+ var MenuTriggerIcon = styled.span(_templateObject3$H || (_templateObject3$H = _taggedTemplateLiteralLoose(["\n transition: all 0.2s;\n ", "\n"])), function (props) {
44431
45009
  return !props.isOpen && ' transform: rotate(-90deg);';
44432
45010
  });
44433
- var ActionsMenu = styled.ul(_templateObject4$A || (_templateObject4$A = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n margin: 0;\n padding: 0;\n list-style: none;\n transition: all 0.2s;\n"])));
44434
- var DefaultMutedIcon = styled(SvgUnmuteNotifications)(_templateObject5$v || (_templateObject5$v = _taggedTemplateLiteralLoose([""])));
44435
- var DefaultMuteIcon = styled(SvgNotifications)(_templateObject6$r || (_templateObject6$r = _taggedTemplateLiteralLoose([""])));
44436
- var DefaultStarIcon = styled(SvgStar)(_templateObject7$q || (_templateObject7$q = _taggedTemplateLiteralLoose([""])));
44437
- var DefaultUnpinIcon = styled(SvgUnpin)(_templateObject8$n || (_templateObject8$n = _taggedTemplateLiteralLoose([""])));
45011
+ var ActionsMenu = styled.ul(_templateObject4$B || (_templateObject4$B = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n margin: 0;\n padding: 0;\n list-style: none;\n transition: all 0.2s;\n"])));
45012
+ var DefaultMutedIcon = styled(SvgUnmuteNotifications)(_templateObject5$w || (_templateObject5$w = _taggedTemplateLiteralLoose([""])));
45013
+ var DefaultMuteIcon = styled(SvgNotifications)(_templateObject6$s || (_templateObject6$s = _taggedTemplateLiteralLoose([""])));
45014
+ var DefaultStarIcon = styled(SvgStar)(_templateObject7$r || (_templateObject7$r = _taggedTemplateLiteralLoose([""])));
45015
+ var DefaultUnpinIcon = styled(SvgUnpin)(_templateObject8$o || (_templateObject8$o = _taggedTemplateLiteralLoose([""])));
44438
45016
  var DefaultPinIcon = styled(SvgPin)(_templateObject9$k || (_templateObject9$k = _taggedTemplateLiteralLoose([""])));
44439
45017
  var DefaultMarkAsRead = styled(SvgMarkAsRead)(_templateObject0$i || (_templateObject0$i = _taggedTemplateLiteralLoose([""])));
44440
45018
  var DefaultMarkAsUnRead = styled(SvgMarkAsUnRead)(_templateObject1$f || (_templateObject1$f = _taggedTemplateLiteralLoose([""])));
@@ -44444,7 +45022,10 @@ var DefaultClearIcon = styled(SvgClear)(_templateObject12$6 || (_templateObject1
44444
45022
  var DefaultDeleteChannelIcon = styled(SvgDeleteChannel)(_templateObject13$4 || (_templateObject13$4 = _taggedTemplateLiteralLoose([""])));
44445
45023
  var DefaultBottomIcon = styled(SvgBottom)(_templateObject14$3 || (_templateObject14$3 = _taggedTemplateLiteralLoose([""])));
44446
45024
  var DefaultMarkAsReadIcon = styled(SvgLeave)(_templateObject15$3 || (_templateObject15$3 = _taggedTemplateLiteralLoose([""])));
44447
- var ActionItem = styled.li(_templateObject16$3 || (_templateObject16$3 = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n padding: 10px 0;\n font-size: ", ";\n color: ", ";\n cursor: pointer;\n order: ", ";\n pointer-events: ", ";\n\n & > div {\n margin-left: auto;\n }\n\n & > svg {\n margin-right: 16px;\n color: ", ";\n width: 24px;\n height: 24px;\n }\n\n &:hover {\n color: ", ";\n }\n\n &:last-child {\n //margin-bottom: 0;\n }\n"])), function (props) {
45025
+ var DefaultWatchIcon = styled(SvgWatch)(_templateObject16$3 || (_templateObject16$3 = _taggedTemplateLiteralLoose(["\n width: 24px;\n height: 24px;\n\n path.watch-ticks,\n path:nth-child(2) {\n fill: ", " !important;\n }\n"])), function (props) {
45026
+ return props.$isLightMode ? '#FFFFFF' : '#000000';
45027
+ });
45028
+ var ActionItem = styled.li(_templateObject17$3 || (_templateObject17$3 = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n padding: 10px 0;\n font-size: ", ";\n color: ", ";\n cursor: pointer;\n order: ", ";\n pointer-events: ", ";\n\n & > div {\n margin-left: auto;\n }\n\n & > svg {\n margin-right: 16px;\n color: ", ";\n width: 24px;\n height: 24px;\n }\n\n &:hover {\n color: ", ";\n }\n\n &:last-child {\n //margin-bottom: 0;\n }\n"])), function (props) {
44448
45029
  return props.fontSize || '15px';
44449
45030
  }, function (props) {
44450
45031
  return props.color;
@@ -44457,19 +45038,24 @@ var ActionItem = styled.li(_templateObject16$3 || (_templateObject16$3 = _tagged
44457
45038
  }, function (props) {
44458
45039
  return props.hoverColor;
44459
45040
  });
45041
+ var DisappearingMessagesStatusWrapper = styled.div(_templateObject18$3 || (_templateObject18$3 = _taggedTemplateLiteralLoose(["\n margin-left: auto;\n display: flex;\n align-items: center;\n gap: 8px;\n"])));
45042
+ var DisappearingMessagesStatus = styled.span(_templateObject19$3 || (_templateObject19$3 = _taggedTemplateLiteralLoose(["\n color: ", ";\n font-size: 14px;\n"])), function (props) {
45043
+ return props.color;
45044
+ });
45045
+ var ChevronRightIconWrapper = styled.span(_templateObject20$3 || (_templateObject20$3 = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n\n & > svg {\n width: 16px;\n height: 16px;\n transform: rotate(-90deg);\n }\n"])));
44460
45046
 
44461
- var _rect$2, _rect2, _path$1s;
44462
- function _extends$1w() {
44463
- return _extends$1w = Object.assign ? Object.assign.bind() : function (n) {
45047
+ var _rect$2, _rect2, _path$1v;
45048
+ function _extends$1z() {
45049
+ return _extends$1z = Object.assign ? Object.assign.bind() : function (n) {
44464
45050
  for (var e = 1; e < arguments.length; e++) {
44465
45051
  var t = arguments[e];
44466
45052
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
44467
45053
  }
44468
45054
  return n;
44469
- }, _extends$1w.apply(null, arguments);
45055
+ }, _extends$1z.apply(null, arguments);
44470
45056
  }
44471
45057
  function SvgAddMember(props) {
44472
- return /*#__PURE__*/createElement$1("svg", _extends$1w({
45058
+ return /*#__PURE__*/createElement$1("svg", _extends$1z({
44473
45059
  width: 40,
44474
45060
  height: 40,
44475
45061
  viewBox: "0 0 40.01 40.01",
@@ -44489,35 +45075,35 @@ function SvgAddMember(props) {
44489
45075
  stroke: "#000",
44490
45076
  strokeOpacity: 0.08,
44491
45077
  strokeWidth: 0.5
44492
- })), _path$1s || (_path$1s = /*#__PURE__*/createElement$1("path", {
45078
+ })), _path$1v || (_path$1v = /*#__PURE__*/createElement$1("path", {
44493
45079
  d: "M20 12a1 1 0 011 1v6h6a1 1 0 110 2h-6v6a1 1 0 11-2 0l-.001-6H13a1 1 0 110-2h5.999L19 13a1 1 0 011-1z",
44494
45080
  fill: "CurrentColor"
44495
45081
  })));
44496
45082
  }
44497
45083
 
44498
- var _path$1t;
44499
- function _extends$1x() {
44500
- return _extends$1x = Object.assign ? Object.assign.bind() : function (n) {
45084
+ var _path$1w;
45085
+ function _extends$1A() {
45086
+ return _extends$1A = Object.assign ? Object.assign.bind() : function (n) {
44501
45087
  for (var e = 1; e < arguments.length; e++) {
44502
45088
  var t = arguments[e];
44503
45089
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
44504
45090
  }
44505
45091
  return n;
44506
- }, _extends$1x.apply(null, arguments);
45092
+ }, _extends$1A.apply(null, arguments);
44507
45093
  }
44508
45094
  function SvgMoreVert(props) {
44509
- return /*#__PURE__*/createElement$1("svg", _extends$1x({
45095
+ return /*#__PURE__*/createElement$1("svg", _extends$1A({
44510
45096
  width: 4,
44511
45097
  height: 14,
44512
45098
  fill: "none",
44513
45099
  xmlns: "http://www.w3.org/2000/svg"
44514
- }, props), _path$1t || (_path$1t = /*#__PURE__*/createElement$1("path", {
45100
+ }, props), _path$1w || (_path$1w = /*#__PURE__*/createElement$1("path", {
44515
45101
  d: "M.532 11.012c.355-.355.764-.533 1.228-.533.464 0 .874.178 1.228.533.355.354.532.764.532 1.228 0 .464-.177.873-.532 1.228-.354.355-.764.532-1.228.532-.464 0-.873-.177-1.228-.532C.177 13.113 0 12.704 0 12.24c0-.464.177-.873.532-1.228zm0-5.24c.355-.355.764-.532 1.228-.532.464 0 .874.177 1.228.532.355.355.532.764.532 1.228 0 .464-.177.873-.532 1.228-.354.355-.764.532-1.228.532-.464 0-.873-.177-1.228-.532C.177 7.873 0 7.464 0 7c0-.464.177-.873.532-1.228zm2.456-2.784c-.354.355-.764.532-1.228.532-.464 0-.873-.177-1.228-.532C.177 2.634 0 2.224 0 1.76 0 1.296.177.887.532.532.887.177 1.296 0 1.76 0c.464 0 .874.177 1.228.532.355.355.532.764.532 1.228 0 .464-.177.874-.532 1.228z",
44516
45102
  fill: "#9B9DA8"
44517
45103
  })));
44518
45104
  }
44519
45105
 
44520
- var _templateObject$T, _templateObject2$O, _templateObject3$H;
45106
+ var _templateObject$U, _templateObject2$P, _templateObject3$I;
44521
45107
  var ChangeMemberRole = function ChangeMemberRole(_ref) {
44522
45108
  var theme = _ref.theme,
44523
45109
  channelId = _ref.channelId,
@@ -44620,12 +45206,12 @@ var ChangeMemberRole = function ChangeMemberRole(_ref) {
44620
45206
  onClick: handleSave
44621
45207
  }, "Save"))));
44622
45208
  };
44623
- var RolesSelect = styled.div(_templateObject$T || (_templateObject$T = _taggedTemplateLiteralLoose(["\n margin-bottom: 32px;\n"])));
44624
- var RoleLabel = styled.div(_templateObject2$O || (_templateObject2$O = _taggedTemplateLiteralLoose(["\n font-style: normal;\n font-weight: 500;\n font-size: 14px;\n margin: 20px 0 8px;\n color: ", ";\n"])), function (_ref2) {
45209
+ var RolesSelect = styled.div(_templateObject$U || (_templateObject$U = _taggedTemplateLiteralLoose(["\n margin-bottom: 32px;\n"])));
45210
+ var RoleLabel = styled.div(_templateObject2$P || (_templateObject2$P = _taggedTemplateLiteralLoose(["\n font-style: normal;\n font-weight: 500;\n font-size: 14px;\n margin: 20px 0 8px;\n color: ", ";\n"])), function (_ref2) {
44625
45211
  var color = _ref2.color;
44626
45212
  return color;
44627
45213
  });
44628
- var RoleSpan = styled.span(_templateObject3$H || (_templateObject3$H = _taggedTemplateLiteralLoose(["\n font-style: normal;\n font-weight: normal;\n font-size: 14px;\n text-transform: capitalize;\n"])));
45214
+ var RoleSpan = styled.span(_templateObject3$I || (_templateObject3$I = _taggedTemplateLiteralLoose(["\n font-style: normal;\n font-weight: normal;\n font-size: 14px;\n text-transform: capitalize;\n"])));
44629
45215
 
44630
45216
  function ResetLinkConfirmModal(_ref) {
44631
45217
  var _getInviteLinkOptions;
@@ -44662,7 +45248,7 @@ function ResetLinkConfirmModal(_ref) {
44662
45248
  });
44663
45249
  }
44664
45250
 
44665
- var _templateObject$U, _templateObject2$P, _templateObject3$I, _templateObject4$B, _templateObject5$w, _templateObject6$s, _templateObject7$r, _templateObject8$o, _templateObject9$l, _templateObject0$j, _templateObject1$g, _templateObject10$a, _templateObject11$8, _templateObject12$7, _templateObject13$5;
45251
+ var _templateObject$V, _templateObject2$Q, _templateObject3$J, _templateObject4$C, _templateObject5$x, _templateObject6$t, _templateObject7$s, _templateObject8$p, _templateObject9$l, _templateObject0$j, _templateObject1$g, _templateObject10$a, _templateObject11$8, _templateObject12$7, _templateObject13$5;
44666
45252
  function InviteLinkModal(_ref) {
44667
45253
  var _getInviteLinkOptions, _tabs$link, _tabs$qr, _tabs$link2, _tabs$qr2;
44668
45254
  var onClose = _ref.onClose,
@@ -45146,34 +45732,34 @@ function InviteLinkModal(_ref) {
45146
45732
  handleForward: handleForwardChannels
45147
45733
  })));
45148
45734
  }
45149
- var LogoIconCont = styled.div(_templateObject$U || (_templateObject$U = _taggedTemplateLiteralLoose(["\n position: absolute;\n top: calc(50% - 11%);\n left: calc(50% - 11%);\n width: 22%;\n height: 22%;\n img {\n width: 100%;\n height: 100%;\n object-fit: contain;\n border-radius: 10px;\n }\n svg {\n width: 100%;\n height: 100%;\n object-fit: contain;\n border-radius: 10px;\n }\n"])));
45150
- var Tabs$1 = styled.div(_templateObject2$P || (_templateObject2$P = _taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 8px;\n border-radius: 10px;\n background-color: ", ";\n padding: 2px;\n margin: 4px 0 16px;\n border: 1px solid ", ";\n"])), function (p) {
45735
+ var LogoIconCont = styled.div(_templateObject$V || (_templateObject$V = _taggedTemplateLiteralLoose(["\n position: absolute;\n top: calc(50% - 11%);\n left: calc(50% - 11%);\n width: 22%;\n height: 22%;\n img {\n width: 100%;\n height: 100%;\n object-fit: contain;\n border-radius: 10px;\n }\n svg {\n width: 100%;\n height: 100%;\n object-fit: contain;\n border-radius: 10px;\n }\n"])));
45736
+ var Tabs$1 = styled.div(_templateObject2$Q || (_templateObject2$Q = _taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 8px;\n border-radius: 10px;\n background-color: ", ";\n padding: 2px;\n margin: 4px 0 16px;\n border: 1px solid ", ";\n"])), function (p) {
45151
45737
  return p.backgroundColor;
45152
45738
  }, function (p) {
45153
45739
  return p.borderColor;
45154
45740
  });
45155
- var TabButton = styled.button(_templateObject3$I || (_templateObject3$I = _taggedTemplateLiteralLoose(["\n height: 36px;\n border: none;\n border-radius: 10px;\n cursor: pointer;\n background-color: ", ";\n ", "\n color: ", ";\n"])), function (p) {
45741
+ var TabButton = styled.button(_templateObject3$J || (_templateObject3$J = _taggedTemplateLiteralLoose(["\n height: 36px;\n border: none;\n border-radius: 10px;\n cursor: pointer;\n background-color: ", ";\n ", "\n color: ", ";\n"])), function (p) {
45156
45742
  return p.active ? p.activeBackgroundColor : p.backgroundColor;
45157
45743
  }, function (p) {
45158
45744
  return p.active && "\n box-shadow: 0px 3px 6px -4px #0000001F;\n ";
45159
45745
  }, function (p) {
45160
45746
  return p.active ? p.activeColor : p.inactiveColor;
45161
45747
  });
45162
- var Description = styled.p(_templateObject4$B || (_templateObject4$B = _taggedTemplateLiteralLoose(["\n margin: 8px 0 16px;\n font-size: 14px;\n line-height: 16px;\n color: ", ";\n"])), function (p) {
45748
+ var Description = styled.p(_templateObject4$C || (_templateObject4$C = _taggedTemplateLiteralLoose(["\n margin: 8px 0 16px;\n font-size: 14px;\n line-height: 16px;\n color: ", ";\n"])), function (p) {
45163
45749
  return p.color;
45164
45750
  });
45165
- var FieldLabel = styled.span(_templateObject5$w || (_templateObject5$w = _taggedTemplateLiteralLoose(["\n font-size: 14px;\n line-height: 16px;\n color: ", ";\n"])), function (p) {
45751
+ var FieldLabel = styled.span(_templateObject5$x || (_templateObject5$x = _taggedTemplateLiteralLoose(["\n font-size: 14px;\n line-height: 16px;\n color: ", ";\n"])), function (p) {
45166
45752
  return p.color;
45167
45753
  });
45168
- var LinkField = styled.div(_templateObject6$s || (_templateObject6$s = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n border: 1px solid ", ";\n border-radius: 8px;\n margin-top: 8px;\n padding-left: 12px;\n background-color: ", ";\n"])), function (p) {
45754
+ var LinkField = styled.div(_templateObject6$t || (_templateObject6$t = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n border: 1px solid ", ";\n border-radius: 8px;\n margin-top: 8px;\n padding-left: 12px;\n background-color: ", ";\n"])), function (p) {
45169
45755
  return p.borderColor;
45170
45756
  }, function (p) {
45171
45757
  return p.backgroundColor;
45172
45758
  });
45173
- var LinkInput = styled.input(_templateObject7$r || (_templateObject7$r = _taggedTemplateLiteralLoose(["\n flex: 1;\n border: none;\n outline: none;\n height: 40px;\n background: transparent;\n color: ", ";\n font-size: 14px;\n"])), function (p) {
45759
+ var LinkInput = styled.input(_templateObject7$s || (_templateObject7$s = _taggedTemplateLiteralLoose(["\n flex: 1;\n border: none;\n outline: none;\n height: 40px;\n background: transparent;\n color: ", ";\n font-size: 14px;\n"])), function (p) {
45174
45760
  return p.color;
45175
45761
  });
45176
- var CopyButton = styled.button(_templateObject8$o || (_templateObject8$o = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n border: none;\n background: transparent;\n cursor: pointer;\n"])));
45762
+ var CopyButton = styled.button(_templateObject8$p || (_templateObject8$p = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n border: none;\n background: transparent;\n cursor: pointer;\n"])));
45177
45763
  var CopyButtonWrapper = styled.div(_templateObject9$l || (_templateObject9$l = _taggedTemplateLiteralLoose(["\n position: relative;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n"])));
45178
45764
  var SectionTitle = styled.h4(_templateObject0$j || (_templateObject0$j = _taggedTemplateLiteralLoose(["\n margin: 16px 0 8px;\n font-weight: 500;\n font-size: 15px;\n line-height: 16px;\n color: ", ";\n"])), function (p) {
45179
45765
  return p.color;
@@ -45194,7 +45780,7 @@ var QrHint = styled.p(_templateObject13$5 || (_templateObject13$5 = _taggedTempl
45194
45780
  return p.color;
45195
45781
  });
45196
45782
 
45197
- var _templateObject$V, _templateObject2$Q, _templateObject3$J, _templateObject4$C, _templateObject5$x, _templateObject6$t, _templateObject7$s, _templateObject8$p, _templateObject9$m;
45783
+ var _templateObject$W, _templateObject2$R, _templateObject3$K, _templateObject4$D, _templateObject5$y, _templateObject6$u, _templateObject7$t, _templateObject8$q, _templateObject9$m;
45198
45784
  var Members = function Members(_ref) {
45199
45785
  var _members$find;
45200
45786
  var channel = _ref.channel,
@@ -45516,18 +46102,18 @@ var Members = function Members(_ref) {
45516
46102
  channelId: channel.id
45517
46103
  })));
45518
46104
  };
45519
- var Container$o = styled.div(_templateObject$V || (_templateObject$V = _taggedTemplateLiteralLoose([""])));
45520
- var ActionsMenu$1 = styled.div(_templateObject2$Q || (_templateObject2$Q = _taggedTemplateLiteralLoose(["\n position: relative;\n transition: all 0.2s;\n"])));
45521
- var MemberNamePresence = styled.div(_templateObject3$J || (_templateObject3$J = _taggedTemplateLiteralLoose(["\n margin-left: 12px;\n max-width: calc(100% - 84px);\n\n & > ", " {\n display: block;\n }\n"])), SubTitle);
45522
- var MemberNameWrapper = styled.div(_templateObject4$C || (_templateObject4$C = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n"])));
45523
- var MemberName$3 = styled.h4(_templateObject5$x || (_templateObject5$x = _taggedTemplateLiteralLoose(["\n margin: 0;\n font-weight: 400;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n color: ", ";\n"])), function (props) {
46105
+ var Container$o = styled.div(_templateObject$W || (_templateObject$W = _taggedTemplateLiteralLoose([""])));
46106
+ var ActionsMenu$1 = styled.div(_templateObject2$R || (_templateObject2$R = _taggedTemplateLiteralLoose(["\n position: relative;\n transition: all 0.2s;\n"])));
46107
+ var MemberNamePresence = styled.div(_templateObject3$K || (_templateObject3$K = _taggedTemplateLiteralLoose(["\n margin-left: 12px;\n max-width: calc(100% - 84px);\n\n & > ", " {\n display: block;\n }\n"])), SubTitle);
46108
+ var MemberNameWrapper = styled.div(_templateObject4$D || (_templateObject4$D = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n"])));
46109
+ var MemberName$3 = styled.h4(_templateObject5$y || (_templateObject5$y = _taggedTemplateLiteralLoose(["\n margin: 0;\n font-weight: 400;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n color: ", ";\n"])), function (props) {
45524
46110
  return props.color;
45525
46111
  });
45526
- var EditMemberIcon = styled.span(_templateObject6$t || (_templateObject6$t = _taggedTemplateLiteralLoose(["\n margin-left: auto;\n cursor: pointer;\n padding: 15px;\n opacity: 0;\n visibility: hidden;\n transition: all 0.2s;\n\n & svg {\n color: ", ";\n }\n"])), function (props) {
46112
+ var EditMemberIcon = styled.span(_templateObject6$u || (_templateObject6$u = _taggedTemplateLiteralLoose(["\n margin-left: auto;\n cursor: pointer;\n padding: 15px;\n opacity: 0;\n visibility: hidden;\n transition: all 0.2s;\n\n & svg {\n color: ", ";\n }\n"])), function (props) {
45527
46113
  return props.color;
45528
46114
  });
45529
- var MembersList = styled.ul(_templateObject7$s || (_templateObject7$s = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 0;\n list-style: none;\n transition: all 0.2s;\n"])));
45530
- var MemberItem$1 = styled.li(_templateObject8$p || (_templateObject8$p = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n font-size: ", ";\n font-weight: 500;\n padding: 6px 16px;\n transition: all 0.2s;\n color: ", ";\n cursor: pointer;\n\n & > svg {\n rect {\n fill: transparent;\n }\n }\n\n &:first-child {\n cursor: pointer;\n\n > svg {\n color: ", ";\n margin-right: 12px;\n & > rect {\n fill: ", " !important;\n }\n }\n }\n\n &:hover {\n background-color: ", ";\n }\n\n &:hover ", " {\n opacity: 1;\n visibility: visible;\n }\n\n & .dropdown-wrapper {\n margin-left: auto;\n }\n\n & ", " {\n width: 12px;\n height: 12px;\n right: -1px;\n bottom: -1px;\n }\n"])), function (props) {
46115
+ var MembersList = styled.ul(_templateObject7$t || (_templateObject7$t = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 0;\n list-style: none;\n transition: all 0.2s;\n"])));
46116
+ var MemberItem$1 = styled.li(_templateObject8$q || (_templateObject8$q = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n font-size: ", ";\n font-weight: 500;\n padding: 6px 16px;\n transition: all 0.2s;\n color: ", ";\n cursor: pointer;\n\n & > svg {\n rect {\n fill: transparent;\n }\n }\n\n &:first-child {\n cursor: pointer;\n\n > svg {\n color: ", ";\n margin-right: 12px;\n & > rect {\n fill: ", " !important;\n }\n }\n }\n\n &:hover {\n background-color: ", ";\n }\n\n &:hover ", " {\n opacity: 1;\n visibility: visible;\n }\n\n & .dropdown-wrapper {\n margin-left: auto;\n }\n\n & ", " {\n width: 12px;\n height: 12px;\n right: -1px;\n bottom: -1px;\n }\n"])), function (props) {
45531
46117
  return props.fontSize || '15px';
45532
46118
  }, function (props) {
45533
46119
  return props.color;
@@ -45544,7 +46130,7 @@ var RoleBadge = styled.span(_templateObject9$m || (_templateObject9$m = _taggedT
45544
46130
  return props.backgroundColor;
45545
46131
  });
45546
46132
 
45547
- var _templateObject$W;
46133
+ var _templateObject$X;
45548
46134
  var MonthHeader = function MonthHeader(_ref) {
45549
46135
  var currentCreatedAt = _ref.currentCreatedAt,
45550
46136
  previousCreatedAt = _ref.previousCreatedAt,
@@ -45569,7 +46155,7 @@ var MonthHeader = function MonthHeader(_ref) {
45569
46155
  }, [currentCreatedAt, previousCreatedAt, isFirst, textSecondary, padding, fullWidth]);
45570
46156
  return monthComponent;
45571
46157
  };
45572
- var MonthHeaderContainer = styled.div(_templateObject$W || (_templateObject$W = _taggedTemplateLiteralLoose(["\n padding: ", ";\n width: ", ";\n font-style: normal;\n font-weight: 500;\n font-size: 13px;\n line-height: 16px;\n color: ", ";\n text-transform: uppercase;\n"])), function (props) {
46158
+ var MonthHeaderContainer = styled.div(_templateObject$X || (_templateObject$X = _taggedTemplateLiteralLoose(["\n padding: ", ";\n width: ", ";\n font-style: normal;\n font-weight: 500;\n font-size: 13px;\n line-height: 16px;\n color: ", ";\n text-transform: uppercase;\n"])), function (props) {
45573
46159
  return props.padding || '9px 12px';
45574
46160
  }, function (props) {
45575
46161
  return props.fullWidth ? '100%' : 'auto';
@@ -45577,7 +46163,7 @@ var MonthHeaderContainer = styled.div(_templateObject$W || (_templateObject$W =
45577
46163
  return props.color;
45578
46164
  });
45579
46165
 
45580
- var _templateObject$X, _templateObject2$R;
46166
+ var _templateObject$Y, _templateObject2$S;
45581
46167
  var Media = function Media(_ref) {
45582
46168
  var channel = _ref.channel;
45583
46169
  var _useColor = useColors(),
@@ -45629,21 +46215,21 @@ var Media = function Media(_ref) {
45629
46215
  currentMediaFile: mediaFile
45630
46216
  })));
45631
46217
  };
45632
- var Container$p = styled.div(_templateObject$X || (_templateObject$X = _taggedTemplateLiteralLoose(["\n padding: 6px 4px;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n align-items: flex-start;\n display: flex;\n flex-wrap: wrap;\n"])));
45633
- var MediaItem = styled.div(_templateObject2$R || (_templateObject2$R = _taggedTemplateLiteralLoose(["\n width: calc(33.3333% - 4px);\n aspect-ratio: 1/1;\n box-sizing: border-box;\n //border: 1px solid #ccc;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 8px;\n overflow: hidden;\n margin: 2px;\n"])));
46218
+ var Container$p = styled.div(_templateObject$Y || (_templateObject$Y = _taggedTemplateLiteralLoose(["\n padding: 6px 4px;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n align-items: flex-start;\n display: flex;\n flex-wrap: wrap;\n"])));
46219
+ var MediaItem = styled.div(_templateObject2$S || (_templateObject2$S = _taggedTemplateLiteralLoose(["\n width: calc(33.3333% - 4px);\n aspect-ratio: 1/1;\n box-sizing: border-box;\n //border: 1px solid #ccc;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 8px;\n overflow: hidden;\n margin: 2px;\n"])));
45634
46220
 
45635
- var _rect$3, _path$1u;
45636
- function _extends$1y() {
45637
- return _extends$1y = Object.assign ? Object.assign.bind() : function (n) {
46221
+ var _rect$3, _path$1x;
46222
+ function _extends$1B() {
46223
+ return _extends$1B = Object.assign ? Object.assign.bind() : function (n) {
45638
46224
  for (var e = 1; e < arguments.length; e++) {
45639
46225
  var t = arguments[e];
45640
46226
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
45641
46227
  }
45642
46228
  return n;
45643
- }, _extends$1y.apply(null, arguments);
46229
+ }, _extends$1B.apply(null, arguments);
45644
46230
  }
45645
46231
  function SvgDocumentIcon(props) {
45646
- return /*#__PURE__*/createElement$1("svg", _extends$1y({
46232
+ return /*#__PURE__*/createElement$1("svg", _extends$1B({
45647
46233
  width: 40,
45648
46234
  height: 40,
45649
46235
  fill: "none",
@@ -45654,7 +46240,7 @@ function SvgDocumentIcon(props) {
45654
46240
  rx: 8,
45655
46241
  fill: "currentColor",
45656
46242
  fillOpacity: 0.2
45657
- })), _path$1u || (_path$1u = /*#__PURE__*/createElement$1("path", {
46243
+ })), _path$1x || (_path$1x = /*#__PURE__*/createElement$1("path", {
45658
46244
  fillRule: "evenodd",
45659
46245
  clipRule: "evenodd",
45660
46246
  d: "M17.593 9.5c-2.098 0-3.023.185-3.962.687a4.685 4.685 0 00-1.944 1.944c-.502.939-.687 1.864-.687 3.962v7.386c0 2.098.185 3.023.687 3.962a4.685 4.685 0 001.944 1.944c.939.502 1.864.686 3.962.686h3.957c2.098 0 3.023-.184 3.962-.687a4.685 4.685 0 001.944-1.944c.502-.938.687-1.863.687-3.961v-5.1c0-.683-.024-.99-.105-1.34a3.094 3.094 0 00-.399-.964c-.19-.305-.39-.54-.874-1.022l-4.175-4.175c-.483-.483-.717-.684-1.022-.874a3.096 3.096 0 00-.963-.4c-.294-.067-.556-.095-1.034-.102V9.5h-1.978zm0 1.714c-2.002 0-2.587.182-3.154.485a2.971 2.971 0 00-1.24 1.24c-.303.567-.485 1.152-.485 3.154v7.386c0 2.001.182 2.587.485 3.153a2.97 2.97 0 001.24 1.24c.567.304 1.152.485 3.154.485h3.957c2.001 0 2.587-.181 3.153-.484a2.97 2.97 0 001.241-1.241c.303-.566.485-1.152.485-3.153v-5.1c0-.118-.001-.22-.003-.308h-4.712a2.143 2.143 0 01-2.143-2.142l.002-4.713-.15-.001h-1.83zm3.785.876l-.092-.091v3.93c0 .21.151.385.351.421l.077.007 3.932.002-.093-.094-4.175-4.175zm-6.092 12.839c0-.474.383-.858.857-.858h3.428a.857.857 0 010 1.715h-3.428a.857.857 0 01-.857-.857zm.857-4.286a.857.857 0 100 1.714h6a.857.857 0 000-1.714h-6z",
@@ -45662,30 +46248,30 @@ function SvgDocumentIcon(props) {
45662
46248
  })));
45663
46249
  }
45664
46250
 
45665
- var _path$1v;
45666
- function _extends$1z() {
45667
- return _extends$1z = Object.assign ? Object.assign.bind() : function (n) {
46251
+ var _path$1y;
46252
+ function _extends$1C() {
46253
+ return _extends$1C = Object.assign ? Object.assign.bind() : function (n) {
45668
46254
  for (var e = 1; e < arguments.length; e++) {
45669
46255
  var t = arguments[e];
45670
46256
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
45671
46257
  }
45672
46258
  return n;
45673
- }, _extends$1z.apply(null, arguments);
46259
+ }, _extends$1C.apply(null, arguments);
45674
46260
  }
45675
46261
  function SvgDownloadFile(props) {
45676
- return /*#__PURE__*/createElement$1("svg", _extends$1z({
46262
+ return /*#__PURE__*/createElement$1("svg", _extends$1C({
45677
46263
  width: 24,
45678
46264
  height: 24,
45679
46265
  xmlns: "http://www.w3.org/2000/svg",
45680
46266
  fill: "currentColor"
45681
- }, props), _path$1v || (_path$1v = /*#__PURE__*/createElement$1("path", {
46267
+ }, props), _path$1y || (_path$1y = /*#__PURE__*/createElement$1("path", {
45682
46268
  fillRule: "evenodd",
45683
46269
  clipRule: "evenodd",
45684
46270
  d: "M12 2a.91.91 0 01.91.91v11.44l2.993-2.993a.91.91 0 011.285 1.286l-4.545 4.545a.91.91 0 01-1.286 0l-4.545-4.545a.909.909 0 111.285-1.286l2.994 2.994V2.909A.91.91 0 0112 2zM2.91 15.636a.91.91 0 01.908.91v1.136a2.5 2.5 0 002.5 2.5h11.364a2.5 2.5 0 002.5-2.5v-1.136a.91.91 0 111.818 0v1.136A4.318 4.318 0 0117.682 22H6.318A4.318 4.318 0 012 17.682v-1.136a.91.91 0 01.91-.91z"
45685
46271
  })));
45686
46272
  }
45687
46273
 
45688
- var _templateObject$Y, _templateObject2$S, _templateObject3$K, _templateObject4$D, _templateObject5$y, _templateObject6$u, _templateObject7$t, _templateObject8$q;
46274
+ var _templateObject$Z, _templateObject2$T, _templateObject3$L, _templateObject4$E, _templateObject5$z, _templateObject6$v, _templateObject7$u, _templateObject8$r;
45689
46275
  var Files = function Files(_ref) {
45690
46276
  var channelId = _ref.channelId,
45691
46277
  filePreviewIcon = _ref.filePreviewIcon,
@@ -45807,30 +46393,30 @@ var Files = function Files(_ref) {
45807
46393
  }))) : filePreviewDownloadIcon || /*#__PURE__*/React__default.createElement(SvgDownloadFile, null))));
45808
46394
  }));
45809
46395
  };
45810
- var Container$q = styled.ul(_templateObject$Y || (_templateObject$Y = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 0;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n"])));
45811
- var DownloadWrapper = styled.a(_templateObject2$S || (_templateObject2$S = _taggedTemplateLiteralLoose(["\n text-decoration: none;\n visibility: ", ";\n padding: 5px 6px;\n position: absolute;\n top: 25%;\n right: 16px;\n cursor: pointer;\n & > svg {\n & path {\n fill: ", ";\n }\n color: ", ";\n }\n"])), function (props) {
46396
+ var Container$q = styled.ul(_templateObject$Z || (_templateObject$Z = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 0;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n"])));
46397
+ var DownloadWrapper = styled.a(_templateObject2$T || (_templateObject2$T = _taggedTemplateLiteralLoose(["\n text-decoration: none;\n visibility: ", ";\n padding: 5px 6px;\n position: absolute;\n top: 25%;\n right: 16px;\n cursor: pointer;\n & > svg {\n & path {\n fill: ", ";\n }\n color: ", ";\n }\n"])), function (props) {
45812
46398
  return props.visible ? 'visible' : 'hidden';
45813
46399
  }, function (props) {
45814
46400
  return props.iconColor;
45815
46401
  }, function (props) {
45816
46402
  return props.iconColor;
45817
46403
  });
45818
- var ProgressWrapper$2 = styled.span(_templateObject3$K || (_templateObject3$K = _taggedTemplateLiteralLoose(["\n display: inline-block;\n width: 20px;\n height: 20px;\n animation: preloader 1.5s linear infinite;\n\n @keyframes preloader {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n"])));
45819
- var FileIconCont = styled.span(_templateObject4$D || (_templateObject4$D = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n & > svg {\n width: 40px;\n height: 40px;\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
46404
+ var ProgressWrapper$2 = styled.span(_templateObject3$L || (_templateObject3$L = _taggedTemplateLiteralLoose(["\n display: inline-block;\n width: 20px;\n height: 20px;\n animation: preloader 1.5s linear infinite;\n\n @keyframes preloader {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n"])));
46405
+ var FileIconCont = styled.span(_templateObject4$E || (_templateObject4$E = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n & > svg {\n width: 40px;\n height: 40px;\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
45820
46406
  return props.iconColor;
45821
46407
  }, function (props) {
45822
46408
  return props.fillColor;
45823
46409
  });
45824
- var FileHoverIconCont = styled.span(_templateObject5$y || (_templateObject5$y = _taggedTemplateLiteralLoose(["\n display: none;\n & > svg {\n width: 40px;\n height: 40px;\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
46410
+ var FileHoverIconCont = styled.span(_templateObject5$z || (_templateObject5$z = _taggedTemplateLiteralLoose(["\n display: none;\n & > svg {\n width: 40px;\n height: 40px;\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
45825
46411
  return props.iconColor;
45826
46412
  }, function (props) {
45827
46413
  return props.fillColor;
45828
46414
  });
45829
- var FileThumb = styled.img(_templateObject6$u || (_templateObject6$u = _taggedTemplateLiteralLoose(["\n width: 40px;\n height: 40px;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 8px;\n object-fit: cover;\n"])));
45830
- var FileItem = styled.div(_templateObject7$t || (_templateObject7$t = _taggedTemplateLiteralLoose(["\n position: relative;\n padding: 11px 16px;\n display: flex;\n align-items: center;\n font-size: 15px;\n transition: all 0.2s;\n div {\n margin-left: 7px;\n width: calc(100% - 48px);\n }\n &:hover {\n background-color: ", ";\n ", " {\n visibility: visible;\n }\n & ", " {\n display: none;\n }\n & ", " {\n display: inline-flex;\n }\n }\n /*&.isHover {\n\n }*/\n"])), function (props) {
46415
+ var FileThumb = styled.img(_templateObject6$v || (_templateObject6$v = _taggedTemplateLiteralLoose(["\n width: 40px;\n height: 40px;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 8px;\n object-fit: cover;\n"])));
46416
+ var FileItem = styled.div(_templateObject7$u || (_templateObject7$u = _taggedTemplateLiteralLoose(["\n position: relative;\n padding: 11px 16px;\n display: flex;\n align-items: center;\n font-size: 15px;\n transition: all 0.2s;\n div {\n margin-left: 7px;\n width: calc(100% - 48px);\n }\n &:hover {\n background-color: ", ";\n ", " {\n visibility: visible;\n }\n & ", " {\n display: none;\n }\n & ", " {\n display: inline-flex;\n }\n }\n /*&.isHover {\n\n }*/\n"])), function (props) {
45831
46417
  return props.hoverBackgroundColor;
45832
46418
  }, DownloadWrapper, FileIconCont, FileHoverIconCont);
45833
- var FileSizeAndDate = styled.span(_templateObject8$q || (_templateObject8$q = _taggedTemplateLiteralLoose(["\n display: block;\n font-style: normal;\n font-weight: normal;\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n margin-top: 2px;\n"])), function (props) {
46419
+ var FileSizeAndDate = styled.span(_templateObject8$r || (_templateObject8$r = _taggedTemplateLiteralLoose(["\n display: block;\n font-style: normal;\n font-weight: normal;\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n margin-top: 2px;\n"])), function (props) {
45834
46420
  return props.fontSize || '13px';
45835
46421
  }, function (props) {
45836
46422
  return props.lineHeight || '16px';
@@ -45838,18 +46424,18 @@ var FileSizeAndDate = styled.span(_templateObject8$q || (_templateObject8$q = _t
45838
46424
  return props.color;
45839
46425
  });
45840
46426
 
45841
- var _rect$4, _path$1w;
45842
- function _extends$1A() {
45843
- return _extends$1A = Object.assign ? Object.assign.bind() : function (n) {
46427
+ var _rect$4, _path$1z;
46428
+ function _extends$1D() {
46429
+ return _extends$1D = Object.assign ? Object.assign.bind() : function (n) {
45844
46430
  for (var e = 1; e < arguments.length; e++) {
45845
46431
  var t = arguments[e];
45846
46432
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
45847
46433
  }
45848
46434
  return n;
45849
- }, _extends$1A.apply(null, arguments);
46435
+ }, _extends$1D.apply(null, arguments);
45850
46436
  }
45851
46437
  function SvgLinkIcon(props) {
45852
- return /*#__PURE__*/createElement$1("svg", _extends$1A({
46438
+ return /*#__PURE__*/createElement$1("svg", _extends$1D({
45853
46439
  width: 40,
45854
46440
  height: 40,
45855
46441
  fill: "none",
@@ -45861,7 +46447,7 @@ function SvgLinkIcon(props) {
45861
46447
  rx: 8,
45862
46448
  fill: "currentColor",
45863
46449
  fillOpacity: 0.2
45864
- })), _path$1w || (_path$1w = /*#__PURE__*/createElement$1("path", {
46450
+ })), _path$1z || (_path$1z = /*#__PURE__*/createElement$1("path", {
45865
46451
  fillRule: "evenodd",
45866
46452
  clipRule: "evenodd",
45867
46453
  d: "M21.547 11.524a4.9 4.9 0 016.928 6.929l-.01.011-4 4a4.9 4.9 0 01-6.93 0 .9.9 0 011.273-1.273 3.1 3.1 0 004.384 0l3.994-3.994a3.1 3.1 0 00-4.384-4.383l-1.094 1.094a.9.9 0 01-1.272-1.273l1.1-1.1.01-.01zm-6.011 6.011a4.9 4.9 0 016.928 0 .9.9 0 11-1.272 1.273 3.1 3.1 0 00-4.384 0l-4 4-.01.011a3.1 3.1 0 104.383 4.384l.01-.012 1.103-1.1a.9.9 0 111.272 1.272l-1.097 1.096a4.9 4.9 0 11-6.928-6.929l3.995-3.995z",
@@ -45869,7 +46455,7 @@ function SvgLinkIcon(props) {
45869
46455
  })));
45870
46456
  }
45871
46457
 
45872
- var _templateObject$Z, _templateObject2$T, _templateObject3$L, _templateObject4$E, _templateObject5$z;
46458
+ var _templateObject$_, _templateObject2$U, _templateObject3$M, _templateObject4$F, _templateObject5$A;
45873
46459
  var LinkItem = function LinkItem(_ref) {
45874
46460
  var link = _ref.link,
45875
46461
  linkPreviewIcon = _ref.linkPreviewIcon,
@@ -45900,25 +46486,25 @@ var LinkItem = function LinkItem(_ref) {
45900
46486
  color: linkPreviewColor || textPrimary
45901
46487
  }, link))));
45902
46488
  };
45903
- var LinkIconCont = styled.span(_templateObject$Z || (_templateObject$Z = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n > svg {\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
46489
+ var LinkIconCont = styled.span(_templateObject$_ || (_templateObject$_ = _taggedTemplateLiteralLoose(["\n display: inline-flex;\n > svg {\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
45904
46490
  return props.iconColor;
45905
46491
  }, function (props) {
45906
46492
  return props.fillColor;
45907
46493
  });
45908
- var LinkHoverIconCont = styled.span(_templateObject2$T || (_templateObject2$T = _taggedTemplateLiteralLoose(["\n display: none;\n > svg {\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
46494
+ var LinkHoverIconCont = styled.span(_templateObject2$U || (_templateObject2$U = _taggedTemplateLiteralLoose(["\n display: none;\n > svg {\n color: ", ";\n rect {\n fill: ", ";\n }\n }\n"])), function (props) {
45909
46495
  return props.iconColor;
45910
46496
  }, function (props) {
45911
46497
  return props.fillColor;
45912
46498
  });
45913
- var LinkInfoCont = styled.div(_templateObject3$L || (_templateObject3$L = _taggedTemplateLiteralLoose(["\n margin-left: 12px;\n width: calc(100% - 40px);\n"])));
45914
- var FileItem$1 = styled.li(_templateObject4$E || (_templateObject4$E = _taggedTemplateLiteralLoose(["\n padding: 9px 16px;\n a {\n display: flex;\n align-items: center;\n text-decoration: none;\n }\n &:hover {\n background-color: ", ";\n & ", " {\n display: none;\n }\n & ", " {\n display: inline-flex;\n }\n }\n"])), function (props) {
46499
+ var LinkInfoCont = styled.div(_templateObject3$M || (_templateObject3$M = _taggedTemplateLiteralLoose(["\n margin-left: 12px;\n width: calc(100% - 40px);\n"])));
46500
+ var FileItem$1 = styled.li(_templateObject4$F || (_templateObject4$F = _taggedTemplateLiteralLoose(["\n padding: 9px 16px;\n a {\n display: flex;\n align-items: center;\n text-decoration: none;\n }\n &:hover {\n background-color: ", ";\n & ", " {\n display: none;\n }\n & ", " {\n display: inline-flex;\n }\n }\n"])), function (props) {
45915
46501
  return props.hoverBackgroundColor;
45916
46502
  }, LinkIconCont, LinkHoverIconCont);
45917
- var LinkUrl = styled.span(_templateObject5$z || (_templateObject5$z = _taggedTemplateLiteralLoose(["\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 52px);\n font-style: normal;\n font-weight: normal;\n font-size: 13px;\n line-height: 16px;\n text-decoration: underline;\n color: ", ";\n"])), function (props) {
46503
+ var LinkUrl = styled.span(_templateObject5$A || (_templateObject5$A = _taggedTemplateLiteralLoose(["\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 52px);\n font-style: normal;\n font-weight: normal;\n font-size: 13px;\n line-height: 16px;\n text-decoration: underline;\n color: ", ";\n"])), function (props) {
45918
46504
  return props.color;
45919
46505
  });
45920
46506
 
45921
- var _templateObject$_;
46507
+ var _templateObject$$;
45922
46508
  var Links = function Links(_ref) {
45923
46509
  var channelId = _ref.channelId,
45924
46510
  linkPreviewIcon = _ref.linkPreviewIcon,
@@ -45949,20 +46535,20 @@ var Links = function Links(_ref) {
45949
46535
  }));
45950
46536
  }));
45951
46537
  };
45952
- var Container$r = styled.ul(_templateObject$_ || (_templateObject$_ = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 11px 0 0;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n"])));
46538
+ var Container$r = styled.ul(_templateObject$$ || (_templateObject$$ = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 11px 0 0;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n"])));
45953
46539
 
45954
- var _rect$5, _path$1x;
45955
- function _extends$1B() {
45956
- return _extends$1B = Object.assign ? Object.assign.bind() : function (n) {
46540
+ var _rect$5, _path$1A;
46541
+ function _extends$1E() {
46542
+ return _extends$1E = Object.assign ? Object.assign.bind() : function (n) {
45957
46543
  for (var e = 1; e < arguments.length; e++) {
45958
46544
  var t = arguments[e];
45959
46545
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
45960
46546
  }
45961
46547
  return n;
45962
- }, _extends$1B.apply(null, arguments);
46548
+ }, _extends$1E.apply(null, arguments);
45963
46549
  }
45964
46550
  function SvgVoicePreview(props) {
45965
- return /*#__PURE__*/createElement$1("svg", _extends$1B({
46551
+ return /*#__PURE__*/createElement$1("svg", _extends$1E({
45966
46552
  width: 40,
45967
46553
  height: 40,
45968
46554
  fill: "none",
@@ -45972,24 +46558,24 @@ function SvgVoicePreview(props) {
45972
46558
  height: 40,
45973
46559
  rx: 20,
45974
46560
  fill: "#5159F6"
45975
- })), _path$1x || (_path$1x = /*#__PURE__*/createElement$1("path", {
46561
+ })), _path$1A || (_path$1A = /*#__PURE__*/createElement$1("path", {
45976
46562
  d: "M27.536 18.696c.952.576.952 2.03 0 2.605l-9.918 5.997c-.944.57-2.118-.151-2.118-1.303V14.002c0-1.151 1.174-1.873 2.118-1.303l9.918 5.997z",
45977
46563
  fill: "#fff"
45978
46564
  })));
45979
46565
  }
45980
46566
 
45981
- var _rect$6, _path$1y;
45982
- function _extends$1C() {
45983
- return _extends$1C = Object.assign ? Object.assign.bind() : function (n) {
46567
+ var _rect$6, _path$1B;
46568
+ function _extends$1F() {
46569
+ return _extends$1F = Object.assign ? Object.assign.bind() : function (n) {
45984
46570
  for (var e = 1; e < arguments.length; e++) {
45985
46571
  var t = arguments[e];
45986
46572
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
45987
46573
  }
45988
46574
  return n;
45989
- }, _extends$1C.apply(null, arguments);
46575
+ }, _extends$1F.apply(null, arguments);
45990
46576
  }
45991
46577
  function SvgVoicePreviewPause(props) {
45992
- return /*#__PURE__*/createElement$1("svg", _extends$1C({
46578
+ return /*#__PURE__*/createElement$1("svg", _extends$1F({
45993
46579
  width: 40,
45994
46580
  height: 40,
45995
46581
  fill: "none",
@@ -45999,13 +46585,13 @@ function SvgVoicePreviewPause(props) {
45999
46585
  height: 40,
46000
46586
  rx: 20,
46001
46587
  fill: "#5159F6"
46002
- })), _path$1y || (_path$1y = /*#__PURE__*/createElement$1("path", {
46588
+ })), _path$1B || (_path$1B = /*#__PURE__*/createElement$1("path", {
46003
46589
  d: "M16.962 12.5c.535 0 .729.056.924.16.196.105.35.258.454.454.104.195.16.39.16.924v11.924c0 .535-.056.729-.16.924a1.09 1.09 0 01-.454.454c-.195.104-.39.16-.924.16h-1.424c-.535 0-.729-.056-.924-.16a1.09 1.09 0 01-.454-.454c-.104-.195-.16-.39-.16-.924V14.038c0-.535.056-.729.16-.924a1.09 1.09 0 01.454-.454c.195-.104.39-.16.924-.16h1.424zm7.5 0c.535 0 .729.056.924.16.196.105.35.258.454.454.104.195.16.39.16.924v11.924c0 .535-.056.729-.16.924a1.09 1.09 0 01-.454.454c-.195.104-.39.16-.924.16h-1.424c-.535 0-.729-.056-.924-.16a1.09 1.09 0 01-.454-.454c-.104-.195-.16-.39-.16-.924V14.038c0-.535.056-.729.16-.924a1.09 1.09 0 01.454-.454c.195-.104.39-.16.924-.16h1.424z",
46004
46590
  fill: "#fff"
46005
46591
  })));
46006
46592
  }
46007
46593
 
46008
- var _templateObject$$, _templateObject2$U, _templateObject3$M, _templateObject4$F, _templateObject5$A, _templateObject6$v, _templateObject7$u, _templateObject8$r;
46594
+ var _templateObject$10, _templateObject2$V, _templateObject3$N, _templateObject4$G, _templateObject5$B, _templateObject6$w, _templateObject7$v, _templateObject8$s;
46009
46595
  var VoiceItem = function VoiceItem(_ref) {
46010
46596
  var file = _ref.file,
46011
46597
  voicePreviewPlayIcon = _ref.voicePreviewPlayIcon,
@@ -46130,32 +46716,32 @@ var VoiceItem = function VoiceItem(_ref) {
46130
46716
  type: 'audio/mpeg'
46131
46717
  })));
46132
46718
  };
46133
- var FileIconCont$1 = styled.span(_templateObject$$ || (_templateObject$$ = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n display: inline-flex;\n fill: ", ";\n rect {\n fill: ", ";\n }\n"])), function (props) {
46719
+ var FileIconCont$1 = styled.span(_templateObject$10 || (_templateObject$10 = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n display: inline-flex;\n fill: ", ";\n rect {\n fill: ", ";\n }\n"])), function (props) {
46134
46720
  return props.fill || 'transparent';
46135
46721
  }, function (props) {
46136
46722
  return props.fill || 'transparent';
46137
46723
  });
46138
- var FileHoverIconCont$1 = styled.span(_templateObject2$U || (_templateObject2$U = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n display: none;\n fill: ", ";\n rect {\n fill: ", ";\n }\n"])), function (props) {
46724
+ var FileHoverIconCont$1 = styled.span(_templateObject2$V || (_templateObject2$V = _taggedTemplateLiteralLoose(["\n cursor: pointer;\n display: none;\n fill: ", ";\n rect {\n fill: ", ";\n }\n"])), function (props) {
46139
46725
  return props.fill || 'transparent';
46140
46726
  }, function (props) {
46141
46727
  return props.fill || 'transparent';
46142
46728
  });
46143
- var FileItem$2 = styled.li(_templateObject3$M || (_templateObject3$M = _taggedTemplateLiteralLoose(["\n padding: 9px 16px;\n display: flex;\n align-items: center;\n text-decoration: none;\n\n &:hover {\n background-color: ", ";\n }\n div {\n margin-left: 12px;\n width: 100%;\n }\n img {\n width: 42px;\n height: 42px;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n box-sizing: border-box;\n border-radius: 6px;\n }\n\n &.isHover {\n & ", " {\n display: none;\n }\n & ", " {\n display: inline-flex;\n }\n }\n"])), function (props) {
46729
+ var FileItem$2 = styled.li(_templateObject3$N || (_templateObject3$N = _taggedTemplateLiteralLoose(["\n padding: 9px 16px;\n display: flex;\n align-items: center;\n text-decoration: none;\n\n &:hover {\n background-color: ", ";\n }\n div {\n margin-left: 12px;\n width: 100%;\n }\n img {\n width: 42px;\n height: 42px;\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n box-sizing: border-box;\n border-radius: 6px;\n }\n\n &.isHover {\n & ", " {\n display: none;\n }\n & ", " {\n display: inline-flex;\n }\n }\n"])), function (props) {
46144
46730
  return props.hoverBackgroundColor;
46145
46731
  }, FileIconCont$1, FileHoverIconCont$1);
46146
- var AudioInfo = styled.div(_templateObject4$F || (_templateObject4$F = _taggedTemplateLiteralLoose(["\n position: relative;\n"])));
46147
- var AudioTitle = styled.span(_templateObject5$A || (_templateObject5$A = _taggedTemplateLiteralLoose(["\n display: block;\n font-style: normal;\n font-weight: 500;\n font-size: 15px;\n line-height: 20px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 72px);\n color: ", ";\n"])), function (props) {
46732
+ var AudioInfo = styled.div(_templateObject4$G || (_templateObject4$G = _taggedTemplateLiteralLoose(["\n position: relative;\n"])));
46733
+ var AudioTitle = styled.span(_templateObject5$B || (_templateObject5$B = _taggedTemplateLiteralLoose(["\n display: block;\n font-style: normal;\n font-weight: 500;\n font-size: 15px;\n line-height: 20px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 72px);\n color: ", ";\n"])), function (props) {
46148
46734
  return props.color;
46149
46735
  });
46150
- var AudioDate = styled.span(_templateObject6$v || (_templateObject6$v = _taggedTemplateLiteralLoose(["\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 72px);\n font-style: normal;\n font-weight: normal;\n font-size: 13px;\n line-height: 16px;\n color: ", ";\n"])), function (props) {
46736
+ var AudioDate = styled.span(_templateObject6$w || (_templateObject6$w = _taggedTemplateLiteralLoose(["\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n max-width: calc(100% - 72px);\n font-style: normal;\n font-weight: normal;\n font-size: 13px;\n line-height: 16px;\n color: ", ";\n"])), function (props) {
46151
46737
  return props.color;
46152
46738
  });
46153
- var AudioSendTime = styled.span(_templateObject7$u || (_templateObject7$u = _taggedTemplateLiteralLoose(["\n position: absolute;\n right: 0;\n top: 11px;\n color: ", ";\n font-size: 12px;\n line-height: 16px;\n"])), function (props) {
46739
+ var AudioSendTime = styled.span(_templateObject7$v || (_templateObject7$v = _taggedTemplateLiteralLoose(["\n position: absolute;\n right: 0;\n top: 11px;\n color: ", ";\n font-size: 12px;\n line-height: 16px;\n"])), function (props) {
46154
46740
  return props.color;
46155
46741
  });
46156
- var Audio = styled.audio(_templateObject8$r || (_templateObject8$r = _taggedTemplateLiteralLoose(["\n display: none;\n"])));
46742
+ var Audio = styled.audio(_templateObject8$s || (_templateObject8$s = _taggedTemplateLiteralLoose(["\n display: none;\n"])));
46157
46743
 
46158
- var _templateObject$10;
46744
+ var _templateObject$11;
46159
46745
  var Voices = function Voices(_ref) {
46160
46746
  var channelId = _ref.channelId,
46161
46747
  voicePreviewPlayIcon = _ref.voicePreviewPlayIcon,
@@ -46192,9 +46778,9 @@ var Voices = function Voices(_ref) {
46192
46778
  }));
46193
46779
  }));
46194
46780
  };
46195
- var Container$s = styled.ul(_templateObject$10 || (_templateObject$10 = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 11px 0 0;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n"])));
46781
+ var Container$s = styled.ul(_templateObject$11 || (_templateObject$11 = _taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 11px 0 0;\n overflow-x: hidden;\n overflow-y: auto;\n list-style: none;\n transition: all 0.2s;\n"])));
46196
46782
 
46197
- var _templateObject$11, _templateObject2$V;
46783
+ var _templateObject$12, _templateObject2$W;
46198
46784
  var DetailsTab = function DetailsTab(_ref) {
46199
46785
  var channel = _ref.channel,
46200
46786
  theme = _ref.theme,
@@ -46345,8 +46931,8 @@ var DetailsTab = function DetailsTab(_ref) {
46345
46931
  voicePreviewHoverBackgroundColor: voicePreviewHoverBackgroundColor
46346
46932
  })));
46347
46933
  };
46348
- var Container$t = styled.div(_templateObject$11 || (_templateObject$11 = _taggedTemplateLiteralLoose(["\n min-height: calc(100vh - 64px);\n"])));
46349
- var DetailsTabHeader = styled.div(_templateObject2$V || (_templateObject2$V = _taggedTemplateLiteralLoose(["\n overflow-x: auto;\n overflow-y: hidden;\n border-bottom: 1px solid ", ";\n background-color: ", ";\n display: flex;\n justify-content: space-between;\n position: sticky;\n top: 0;\n z-index: 12;\n /* width */\n &::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n\n /* Track */\n &::-webkit-scrollbar-track {\n background: transparent;\n }\n\n /* Handle */\n &::-webkit-scrollbar-thumb {\n background: transparent;\n }\n\n /* Handle on hover */\n &::-webkit-scrollbar-thumb:hover {\n background: transparent;\n }\n button {\n position: relative;\n border: none;\n background: transparent;\n outline: none;\n height: 44px;\n text-transform: capitalize;\n font-style: normal;\n font-weight: 500;\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n min-width: ", ";\n cursor: pointer;\n }\n\n & span {\n position: relative;\n display: inline-flex;\n align-items: center;\n height: 100%;\n }\n\n & .active span {\n color: ", ";\n\n &:after {\n content: '';\n width: 100%;\n border-radius: 2px;\n height: 2px;\n background-color: ", ";\n position: absolute;\n top: calc(100% - 1px);\n left: 0;\n }\n }\n"])), function (props) {
46934
+ var Container$t = styled.div(_templateObject$12 || (_templateObject$12 = _taggedTemplateLiteralLoose(["\n min-height: calc(100vh - 64px);\n"])));
46935
+ var DetailsTabHeader = styled.div(_templateObject2$W || (_templateObject2$W = _taggedTemplateLiteralLoose(["\n overflow-x: auto;\n overflow-y: hidden;\n border-bottom: 1px solid ", ";\n background-color: ", ";\n display: flex;\n justify-content: space-between;\n position: sticky;\n top: 0;\n z-index: 12;\n /* width */\n &::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n\n /* Track */\n &::-webkit-scrollbar-track {\n background: transparent;\n }\n\n /* Handle */\n &::-webkit-scrollbar-thumb {\n background: transparent;\n }\n\n /* Handle on hover */\n &::-webkit-scrollbar-thumb:hover {\n background: transparent;\n }\n button {\n position: relative;\n border: none;\n background: transparent;\n outline: none;\n height: 44px;\n text-transform: capitalize;\n font-style: normal;\n font-weight: 500;\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n min-width: ", ";\n cursor: pointer;\n }\n\n & span {\n position: relative;\n display: inline-flex;\n align-items: center;\n height: 100%;\n }\n\n & .active span {\n color: ", ";\n\n &:after {\n content: '';\n width: 100%;\n border-radius: 2px;\n height: 2px;\n background-color: ", ";\n position: absolute;\n top: calc(100% - 1px);\n left: 0;\n }\n }\n"])), function (props) {
46350
46936
  return props.borderColor;
46351
46937
  }, function (props) {
46352
46938
  return props.backgroundColor || 'transparent';
@@ -46364,17 +46950,17 @@ var DetailsTabHeader = styled.div(_templateObject2$V || (_templateObject2$V = _t
46364
46950
  return props.activeTabColor;
46365
46951
  });
46366
46952
 
46367
- var _templateObject$12, _templateObject2$W, _templateObject3$N, _templateObject4$G;
46368
- var Container$u = styled.div(_templateObject$12 || (_templateObject$12 = _taggedTemplateLiteralLoose(["\n ", ";\n height: ", ";\n position: absolute;\n padding: 24px 16px;\n background-color: ", ";\n z-index: 25;\n"])), function (props) {
46953
+ var _templateObject$13, _templateObject2$X, _templateObject3$O, _templateObject4$H;
46954
+ var Container$u = styled.div(_templateObject$13 || (_templateObject$13 = _taggedTemplateLiteralLoose(["\n ", ";\n height: ", ";\n position: absolute;\n padding: 24px 16px;\n background-color: ", ";\n z-index: 25;\n"])), function (props) {
46369
46955
  return props.active ? 'display: block' : 'display: none';
46370
46956
  }, function (props) {
46371
46957
  return "calc(100vh - " + (props.heightOffset ? props.heightOffset + 48 : 48) + "px)";
46372
46958
  }, function (props) {
46373
46959
  return props.backgroundColor;
46374
46960
  });
46375
- var AvatarCont = styled.div(_templateObject2$W || (_templateObject2$W = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n align-items: center;\n position: relative;\n margin-bottom: 4px;\n\n &::after {\n content: '';\n position: absolute;\n width: 120px;\n height: 120px;\n border-radius: 50%;\n background-color: rgba(0, 0, 0, 0.4);\n }\n .dropdown-body {\n top: inherit;\n right: inherit;\n bottom: -90px;\n }\n"])));
46376
- var DropDownWrapper = styled.div(_templateObject3$N || (_templateObject3$N = _taggedTemplateLiteralLoose(["\n position: absolute;\n z-index: 4;\n width: 40px;\n height: 40px;\n"])));
46377
- var EditChannelFooter = styled(ButtonBlock)(_templateObject4$G || (_templateObject4$G = _taggedTemplateLiteralLoose(["\n margin-top: 24px;\n\n & > button {\n margin-left: 12px;\n }\n"])));
46961
+ var AvatarCont = styled.div(_templateObject2$X || (_templateObject2$X = _taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n align-items: center;\n position: relative;\n margin-bottom: 4px;\n\n &::after {\n content: '';\n position: absolute;\n width: 120px;\n height: 120px;\n border-radius: 50%;\n background-color: rgba(0, 0, 0, 0.4);\n }\n .dropdown-body {\n top: inherit;\n right: inherit;\n bottom: -90px;\n }\n"])));
46962
+ var DropDownWrapper = styled.div(_templateObject3$O || (_templateObject3$O = _taggedTemplateLiteralLoose(["\n position: absolute;\n z-index: 4;\n width: 40px;\n height: 40px;\n"])));
46963
+ var EditChannelFooter = styled(ButtonBlock)(_templateObject4$H || (_templateObject4$H = _taggedTemplateLiteralLoose(["\n margin-top: 24px;\n\n & > button {\n margin-left: 12px;\n }\n"])));
46378
46964
  var EditChannel = function EditChannel(_ref) {
46379
46965
  var channel = _ref.channel,
46380
46966
  theme = _ref.theme,
@@ -46629,7 +47215,7 @@ var EditChannel = function EditChannel(_ref) {
46629
47215
  })));
46630
47216
  };
46631
47217
 
46632
- var _templateObject$13, _templateObject2$X, _templateObject3$O, _templateObject4$H, _templateObject5$B, _templateObject6$w, _templateObject7$v, _templateObject8$s, _templateObject9$n, _templateObject0$k, _templateObject1$h, _templateObject10$b, _templateObject11$9;
47218
+ var _templateObject$14, _templateObject2$Y, _templateObject3$P, _templateObject4$I, _templateObject5$C, _templateObject6$x, _templateObject7$w, _templateObject8$t, _templateObject9$n, _templateObject0$k, _templateObject1$h, _templateObject10$b, _templateObject11$9;
46633
47219
  var Details = function Details(_ref) {
46634
47220
  var _activeChannel$member;
46635
47221
  var detailsTitleText = _ref.detailsTitleText,
@@ -47059,17 +47645,17 @@ var Details = function Details(_ref) {
47059
47645
  QRCodeIcon: QRCodeIcon
47060
47646
  }))));
47061
47647
  };
47062
- var Container$v = styled.div(_templateObject$13 || (_templateObject$13 = _taggedTemplateLiteralLoose(["\n flex: 0 0 auto;\n width: 0;\n border-left: 1px solid ", ";\n //transition: all 0.1s;\n ", "\n background-color: ", ";\n}\n"])), function (props) {
47648
+ var Container$v = styled.div(_templateObject$14 || (_templateObject$14 = _taggedTemplateLiteralLoose(["\n flex: 0 0 auto;\n width: 0;\n border-left: 1px solid ", ";\n //transition: all 0.1s;\n ", "\n background-color: ", ";\n}\n"])), function (props) {
47063
47649
  return props.borderColor;
47064
47650
  }, function (props) {
47065
47651
  return props.mounted && " width: " + (props.size === 'small' ? '300px' : props.size === 'medium' ? '350px' : '400px') + ";";
47066
47652
  }, function (props) {
47067
47653
  return props.backgroundColor;
47068
47654
  });
47069
- var ChannelDetailsHeader = styled.div(_templateObject2$X || (_templateObject2$X = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n padding: 16px;\n position: relative;\n height: 64px;\n box-sizing: border-box;\n border-bottom: 1px solid ", ";\n\n & svg {\n cursor: pointer;\n }\n"])), function (props) {
47655
+ var ChannelDetailsHeader = styled.div(_templateObject2$Y || (_templateObject2$Y = _taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n padding: 16px;\n position: relative;\n height: 64px;\n box-sizing: border-box;\n border-bottom: 1px solid ", ";\n\n & svg {\n cursor: pointer;\n }\n"])), function (props) {
47070
47656
  return props.borderColor;
47071
47657
  });
47072
- var ChatDetails = styled.div(_templateObject3$O || (_templateObject3$O = _taggedTemplateLiteralLoose(["\n //position: relative;\n width: ", ";\n //height: ", ";\n height: ", ";\n overflow-y: auto;\n\n &::-webkit-scrollbar {\n width: 8px;\n background: transparent;\n }\n &::-webkit-scrollbar-thumb {\n background: transparent;\n }\n\n &.show-scrollbar::-webkit-scrollbar-thumb {\n background: ", ";\n border-radius: 4px;\n }\n &.show-scrollbar::-webkit-scrollbar-track {\n background: transparent;\n }\n"])), function (props) {
47658
+ var ChatDetails = styled.div(_templateObject3$P || (_templateObject3$P = _taggedTemplateLiteralLoose(["\n //position: relative;\n width: ", ";\n //height: ", ";\n height: ", ";\n overflow-y: auto;\n\n &::-webkit-scrollbar {\n width: 8px;\n background: transparent;\n }\n &::-webkit-scrollbar-thumb {\n background: transparent;\n }\n\n &.show-scrollbar::-webkit-scrollbar-thumb {\n background: ", ";\n border-radius: 4px;\n }\n &.show-scrollbar::-webkit-scrollbar-track {\n background: transparent;\n }\n"])), function (props) {
47073
47659
  return props.size === 'small' ? '300px' : props.size === 'medium' ? '350px' : '400px';
47074
47660
  }, function (props) {
47075
47661
  return props.height ? "calc(100vh - " + props.heightOffset + "px)" : '100vh';
@@ -47078,21 +47664,21 @@ var ChatDetails = styled.div(_templateObject3$O || (_templateObject3$O = _tagged
47078
47664
  }, function (props) {
47079
47665
  return props.thumbColor;
47080
47666
  });
47081
- var AboutChannel = styled.div(_templateObject4$H || (_templateObject4$H = _taggedTemplateLiteralLoose(["\n margin-top: 20px;\n"])));
47082
- var AboutChannelTitle = styled.h4(_templateObject5$B || (_templateObject5$B = _taggedTemplateLiteralLoose(["\n font-size: 12px;\n margin: 0;\n line-height: 16px;\n color: ", ";\n"])), function (props) {
47667
+ var AboutChannel = styled.div(_templateObject4$I || (_templateObject4$I = _taggedTemplateLiteralLoose(["\n margin-top: 20px;\n"])));
47668
+ var AboutChannelTitle = styled.h4(_templateObject5$C || (_templateObject5$C = _taggedTemplateLiteralLoose(["\n font-size: 12px;\n margin: 0;\n line-height: 16px;\n color: ", ";\n"])), function (props) {
47083
47669
  return props.color;
47084
47670
  });
47085
- var AboutChannelText = styled.h3(_templateObject6$w || (_templateObject6$w = _taggedTemplateLiteralLoose(["\n font-size: 15px;\n margin: 0;\n font-weight: 400;\n line-height: 20px;\n color: ", ";\n"])), function (props) {
47671
+ var AboutChannelText = styled.h3(_templateObject6$x || (_templateObject6$x = _taggedTemplateLiteralLoose(["\n font-size: 15px;\n margin: 0;\n font-weight: 400;\n line-height: 20px;\n color: ", ";\n"])), function (props) {
47086
47672
  return props.color;
47087
47673
  });
47088
- var ChannelInfo$4 = styled.div(_templateObject7$v || (_templateObject7$v = _taggedTemplateLiteralLoose(["\n position: relative;\n margin-left: ", ";\n margin-top: ", ";\n text-align: ", ";\n"])), function (props) {
47674
+ var ChannelInfo$4 = styled.div(_templateObject7$w || (_templateObject7$w = _taggedTemplateLiteralLoose(["\n position: relative;\n margin-left: ", ";\n margin-top: ", ";\n text-align: ", ";\n"])), function (props) {
47089
47675
  return (!props.direction || props.direction !== 'column') && '16px';
47090
47676
  }, function (props) {
47091
47677
  return props.direction && props.direction === 'column' && '16px';
47092
47678
  }, function (props) {
47093
47679
  return props.direction && props.direction === 'column' && 'center';
47094
47680
  });
47095
- var DetailsHeader = styled.div(_templateObject8$s || (_templateObject8$s = _taggedTemplateLiteralLoose(["\n border-bottom: 6px solid ", ";\n align-items: center;\n box-sizing: border-box;\n padding: 20px 16px;\n"])), function (props) {
47681
+ var DetailsHeader = styled.div(_templateObject8$t || (_templateObject8$t = _taggedTemplateLiteralLoose(["\n border-bottom: 6px solid ", ";\n align-items: center;\n box-sizing: border-box;\n padding: 20px 16px;\n"])), function (props) {
47096
47682
  return props.borderColor;
47097
47683
  });
47098
47684
  var ChannelAvatarAndName = styled.div(_templateObject9$n || (_templateObject9$n = _taggedTemplateLiteralLoose(["\n position: relative;\n display: flex;\n align-items: center;\n box-sizing: border-box;\n flex-direction: ", ";\n"])), function (props) {
@@ -47109,7 +47695,7 @@ var ChannelNameWrapper = styled.div(_templateObject1$h || (_templateObject1$h =
47109
47695
  var EditButton = styled.span(_templateObject10$b || (_templateObject10$b = _taggedTemplateLiteralLoose(["\n margin-left: 6px;\n cursor: pointer;\n color: #b2b6be;\n"])));
47110
47696
  var PhoneNumberContainer = styled.span(_templateObject11$9 || (_templateObject11$9 = _taggedTemplateLiteralLoose(["\n position: relative;\n display: inline-flex;\n align-items: center;\n cursor: pointer;\n user-select: text;\n"])));
47111
47697
 
47112
- var _templateObject$14;
47698
+ var _templateObject$15;
47113
47699
  var ChannelDetailsContainer = function ChannelDetailsContainer(_ref) {
47114
47700
  var _ref$size = _ref.size,
47115
47701
  size = _ref$size === void 0 ? 'large' : _ref$size,
@@ -47340,31 +47926,31 @@ var ChannelDetailsContainer = function ChannelDetailsContainer(_ref) {
47340
47926
  QRCodeIcon: QRCodeIcon
47341
47927
  })));
47342
47928
  };
47343
- var DetailsWrapper = styled.div(_templateObject$14 || (_templateObject$14 = _taggedTemplateLiteralLoose(["\n user-select: text;\n"])));
47929
+ var DetailsWrapper = styled.div(_templateObject$15 || (_templateObject$15 = _taggedTemplateLiteralLoose(["\n user-select: text;\n"])));
47344
47930
 
47345
- var _path$1z;
47346
- function _extends$1D() {
47347
- return _extends$1D = Object.assign ? Object.assign.bind() : function (n) {
47931
+ var _path$1C;
47932
+ function _extends$1G() {
47933
+ return _extends$1G = Object.assign ? Object.assign.bind() : function (n) {
47348
47934
  for (var e = 1; e < arguments.length; e++) {
47349
47935
  var t = arguments[e];
47350
47936
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
47351
47937
  }
47352
47938
  return n;
47353
- }, _extends$1D.apply(null, arguments);
47939
+ }, _extends$1G.apply(null, arguments);
47354
47940
  }
47355
47941
  function SvgChevronDown(props) {
47356
- return /*#__PURE__*/createElement$1("svg", _extends$1D({
47942
+ return /*#__PURE__*/createElement$1("svg", _extends$1G({
47357
47943
  width: 32,
47358
47944
  height: 32,
47359
47945
  fill: "none",
47360
47946
  xmlns: "http://www.w3.org/2000/svg"
47361
- }, props), _path$1z || (_path$1z = /*#__PURE__*/createElement$1("path", {
47947
+ }, props), _path$1C || (_path$1C = /*#__PURE__*/createElement$1("path", {
47362
47948
  d: "M9.298 12.937a1.056 1.056 0 10-1.374 1.603l7.39 6.333c.395.339.978.339 1.373 0l7.389-6.333a1.056 1.056 0 10-1.374-1.603L16 18.68l-6.702-5.744z",
47363
47949
  fill: "CurrentColor"
47364
47950
  })));
47365
47951
  }
47366
47952
 
47367
- var _templateObject$15, _templateObject2$Y;
47953
+ var _templateObject$16, _templateObject2$Z;
47368
47954
  var MessagesScrollToBottomButton = function MessagesScrollToBottomButton(_ref) {
47369
47955
  var buttonIcon = _ref.buttonIcon,
47370
47956
  buttonWidth = _ref.buttonWidth,
@@ -47447,7 +48033,7 @@ var MessagesScrollToBottomButton = function MessagesScrollToBottomButton(_ref) {
47447
48033
  isMuted: channel.muted
47448
48034
  }, channel.newMessageCount ? channel.newMessageCount > 99 ? '99+' : channel.newMessageCount : '')), buttonIcon || /*#__PURE__*/React__default.createElement(SvgChevronDown, null)));
47449
48035
  };
47450
- var BottomButton = styled.div(_templateObject$15 || (_templateObject$15 = _taggedTemplateLiteralLoose(["\n transition: all 0.3s ease-in-out;\n position: absolute;\n ", ";\n\n ", ";\n\n ", ";\n right: ", "px;\n\n margin-right: 16px;\n display: flex;\n align-items: center;\n justify-content: center;\n background-color: ", ";\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 50px;\n width: 48px;\n height: 48px;\n cursor: pointer;\n z-index: 14;\n & > svg {\n color: rgba(129, 140, 153, 1);\n }\n\n & > span {\n bottom: 32px;\n right: 0;\n }\n"])), function (props) {
48036
+ var BottomButton = styled.div(_templateObject$16 || (_templateObject$16 = _taggedTemplateLiteralLoose(["\n transition: all 0.3s ease-in-out;\n position: absolute;\n ", ";\n\n ", ";\n\n ", ";\n right: ", "px;\n\n margin-right: 16px;\n display: flex;\n align-items: center;\n justify-content: center;\n background-color: ", ";\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 50px;\n width: 48px;\n height: 48px;\n cursor: pointer;\n z-index: 14;\n & > svg {\n color: rgba(129, 140, 153, 1);\n }\n\n & > span {\n bottom: 32px;\n right: 0;\n }\n"])), function (props) {
47451
48037
  return props.animateFrom === 'bottom' && "bottom: " + (props.bottomOffset + (props.bottomPosition === undefined ? 45 : props.bottomPosition) - 130) + "px";
47452
48038
  }, function (props) {
47453
48039
  return props.animateFrom === 'right' && "right: " + (props.rightPosition === undefined ? 16 : props.rightPosition - 100) + "px";
@@ -47458,7 +48044,7 @@ var BottomButton = styled.div(_templateObject$15 || (_templateObject$15 = _tagge
47458
48044
  }, function (props) {
47459
48045
  return props.backgroundColor;
47460
48046
  });
47461
- var UnreadCount$1 = styled.span(_templateObject2$Y || (_templateObject2$Y = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 11px;\n right: 16px;\n flex: 0 0 auto;\n margin-left: auto;\n background-color: ", ";\n padding: 0 4px;\n font-size: ", ";\n line-height: 20px;\n min-width: ", ";\n height: ", ";\n text-align: center;\n font-weight: 500;\n color: ", ";\n border-radius: 10px;\n box-sizing: border-box;\n"])), function (props) {
48047
+ var UnreadCount$1 = styled.span(_templateObject2$Z || (_templateObject2$Z = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 11px;\n right: 16px;\n flex: 0 0 auto;\n margin-left: auto;\n background-color: ", ";\n padding: 0 4px;\n font-size: ", ";\n line-height: 20px;\n min-width: ", ";\n height: ", ";\n text-align: center;\n font-weight: 500;\n color: ", ";\n border-radius: 10px;\n box-sizing: border-box;\n"])), function (props) {
47462
48048
  return props.backgroundColor;
47463
48049
  }, function (props) {
47464
48050
  return props.fontSize || '13px';
@@ -47470,29 +48056,29 @@ var UnreadCount$1 = styled.span(_templateObject2$Y || (_templateObject2$Y = _tag
47470
48056
  return props.textColor || '#fff';
47471
48057
  });
47472
48058
 
47473
- var _path$1A, _path2$c;
47474
- function _extends$1E() {
47475
- return _extends$1E = Object.assign ? Object.assign.bind() : function (n) {
48059
+ var _path$1D, _path2$d;
48060
+ function _extends$1H() {
48061
+ return _extends$1H = Object.assign ? Object.assign.bind() : function (n) {
47476
48062
  for (var e = 1; e < arguments.length; e++) {
47477
48063
  var t = arguments[e];
47478
48064
  for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
47479
48065
  }
47480
48066
  return n;
47481
- }, _extends$1E.apply(null, arguments);
48067
+ }, _extends$1H.apply(null, arguments);
47482
48068
  }
47483
48069
  function SvgMention(props) {
47484
- return /*#__PURE__*/createElement$1("svg", _extends$1E({
48070
+ return /*#__PURE__*/createElement$1("svg", _extends$1H({
47485
48071
  width: 24,
47486
48072
  height: 24,
47487
48073
  fill: "none",
47488
48074
  xmlns: "http://www.w3.org/2000/svg"
47489
- }, props), _path$1A || (_path$1A = /*#__PURE__*/createElement$1("path", {
48075
+ }, props), _path$1D || (_path$1D = /*#__PURE__*/createElement$1("path", {
47490
48076
  d: "M12 15.6a3.6 3.6 0 100-7.2 3.6 3.6 0 000 7.2z",
47491
48077
  stroke: "currentColor",
47492
48078
  strokeWidth: 1.8,
47493
48079
  strokeLinecap: "round",
47494
48080
  strokeLinejoin: "round"
47495
- })), _path2$c || (_path2$c = /*#__PURE__*/createElement$1("path", {
48081
+ })), _path2$d || (_path2$d = /*#__PURE__*/createElement$1("path", {
47496
48082
  d: "M15.6 8.4v4.5a2.7 2.7 0 005.4 0V12a9 9 0 10-3.528 7.145",
47497
48083
  stroke: "currentColor",
47498
48084
  strokeWidth: 1.8,
@@ -47501,7 +48087,7 @@ function SvgMention(props) {
47501
48087
  })));
47502
48088
  }
47503
48089
 
47504
- var _templateObject$16, _templateObject2$Z;
48090
+ var _templateObject$17, _templateObject2$_;
47505
48091
  var MessagesScrollToUnreadMentionsButton = function MessagesScrollToUnreadMentionsButton(_ref) {
47506
48092
  var buttonIcon = _ref.buttonIcon,
47507
48093
  buttonWidth = _ref.buttonWidth,
@@ -47644,7 +48230,7 @@ var MessagesScrollToUnreadMentionsButton = function MessagesScrollToUnreadMentio
47644
48230
  isMuted: channel.muted
47645
48231
  }, channel.newMentionCount ? channel.newMentionCount > 99 ? '99+' : channel.newMentionCount : '')), buttonIcon || /*#__PURE__*/React__default.createElement(SvgMention, null)));
47646
48232
  };
47647
- var BottomButton$1 = styled.div(_templateObject$16 || (_templateObject$16 = _taggedTemplateLiteralLoose(["\n transition: all 0.3s ease-in-out;\n position: absolute;\n ", ";\n\n ", ";\n\n ", ";\n right: ", ";\n margin-right: 16px;\n display: flex;\n align-items: center;\n justify-content: center;\n background-color: ", ";\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 50px;\n width: 48px;\n height: 48px;\n cursor: pointer;\n z-index: 14;\n\n & > svg {\n color: rgba(129, 140, 153, 1);\n }\n\n & > span {\n bottom: 32px;\n right: 0;\n }\n"])), function (props) {
48233
+ var BottomButton$1 = styled.div(_templateObject$17 || (_templateObject$17 = _taggedTemplateLiteralLoose(["\n transition: all 0.3s ease-in-out;\n position: absolute;\n ", ";\n\n ", ";\n\n ", ";\n right: ", ";\n margin-right: 16px;\n display: flex;\n align-items: center;\n justify-content: center;\n background-color: ", ";\n border: 0.5px solid rgba(0, 0, 0, 0.1);\n border-radius: 50px;\n width: 48px;\n height: 48px;\n cursor: pointer;\n z-index: 14;\n\n & > svg {\n color: rgba(129, 140, 153, 1);\n }\n\n & > span {\n bottom: 32px;\n right: 0;\n }\n"])), function (props) {
47648
48234
  return props.animateFrom === 'bottom' && "bottom: " + (props.bottomOffset + (props.bottomPosition === undefined ? 45 : props.bottomPosition) + (props.showsUnreadMentionsButton ? 60 : 0) - 180) + "px";
47649
48235
  }, function (props) {
47650
48236
  return props.animateFrom === 'right' && "right: " + (props.rightPosition === undefined ? 16 : props.rightPosition - 100) + "px";
@@ -47655,7 +48241,7 @@ var BottomButton$1 = styled.div(_templateObject$16 || (_templateObject$16 = _tag
47655
48241
  }, function (props) {
47656
48242
  return props.backgroundColor;
47657
48243
  });
47658
- var UnreadCount$2 = styled.span(_templateObject2$Z || (_templateObject2$Z = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 11px;\n right: 16px;\n flex: 0 0 auto;\n margin-left: auto;\n background-color: ", ";\n padding: 0 4px;\n font-size: ", ";\n line-height: 20px;\n min-width: ", ";\n height: ", ";\n text-align: center;\n font-weight: 500;\n color: ", ";\n border-radius: 10px;\n box-sizing: border-box;\n"])), function (props) {
48244
+ var UnreadCount$2 = styled.span(_templateObject2$_ || (_templateObject2$_ = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 11px;\n right: 16px;\n flex: 0 0 auto;\n margin-left: auto;\n background-color: ", ";\n padding: 0 4px;\n font-size: ", ";\n line-height: 20px;\n min-width: ", ";\n height: ", ";\n text-align: center;\n font-weight: 500;\n color: ", ";\n border-radius: 10px;\n box-sizing: border-box;\n"])), function (props) {
47659
48245
  return props.backgroundColor;
47660
48246
  }, function (props) {
47661
48247
  return props.fontSize || '13px';