@microsoft/omnichannel-chat-components 1.1.11 → 1.1.13

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 (333) hide show
  1. package/lib/cjs/interfaces/IPostMessageOptions.js +1 -0
  2. package/lib/cjs/services/BroadcastService.js +33 -2
  3. package/lib/cjs/services/EventQueue.js +91 -0
  4. package/lib/esm/interfaces/IPostMessageOptions.js +1 -0
  5. package/lib/esm/services/BroadcastService.js +29 -2
  6. package/lib/esm/services/EventQueue.js +83 -0
  7. package/lib/types/assets/Icons.d.ts +21 -21
  8. package/lib/types/common/Constants.d.ts +195 -196
  9. package/lib/types/common/decodeComponentString.d.ts +2 -2
  10. package/lib/types/common/encodeComponentString.d.ts +2 -2
  11. package/lib/types/common/utils.d.ts +19 -19
  12. package/lib/types/components/callingcontainer/CallingContainer.d.ts +4 -4
  13. package/lib/types/components/callingcontainer/common/defaultProps/defaultCallingContainerControlProps.d.ts +2 -2
  14. package/lib/types/components/callingcontainer/common/defaultProps/defaultCallingContainerProps.d.ts +2 -2
  15. package/lib/types/components/callingcontainer/common/defaultStyles/customizedCallingContainerStyles.d.ts +2 -2
  16. package/lib/types/components/callingcontainer/common/defaultStyles/defaultCallingContainerStyles.d.ts +2 -2
  17. package/lib/types/components/callingcontainer/interfaces/ICallingContainerControlProps.d.ts +28 -28
  18. package/lib/types/components/callingcontainer/interfaces/ICallingContainerProps.d.ts +12 -12
  19. package/lib/types/components/callingcontainer/interfaces/ICallingContainerStyleProps.d.ts +21 -21
  20. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/CurrentCall.d.ts +4 -4
  21. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlProps.d.ts +2 -2
  22. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlPropsRtl.d.ts +2 -2
  23. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallProps.d.ts +2 -2
  24. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/componentOverridesStyleProps.d.ts +2 -2
  25. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/customizedCurrentCallStyleProps.d.ts +2 -2
  26. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/defaultCurrentCallStyleProps.d.ts +2 -2
  27. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallClassNames.d.ts +22 -22
  28. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallComponentOverrides.d.ts +7 -7
  29. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallControlProps.d.ts +102 -102
  30. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallNonActionControlIds.d.ts +22 -22
  31. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallProps.d.ts +17 -17
  32. package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallStyleProps.d.ts +60 -60
  33. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/IncomingCall.d.ts +4 -4
  34. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverrideProps.d.ts +2 -2
  35. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverridesControlProps.d.ts +2 -2
  36. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlProps.d.ts +2 -2
  37. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlPropsRtl.d.ts +2 -2
  38. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallProps.d.ts +2 -2
  39. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/componentOverridesStyleProps.d.ts +2 -2
  40. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/defaultIncomingCallStyleProps.d.ts +2 -2
  41. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallComponentOverrides.d.ts +7 -7
  42. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallControlProps.d.ts +89 -89
  43. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallProps.d.ts +17 -17
  44. package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallStyleProps.d.ts +43 -43
  45. package/lib/types/components/callingcontainer/subcomponents/Timer/ITimer.d.ts +15 -15
  46. package/lib/types/components/callingcontainer/subcomponents/Timer/Timer.d.ts +4 -4
  47. package/lib/types/components/chatbutton/ChatButton.d.ts +4 -4
  48. package/lib/types/components/chatbutton/common/defaultProps/defaultChatButtonControlProps.d.ts +2 -2
  49. package/lib/types/components/chatbutton/common/defaultProps/defaultChatButtonProps.d.ts +2 -2
  50. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonGeneralStyles.d.ts +2 -2
  51. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonIconContainerStyles.d.ts +2 -2
  52. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonNotificationBubbleStyles.d.ts +2 -2
  53. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonStyleProps.d.ts +2 -2
  54. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonSubTitleStyles.d.ts +2 -2
  55. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonTextContainerStyles.d.ts +2 -2
  56. package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonTitleStyles.d.ts +2 -2
  57. package/lib/types/components/chatbutton/interfaces/IChatButtonClassNames.d.ts +7 -7
  58. package/lib/types/components/chatbutton/interfaces/IChatButtonComponentOverrides.d.ts +8 -8
  59. package/lib/types/components/chatbutton/interfaces/IChatButtonControlProps.d.ts +19 -19
  60. package/lib/types/components/chatbutton/interfaces/IChatButtonProps.d.ts +8 -8
  61. package/lib/types/components/chatbutton/interfaces/IChatButtonStyleProps.d.ts +12 -12
  62. package/lib/types/components/common/commandbutton/CommandButton.d.ts +4 -4
  63. package/lib/types/components/common/interfaces/ICommandButtonControlProps.d.ts +18 -18
  64. package/lib/types/components/common/interfaces/ICommandButtonProps.d.ts +22 -22
  65. package/lib/types/components/common/interfaces/IImageControlProps.d.ts +6 -6
  66. package/lib/types/components/common/interfaces/ILabelControlProps.d.ts +5 -5
  67. package/lib/types/components/common/subcomponents/CloseButton.d.ts +4 -4
  68. package/lib/types/components/confirmationpane/ConfirmationPane.d.ts +4 -4
  69. package/lib/types/components/confirmationpane/common/defaultProps/defaultConfirmationPaneControlProps.d.ts +2 -2
  70. package/lib/types/components/confirmationpane/common/defaultProps/defaultConfirmationPaneProps.d.ts +2 -2
  71. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneButtonGroupStyles.d.ts +2 -2
  72. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonFocusedStyles.d.ts +2 -2
  73. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonHoveredStyles.d.ts +2 -2
  74. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonStyles.d.ts +2 -2
  75. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonFocusedStyles.d.ts +2 -2
  76. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonHoveredStyles.d.ts +2 -2
  77. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonStyles.d.ts +2 -2
  78. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneGeneralStyles.d.ts +2 -2
  79. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneStyles.d.ts +2 -2
  80. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneSubtitleStyles.d.ts +2 -2
  81. package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneTitleStyles.d.ts +2 -2
  82. package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneClassNames.d.ts +7 -7
  83. package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneComponentOverrides.d.ts +7 -7
  84. package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneControlProps.d.ts +18 -18
  85. package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneProps.d.ts +8 -8
  86. package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneStyleProps.d.ts +15 -15
  87. package/lib/types/components/footer/Footer.d.ts +4 -4
  88. package/lib/types/components/footer/common/defaultProps/customFooterControlProps.d.ts +2 -2
  89. package/lib/types/components/footer/common/defaultProps/defaultFooterComponentOverrides.d.ts +2 -2
  90. package/lib/types/components/footer/common/defaultProps/defaultFooterControlProps.d.ts +2 -2
  91. package/lib/types/components/footer/common/defaultProps/defaultFooterOverridesProps.d.ts +2 -2
  92. package/lib/types/components/footer/common/defaultProps/defaultFooterProps.d.ts +2 -2
  93. package/lib/types/components/footer/common/defaultStyles/defaultFooterStyleProps.d.ts +2 -2
  94. package/lib/types/components/footer/interfaces/IFooterComponentOverrides.d.ts +15 -15
  95. package/lib/types/components/footer/interfaces/IFooterControlProps.d.ts +69 -69
  96. package/lib/types/components/footer/interfaces/IFooterProps.d.ts +17 -18
  97. package/lib/types/components/footer/interfaces/IFooterStyleProps.d.ts +40 -40
  98. package/lib/types/components/footer/subcomponents/AudioNotificationButton.d.ts +4 -4
  99. package/lib/types/components/footer/subcomponents/DownloadTranscriptButton.d.ts +4 -4
  100. package/lib/types/components/footer/subcomponents/EmailTranscriptButton.d.ts +4 -4
  101. package/lib/types/components/header/Header.d.ts +4 -4
  102. package/lib/types/components/header/common/defaultProps/azureHeaderControlProps.d.ts +2 -2
  103. package/lib/types/components/header/common/defaultProps/azureHeaderProps.d.ts +2 -2
  104. package/lib/types/components/header/common/defaultProps/customHeaderControlProps.d.ts +2 -2
  105. package/lib/types/components/header/common/defaultProps/defaultHeaderComponentOverrides.d.ts +2 -2
  106. package/lib/types/components/header/common/defaultProps/defaultHeaderControlProps.d.ts +2 -2
  107. package/lib/types/components/header/common/defaultProps/defaultHeaderProps.d.ts +2 -2
  108. package/lib/types/components/header/common/defaultProps/overridesDefaultHeaderProps.d.ts +2 -2
  109. package/lib/types/components/header/common/defaultStyles/advancedHeaderStyleProps.d.ts +2 -2
  110. package/lib/types/components/header/common/defaultStyles/defaultHeaderStyleProps.d.ts +2 -2
  111. package/lib/types/components/header/interfaces/IHeaderComponentOverrides.d.ts +19 -19
  112. package/lib/types/components/header/interfaces/IHeaderControlProps.d.ts +76 -76
  113. package/lib/types/components/header/interfaces/IHeaderProps.d.ts +17 -18
  114. package/lib/types/components/header/interfaces/IHeaderStyleProps.d.ts +40 -40
  115. package/lib/types/components/header/subcomponents/MinimizeButton.d.ts +4 -4
  116. package/lib/types/components/inputvalidationpane/InputValidationPane.d.ts +4 -4
  117. package/lib/types/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneControlProps.d.ts +2 -2
  118. package/lib/types/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneProps.d.ts +2 -2
  119. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneButtonGroupStyles.d.ts +2 -2
  120. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonHoveredStyles.d.ts +2 -2
  121. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonStyles.d.ts +2 -2
  122. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneGeneralStyles.d.ts +2 -2
  123. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneHeaderGroupStyles.d.ts +2 -2
  124. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInputStyles.d.ts +2 -2
  125. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInvalidInputErrorMessageStyles.d.ts +2 -2
  126. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonHoveredStyles.d.ts +2 -2
  127. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonStyles.d.ts +2 -2
  128. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneStyles.d.ts +2 -2
  129. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSubtitleStyles.d.ts +2 -2
  130. package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneTitleStyles.d.ts +2 -2
  131. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneComponentOverrides.d.ts +2 -2
  132. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneControlProps.d.ts +2 -2
  133. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneProps.d.ts +2 -2
  134. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneCancelButtonStyles.d.ts +2 -2
  135. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneHeaderGroupStyles.d.ts +2 -2
  136. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneInputStyles.d.ts +2 -2
  137. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneSendButtonStyles.d.ts +2 -2
  138. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneStyles.d.ts +2 -2
  139. package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneTitleStyles.d.ts +2 -2
  140. package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneClassNames.d.ts +11 -11
  141. package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneComponentOverrides.d.ts +9 -9
  142. package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneControlProps.d.ts +29 -29
  143. package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneProps.d.ts +8 -8
  144. package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneStyleProps.d.ts +16 -16
  145. package/lib/types/components/loadingpane/LoadingPane.d.ts +4 -4
  146. package/lib/types/components/loadingpane/common/defaultProps/defaultLoadingPaneControlProps.d.ts +2 -2
  147. package/lib/types/components/loadingpane/common/defaultProps/defaultLoadingPaneProps.d.ts +2 -2
  148. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneGeneralStyles.d.ts +2 -2
  149. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconImageProps.d.ts +2 -2
  150. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconStyles.d.ts +2 -2
  151. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerStyles.d.ts +2 -2
  152. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerTextStyles.d.ts +2 -2
  153. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneStyles.d.ts +2 -2
  154. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSubtitleStyles.d.ts +2 -2
  155. package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneTitleStyles.d.ts +2 -2
  156. package/lib/types/components/loadingpane/common/presetOneProps/presetOneLoadingPaneControlProps.d.ts +2 -2
  157. package/lib/types/components/loadingpane/common/presetOneProps/presetOneLoadingPaneProps.d.ts +2 -2
  158. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneControlProps.d.ts +2 -2
  159. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneProps.d.ts +2 -2
  160. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneGeneralStyles.d.ts +2 -2
  161. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconImageProps.d.ts +2 -2
  162. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconStyles.d.ts +2 -2
  163. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerStyles.d.ts +2 -2
  164. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerTextStyles.d.ts +2 -2
  165. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneStyles.d.ts +2 -2
  166. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSubtitleStyles.d.ts +2 -2
  167. package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneTitleStyles.d.ts +2 -2
  168. package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneControlProps.d.ts +2 -2
  169. package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneProps.d.ts +2 -2
  170. package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneGeneralStyles.d.ts +2 -2
  171. package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneSpinnerStyles.d.ts +2 -2
  172. package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneStyles.d.ts +2 -2
  173. package/lib/types/components/loadingpane/interfaces/ILoadingPaneClassNames.d.ts +7 -7
  174. package/lib/types/components/loadingpane/interfaces/ILoadingPaneComponentOverrides.d.ts +8 -8
  175. package/lib/types/components/loadingpane/interfaces/ILoadingPaneControlProps.d.ts +16 -16
  176. package/lib/types/components/loadingpane/interfaces/ILoadingPaneProps.d.ts +10 -10
  177. package/lib/types/components/loadingpane/interfaces/ILoadingPaneStyleProps.d.ts +12 -12
  178. package/lib/types/components/notificationpane/NotificationPane.d.ts +4 -4
  179. package/lib/types/components/notificationpane/interfaces/INotificationPaneProps.d.ts +8 -8
  180. package/lib/types/components/notificationpane/interfaces/chatdisconnect/IChatDisconnectClassNames.d.ts +8 -8
  181. package/lib/types/components/notificationpane/interfaces/chatdisconnect/IChatDisconnectControlProps.d.ts +10 -10
  182. package/lib/types/components/notificationpane/interfaces/chatdisconnect/IChatDisconnectNotificationProps.d.ts +11 -11
  183. package/lib/types/components/notificationpane/interfaces/chatdisconnect/IChatDisconnectStyleProps.d.ts +13 -13
  184. package/lib/types/components/notificationpane/interfaces/common/INotificationPaneClassNames.d.ts +11 -11
  185. package/lib/types/components/notificationpane/interfaces/common/INotificationPaneComponentOverrides.d.ts +12 -12
  186. package/lib/types/components/notificationpane/interfaces/common/INotificationPaneControlProps.d.ts +22 -22
  187. package/lib/types/components/notificationpane/interfaces/common/INotificationPaneInternal.d.ts +53 -53
  188. package/lib/types/components/notificationpane/interfaces/common/INotificationPaneStyleProps.d.ts +16 -16
  189. package/lib/types/components/notificationpane/subcomponents/CloseChatButton.d.ts +4 -4
  190. package/lib/types/components/notificationpane/subcomponents/DismissButton.d.ts +4 -4
  191. package/lib/types/components/outofofficehourspane/OOOHPane.d.ts +4 -4
  192. package/lib/types/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneControlProps.d.ts +2 -2
  193. package/lib/types/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneProps.d.ts +2 -2
  194. package/lib/types/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneGeneralStyles.d.ts +2 -2
  195. package/lib/types/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneStyles.d.ts +2 -2
  196. package/lib/types/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneTitleStyles.d.ts +2 -2
  197. package/lib/types/components/outofofficehourspane/common/presetFourProps/presetFourOOOHPaneControlProps.d.ts +2 -2
  198. package/lib/types/components/outofofficehourspane/common/presetFourProps/presetFourOOOHPaneProps.d.ts +2 -2
  199. package/lib/types/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneControlProps.d.ts +2 -2
  200. package/lib/types/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneProps.d.ts +2 -2
  201. package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneControlProps.d.ts +2 -2
  202. package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneProps.d.ts +2 -2
  203. package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneGeneralStyles.d.ts +2 -2
  204. package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneStyles.d.ts +2 -2
  205. package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneTitleStyles.d.ts +2 -2
  206. package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneClassNames.d.ts +4 -4
  207. package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneComponentOverrides.d.ts +4 -4
  208. package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneControlProps.d.ts +9 -9
  209. package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneProps.d.ts +8 -8
  210. package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneStyleProps.d.ts +7 -7
  211. package/lib/types/components/postchatsurveypane/PostChatSurveyPane.d.ts +4 -4
  212. package/lib/types/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneControlProps.d.ts +2 -2
  213. package/lib/types/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneProps.d.ts +2 -2
  214. package/lib/types/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneGeneralStyles.d.ts +2 -2
  215. package/lib/types/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneStyles.d.ts +2 -2
  216. package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneControlProps.d.ts +2 -2
  217. package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneProps.d.ts +2 -2
  218. package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneGeneralStyles.d.ts +2 -2
  219. package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneStyles.d.ts +2 -2
  220. package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneClassNames.d.ts +3 -3
  221. package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneControlProps.d.ts +6 -6
  222. package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneProps.d.ts +6 -6
  223. package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneStyleProps.d.ts +6 -6
  224. package/lib/types/components/prechatsurveypane/PreChatSurveyPane.d.ts +4 -4
  225. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneControlProps.d.ts +2 -2
  226. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneProps.d.ts +2 -2
  227. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneACContainerStyles.d.ts +2 -2
  228. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneButtonStyles.d.ts +2 -2
  229. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneGeneralStyles.d.ts +2 -2
  230. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneMultichoiceInputStyles.d.ts +2 -2
  231. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneMultilineTextInputStyles.d.ts +2 -2
  232. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneStyles.d.ts +2 -2
  233. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneTextInputStyles.d.ts +2 -2
  234. package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneToggleInputStyles.d.ts +2 -2
  235. package/lib/types/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneControlProps.d.ts +2 -2
  236. package/lib/types/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneProps.d.ts +2 -2
  237. package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneControlProps.d.ts +2 -2
  238. package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneProps.d.ts +2 -2
  239. package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneACContainerStyles.d.ts +2 -2
  240. package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneButtonStyles.d.ts +2 -2
  241. package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneGeneralStyles.d.ts +2 -2
  242. package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneStyles.d.ts +2 -2
  243. package/lib/types/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneControlProps.d.ts +2 -2
  244. package/lib/types/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneProps.d.ts +2 -2
  245. package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneButtonStyles.d.ts +8 -8
  246. package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneControlProps.d.ts +15 -15
  247. package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneElementStyles.d.ts +6 -6
  248. package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneProps.d.ts +6 -6
  249. package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneStyleProps.d.ts +14 -14
  250. package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneToggleInputStyles.d.ts +3 -3
  251. package/lib/types/components/proactivechatpane/ProactiveChatPane.d.ts +4 -4
  252. package/lib/types/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneControlProps.d.ts +2 -2
  253. package/lib/types/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneProps.d.ts +2 -2
  254. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyContainerStyles.d.ts +2 -2
  255. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyTitleStyles.d.ts +2 -2
  256. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonHoveredStyles.d.ts +2 -2
  257. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonStyles.d.ts +2 -2
  258. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneGeneralStyles.d.ts +2 -2
  259. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneHeaderContainerStyles.d.ts +2 -2
  260. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -2
  261. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonStyles.d.ts +2 -2
  262. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStyles.d.ts +2 -2
  263. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneSubtitleStyles.d.ts +2 -2
  264. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTextContainerStyles.d.ts +2 -2
  265. package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTitleStyles.d.ts +2 -2
  266. package/lib/types/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneControlProps.d.ts +2 -2
  267. package/lib/types/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneProps.d.ts +2 -2
  268. package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneBodyTitleStyles.d.ts +2 -2
  269. package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonHoveredStyles.d.ts +2 -2
  270. package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonStyles.d.ts +2 -2
  271. package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -2
  272. package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonStyles.d.ts +2 -2
  273. package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStyles.d.ts +2 -2
  274. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneControlProps.d.ts +2 -2
  275. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneProps.d.ts +2 -2
  276. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneBodyContainerStyles.d.ts +2 -2
  277. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonHoveredStyles.d.ts +2 -2
  278. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonStyles.d.ts +2 -2
  279. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneGeneralStyles.d.ts +2 -2
  280. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneHeaderContainerStyles.d.ts +2 -2
  281. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -2
  282. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonStyles.d.ts +2 -2
  283. package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStyles.d.ts +2 -2
  284. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneComponentOverrides.d.ts +2 -2
  285. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneControlProps.d.ts +2 -2
  286. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneProps.d.ts +2 -2
  287. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneBodyContainerStyles.d.ts +2 -2
  288. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneGeneralStyles.d.ts +2 -2
  289. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneHeaderContainerStyles.d.ts +2 -2
  290. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -2
  291. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonStyles.d.ts +2 -2
  292. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStyles.d.ts +2 -2
  293. package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneTextContainerStyles.d.ts +2 -2
  294. package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneClassNames.d.ts +11 -11
  295. package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneComponentOverrides.d.ts +8 -8
  296. package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneControlProps.d.ts +21 -21
  297. package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneProps.d.ts +8 -8
  298. package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneStyleProps.d.ts +16 -16
  299. package/lib/types/components/reconnectchatpane/ReconnectChatPane.d.ts +4 -4
  300. package/lib/types/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneControlProps.d.ts +2 -2
  301. package/lib/types/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneProps.d.ts +2 -2
  302. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneButtonGroupStyles.d.ts +2 -2
  303. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonFocusedStyles.d.ts +2 -2
  304. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonHoveredStyles.d.ts +2 -2
  305. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonStyles.d.ts +2 -2
  306. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneGeneralStyles.d.ts +2 -2
  307. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneIconStyles.d.ts +2 -2
  308. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartChatButtonFocusedStyles.d.ts +2 -2
  309. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonHoveredStyles.d.ts +2 -2
  310. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonStyles.d.ts +2 -2
  311. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStyles.d.ts +2 -2
  312. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneSubtitleStyles.d.ts +2 -2
  313. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneTitleStyles.d.ts +2 -2
  314. package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneWrapperStyles.d.ts +2 -2
  315. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneControlProps.d.ts +2 -2
  316. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneProps.d.ts +2 -2
  317. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneButtonGroupStyles.d.ts +2 -2
  318. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneContinueChatButtonStyles.d.ts +2 -2
  319. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneGeneralStyles.d.ts +2 -2
  320. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneStyles.d.ts +2 -2
  321. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneTitleStyles.d.ts +2 -2
  322. package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneWrapperStyles.d.ts +2 -2
  323. package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneClassNames.d.ts +10 -10
  324. package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneComponentOverrides.d.ts +8 -8
  325. package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneControlProps.d.ts +22 -22
  326. package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneProps.d.ts +8 -8
  327. package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneStyleProps.d.ts +17 -17
  328. package/lib/types/index.d.ts +22 -22
  329. package/lib/types/interfaces/ICustomEvent.d.ts +8 -7
  330. package/lib/types/interfaces/IPostMessageOptions.d.ts +4 -0
  331. package/lib/types/services/BroadcastService.d.ts +11 -10
  332. package/lib/types/services/EventQueue.d.ts +17 -0
  333. package/package.json +12 -9
