@mobilon-dev/chotto 0.3.42 → 0.3.44

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.
Files changed (65) hide show
  1. package/dist/chotto.css +1 -1
  2. package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue.js +2 -2
  3. package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue2.js +119 -109
  4. package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +3 -3
  5. package/dist/components/2_feed_elements/FileMessage/FileMessage.vue2.js +99 -89
  6. package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +2 -2
  7. package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +102 -92
  8. package/dist/components/2_feed_elements/MessageSmsInvite/MessageSmsInvite.vue.js +7 -0
  9. package/dist/components/2_feed_elements/MessageSmsInvite/MessageSmsInvite.vue2.js +64 -0
  10. package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js +5 -71
  11. package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue2.js +64 -2
  12. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ErrorStatusIcon.vue.js +7 -0
  13. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ErrorStatusIcon.vue2.js +40 -0
  14. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/PendingStatusIcon.vue.js +7 -0
  15. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/PendingStatusIcon.vue2.js +46 -0
  16. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ReadStatusIcon.vue.js +7 -0
  17. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ReadStatusIcon.vue2.js +40 -0
  18. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ReceivedStatusIcon.vue.js +7 -0
  19. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ReceivedStatusIcon.vue2.js +40 -0
  20. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/SentStatusIcon.vue.js +7 -0
  21. package/dist/components/2_feed_elements/MessageStatusIndicator/icons/SentStatusIcon.vue2.js +43 -0
  22. package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue.js +1 -1
  23. package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue2.js +118 -103
  24. package/dist/components/2_feed_elements/TextMessage/TextMessage.vue.js +1 -1
  25. package/dist/components/2_feed_elements/TextMessage/TextMessage.vue2.js +76 -66
  26. package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +1 -1
  27. package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +88 -78
  28. package/dist/components/3_compounds/Feed/Feed.vue.js +2 -2
  29. package/dist/components/3_compounds/Feed/Feed.vue2.js +134 -128
  30. package/dist/locale/en.js +2 -1
  31. package/dist/locale/ru.js +2 -1
  32. package/dist/themes/dark.css +1 -1
  33. package/dist/themes/default.css +1 -1
  34. package/dist/themes/glass.css +1 -1
  35. package/dist/themes/green.css +1 -1
  36. package/dist/themes/mobilon1.css +1 -1
  37. package/dist/types/apps/data/messages.d.ts +324 -4
  38. package/dist/types/components/2_feed_elements/AudioMessage/AudioMessage.vue.d.ts +2 -0
  39. package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +6 -16
  40. package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +0 -6
  41. package/dist/types/components/2_feed_elements/FileMessage/FileMessage.vue.d.ts +2 -0
  42. package/dist/types/components/2_feed_elements/FileMessage/styles/types.d.ts +2 -20
  43. package/dist/types/components/2_feed_elements/ImageMessage/ImageMessage.vue.d.ts +2 -0
  44. package/dist/types/components/2_feed_elements/ImageMessage/styles/types.d.ts +0 -14
  45. package/dist/types/components/2_feed_elements/MessageSmsInvite/MessageSmsInvite.vue.d.ts +11 -0
  46. package/dist/types/components/2_feed_elements/MessageSmsInvite/styles/types.d.ts +49 -0
  47. package/dist/types/components/2_feed_elements/MessageStatusIndicator/icons/ErrorStatusIcon.vue.d.ts +23 -0
  48. package/dist/types/components/2_feed_elements/MessageStatusIndicator/icons/PendingStatusIcon.vue.d.ts +23 -0
  49. package/dist/types/components/2_feed_elements/MessageStatusIndicator/icons/ReadStatusIcon.vue.d.ts +23 -0
  50. package/dist/types/components/2_feed_elements/MessageStatusIndicator/icons/ReceivedStatusIcon.vue.d.ts +23 -0
  51. package/dist/types/components/2_feed_elements/MessageStatusIndicator/icons/SentStatusIcon.vue.d.ts +23 -0
  52. package/dist/types/components/2_feed_elements/MessageStatusIndicator/icons/index.d.ts +5 -0
  53. package/dist/types/components/2_feed_elements/MessageStatusIndicator/styles/types.d.ts +31 -0
  54. package/dist/types/components/2_feed_elements/StickerMessage/StickerMessage.vue.d.ts +2 -0
  55. package/dist/types/components/2_feed_elements/StickerMessage/styles/types.d.ts +16 -14
  56. package/dist/types/components/2_feed_elements/TextMessage/TextMessage.vue.d.ts +2 -0
  57. package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +0 -18
  58. package/dist/types/components/2_feed_elements/VideoMessage/VideoMessage.vue.d.ts +2 -0
  59. package/dist/types/components/2_feed_elements/VideoMessage/styles/types.d.ts +1 -15
  60. package/dist/types/components/2_feed_elements/types/messages.d.ts +12 -0
  61. package/dist/types/components/3_compounds/Feed/Feed.vue.d.ts +4 -2
  62. package/dist/types/hooks/validators/messages/types.d.ts +1 -0
  63. package/dist/types/locale/en.d.ts +1 -0
  64. package/dist/types/locale/ru.d.ts +1 -0
  65. package/package.json +1 -1
