@talkjs/react-components 0.0.31 → 0.0.32

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 (4) hide show
  1. package/default.cjs +225 -224
  2. package/default.d.ts +18 -2
  3. package/default.js +7986 -7985
  4. package/package.json +1 -1
package/default.d.ts CHANGED
@@ -1634,8 +1634,6 @@ declare interface TranslationStrings {
1634
1634
  SAVE: string;
1635
1635
  EDITED_INDICATOR: string;
1636
1636
  REPLY_TO_MESSAGE: string;
1637
- REPLY_TO_ARIA_LABEL: (senderName: string, content: string) => string;
1638
- REPLY_MODE_LEAVE_ARIA_LABEL: string;
1639
1637
  ADD_REACTION: string;
1640
1638
  AUTH_EXPIRED_OVERLAY_TITLE: string;
1641
1639
  AUTH_EXPIRED_OVERLAY_DESCRIPTION: string;
@@ -1645,6 +1643,24 @@ declare interface TranslationStrings {
1645
1643
  STATUS_INDICATOR_ONLINE: string;
1646
1644
  STATUS_INDICATOR_OFFLINE: string;
1647
1645
  CONTACT_INFORMATION_HIDDEN: string;
1646
+ ARIA_LEAVE_SEARCH_MODE: string;
1647
+ ARIA_SEARCH_UP: string;
1648
+ ARIA_SEARCH_DOWN: string;
1649
+ ARIA_CLOSE_CHAT_POPUP: string;
1650
+ ARIA_SEARCH_INSIDE_CONVERSATION: string;
1651
+ ARIA_SEARCH: string;
1652
+ ARIA_CHAT: string;
1653
+ ARIA_SET_PLAYBACK_SPEED: string;
1654
+ ARIA_CANCEL_UPLOAD: string;
1655
+ ARIA_STOP_RECORDING: string;
1656
+ ARIA_CANCEL_RECORDING: string;
1657
+ ARIA_INSERT_EMOJI: string;
1658
+ ARIA_PLAY_AUDIO: string;
1659
+ ARIA_PAUSE_AUDIO: string;
1660
+ ARIA_REACTION_COUNT: (numReactions: number, emoji: string) => string;
1661
+ ARIA_MORE_ACTIONS: string;
1662
+ ARIA_REPLYING_TO: (senderName: string, content: string) => string;
1663
+ REPLY_MODE_LEAVE_ARIA_LABEL: string;
1648
1664
  }
1649
1665
 
1650
1666
  export { TypingSnapshot }