@@ -1,196 +1,195 @@
1
- /// <reference types="react" />
2
- export declare const AccessibilityBrightnessRatio = 1.2;
3
- export declare const HiddenTextStyles: React.CSSProperties;
4
- export declare const KeyCodes: {
5
- new (): {};
6
- readonly ENTER: "Enter";
7
- readonly ESCAPE: "Escape";
8
- readonly SPACE: "Space";
9
- readonly DeclineCallHotKey: "D";
10
- readonly AcceptAudioCallHotKey: "S";
11
- readonly AcceptVideoCallHotKey: "A";
12
- readonly ToggleMicHotKey: "M";
13
- readonly ToggleCameraHotKey: "O";
14
- readonly EndCallHotKey: "H";
15
- };
16
- export declare const Regex: {
17
- new (): {};
18
- readonly EmailRegex: "(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])";
19
- readonly URLRegex: RegExp;
20
- };
21
- export declare enum ElementType {
22
- ChatButton = "ChatButton",
23
- CloseButton = "CloseButton",
24
- HeaderMinimizeButton = "HeaderMinimizeButton",
25
- NotificationDismissButton = "NotificationDismissButton",
26
- NotificationCloseChatButton = "NotificationCloseChatButton",
27
- FooterDownloadTranscriptButton = "FooterDownloadTranscriptButton",
28
- FooterEmailTranscriptButton = "FooterEmailTranscriptButton",
29
- FooterSoundNotificationButton = "FooterSoundNotificationButton",
30
- ReconnectChatContinueChatButton = "ReconnectChatContinueChatButton",
31
- ReconnectChatStartNewChatButton = "ReconnectChatStartNewChatButton",
32
- ReconnectChatPane = "ReconnectChatPane",
33
- ConfirmationPaneConfirmButton = "ConfirmationPaneConfirmButton",
34
- ConfirmationPaneCancelButton = "ConfirmationPaneCancelButton",
35
- PreChatSurveySubmitButton = "PreChatSurveySubmitButton",
36
- PreChatSurveyError = "PreChatSurveyError",
37
- IncomingCallDeclineCallButton = "IncomingCallDeclineCallButton",
38
- IncomingCallVideoCallButton = "IncomingCallVideoCallButton",
39
- IncomingCallAudioCallButton = "IncomingCallAudioCallButton",
40
- CurrentCallVideoButton = "CurrentCallVideoButton",
41
- CurrentCallMicButton = "CurrentCallMicButton",
42
- CurrentCallEndCallButton = "CurrentCallEndCallButton",
43
- Utility = "Utility",
44
- Custom = "Custom"
45
- }
46
- export declare const Ids: {
47
- new (): {};
48
- readonly DefaultCallingContainerId: "lcw-calling-container";
49
- readonly DefaultCurrentCallId: "lcw-current-call-container";
50
- readonly CurrentCallActionGroupId: "lcw-current-call-action-icons";
51
- readonly CurrentCallFooterId: "lcw-current-call-footer";
52
- readonly RemoteVideoTileId: "lcw-remote-video";
53
- readonly SelfVideoTileId: "lcw-self-video";
54
- readonly VideoTileGroupId: "lcw-current-call-body";
55
- readonly EndCallButtonId: "lcw-call-reject-button";
56
- readonly MicButtonId: "lcw-toggle-audio";
57
- readonly VideoButtonId: "lcw-toggle-video";
58
- readonly CallTimerId: "lcw-current-call-timer";
59
- readonly CurrentCallLeftGroupId: "lcw-current-call-left-group";
60
- readonly CurrentCallMiddleGroupId: "lcw-current-call-middle-group";
61
- readonly CurrentCallRightGroupId: "lcw-current-call-right-group";
62
- readonly DefaultIncomingCallId: "lcw-incoming-call";
63
- readonly DeclineCallButtonId: "lcw-call-reject-button";
64
- readonly AudioCallButtonId: "lcw-call-accept-button";
65
- readonly VideoCallButtonId: "lcw-video-call-accept-button";
66
- readonly IncomingCallTitleId: "lcw-incoming-call-message";
67
- readonly DefaultIncomingCallPopupId: "lcw-incoming-call-popup";
68
- readonly IncomingCallLeftGroupId: "lcw-incoming-call-left-group";
69
- readonly IncomingCallMiddleGroupId: "lcw-incoming-call-middle-group";
70
- readonly IncomingCallRightGroupId: "lcw-incoming-call-right-group";
71
- readonly DefaultChatButtonId: "lcw-components-chat-button";
72
- readonly DefaultConfirmationPaneId: "lcw-components-confirmation-pane";
73
- readonly CustomFooterId: "lcw-footer";
74
- readonly DownloadTranscriptButtonId: "lcw-footer-download-transcript-button";
75
- readonly EmailTranscriptButtonId: "lcw-footer-email-transcript-button";
76
- readonly AudioNotificationButtonId: "lcw-footer-audio-notification-button";
77
- readonly DefaultFooterId: "lcw-components-footer";
78
- readonly FooterLeftGroupId: "lcw-footer-left-group";
79
- readonly FooterMiddleGroupId: "lcw-footer-middle-group";
80
- readonly FooterRightGroupId: "lcw-footer-right-group";
81
- readonly DefaultHeaderId: "lcw-header";
82
- readonly MinimizeButtonId: "lcw-header-minimize-button";
83
- readonly CloseButtonId: "lcw-header-close-button";
84
- readonly HeaderIconId: "lcw-header-icon";
85
- readonly HeaderTitleId: "lcw-header-title";
86
- readonly HeaderLeftGroupId: "lcw-header-left-group";
87
- readonly HeaderMiddleGroupId: "lcw-header-middle-group";
88
- readonly HeaderRightGroupId: "lcw-header-right-group";
89
- readonly DefaultInputValidationPaneId: "lcw-email-transcript-dialog-container";
90
- readonly DefaultInputValidationPaneInputId: "lcw-email-transcript-dialog-text-field";
91
- readonly DefaultLoadingPaneId: "lcw-loading-pane";
92
- readonly DefaultNotificationPaneId: "lcw-notification-pane";
93
- readonly DefaultOOOHPaneId: "lcw-out-of-office-hours-pane";
94
- readonly DefaultPostChatSurveyPaneId: "lcw-postchat-survey-pane";
95
- readonly DefaultPreChatSurveyPaneId: "lcw-prechat-survey-pane-default";
96
- readonly DefaultProactiveChatPaneId: "lcw-proactive-chat";
97
- readonly DefaultReconnectChatPaneId: "lcw-reconnect-chat-pane";
98
- };
99
- export declare const ButtonTypes: {
100
- new (): {};
101
- readonly Icon: "icon";
102
- readonly Text: "text";
103
- };
104
- export declare const IconNames: {
105
- new (): {};
106
- readonly DeclineCall: "DeclineCall";
107
- readonly Microphone: "Microphone";
108
- readonly MicOff2: "MicOff2";
109
- readonly Video: "Video";
110
- readonly VideoOff: "VideoOff";
111
- readonly IncomingCall: "IncomingCall";
112
- readonly ChromeClose: "ChromeClose";
113
- readonly Download: "Download";
114
- readonly Mail: "Mail";
115
- readonly Volume3: "Volume3";
116
- readonly Volume0: "Volume0";
117
- readonly ChromeMinimize: "ChromeMinimize";
118
- };
119
- export declare const AriaLabels: {
120
- new (): {};
121
- readonly EndCall: "End Call";
122
- readonly MicMute: "Mute";
123
- readonly MicUnmute: "Unmute";
124
- readonly VideoTurnCameraOn: "Turn camera on";
125
- readonly VideoTurnCameraOff: "Turn camera off";
126
- readonly IncomingCallArea: "Incoming call area";
127
- readonly RejectCall: "Reject call";
128
- readonly AcceptVoiceCall: "Accept voice call";
129
- readonly AcceptVideoCall: "Accept video Call";
130
- readonly DeclineCall: "Decline Call";
131
- readonly AudioCall: "Audio Call";
132
- readonly VideoCall: "Video Call";
133
- readonly LetsChatWeAreOnline: "Let's chat we are online";
134
- readonly UnreadMessageString: "you have new messages";
135
- readonly Close: "Close";
136
- readonly ConfirmationPaneConfirm: "Close Chat";
137
- readonly ConfirmationPaneCancel: "Cancel. Return to Chat";
138
- readonly DownloadChatTranscript: "Download chat transcript";
139
- readonly EmailTranscript: "Email Transcript";
140
- readonly TurnSoundOff: "Turn sound off";
141
- readonly TurnSoundOn: "Turn sound on";
142
- readonly Minimize: "Minimize";
143
- readonly EmailChatTranscriptPane: "Email Chat Transcript Pane";
144
- readonly InputValidationPaneInput: "Please provide e-mail address to send transcript. The transcript will be sent after the chat ends. Email address text area";
145
- readonly Save: "Save";
146
- readonly Cancel: "Cancel";
147
- readonly ProactiveChatPane: "Proactive Chat Pane";
148
- readonly ChatNow: "Chat Now";
149
- readonly ReconnectChatPane: "Reconnect Chat Pane";
150
- readonly ReconnectChatPaneIcon: "Reconnect Chat Pane Icon";
151
- readonly ContinueConversation: "Continue conversation";
152
- readonly StartNewConversation: "Start new conversation";
153
- };
154
- export declare const EventNames: {
155
- new (): {};
156
- readonly OnClick: "OnClick";
157
- readonly OnEscapeKeyDown: "OnEscapeKeyDown";
158
- readonly IncomingCallEnded: "IncomingCallEnded";
159
- };
160
- export declare const Texts: {
161
- new (): {};
162
- readonly IncomingCallTitle: "Incoming Call";
163
- readonly ChatButtonTitle: "Let's Chat!";
164
- readonly ChatButtonSubtitle: "We're online.";
165
- readonly ChatButtonUnreadMessageString: "new messages";
166
- readonly ChatButtonLargeUnreadMessageString: "99+";
167
- readonly CloseButtonText: "Close";
168
- readonly ConfirmationPaneTitle: "Close chat";
169
- readonly ConfirmationPaneSubtitle: "Do you really want to close this chat?";
170
- readonly ConfirmButtonText: "Close";
171
- readonly EmailPlaceHolderText: "johnsmith@outlook.com";
172
- readonly CancelButtonText: "Cancel";
173
- readonly DownloadChatTranscriptText: "Download chat transcript";
174
- readonly EmailTranscriptText: "Email Transcript";
175
- readonly HeaderIcon: "Chat Icon";
176
- readonly HeaderTitle: "Let's Chat";
177
- readonly MinimizeText: "Minimize";
178
- readonly InputValidationPaneTitleText: "Please provide e-mail address to send transcript.";
179
- readonly InputValidationPaneSubtitleText: "The transcript will be sent after the chat ends.";
180
- readonly InvalidInputErrorMessageText: "Enter a valid email address.";
181
- readonly SendButtonText: "Send";
182
- readonly SaveButtonText: "Save";
183
- readonly LoadingPaneTitleText: "Welcome to";
184
- readonly LoadingPaneSubtitleText: "live chat support ...";
185
- readonly LoadingPaneSpinnerText: "Loading ...";
186
- readonly OOOHPaneTitleText: "Thanks for contacting us. You have reached us outside of our operating hours. An agent will respond when we open.";
187
- readonly PostChatSurveyPaneTitleText: "Post chat survey pane";
188
- readonly ProactiveChatPaneTitleText: "Welcome to";
189
- readonly ProactiveChatPaneSubtitleText: "Live chat support!";
190
- readonly ProactiveChatPaneBodyTitleText: "Hi! Have any questions? I am here to help.";
191
- readonly ProactiveChatPaneStartButtonText: "Chat Now";
192
- readonly ReconnectChatPaneTitleText: "Previous session detected";
193
- readonly ReconnectChatPaneSubtitleText: "We have detected a previous chat session. Would you like to continue with your previous session?";
194
- readonly ReconnectChatPaneContinueChatButtonText: "Continue conversation";
195
- readonly ReconnectChatPaneStartNewChatButtonText: "Start new conversation";
196
- };
1
+ export declare const AccessibilityBrightnessRatio = 1.2;
2
+ export declare const HiddenTextStyles: React.CSSProperties;
3
+ export declare const KeyCodes: {
4
+ new (): {};
5
+ readonly ENTER: "Enter";
6
+ readonly ESCAPE: "Escape";
7
+ readonly SPACE: "Space";
8
+ readonly DeclineCallHotKey: "D";
9
+ readonly AcceptAudioCallHotKey: "S";
10
+ readonly AcceptVideoCallHotKey: "A";
11
+ readonly ToggleMicHotKey: "M";
12
+ readonly ToggleCameraHotKey: "O";
13
+ readonly EndCallHotKey: "H";
14
+ };
15
+ export declare const Regex: {
16
+ new (): {};
17
+ readonly EmailRegex: "(?:[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?|\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-zA-Z0-9-]*[a-zA-Z0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])";
18
+ readonly URLRegex: RegExp;
19
+ };
20
+ export declare enum ElementType {
21
+ ChatButton = "ChatButton",
22
+ CloseButton = "CloseButton",
23
+ HeaderMinimizeButton = "HeaderMinimizeButton",
24
+ NotificationDismissButton = "NotificationDismissButton",
25
+ NotificationCloseChatButton = "NotificationCloseChatButton",
26
+ FooterDownloadTranscriptButton = "FooterDownloadTranscriptButton",
27
+ FooterEmailTranscriptButton = "FooterEmailTranscriptButton",
28
+ FooterSoundNotificationButton = "FooterSoundNotificationButton",
29
+ ReconnectChatContinueChatButton = "ReconnectChatContinueChatButton",
30
+ ReconnectChatStartNewChatButton = "ReconnectChatStartNewChatButton",
31
+ ReconnectChatPane = "ReconnectChatPane",
32
+ ConfirmationPaneConfirmButton = "ConfirmationPaneConfirmButton",
33
+ ConfirmationPaneCancelButton = "ConfirmationPaneCancelButton",
34
+ PreChatSurveySubmitButton = "PreChatSurveySubmitButton",
35
+ PreChatSurveyError = "PreChatSurveyError",
36
+ IncomingCallDeclineCallButton = "IncomingCallDeclineCallButton",
37
+ IncomingCallVideoCallButton = "IncomingCallVideoCallButton",
38
+ IncomingCallAudioCallButton = "IncomingCallAudioCallButton",
39
+ CurrentCallVideoButton = "CurrentCallVideoButton",
40
+ CurrentCallMicButton = "CurrentCallMicButton",
41
+ CurrentCallEndCallButton = "CurrentCallEndCallButton",
42
+ Utility = "Utility",
43
+ Custom = "Custom"
44
+ }
45
+ export declare const Ids: {
46
+ new (): {};
47
+ readonly DefaultCallingContainerId: "lcw-calling-container";
48
+ readonly DefaultCurrentCallId: "lcw-current-call-container";
49
+ readonly CurrentCallActionGroupId: "lcw-current-call-action-icons";
50
+ readonly CurrentCallFooterId: "lcw-current-call-footer";
51
+ readonly RemoteVideoTileId: "lcw-remote-video";
52
+ readonly SelfVideoTileId: "lcw-self-video";
53
+ readonly VideoTileGroupId: "lcw-current-call-body";
54
+ readonly EndCallButtonId: "lcw-call-reject-button";
55
+ readonly MicButtonId: "lcw-toggle-audio";
56
+ readonly VideoButtonId: "lcw-toggle-video";
57
+ readonly CallTimerId: "lcw-current-call-timer";
58
+ readonly CurrentCallLeftGroupId: "lcw-current-call-left-group";
59
+ readonly CurrentCallMiddleGroupId: "lcw-current-call-middle-group";
60
+ readonly CurrentCallRightGroupId: "lcw-current-call-right-group";
61
+ readonly DefaultIncomingCallId: "lcw-incoming-call";
62
+ readonly DeclineCallButtonId: "lcw-call-reject-button";
63
+ readonly AudioCallButtonId: "lcw-call-accept-button";
64
+ readonly VideoCallButtonId: "lcw-video-call-accept-button";
65
+ readonly IncomingCallTitleId: "lcw-incoming-call-message";
66
+ readonly DefaultIncomingCallPopupId: "lcw-incoming-call-popup";
67
+ readonly IncomingCallLeftGroupId: "lcw-incoming-call-left-group";
68
+ readonly IncomingCallMiddleGroupId: "lcw-incoming-call-middle-group";
69
+ readonly IncomingCallRightGroupId: "lcw-incoming-call-right-group";
70
+ readonly DefaultChatButtonId: "lcw-components-chat-button";
71
+ readonly DefaultConfirmationPaneId: "lcw-components-confirmation-pane";
72
+ readonly CustomFooterId: "lcw-footer";
73
+ readonly DownloadTranscriptButtonId: "lcw-footer-download-transcript-button";
74
+ readonly EmailTranscriptButtonId: "lcw-footer-email-transcript-button";
75
+ readonly AudioNotificationButtonId: "lcw-footer-audio-notification-button";
76
+ readonly DefaultFooterId: "lcw-components-footer";
77
+ readonly FooterLeftGroupId: "lcw-footer-left-group";
78
+ readonly FooterMiddleGroupId: "lcw-footer-middle-group";
79
+ readonly FooterRightGroupId: "lcw-footer-right-group";
80
+ readonly DefaultHeaderId: "lcw-header";
81
+ readonly MinimizeButtonId: "lcw-header-minimize-button";
82
+ readonly CloseButtonId: "lcw-header-close-button";
83
+ readonly HeaderIconId: "lcw-header-icon";
84
+ readonly HeaderTitleId: "lcw-header-title";
85
+ readonly HeaderLeftGroupId: "lcw-header-left-group";
86
+ readonly HeaderMiddleGroupId: "lcw-header-middle-group";
87
+ readonly HeaderRightGroupId: "lcw-header-right-group";
88
+ readonly DefaultInputValidationPaneId: "lcw-email-transcript-dialog-container";
89
+ readonly DefaultInputValidationPaneInputId: "lcw-email-transcript-dialog-text-field";
90
+ readonly DefaultLoadingPaneId: "lcw-loading-pane";
91
+ readonly DefaultNotificationPaneId: "lcw-notification-pane";
92
+ readonly DefaultOOOHPaneId: "lcw-out-of-office-hours-pane";
93
+ readonly DefaultPostChatSurveyPaneId: "lcw-postchat-survey-pane";
94
+ readonly DefaultPreChatSurveyPaneId: "lcw-prechat-survey-pane-default";
95
+ readonly DefaultProactiveChatPaneId: "lcw-proactive-chat";
96
+ readonly DefaultReconnectChatPaneId: "lcw-reconnect-chat-pane";
97
+ };
98
+ export declare const ButtonTypes: {
99
+ new (): {};
100
+ readonly Icon: "icon";
101
+ readonly Text: "text";
102
+ };
103
+ export declare const IconNames: {
104
+ new (): {};
105
+ readonly DeclineCall: "DeclineCall";
106
+ readonly Microphone: "Microphone";
107
+ readonly MicOff2: "MicOff2";
108
+ readonly Video: "Video";
109
+ readonly VideoOff: "VideoOff";
110
+ readonly IncomingCall: "IncomingCall";
111
+ readonly ChromeClose: "ChromeClose";
112
+ readonly Download: "Download";
113
+ readonly Mail: "Mail";
114
+ readonly Volume3: "Volume3";
115
+ readonly Volume0: "Volume0";
116
+ readonly ChromeMinimize: "ChromeMinimize";
117
+ };
118
+ export declare const AriaLabels: {
119
+ new (): {};
120
+ readonly EndCall: "End Call";
121
+ readonly MicMute: "Mute";
122
+ readonly MicUnmute: "Unmute";
123
+ readonly VideoTurnCameraOn: "Turn camera on";
124
+ readonly VideoTurnCameraOff: "Turn camera off";
125
+ readonly IncomingCallArea: "Incoming call area";
126
+ readonly RejectCall: "Reject call";
127
+ readonly AcceptVoiceCall: "Accept voice call";
128
+ readonly AcceptVideoCall: "Accept video Call";
129
+ readonly DeclineCall: "Decline Call";
130
+ readonly AudioCall: "Audio Call";
131
+ readonly VideoCall: "Video Call";
132
+ readonly LetsChatWeAreOnline: "Let's chat we are online";
133
+ readonly UnreadMessageString: "you have new messages";
134
+ readonly Close: "Close";
135
+ readonly ConfirmationPaneConfirm: "Close Chat";
136
+ readonly ConfirmationPaneCancel: "Cancel. Return to Chat";
137
+ readonly DownloadChatTranscript: "Download chat transcript";
138
+ readonly EmailTranscript: "Email Transcript";
139
+ readonly TurnSoundOff: "Turn sound off";
140
+ readonly TurnSoundOn: "Turn sound on";
141
+ readonly Minimize: "Minimize";
142
+ readonly EmailChatTranscriptPane: "Email Chat Transcript Pane";
143
+ readonly InputValidationPaneInput: "Please provide e-mail address to send transcript. The transcript will be sent after the chat ends. Email address text area";
144
+ readonly Save: "Save";
145
+ readonly Cancel: "Cancel";
146
+ readonly ProactiveChatPane: "Proactive Chat Pane";
147
+ readonly ChatNow: "Chat Now";
148
+ readonly ReconnectChatPane: "Reconnect Chat Pane";
149
+ readonly ReconnectChatPaneIcon: "Reconnect Chat Pane Icon";
150
+ readonly ContinueConversation: "Continue conversation";
151
+ readonly StartNewConversation: "Start new conversation";
152
+ };
153
+ export declare const EventNames: {
154
+ new (): {};
155
+ readonly OnClick: "OnClick";
156
+ readonly OnEscapeKeyDown: "OnEscapeKeyDown";
157
+ readonly IncomingCallEnded: "IncomingCallEnded";
158
+ };
159
+ export declare const Texts: {
160
+ new (): {};
161
+ readonly IncomingCallTitle: "Incoming Call";
162
+ readonly ChatButtonTitle: "Let's Chat!";
163
+ readonly ChatButtonSubtitle: "We're online.";
164
+ readonly ChatButtonUnreadMessageString: "new messages";
165
+ readonly ChatButtonLargeUnreadMessageString: "99+";
166
+ readonly CloseButtonText: "Close";
167
+ readonly ConfirmationPaneTitle: "Close chat";
168
+ readonly ConfirmationPaneSubtitle: "Do you really want to close this chat?";
169
+ readonly ConfirmButtonText: "Close";
170
+ readonly EmailPlaceHolderText: "johnsmith@outlook.com";
171
+ readonly CancelButtonText: "Cancel";
172
+ readonly DownloadChatTranscriptText: "Download chat transcript";
173
+ readonly EmailTranscriptText: "Email Transcript";
174
+ readonly HeaderIcon: "Chat Icon";
175
+ readonly HeaderTitle: "Let's Chat";
176
+ readonly MinimizeText: "Minimize";
177
+ readonly InputValidationPaneTitleText: "Please provide e-mail address to send transcript.";
178
+ readonly InputValidationPaneSubtitleText: "The transcript will be sent after the chat ends.";
179
+ readonly InvalidInputErrorMessageText: "Enter a valid email address.";
180
+ readonly SendButtonText: "Send";
181
+ readonly SaveButtonText: "Save";
182
+ readonly LoadingPaneTitleText: "Welcome to";
183
+ readonly LoadingPaneSubtitleText: "live chat support ...";
184
+ readonly LoadingPaneSpinnerText: "Loading ...";
185
+ readonly OOOHPaneTitleText: "Thanks for contacting us. You have reached us outside of our operating hours. An agent will respond when we open.";
186
+ readonly PostChatSurveyPaneTitleText: "Post chat survey pane";
187
+ readonly ProactiveChatPaneTitleText: "Welcome to";
188
+ readonly ProactiveChatPaneSubtitleText: "Live chat support!";
189
+ readonly ProactiveChatPaneBodyTitleText: "Hi! Have any questions? I am here to help.";
190
+ readonly ProactiveChatPaneStartButtonText: "Chat Now";
191
+ readonly ReconnectChatPaneTitleText: "Previous session detected";
192
+ readonly ReconnectChatPaneSubtitleText: "We have detected a previous chat session. Would you like to continue with your previous session?";
193
+ readonly ReconnectChatPaneContinueChatButtonText: "Continue conversation";
194
+ readonly ReconnectChatPaneStartNewChatButtonText: "Start new conversation";
195
+ };
@@ -1,2 +1,2 @@
1
- import { ReactNode } from "react";
2
- export declare const decodeComponentString: (element: ReactNode | string) => ReactNode;
1
+ import { ReactNode } from "react";
2
+ export declare const decodeComponentString: (element: ReactNode | string) => ReactNode;
@@ -1,2 +1,2 @@
1
- import { ReactNode } from "react";
2
- export declare const encodeComponentString: (element: ReactNode) => string;
1
+ import { ReactNode } from "react";
2
+ export declare const encodeComponentString: (element: ReactNode) => string;
@@ -1,19 +1,19 @@
1
- import { ElementType } from "./Constants";
2
- import { AdaptiveCard } from "adaptivecards";
3
- import { ReactNode } from "react";
4
- export declare const uuidv4: () => string;
5
- export declare const generateEventName: (controlId?: string | undefined, prefix?: string | undefined, suffix?: string | undefined) => string;
6
- export declare const broadcastError: (elementId: string, error: any, propName: string, elementType: ElementType) => void;
7
- export declare const getInputValuesFromAdaptiveCard: (adaptiveCard: AdaptiveCard) => {
8
- index: number;
9
- label: string | undefined;
10
- id: string | undefined;
11
- value: string;
12
- }[];
13
- export declare const processCustomComponents: (children: ReactNode[] | string[] | undefined) => ReactNode[] | null;
14
- export declare const getValidatedURL: (url: string) => string;
15
- export declare const getHours: (time: number) => string;
16
- export declare const getMinutes: (time: number) => string;
17
- export declare const getSeconds: (time: number) => string;
18
- export declare const addNoreferrerNoopenerTag: (htmlNode: any) => void;
19
- export declare const replaceURLWithAnchor: (text: string | undefined, openInNewTab: boolean | undefined) => string | undefined;
1
+ import { ElementType } from "./Constants";
2
+ import { AdaptiveCard } from "adaptivecards";
3
+ import { ReactNode } from "react";
4
+ export declare const uuidv4: () => string;
5
+ export declare const generateEventName: (controlId?: string, prefix?: string, suffix?: string) => string;
6
+ export declare const broadcastError: (elementId: string, error: any, propName: string, elementType: ElementType) => void;
7
+ export declare const getInputValuesFromAdaptiveCard: (adaptiveCard: AdaptiveCard) => {
8
+ index: number;
9
+ label: string | undefined;
10
+ id: string | undefined;
11
+ value: string;
12
+ }[];
13
+ export declare const processCustomComponents: (children: ReactNode[] | string[] | undefined) => ReactNode[] | null;
14
+ export declare const getValidatedURL: (url: string) => string;
15
+ export declare const getHours: (time: number) => string;
16
+ export declare const getMinutes: (time: number) => string;
17
+ export declare const getSeconds: (time: number) => string;
18
+ export declare const addNoreferrerNoopenerTag: (htmlNode: any) => void;
19
+ export declare const replaceURLWithAnchor: (text: string | undefined, openInNewTab: boolean | undefined) => string | undefined;
@@ -1,4 +1,4 @@
1
- import * as React from "react";
2
- import { ICallingContainerProps } from "./interfaces/ICallingContainerProps";
3
- declare function CallingContainer(props: ICallingContainerProps): React.JSX.Element;
4
- export default CallingContainer;
1
+ import * as React from "react";
2
+ import { ICallingContainerProps } from "./interfaces/ICallingContainerProps";
3
+ declare function CallingContainer(props: ICallingContainerProps): React.JSX.Element;
4
+ export default CallingContainer;
@@ -1,2 +1,2 @@
1
- import { ICallingContainerControlProps } from "../../interfaces/ICallingContainerControlProps";
2
- export declare const defaultCallingContainerControlProps: ICallingContainerControlProps;
1
+ import { ICallingContainerControlProps } from "../../interfaces/ICallingContainerControlProps";
2
+ export declare const defaultCallingContainerControlProps: ICallingContainerControlProps;
@@ -1,2 +1,2 @@
1
- import { ICallingContainerProps } from "../../interfaces/ICallingContainerProps";
2
- export declare const defaultCallingContainerProps: ICallingContainerProps;
1
+ import { ICallingContainerProps } from "../../interfaces/ICallingContainerProps";
2
+ export declare const defaultCallingContainerProps: ICallingContainerProps;
@@ -1,2 +1,2 @@
1
- import { ICallingContainerStyleProps } from "../../interfaces/ICallingContainerStyleProps";
2
- export declare const customizedCallingContainerStyles: ICallingContainerStyleProps;
1
+ import { ICallingContainerStyleProps } from "../../interfaces/ICallingContainerStyleProps";
2
+ export declare const customizedCallingContainerStyles: ICallingContainerStyleProps;
@@ -1,2 +1,2 @@
1
- import { ICallingContainerStyleProps } from "../../interfaces/ICallingContainerStyleProps";
2
- export declare const defaultCallingContainerStyles: ICallingContainerStyleProps;
1
+ import { ICallingContainerStyleProps } from "../../interfaces/ICallingContainerStyleProps";
2
+ export declare const defaultCallingContainerStyles: ICallingContainerStyleProps;
@@ -1,28 +1,28 @@
1
- import { ICurrentCallControlProps } from "../subcomponents/CurrentCall/interfaces/ICurrentCallControlProps";
2
- import { IIncomingCallControlProps } from "../subcomponents/IncomingCall/interfaces/IIncomingCallControlProps";
3
- export interface ICallingContainerControlProps {
4
- /**
5
- * Calling container toast control id
6
- */
7
- id?: string;
8
- /**
9
- * Hide audio call button
10
- */
11
- isIncomingCall?: boolean;
12
- /**
13
- * Calling container toast component to align right to left.
14
- */
15
- dir?: "rtl" | "ltr" | "auto";
16
- /**
17
- * Incoming call control props.
18
- */
19
- incomingCallControlProps?: IIncomingCallControlProps;
20
- /**
21
- * Current Call control props.
22
- */
23
- currentCallControlProps?: ICurrentCallControlProps;
24
- /**
25
- * Hide calling container control (required in case of minimize).
26
- */
27
- hideCallingContainer?: boolean;
28
- }
1
+ import { ICurrentCallControlProps } from "../subcomponents/CurrentCall/interfaces/ICurrentCallControlProps";
2
+ import { IIncomingCallControlProps } from "../subcomponents/IncomingCall/interfaces/IIncomingCallControlProps";
3
+ export interface ICallingContainerControlProps {
4
+ /**
5
+ * Calling container toast control id
6
+ */
7
+ id?: string;
8
+ /**
9
+ * Hide audio call button
10
+ */
11
+ isIncomingCall?: boolean;
12
+ /**
13
+ * Calling container toast component to align right to left.
14
+ */
15
+ dir?: "rtl" | "ltr" | "auto";
16
+ /**
17
+ * Incoming call control props.
18
+ */
19
+ incomingCallControlProps?: IIncomingCallControlProps;
20
+ /**
21
+ * Current Call control props.
22
+ */
23
+ currentCallControlProps?: ICurrentCallControlProps;
24
+ /**
25
+ * Hide calling container control (required in case of minimize).
26
+ */
27
+ hideCallingContainer?: boolean;
28
+ }
@@ -1,12 +1,12 @@
1
- import { ICallingContainerStyleProps } from "./ICallingContainerStyleProps";
2
- import { ICallingContainerControlProps } from "./ICallingContainerControlProps";
3
- export interface ICallingContainerProps {
4
- /**
5
- * Calling container toast children control properties
6
- */
7
- controlProps?: ICallingContainerControlProps;
8
- /**
9
- * Calling container toast general and children styles
10
- */
11
- styleProps?: ICallingContainerStyleProps;
12
- }
1
+ import { ICallingContainerStyleProps } from "./ICallingContainerStyleProps";
2
+ import { ICallingContainerControlProps } from "./ICallingContainerControlProps";
3
+ export interface ICallingContainerProps {
4
+ /**
5
+ * Calling container toast children control properties
6
+ */
7
+ controlProps?: ICallingContainerControlProps;
8
+ /**
9
+ * Calling container toast general and children styles
10
+ */
11
+ styleProps?: ICallingContainerStyleProps;
12
+ }
@@ -1,21 +1,21 @@
1
- import { IStyle } from "@fluentui/react";
2
- import { ICurrentCallStyleProps } from "../subcomponents/CurrentCall/interfaces/ICurrentCallStyleProps";
3
- import { IIncomingCallStyleProps } from "../subcomponents/IncomingCall/interfaces/IIncomingCallStyleProps";
4
- export interface ICallingContainerStyleProps {
5
- /**
6
- * Calling container style settings.
7
- */
8
- generalStyleProps?: IStyle;
9
- /**
10
- * Calling container class name
11
- */
12
- className?: string;
13
- /**
14
- * Incoming call style props.
15
- */
16
- incomingCallStyleProps?: IIncomingCallStyleProps;
17
- /**
18
- * Current Call style props.
19
- */
20
- currentCallStyleProps?: ICurrentCallStyleProps;
21
- }
1
+ import { IStyle } from "@fluentui/react";
2
+ import { ICurrentCallStyleProps } from "../subcomponents/CurrentCall/interfaces/ICurrentCallStyleProps";
3
+ import { IIncomingCallStyleProps } from "../subcomponents/IncomingCall/interfaces/IIncomingCallStyleProps";
4
+ export interface ICallingContainerStyleProps {
5
+ /**
6
+ * Calling container style settings.
7
+ */
8
+ generalStyleProps?: IStyle;
9
+ /**
10
+ * Calling container class name
11
+ */
12
+ className?: string;
13
+ /**
14
+ * Incoming call style props.
15
+ */
16
+ incomingCallStyleProps?: IIncomingCallStyleProps;
17
+ /**
18
+ * Current Call style props.
19
+ */
20
+ currentCallStyleProps?: ICurrentCallStyleProps;
21
+ }