@@ -1,25 +1,25 @@
1
- import { defineComponent as le, ref as b, computed as r, inject as ae, watch as ne, nextTick as M, onMounted as re, createElementBlock as d, openBlock as o, Fragment as C, createBlock as u, createCommentVNode as c, unref as t, normalizeStyle as D, createVNode as y, Transition as p, withCtx as k, renderList as ie, resolveDynamicComponent as de, createElementVNode as w, toDisplayString as ce, renderSlot as ue, Teleport as fe } from "vue";
2
- import me from "../../2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
3
- import ye from "../../2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
4
- import ge from "../../2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
5
- import be from "../../2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
6
- import pe from "../../2_feed_elements/TypingMessage/TypingMessage.vue.js";
7
- import { useFeedButton as ke } from "./composables/useFeedButton.js";
8
- import { useFeedComponents as he } from "./composables/useFeedComponents.js";
9
- import { useFeedGrouping as Se } from "./composables/useFeedGrouping.js";
10
- import { useFeedKeyboard as ve } from "./composables/useFeedKeyboard.js";
11
- import { useFeedLoadMore as Re } from "./composables/useFeedLoadMore.js";
12
- import { useFeedMessageVisibility as Be } from "./composables/useFeedMessageVisibility.js";
13
- import { useFeedReply as Te } from "./composables/useFeedReply.js";
14
- import { useFeedScroll as Ae } from "./composables/useFeedScroll.js";
15
- import { useFeedScrollTo as Fe } from "./composables/useFeedScrollTo.js";
16
- import { useStickyDate as Me } from "./composables/useStickyDate.js";
17
- import { throttle as Ce } from "./functions/throttle.js";
18
- import De from "./assets/chat-background.svg.js";
1
+ import { defineComponent as ne, ref as b, computed as i, inject as ae, watch as re, nextTick as C, onMounted as ie, createElementBlock as d, openBlock as s, Fragment as D, createBlock as m, createCommentVNode as c, unref as t, normalizeStyle as I, createVNode as y, Transition as p, withCtx as k, renderList as de, resolveDynamicComponent as ce, createElementVNode as w, toDisplayString as ue, renderSlot as me, Teleport as fe } from "vue";
2
+ import ye from "../../2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
3
+ import ge from "../../2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
4
+ import be from "../../2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
5
+ import pe from "../../2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
6
+ import ke from "../../2_feed_elements/TypingMessage/TypingMessage.vue.js";
7
+ import { useFeedButton as ve } from "./composables/useFeedButton.js";
8
+ import { useFeedComponents as Se } from "./composables/useFeedComponents.js";
9
+ import { useFeedGrouping as he } from "./composables/useFeedGrouping.js";
10
+ import { useFeedKeyboard as Re } from "./composables/useFeedKeyboard.js";
11
+ import { useFeedLoadMore as Be } from "./composables/useFeedLoadMore.js";
12
+ import { useFeedMessageVisibility as Te } from "./composables/useFeedMessageVisibility.js";
13
+ import { useFeedReply as Ae } from "./composables/useFeedReply.js";
14
+ import { useFeedScroll as Fe } from "./composables/useFeedScroll.js";
15
+ import { useFeedScrollTo as Me } from "./composables/useFeedScrollTo.js";
16
+ import { useStickyDate as Ce } from "./composables/useStickyDate.js";
17
+ import { throttle as De } from "./functions/throttle.js";
18
+ import Ie from "./assets/chat-background.svg.js";
19
19
  const we = ["id"], je = ["id", "onDblclick"], Ke = {
20
20
  key: 0,
21
21
  class: "message-feed__unread-amount"
22
- }, xe = { style: { margin: "auto" } }, Ze = /* @__PURE__ */ le({
22
+ }, xe = { style: { margin: "auto" } }, _e = /* @__PURE__ */ ne({
23
23
  __name: "Feed",
24
24
  props: {
25
25
  objects: {
@@ -93,141 +93,147 @@ const we = ["id"], je = ["id", "onDblclick"], Ke = {
93
93
  "clickRepliedMessage",
94
94
  "forceScrollToBottom",
95
95
  "keyboardAction",
96
- "feedAction"
96
+ "feedAction",
97
+ "smsInvite"
97
98
  ],
98
99
  setup(e, { emit: j }) {
99
- const s = e, g = b(), a = b(), h = b(), {
100
+ const l = e, g = b(), n = b(), v = b(), {
100
101
  isShowButton: K,
101
102
  isKeyboardPlace: x,
102
- checkButtonVisibility: I
103
- } = ke({
104
- feedRef: a,
105
- keyboardRef: h
106
- }), { componentsMap: O } = he(), $ = r(() => s.reactionsEnabled), { groupedObjects: V } = Se({
107
- objects: r(() => s.objects)
108
- }), m = ae("chatAppId"), f = j, {
109
- checkScrollPosition: q,
103
+ checkButtonVisibility: $
104
+ } = ve({
105
+ feedRef: n,
106
+ keyboardRef: v
107
+ }), { componentsMap: O } = Se(), V = i(() => l.reactionsEnabled), { groupedObjects: q } = he({
108
+ objects: i(() => l.objects)
109
+ }), f = ae("chatAppId"), u = j, {
110
+ checkScrollPosition: z,
110
111
  startScrollWatch: S,
111
- stopScrollWatch: v,
112
- resetAllowFlags: z
113
- } = Re({
114
- feedRef: a,
115
- emit: f,
116
- isLoadingMoreRef: r(() => s.isLoadingMore)
112
+ stopScrollWatch: h,
113
+ resetAllowFlags: E
114
+ } = Be({
115
+ feedRef: n,
116
+ emit: u,
117
+ isLoadingMoreRef: i(() => l.isLoadingMore)
117
118
  }), {
118
119
  getMessage: R,
119
- messageAction: E,
120
- handleClickReplied: L,
121
- feedObjectDoubleClick: P,
122
- handleResetReply: N
123
- } = Te({
124
- enableDoubleClickReply: s.enableDoubleClickReply,
125
- emit: f
126
- }), {
127
- showKeyboard: W,
128
- keyboardAction: G,
129
- feedKeyboardAction: J
130
- } = ve({
120
+ messageAction: L,
121
+ handleClickReplied: P,
122
+ feedObjectDoubleClick: N,
123
+ handleResetReply: W
124
+ } = Ae({
125
+ enableDoubleClickReply: l.enableDoubleClickReply,
126
+ emit: u
127
+ });
128
+ function G(a) {
129
+ u("smsInvite", a);
130
+ }
131
+ const {
132
+ showKeyboard: J,
133
+ keyboardAction: U,
134
+ feedKeyboardAction: H
135
+ } = Re({
131
136
  isKeyboardPlace: x,
132
- objects: r(() => s.objects),
133
- emit: f
137
+ objects: i(() => l.objects),
138
+ emit: u
134
139
  }), {
135
- showStickyDate: U,
136
- stickyDateText: H,
137
- show: Q
138
- } = Me({
139
- feedRef: a,
140
+ showStickyDate: Q,
141
+ stickyDateText: X,
142
+ show: Y
143
+ } = Ce({
144
+ feedRef: n,
140
145
  trackingObjects: g
141
146
  }), {
142
- isInitialized: X,
143
- performScrollToBottom: Y,
147
+ isInitialized: Z,
148
+ performScrollToBottom: _,
144
149
  ensureScrollToBottom: B,
145
- initializeScroll: Z,
146
- smoothScrollToBottom: _
147
- } = Ae({
148
- feedRef: a,
149
- objectsRef: r(() => s.objects),
150
- scrollToBottomRef: r(() => s.scrollToBottom)
151
- }), T = r(() => s.chatBackground ?? `data:image/svg+xml;charset=utf-8,${encodeURIComponent(De)}`);
152
- function A(i = !0) {
153
- I(), q(i), Q();
150
+ initializeScroll: ee,
151
+ smoothScrollToBottom: te
152
+ } = Fe({
153
+ feedRef: n,
154
+ objectsRef: i(() => l.objects),
155
+ scrollToBottomRef: i(() => l.scrollToBottom)
156
+ }), T = i(() => l.chatBackground ?? `data:image/svg+xml;charset=utf-8,${encodeURIComponent(Ie)}`);
157
+ function A(a = !0) {
158
+ $(), z(a), Y();
154
159
  }
155
- const ee = Ce(() => A(), 250);
156
- function te() {
157
- f("forceScrollToBottom"), _();
160
+ const oe = De(() => A(), 250);
161
+ function se() {
162
+ u("forceScrollToBottom"), te();
158
163
  }
159
- const { restartObserving: oe } = Be({
160
- feedRef: a,
164
+ const { restartObserving: le } = Te({
165
+ feedRef: n,
161
166
  trackingObjects: g,
162
- chatAppId: m,
163
- onMessageVisible: (i) => f("messageVisible", i)
167
+ chatAppId: f,
168
+ onMessageVisible: (a) => u("messageVisible", a)
164
169
  });
165
- return ne(
166
- () => s.objects,
170
+ return re(
171
+ () => l.objects,
167
172
  () => {
168
- M(() => {
169
- z(), A(!1), g.value = document.querySelectorAll(".tracking-message"), oe();
173
+ C(() => {
174
+ E(), A(!1), g.value = document.querySelectorAll(".tracking-message"), le();
170
175
  });
171
176
  },
172
177
  { immediate: !0 }
173
- ), Fe({
174
- targetIdRef: r(() => s.scrollTo),
175
- feedContainerId: `feed-container-${m}`
176
- }), re(() => {
177
- M(() => {
178
- s.objects.length > 0 && !X.value && Z();
179
- const i = new ResizeObserver(() => {
180
- s.scrollToBottom && (Y(), setTimeout(() => {
178
+ ), Me({
179
+ targetIdRef: i(() => l.scrollTo),
180
+ feedContainerId: `feed-container-${f}`
181
+ }), ie(() => {
182
+ C(() => {
183
+ l.objects.length > 0 && !Z.value && ee();
184
+ const a = new ResizeObserver(() => {
185
+ l.scrollToBottom && (_(), setTimeout(() => {
181
186
  B();
182
187
  }, 200), setTimeout(() => {
183
188
  B();
184
189
  }, 800));
185
190
  });
186
- a.value && i.observe(a.value);
191
+ n.value && a.observe(n.value);
187
192
  });
188
- }), (i, n) => (o(), d(C, null, [
189
- e.objects.length > 0 || e.typing ? (o(), d("div", {
193
+ }), (a, r) => (s(), d(D, null, [
194
+ e.objects.length > 0 || e.typing ? (s(), d("div", {
190
195
  key: 0,
191
- id: "feed-container-" + t(m),
196
+ id: "feed-container-" + t(f),
192
197
  ref_key: "refFeed",
193
- ref: a,
198
+ ref: n,
194
199
  class: "message-feed",
195
- style: D({ backgroundImage: `url(${T.value})` }),
196
- onScroll: n[0] || (n[0] = (l) => t(ee)()),
197
- onMousedown: n[1] || (n[1] = //@ts-ignore
198
- (...l) => t(S) && t(S)(...l)),
199
- onMouseup: n[2] || (n[2] = //@ts-ignore
200
- (...l) => t(v) && t(v)(...l))
200
+ style: I({ backgroundImage: `url(${T.value})` }),
201
+ onScroll: r[0] || (r[0] = (o) => t(oe)()),
202
+ onMousedown: r[1] || (r[1] = //@ts-ignore
203
+ (...o) => t(S) && t(S)(...o)),
204
+ onMouseup: r[2] || (r[2] = //@ts-ignore
205
+ (...o) => t(h) && t(h)(...o))
201
206
  }, [
202
207
  y(p, null, {
203
208
  default: k(() => [
204
- t(U) ? (o(), u(me, {
209
+ t(Q) ? (s(), m(ye, {
205
210
  key: 0,
206
211
  class: "message-feed__sticky-date",
207
- text: t(H)
212
+ text: t(X)
208
213
  }, null, 8, ["text"])) : c("", !0)
209
214
  ]),
210
215
  _: 1
211
216
  }),
212
- (o(!0), d(C, null, ie(t(V), (l, F) => (o(), d("div", {
213
- id: JSON.stringify(l),
214
- key: `${l.messageId ?? "mid"}-${F}`,
217
+ (s(!0), d(D, null, de(t(q), (o, F) => (s(), d("div", {
218
+ id: JSON.stringify(o),
219
+ key: `${o.messageId ?? "mid"}-${F}`,
215
220
  class: "tracking-message",
216
- onDblclick: (se) => t(P)(se, l)
221
+ onDblclick: (M) => t(N)(M, o)
217
222
  }, [
218
- (o(), u(de(t(O)(l.type)), {
219
- key: `${l.messageId ?? "mid"}-${F}`,
223
+ (s(), m(ce(t(O)(o.type)), {
224
+ key: `${o.messageId ?? "mid"}-${F}`,
220
225
  class: "message-feed__message",
221
- message: l,
226
+ message: o,
222
227
  "apply-style": e.applyStyle,
223
- "is-first-in-series": l.isFirstInSeries,
224
- "reactions-enabled": $.value,
228
+ "is-first-in-series": o.isFirstInSeries,
229
+ "reactions-enabled": V.value,
225
230
  "subtext-tooltip-data": e.subtextTooltipData,
226
- onAction: t(E),
227
- onReply: t(L)
228
- }, null, 40, ["message", "apply-style", "is-first-in-series", "reactions-enabled", "subtext-tooltip-data", "onAction", "onReply"]))
231
+ onAction: t(L),
232
+ onReply: t(P),
233
+ onSmsInvite: (M) => G(o)
234
+ }, null, 40, ["message", "apply-style", "is-first-in-series", "reactions-enabled", "subtext-tooltip-data", "onAction", "onReply", "onSmsInvite"]))
229
235
  ], 40, je))), 128)),
230
- e.typing ? (o(), u(pe, {
236
+ e.typing ? (s(), m(ke, {
231
237
  key: 0,
232
238
  message: {
233
239
  subText: e.typing.title,
@@ -236,61 +242,61 @@ const we = ["id"], je = ["id", "onDblclick"], Ke = {
236
242
  }, null, 8, ["message"])) : c("", !0),
237
243
  y(p, null, {
238
244
  default: k(() => [
239
- t(W) ? (o(), u(ge, {
245
+ t(J) ? (s(), m(be, {
240
246
  key: 0,
241
247
  ref_key: "keyboardRef",
242
- ref: h,
248
+ ref: v,
243
249
  class: "message-feed__keyboard",
244
250
  keyboard: e.objects[e.objects.length - 1].keyboard,
245
251
  align: e.keyboardAlign,
246
- onAction: t(G)
252
+ onAction: t(U)
247
253
  }, null, 8, ["keyboard", "align", "onAction"])) : c("", !0)
248
254
  ]),
249
255
  _: 1
250
256
  }),
251
257
  y(p, null, {
252
258
  default: k(() => [
253
- t(K) ? (o(), d("button", {
259
+ t(K) ? (s(), d("button", {
254
260
  key: 0,
255
261
  class: "message-feed__button-down",
256
- onClick: te
262
+ onClick: se
257
263
  }, [
258
- e.buttonParams ? (o(), d("div", Ke, ce(e.buttonParams.unreadAmount), 1)) : c("", !0),
259
- n[3] || (n[3] = w("span", { class: "pi pi-angle-down message-feed__icon-down" }, null, -1))
264
+ e.buttonParams ? (s(), d("div", Ke, ue(e.buttonParams.unreadAmount), 1)) : c("", !0),
265
+ r[3] || (r[3] = w("span", { class: "pi pi-angle-down message-feed__icon-down" }, null, -1))
260
266
  ])) : c("", !0)
261
267
  ]),
262
268
  _: 1
263
269
  }),
264
- e.feedKeyboards && e.feedKeyboards.length > 0 ? (o(), u(be, {
270
+ e.feedKeyboards && e.feedKeyboards.length > 0 ? (s(), m(pe, {
265
271
  key: 1,
266
272
  buttons: e.feedKeyboards,
267
273
  align: e.feedKeyboardAlign,
268
- onAction: t(J)
274
+ onAction: t(H)
269
275
  }, null, 8, ["buttons", "align", "onAction"])) : c("", !0)
270
- ], 44, we)) : (o(), d("div", {
276
+ ], 44, we)) : (s(), d("div", {
271
277
  key: 1,
272
278
  ref_key: "refFeed",
273
- ref: a,
279
+ ref: n,
274
280
  class: "message-feed",
275
- style: D({ backgroundImage: `url(${T.value})` })
281
+ style: I({ backgroundImage: `url(${T.value})` })
276
282
  }, [
277
283
  w("div", xe, [
278
- ue(i.$slots, "empty-feed", {}, void 0, !0)
284
+ me(a.$slots, "empty-feed", {}, void 0, !0)
279
285
  ])
280
286
  ], 4)),
281
- t(R)().reply ? (o(), u(fe, {
287
+ t(R)().reply ? (s(), m(fe, {
282
288
  key: 2,
283
- to: "#chat-input-reply-line-" + t(m)
289
+ to: "#chat-input-reply-line-" + t(f)
284
290
  }, [
285
- y(ye, {
291
+ y(ge, {
286
292
  class: "chat-input-reply",
287
293
  message: t(R)().reply,
288
- onReset: t(N)
294
+ onReset: t(W)
289
295
  }, null, 8, ["message", "onReset"])
290
296
  ], 8, ["to"])) : c("", !0)
291
297
  ], 64));
292
298
  }
293
299
  });
294
300
  export {
295
- Ze as default
301
+ _e as default
296
302
  };
package/dist/locale/en.js CHANGED
@@ -19,7 +19,8 @@ const e = {
19
19
  "component.TextFormatToolbar.Underline": "Underline",
20
20
  "component.TextFormatToolbar.Strikethrough": "Strikethrough",
21
21
  "component.TextFormatToolbar.Code": "Inline code",
22
- "component.TextFormatToolbar.Quote": "Quote"
22
+ "component.TextFormatToolbar.Quote": "Quote",
23
+ "component.TextMessage.sendSmsInvite": "Send SMS invitation"
23
24
  };
24
25
  export {
25
26
  e as en
package/dist/locale/ru.js CHANGED
@@ -19,7 +19,8 @@ const e = {
19
19
  "component.TextFormatToolbar.Underline": "Подчёркнутый",
20
20
  "component.TextFormatToolbar.Strikethrough": "Зачёркнутый",
21
21
  "component.TextFormatToolbar.Code": "Встроенный код",
22
- "component.TextFormatToolbar.Quote": "Цитата"
22
+ "component.TextFormatToolbar.Quote": "Цитата",
23
+ "component.TextMessage.sendSmsInvite": "Отправить SMS приглашение"
23
24
  };
24
25
  export {
25
26
  e as ru