botframework-webchat-component 4.17.1 → 4.18.1-hotfix.20260127.b53acdf

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 (1203) hide show
  1. package/decorator.js +3 -0
  2. package/dist/botframework-webchat-component.d.mts +1006 -275
  3. package/dist/botframework-webchat-component.d.ts +2920 -0
  4. package/dist/botframework-webchat-component.decorator.css +3 -0
  5. package/dist/botframework-webchat-component.decorator.css.map +1 -0
  6. package/dist/botframework-webchat-component.decorator.d.mts +9 -0
  7. package/dist/botframework-webchat-component.decorator.d.ts +9 -0
  8. package/dist/botframework-webchat-component.decorator.js +3 -0
  9. package/dist/botframework-webchat-component.decorator.js.LEGAL.txt +1 -0
  10. package/dist/botframework-webchat-component.decorator.js.map +1 -0
  11. package/dist/botframework-webchat-component.decorator.mjs +3 -0
  12. package/dist/botframework-webchat-component.decorator.mjs.LEGAL.txt +1 -0
  13. package/dist/botframework-webchat-component.decorator.mjs.map +1 -0
  14. package/dist/botframework-webchat-component.internal.d.mts +28 -3
  15. package/dist/botframework-webchat-component.internal.d.ts +30 -0
  16. package/dist/botframework-webchat-component.internal.js +3 -0
  17. package/dist/botframework-webchat-component.internal.js.LEGAL.txt +0 -0
  18. package/dist/botframework-webchat-component.internal.js.map +1 -0
  19. package/dist/botframework-webchat-component.internal.mjs +1 -1
  20. package/dist/botframework-webchat-component.js +33 -0
  21. package/dist/botframework-webchat-component.js.LEGAL.txt +0 -0
  22. package/dist/botframework-webchat-component.js.map +1 -0
  23. package/dist/botframework-webchat-component.mjs +29 -7
  24. package/dist/botframework-webchat-component.mjs.map +1 -1
  25. package/dist/chunk-2PXHDPNQ.js +3 -0
  26. package/dist/chunk-2PXHDPNQ.js.LEGAL.txt +0 -0
  27. package/dist/chunk-2PXHDPNQ.js.map +1 -0
  28. package/dist/chunk-HZWWJL43.mjs +3 -0
  29. package/dist/chunk-HZWWJL43.mjs.LEGAL.txt +0 -0
  30. package/dist/chunk-HZWWJL43.mjs.map +1 -0
  31. package/dist/chunk-O4CKKYSK.js +3 -0
  32. package/dist/chunk-O4CKKYSK.js.LEGAL.txt +2 -0
  33. package/dist/chunk-O4CKKYSK.js.map +1 -0
  34. package/dist/chunk-Q5KJQWAB.mjs +3 -0
  35. package/dist/chunk-Q5KJQWAB.mjs.LEGAL.txt +0 -0
  36. package/dist/chunk-Q5KJQWAB.mjs.map +1 -0
  37. package/dist/chunk-TTVXUQC5.mjs +3 -0
  38. package/dist/chunk-TTVXUQC5.mjs.LEGAL.txt +2 -0
  39. package/dist/chunk-TTVXUQC5.mjs.map +1 -0
  40. package/dist/chunk-XOE3AOSM.js +3 -0
  41. package/dist/chunk-XOE3AOSM.js.LEGAL.txt +0 -0
  42. package/dist/chunk-XOE3AOSM.js.map +1 -0
  43. package/dist/metafile-cjs.json +1 -0
  44. package/dist/metafile-esm.json +1 -1
  45. package/internal.js +1 -1
  46. package/package.json +67 -54
  47. package/src/Activity/Avatar.tsx +19 -22
  48. package/src/Activity/Bubble.tsx +31 -31
  49. package/src/Activity/CarouselFilmStrip.js +2 -2
  50. package/src/Activity/CarouselLayout.js +13 -5
  51. package/src/Activity/SayAlt.tsx +30 -0
  52. package/src/Activity/Speak.tsx +67 -34
  53. package/src/Activity/StackedLayout.tsx +39 -70
  54. package/src/ActivityFeedback/ActivityFeedback.tsx +27 -0
  55. package/src/ActivityFeedback/private/FeedbackForm.tsx +88 -0
  56. package/src/ActivityFeedback/private/FeedbackLoopWithMessage.tsx +29 -0
  57. package/src/ActivityFeedback/private/FeedbackLoopWithoutMessage.tsx +8 -0
  58. package/src/ActivityFeedback/private/FeedbackTextArea.tsx +122 -0
  59. package/src/ActivityFeedback/private/FeedbackVoteButton.tsx +63 -0
  60. package/src/ActivityFeedback/private/FeedbackVoteButtonBar.tsx +25 -0
  61. package/src/ActivityFeedback/private/ThumbButton.Image.tsx +30 -0
  62. package/src/ActivityFeedback/private/ThumbButton.tsx +67 -0
  63. package/src/ActivityFeedback/private/getDisclaimer.ts +6 -0
  64. package/src/ActivityFeedback/private/hasFeedbackLoop.ts +36 -0
  65. package/src/ActivityFeedback/providers/ActivityFeedbackComposer.tsx +302 -0
  66. package/src/ActivityFeedback/providers/private/ActivityFeedbackContext.ts +23 -0
  67. package/src/ActivityFeedback/providers/private/useActivityFeedbackContext.ts +6 -0
  68. package/src/ActivityFeedback/providers/useActions.ts +6 -0
  69. package/src/ActivityFeedback/providers/useActivity.ts +6 -0
  70. package/src/ActivityFeedback/providers/useHasSubmitted.ts +5 -0
  71. package/src/ActivityFeedback/providers/useSelectedAction.ts +6 -0
  72. package/src/ActivityFeedback/providers/useShouldAllowResubmit.ts +5 -0
  73. package/src/ActivityFeedback/providers/useShouldShowFeedbackForm.ts +5 -0
  74. package/src/ActivityFeedback/providers/useSubmitCallback.ts +6 -0
  75. package/src/ActivityStatus/OthersActivityStatus.tsx +25 -36
  76. package/src/ActivityStatus/SelfActivityStatus.tsx +6 -5
  77. package/src/ActivityStatus/SendStatus/SendStatus.tsx +20 -21
  78. package/src/ActivityStatus/StatusSlot.tsx +12 -0
  79. package/src/ActivityStatus/Timestamp.tsx +17 -12
  80. package/src/Assets/TypingAnimation.js +6 -5
  81. package/src/Attachment/Assets/DownloadIcon.tsx +35 -0
  82. package/src/Attachment/AudioContent.tsx +20 -29
  83. package/src/Attachment/FileContent.tsx +40 -44
  84. package/src/Attachment/HTMLVideoContent.tsx +21 -27
  85. package/src/Attachment/ImageContent.tsx +13 -27
  86. package/src/Attachment/Text/TextAttachment.tsx +38 -14
  87. package/src/Attachment/Text/TextContent.tsx +49 -16
  88. package/src/Attachment/Text/private/ActivityButton.tsx +72 -0
  89. package/src/Attachment/Text/private/ActivityCopyButton.tsx +114 -0
  90. package/src/Attachment/Text/private/ActivityViewCodeButton.tsx +67 -0
  91. package/src/Attachment/Text/private/CitationModalContent.tsx +21 -11
  92. package/src/Attachment/Text/private/CodeContent.tsx +41 -0
  93. package/src/Attachment/Text/private/MarkdownTextContent.tsx +67 -18
  94. package/src/Attachment/Text/private/Markdownable.tsx +33 -0
  95. package/src/Attachment/Text/private/MessageSensitivityLabel.tsx +37 -29
  96. package/src/Attachment/Text/private/PlainTextContent.tsx +26 -7
  97. package/src/Attachment/Text/private/ShieldIcon.tsx +52 -34
  98. package/src/Attachment/Text/private/isAIGeneratedActivity.ts +5 -0
  99. package/src/Attachment/Text/private/isBasedOnSoftwareSourceCode.ts +18 -0
  100. package/src/Attachment/VideoAttachment.js +1 -1
  101. package/src/Attachment/VideoContent.tsx +21 -27
  102. package/src/Attachment/VimeoContent.tsx +21 -25
  103. package/src/Attachment/YouTubeContent.tsx +21 -25
  104. package/src/Avatar/ImageAvatar.tsx +48 -0
  105. package/src/Avatar/InitialsAvatar.tsx +55 -0
  106. package/src/BasicToast.js +1 -1
  107. package/src/BasicToaster.js +41 -5
  108. package/src/BasicTranscript.tsx +96 -306
  109. package/src/BasicTypingIndicator.tsx +13 -4
  110. package/src/BasicWebChat.tsx +34 -35
  111. package/src/BuiltInDecorator.tsx +17 -0
  112. package/src/ChatHistory/ChatHistoryBox.tsx +28 -0
  113. package/src/ChatHistory/ChatHistoryToolbar.tsx +38 -0
  114. package/src/ChatHistory/private/ScrollToEndButton.tsx +105 -0
  115. package/src/Composer.tsx +101 -61
  116. package/src/ConnectivityStatus/Connecting.tsx +77 -0
  117. package/src/Dictation.js +15 -23
  118. package/src/ErrorBox.tsx +19 -19
  119. package/src/LinkDefinition/LinkDefinitionItem.tsx +13 -3
  120. package/src/LinkDefinition/LinkDefinitions.tsx +61 -12
  121. package/src/LinkDefinition/private/ItemBody.tsx +12 -3
  122. package/src/LinkDefinition/private/extractHostnameWithSubdomain.ts +1 -1
  123. package/src/LiveRegion/LiveRegionActivity.tsx +18 -18
  124. package/src/LiveRegion/private/LiveRegionSuggestedActions.tsx +34 -25
  125. package/src/Middleware/Activity/createCoreMiddleware.tsx +20 -23
  126. package/src/Middleware/ActivityGrouping/createDefaultActivityGroupingDecoratorMiddleware.tsx +22 -0
  127. package/src/Middleware/ActivityGrouping/ui/RenderActivityGrouping.tsx +33 -0
  128. package/src/Middleware/ActivityGrouping/ui/SenderGrouping/SenderGrouping.tsx +49 -0
  129. package/src/Middleware/ActivityGrouping/ui/SenderGrouping/private/SenderGroupingContext.ts +18 -0
  130. package/src/Middleware/ActivityGrouping/ui/SenderGrouping/private/useSenderGroupingContext.ts +6 -0
  131. package/src/Middleware/ActivityGrouping/ui/SenderGrouping/useFirstActivity.ts +6 -0
  132. package/src/Middleware/ActivityGrouping/ui/SenderGrouping/useLastActivity.ts +6 -0
  133. package/src/Middleware/ActivityGrouping/ui/StatusGrouping/StatusGrouping.tsx +49 -0
  134. package/src/Middleware/ActivityGrouping/ui/StatusGrouping/private/StatusGroupingContext.ts +18 -0
  135. package/src/Middleware/ActivityGrouping/ui/StatusGrouping/private/useStatusGroupingContext.ts +6 -0
  136. package/src/Middleware/ActivityGrouping/ui/StatusGrouping/useFirstActivity.ts +6 -0
  137. package/src/Middleware/ActivityGrouping/ui/StatusGrouping/useLastActivity.ts +6 -0
  138. package/src/Middleware/ActivityStatus/createSendStatusMiddleware.tsx +0 -2
  139. package/src/Middleware/ActivityStatus/createTimestampMiddleware.tsx +2 -2
  140. package/src/Middleware/Avatar/createCoreMiddleware.tsx +23 -24
  141. package/src/Middleware/ScrollToEndButton/ScrollToEndButton.tsx +58 -0
  142. package/src/Middleware/TypingIndicator/createCoreMiddleware.tsx +1 -3
  143. package/src/ScreenReaderText.tsx +29 -34
  144. package/src/SendBox/Assets/MicrophoneIcon.js +0 -1
  145. package/src/SendBox/Assets/SendIcon.js +1 -1
  146. package/src/SendBox/AutoResizeTextArea.tsx +28 -64
  147. package/src/SendBox/BasicSendBox.tsx +21 -23
  148. package/src/SendBox/DictationInterims.tsx +32 -21
  149. package/src/SendBox/IconButton.tsx +35 -30
  150. package/src/SendBox/MicrophoneButton.tsx +21 -21
  151. package/src/SendBox/SendButton.tsx +19 -20
  152. package/src/SendBox/SuggestedAction.tsx +57 -71
  153. package/src/SendBox/SuggestedActions.tsx +1 -3
  154. package/src/SendBox/TextBox.tsx +25 -38
  155. package/src/SendBoxToolbar/Assets/AttachmentIcon.tsx +1 -1
  156. package/src/SendBoxToolbar/UploadButton.tsx +22 -20
  157. package/src/Styles/CustomPropertyNames.ts +14 -6
  158. package/src/Styles/StyleSet/ActivityButton.ts +46 -0
  159. package/src/Styles/StyleSet/ActivityCopyButton.ts +40 -0
  160. package/src/Styles/StyleSet/AudioAttachment.ts +3 -3
  161. package/src/Styles/StyleSet/Avatar.ts +4 -3
  162. package/src/Styles/StyleSet/CarouselFilmStrip.ts +9 -7
  163. package/src/Styles/StyleSet/CarouselFilmStripAttachment.ts +3 -4
  164. package/src/Styles/StyleSet/ChatHistoryBox.ts +22 -0
  165. package/src/Styles/StyleSet/CodeBlock.ts +39 -0
  166. package/src/Styles/StyleSet/CodeBlockCopyButton.ts +80 -0
  167. package/src/Styles/StyleSet/FeedbackForm.ts +78 -0
  168. package/src/Styles/StyleSet/FeedbackTextArea.ts +81 -0
  169. package/src/Styles/StyleSet/ImageAvatar.ts +8 -5
  170. package/src/Styles/StyleSet/InitialsAvatar.ts +4 -5
  171. package/src/Styles/StyleSet/LinkDefinitions.ts +14 -8
  172. package/src/Styles/StyleSet/ModalDialog.ts +7 -1
  173. package/src/Styles/StyleSet/MonochromeImageMasker.ts +10 -0
  174. package/src/Styles/StyleSet/RenderMarkdown.ts +26 -0
  175. package/src/Styles/StyleSet/ScrollToEndButton.ts +0 -11
  176. package/src/Styles/StyleSet/SendStatus.ts +12 -0
  177. package/src/Styles/StyleSet/StackedLayout.ts +18 -9
  178. package/src/Styles/StyleSet/TextContent.ts +13 -1
  179. package/src/Styles/StyleSet/ThumbButton.ts +54 -16
  180. package/src/Styles/StyleSet/Tooltip.ts +62 -0
  181. package/src/Styles/StyleSet/TypingIndicator.ts +2 -2
  182. package/src/Styles/StyleSet/ViewCodeDialog.ts +70 -0
  183. package/src/Styles/createStyleSet.ts +23 -9
  184. package/src/Styles/createStyles.ts +5 -0
  185. package/src/Styles/index.ts +3 -0
  186. package/src/Styles/useCustomPropertiesClassName.ts +75 -0
  187. package/src/Tooltip/index.ts +1 -0
  188. package/src/Tooltip/private/Tooltip.tsx +26 -0
  189. package/src/Transcript/ActivityRow.tsx +71 -16
  190. package/src/Transcript/ActivityTree.tsx +35 -0
  191. package/src/Transcript/FocusTrap.tsx +86 -36
  192. package/src/Transcript/LiveRegion/SendFailed.tsx +8 -10
  193. package/src/Transcript/LiveRegionTranscript.tsx +11 -62
  194. package/src/Transcript/TranscriptActivity.tsx +105 -0
  195. package/src/Utils/AccessibleInputText.tsx +30 -59
  196. package/src/Utils/AccessibleTextArea.tsx +10 -41
  197. package/src/Utils/FixedWidthImage.tsx +60 -0
  198. package/src/Utils/FocusRedirector.tsx +31 -26
  199. package/src/Utils/InlineMarkdown.js +1 -1
  200. package/src/Utils/JSONLinkedData/dereferenceBlankNodes.ts +1 -1
  201. package/src/Utils/JSONLinkedData/getSafeOwnPropertyNames.ts +2 -2
  202. package/src/Utils/MonochromeImageMasker.tsx +21 -0
  203. package/src/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingWorker.ts +4 -4
  204. package/src/Utils/firstTabbableDescendant.js +0 -1
  205. package/src/Utils/parseDocumentFragmentFromString.ts +9 -0
  206. package/src/Utils/serializeDocumentFragmentIntoString.ts +3 -0
  207. package/src/Utils/supportPseudoClass.ts +1 -1
  208. package/src/Utils/textFormatToContentType.ts +14 -0
  209. package/src/decorator/index.ts +1 -0
  210. package/src/decorator/private/BorderFlair.module.css +564 -0
  211. package/src/decorator/private/BorderFlair.tsx +30 -0
  212. package/src/decorator/private/BorderLoader.module.css +48 -0
  213. package/src/decorator/private/BorderLoader.tsx +19 -0
  214. package/src/decorator/private/WebChatDecorator.tsx +30 -0
  215. package/src/decorator/private/WebChatTheme.tsx +17 -0
  216. package/src/decorator/private/createStyles.ts +5 -0
  217. package/src/env.d.ts +1 -0
  218. package/src/hooks/index.ts +4 -0
  219. package/src/hooks/internal/codeHighlighter/index.ts +3 -0
  220. package/src/hooks/internal/codeHighlighter/private/CodeHighlighterComposer.tsx +32 -0
  221. package/src/hooks/internal/codeHighlighter/private/createCodeHighlighterComposer.tsx +32 -0
  222. package/src/hooks/internal/codeHighlighter/private/defaultHighlightCode.tsx +22 -0
  223. package/src/hooks/internal/createWaitUntilable.spec.ts +2 -2
  224. package/src/hooks/internal/createWaitUntilable.ts +1 -1
  225. package/src/hooks/internal/styleToEmotionObject/index.ts +1 -0
  226. package/src/hooks/internal/styleToEmotionObject/private/StyleToEmotionObjectComposer.tsx +20 -0
  227. package/src/hooks/internal/styleToEmotionObject/private/createStyleToEmotionObjectComposer.tsx +22 -0
  228. package/src/hooks/internal/useEmotion.ts +37 -0
  229. package/src/hooks/internal/useFeedbackActions.ts +114 -0
  230. package/src/hooks/internal/useInjectStyles.ts +86 -0
  231. package/src/hooks/internal/useMemoWithPrevious.ts +1 -1
  232. package/src/hooks/internal/useMemoized.spec.jsx +159 -0
  233. package/src/hooks/internal/useMemoized.ts +77 -0
  234. package/src/hooks/internal/useObserveFocusVisible.ts +0 -1
  235. package/src/hooks/internal/useStateRef.ts +1 -1
  236. package/src/hooks/sendBoxFocus.ts +6 -2
  237. package/src/hooks/transcriptScrollRelative.ts +11 -0
  238. package/src/hooks/useRenderMarkdownAsHTML.ts +11 -9
  239. package/src/hooks/useScrollDown.ts +3 -4
  240. package/src/hooks/useScrollUp.ts +3 -4
  241. package/src/index.ts +25 -4
  242. package/src/internal.ts +19 -3
  243. package/src/providers/ChatHistoryDOM/ChatHistoryDOMComposer.tsx +18 -0
  244. package/src/providers/ChatHistoryDOM/private/ChatHistoryDOMContext.ts +11 -0
  245. package/src/providers/ChatHistoryDOM/useActivityElementRef.ts +6 -0
  246. package/src/providers/CustomElements/CustomElementsComposer.tsx +58 -0
  247. package/src/providers/CustomElements/customElements/CodeBlock.ts +230 -0
  248. package/src/providers/CustomElements/customElements/CodeBlockCopyButton.tsx +101 -0
  249. package/src/providers/CustomElements/customElements/wrapAsCustomElement.ts +85 -0
  250. package/src/providers/CustomElements/private/CustomElementsContext.ts +15 -0
  251. package/src/providers/CustomElements/private/useCustomElementsContext.ts +6 -0
  252. package/src/providers/CustomElements/useCodeBlockCopyButtonTagName.ts +8 -0
  253. package/src/providers/CustomElements/useCodeBlockTagName.ts +19 -0
  254. package/src/providers/GroupedRenderingActivities/GroupedRenderingActivities.ts +10 -0
  255. package/src/providers/GroupedRenderingActivities/GroupedRenderingActivitiesComposer.tsx +87 -0
  256. package/src/providers/GroupedRenderingActivities/private/GroupedRenderingActivitiesContext.ts +14 -0
  257. package/src/providers/GroupedRenderingActivities/private/group.spec.ts +29 -0
  258. package/src/providers/GroupedRenderingActivities/private/group.ts +19 -0
  259. package/src/providers/GroupedRenderingActivities/private/pick.spec.ts +33 -0
  260. package/src/providers/GroupedRenderingActivities/private/pick.ts +22 -0
  261. package/src/providers/GroupedRenderingActivities/useGroupedRenderingActivities.ts +6 -0
  262. package/src/providers/GroupedRenderingActivities/useNumRenderingActivities.ts +5 -0
  263. package/src/providers/HTMLContentTransformCOR/HTMLContentTransformComposer.tsx +41 -0
  264. package/src/providers/HTMLContentTransformCOR/index.ts +8 -0
  265. package/src/providers/HTMLContentTransformCOR/private/HTMLContentTransformContext.ts +34 -0
  266. package/src/providers/HTMLContentTransformCOR/private/useHTMLContentTransformContext.ts +6 -0
  267. package/src/providers/HTMLContentTransformCOR/useTransformHTMLContent.ts +187 -0
  268. package/src/providers/LiveRegionTwin/index.ts +3 -0
  269. package/src/providers/LiveRegionTwin/private/LiveRegionTwinComposer.ts +27 -0
  270. package/src/providers/LiveRegionTwin/private/LiveRegionTwinContainer.tsx +27 -39
  271. package/src/providers/LiveRegionTwin/private/createLiveRegionTwinComposer.tsx +155 -0
  272. package/src/providers/LiveRegionTwin/private/useContext.ts +2 -8
  273. package/src/providers/LiveRegionTwin/useLiveRegion.ts +27 -0
  274. package/src/providers/LiveRegionTwin/useQueueStaticElement.ts +2 -2
  275. package/src/providers/ModalDialog/private/Context.ts +3 -4
  276. package/src/providers/ModalDialog/private/Popover.tsx +2 -2
  277. package/src/providers/ReducedMotion/ReducedMotionComposer.tsx +35 -0
  278. package/src/providers/ReducedMotion/private/Context.ts +22 -0
  279. package/src/providers/ReducedMotion/private/useContext.ts +8 -0
  280. package/src/providers/ReducedMotion/useShouldReduceMotion.ts +5 -0
  281. package/src/providers/RenderingActivities/RenderingActivitiesComposer.tsx +84 -0
  282. package/src/providers/RenderingActivities/private/RenderingActivitiesContext.ts +15 -0
  283. package/src/providers/RenderingActivities/private/useInternalActivitiesWithRenderer.ts +78 -0
  284. package/src/providers/RenderingActivities/useGetRenderActivityCallback.ts +11 -0
  285. package/src/providers/RenderingActivities/useRenderingActivities.ts +7 -0
  286. package/src/providers/RenderingActivities/useRenderingActivityKeys.ts +5 -0
  287. package/src/providers/RovingTabIndex/RovingTabIndexComposer.tsx +32 -23
  288. package/src/providers/Theme/ThemeProvider.tsx +24 -16
  289. package/src/providers/Theme/private/Context.ts +4 -2
  290. package/src/providers/TranscriptFocus/TranscriptFocusComposer.tsx +17 -27
  291. package/src/providers/TranscriptFocus/useFocusRelativeActivity.ts +1 -1
  292. package/src/providers/createContextAndHook.ts +23 -0
  293. package/src/providers/internal/SendBox/SendBoxComposer.tsx +28 -38
  294. package/src/testIds.ts +11 -0
  295. package/src/tsconfig.json +5 -8
  296. package/src/types/PropsOf.ts +2 -5
  297. package/src/types/internal/mutableRefObject.ts +33 -0
  298. package/src/types/internal/reactNode.ts +16 -0
  299. package/src/types/internal/refObject.ts +40 -0
  300. package/dist/chunk-X37JABN5.mjs +0 -5
  301. package/dist/chunk-X37JABN5.mjs.map +0 -1
  302. package/lib/Activity/Avatar.d.ts +0 -10
  303. package/lib/Activity/Avatar.d.ts.map +0 -1
  304. package/lib/Activity/Avatar.js +0 -35
  305. package/lib/Activity/Bubble.d.ts +0 -11
  306. package/lib/Activity/Bubble.d.ts.map +0 -1
  307. package/lib/Activity/Bubble.js +0 -133
  308. package/lib/Activity/CarouselFilmStrip.js +0 -264
  309. package/lib/Activity/CarouselFilmStripAttachment.js +0 -93
  310. package/lib/Activity/CarouselLayout.js +0 -133
  311. package/lib/Activity/SayAlt.js +0 -31
  312. package/lib/Activity/Speak.d.ts +0 -8
  313. package/lib/Activity/Speak.d.ts.map +0 -1
  314. package/lib/Activity/Speak.js +0 -98
  315. package/lib/Activity/StackedLayout.d.ts +0 -16
  316. package/lib/Activity/StackedLayout.d.ts.map +0 -1
  317. package/lib/Activity/StackedLayout.js +0 -227
  318. package/lib/ActivityStatus/AbsoluteTime.js +0 -38
  319. package/lib/ActivityStatus/OthersActivityStatus.d.ts +0 -8
  320. package/lib/ActivityStatus/OthersActivityStatus.d.ts.map +0 -1
  321. package/lib/ActivityStatus/OthersActivityStatus.js +0 -105
  322. package/lib/ActivityStatus/SelfActivityStatus.d.ts +0 -8
  323. package/lib/ActivityStatus/SelfActivityStatus.d.ts.map +0 -1
  324. package/lib/ActivityStatus/SelfActivityStatus.js +0 -37
  325. package/lib/ActivityStatus/SendStatus/SendStatus.d.ts +0 -10
  326. package/lib/ActivityStatus/SendStatus/SendStatus.d.ts.map +0 -1
  327. package/lib/ActivityStatus/SendStatus/SendStatus.js +0 -58
  328. package/lib/ActivityStatus/SendStatus/private/SendFailedRetry.js +0 -35
  329. package/lib/ActivityStatus/Slotted.d.ts +0 -7
  330. package/lib/ActivityStatus/Slotted.d.ts.map +0 -1
  331. package/lib/ActivityStatus/Slotted.js +0 -31
  332. package/lib/ActivityStatus/Timestamp.d.ts +0 -7
  333. package/lib/ActivityStatus/Timestamp.d.ts.map +0 -1
  334. package/lib/ActivityStatus/Timestamp.js +0 -36
  335. package/lib/ActivityStatus/private/Feedback/Feedback.d.ts +0 -8
  336. package/lib/ActivityStatus/private/Feedback/Feedback.d.ts.map +0 -1
  337. package/lib/ActivityStatus/private/Feedback/Feedback.js +0 -67
  338. package/lib/ActivityStatus/private/Feedback/private/ThumbButton.Image.d.ts +0 -9
  339. package/lib/ActivityStatus/private/Feedback/private/ThumbButton.Image.d.ts.map +0 -1
  340. package/lib/ActivityStatus/private/Feedback/private/ThumbButton.Image.js +0 -34
  341. package/lib/ActivityStatus/private/Feedback/private/ThumbButton.d.ts +0 -9
  342. package/lib/ActivityStatus/private/Feedback/private/ThumbButton.d.ts.map +0 -1
  343. package/lib/ActivityStatus/private/Feedback/private/ThumbButton.js +0 -57
  344. package/lib/ActivityStatus/private/Feedback/private/VoteButton.d.ts +0 -10
  345. package/lib/ActivityStatus/private/Feedback/private/VoteButton.d.ts.map +0 -1
  346. package/lib/ActivityStatus/private/Feedback/private/VoteButton.js +0 -43
  347. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbDislike16Filled.d.ts +0 -7
  348. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbDislike16Filled.d.ts.map +0 -1
  349. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbDislike16Filled.js +0 -28
  350. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbDislike16Regular.d.ts +0 -7
  351. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbDislike16Regular.d.ts.map +0 -1
  352. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbDislike16Regular.js +0 -28
  353. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbLike16Filled.d.ts +0 -7
  354. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbLike16Filled.d.ts.map +0 -1
  355. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbLike16Filled.js +0 -28
  356. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbLike16Regular.d.ts +0 -7
  357. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbLike16Regular.d.ts.map +0 -1
  358. package/lib/ActivityStatus/private/Feedback/private/icons/ThumbLike16Regular.js +0 -28
  359. package/lib/ActivityStatus/private/Originator.d.ts +0 -8
  360. package/lib/ActivityStatus/private/Originator.d.ts.map +0 -1
  361. package/lib/ActivityStatus/private/Originator.js +0 -29
  362. package/lib/ActivityStatus/private/RelativeTime.js +0 -37
  363. package/lib/Assets/TypingAnimation.js +0 -47
  364. package/lib/Attachment/Assets/DownloadIcon.js +0 -35
  365. package/lib/Attachment/AudioAttachment.js +0 -38
  366. package/lib/Attachment/AudioContent.d.ts +0 -11
  367. package/lib/Attachment/AudioContent.d.ts.map +0 -1
  368. package/lib/Attachment/AudioContent.js +0 -51
  369. package/lib/Attachment/FileAttachment.js +0 -43
  370. package/lib/Attachment/FileContent.d.ts +0 -10
  371. package/lib/Attachment/FileContent.d.ts.map +0 -1
  372. package/lib/Attachment/FileContent.js +0 -120
  373. package/lib/Attachment/HTMLVideoContent.d.ts +0 -11
  374. package/lib/Attachment/HTMLVideoContent.d.ts.map +0 -1
  375. package/lib/Attachment/HTMLVideoContent.js +0 -51
  376. package/lib/Attachment/ImageAttachment.js +0 -41
  377. package/lib/Attachment/ImageContent.d.ts +0 -8
  378. package/lib/Attachment/ImageContent.d.ts.map +0 -1
  379. package/lib/Attachment/ImageContent.js +0 -41
  380. package/lib/Attachment/Text/TextAttachment.d.ts +0 -12
  381. package/lib/Attachment/Text/TextAttachment.d.ts.map +0 -1
  382. package/lib/Attachment/Text/TextAttachment.js +0 -27
  383. package/lib/Attachment/Text/TextContent.d.ts +0 -10
  384. package/lib/Attachment/Text/TextContent.d.ts.map +0 -1
  385. package/lib/Attachment/Text/TextContent.js +0 -34
  386. package/lib/Attachment/Text/private/CitationModalContent.d.ts +0 -8
  387. package/lib/Attachment/Text/private/CitationModalContent.d.ts.map +0 -1
  388. package/lib/Attachment/Text/private/CitationModalContent.js +0 -45
  389. package/lib/Attachment/Text/private/MarkdownTextContent.d.ts +0 -9
  390. package/lib/Attachment/Text/private/MarkdownTextContent.d.ts.map +0 -1
  391. package/lib/Attachment/Text/private/MarkdownTextContent.js +0 -184
  392. package/lib/Attachment/Text/private/MessageSensitivityLabel.d.ts +0 -12
  393. package/lib/Attachment/Text/private/MessageSensitivityLabel.d.ts.map +0 -1
  394. package/lib/Attachment/Text/private/MessageSensitivityLabel.js +0 -38
  395. package/lib/Attachment/Text/private/PlainTextContent.d.ts +0 -7
  396. package/lib/Attachment/Text/private/PlainTextContent.d.ts.map +0 -1
  397. package/lib/Attachment/Text/private/PlainTextContent.js +0 -35
  398. package/lib/Attachment/Text/private/ShieldIcon.d.ts +0 -9
  399. package/lib/Attachment/Text/private/ShieldIcon.d.ts.map +0 -1
  400. package/lib/Attachment/Text/private/ShieldIcon.js +0 -39
  401. package/lib/Attachment/Text/private/isHTMLButtonElement.d.ts +0 -2
  402. package/lib/Attachment/Text/private/isHTMLButtonElement.d.ts.map +0 -1
  403. package/lib/Attachment/Text/private/isHTMLButtonElement.js +0 -10
  404. package/lib/Attachment/VideoAttachment.js +0 -45
  405. package/lib/Attachment/VideoContent.d.ts +0 -11
  406. package/lib/Attachment/VideoContent.d.ts.map +0 -1
  407. package/lib/Attachment/VideoContent.js +0 -103
  408. package/lib/Attachment/VimeoContent.d.ts +0 -10
  409. package/lib/Attachment/VimeoContent.d.ts.map +0 -1
  410. package/lib/Attachment/VimeoContent.js +0 -59
  411. package/lib/Attachment/YouTubeContent.d.ts +0 -10
  412. package/lib/Attachment/YouTubeContent.d.ts.map +0 -1
  413. package/lib/Attachment/YouTubeContent.js +0 -60
  414. package/lib/Attachment/createMiddleware.d.ts +0 -3
  415. package/lib/Attachment/createMiddleware.d.ts.map +0 -1
  416. package/lib/Attachment/createMiddleware.js +0 -64
  417. package/lib/Attachment/private/types/WebChatAttachment.d.ts +0 -9
  418. package/lib/Attachment/private/types/WebChatAttachment.d.ts.map +0 -1
  419. package/lib/Attachment/private/types/WebChatAttachment.js +0 -2
  420. package/lib/Avatar/ImageAvatar.js +0 -59
  421. package/lib/Avatar/InitialsAvatar.js +0 -57
  422. package/lib/BasicConnectivityStatus.js +0 -46
  423. package/lib/BasicToast.js +0 -103
  424. package/lib/BasicToaster.js +0 -176
  425. package/lib/BasicTranscript.d.ts +0 -7
  426. package/lib/BasicTranscript.d.ts.map +0 -1
  427. package/lib/BasicTranscript.js +0 -757
  428. package/lib/BasicTypingIndicator.d.ts +0 -6
  429. package/lib/BasicTypingIndicator.d.ts.map +0 -1
  430. package/lib/BasicTypingIndicator.js +0 -49
  431. package/lib/BasicWebChat.d.ts +0 -9
  432. package/lib/BasicWebChat.d.ts.map +0 -1
  433. package/lib/BasicWebChat.js +0 -90
  434. package/lib/Composer.d.ts +0 -50
  435. package/lib/Composer.d.ts.map +0 -1
  436. package/lib/Composer.js +0 -340
  437. package/lib/ConnectivityStatus/Assets/ErrorNotificationIcon.js +0 -47
  438. package/lib/ConnectivityStatus/Assets/SpinnerAnimation.js +0 -32
  439. package/lib/ConnectivityStatus/Assets/WarningNotificationIcon.js +0 -47
  440. package/lib/ConnectivityStatus/Connected.js +0 -20
  441. package/lib/ConnectivityStatus/Connecting.js +0 -82
  442. package/lib/ConnectivityStatus/FailedToConnect.js +0 -41
  443. package/lib/ConnectivityStatus/JavaScriptError.js +0 -41
  444. package/lib/Dictation.js +0 -158
  445. package/lib/ErrorBox.d.ts +0 -8
  446. package/lib/ErrorBox.d.ts.map +0 -1
  447. package/lib/ErrorBox.js +0 -42
  448. package/lib/LinkDefinition/LinkDefinitionItem.d.ts +0 -12
  449. package/lib/LinkDefinition/LinkDefinitionItem.d.ts.map +0 -1
  450. package/lib/LinkDefinition/LinkDefinitionItem.js +0 -57
  451. package/lib/LinkDefinition/LinkDefinitions.d.ts +0 -16
  452. package/lib/LinkDefinition/LinkDefinitions.d.ts.map +0 -1
  453. package/lib/LinkDefinition/LinkDefinitions.js +0 -69
  454. package/lib/LinkDefinition/index.d.ts +0 -4
  455. package/lib/LinkDefinition/index.d.ts.map +0 -1
  456. package/lib/LinkDefinition/index.js +0 -21
  457. package/lib/LinkDefinition/private/Badge.d.ts +0 -7
  458. package/lib/LinkDefinition/private/Badge.d.ts.map +0 -1
  459. package/lib/LinkDefinition/private/Badge.js +0 -20
  460. package/lib/LinkDefinition/private/Chevron.d.ts +0 -4
  461. package/lib/LinkDefinition/private/Chevron.d.ts.map +0 -1
  462. package/lib/LinkDefinition/private/Chevron.js +0 -27
  463. package/lib/LinkDefinition/private/ItemBody.d.ts +0 -11
  464. package/lib/LinkDefinition/private/ItemBody.d.ts.map +0 -1
  465. package/lib/LinkDefinition/private/ItemBody.js +0 -41
  466. package/lib/LinkDefinition/private/OpenInNewWindowIcon.d.ts +0 -7
  467. package/lib/LinkDefinition/private/OpenInNewWindowIcon.d.ts.map +0 -1
  468. package/lib/LinkDefinition/private/OpenInNewWindowIcon.js +0 -23
  469. package/lib/LinkDefinition/private/extractHostnameWithSubdomain.d.ts +0 -2
  470. package/lib/LinkDefinition/private/extractHostnameWithSubdomain.d.ts.map +0 -1
  471. package/lib/LinkDefinition/private/extractHostnameWithSubdomain.js +0 -24
  472. package/lib/LinkDefinition/private/extractHostnameWithSubdomain.spec.d.ts +0 -2
  473. package/lib/LinkDefinition/private/extractHostnameWithSubdomain.spec.d.ts.map +0 -1
  474. package/lib/LiveRegion/LiveRegionActivity.d.ts +0 -9
  475. package/lib/LiveRegion/LiveRegionActivity.d.ts.map +0 -1
  476. package/lib/LiveRegion/LiveRegionActivity.js +0 -70
  477. package/lib/LiveRegion/private/LiveRegionAttachments.d.ts +0 -11
  478. package/lib/LiveRegion/private/LiveRegionAttachments.d.ts.map +0 -1
  479. package/lib/LiveRegion/private/LiveRegionAttachments.js +0 -53
  480. package/lib/LiveRegion/private/LiveRegionSuggestedActions.d.ts +0 -8
  481. package/lib/LiveRegion/private/LiveRegionSuggestedActions.d.ts.map +0 -1
  482. package/lib/LiveRegion/private/LiveRegionSuggestedActions.js +0 -37
  483. package/lib/Middleware/Activity/createCoreMiddleware.d.ts +0 -3
  484. package/lib/Middleware/Activity/createCoreMiddleware.d.ts.map +0 -1
  485. package/lib/Middleware/Activity/createCoreMiddleware.js +0 -75
  486. package/lib/Middleware/ActivityStatus/createCoreMiddleware.d.ts +0 -3
  487. package/lib/Middleware/ActivityStatus/createCoreMiddleware.d.ts.map +0 -1
  488. package/lib/Middleware/ActivityStatus/createCoreMiddleware.js +0 -13
  489. package/lib/Middleware/ActivityStatus/createSendStatusMiddleware.d.ts +0 -3
  490. package/lib/Middleware/ActivityStatus/createSendStatusMiddleware.d.ts.map +0 -1
  491. package/lib/Middleware/ActivityStatus/createSendStatusMiddleware.js +0 -45
  492. package/lib/Middleware/ActivityStatus/createTimestampMiddleware.d.ts +0 -3
  493. package/lib/Middleware/ActivityStatus/createTimestampMiddleware.d.ts.map +0 -1
  494. package/lib/Middleware/ActivityStatus/createTimestampMiddleware.js +0 -48
  495. package/lib/Middleware/AttachmentForScreenReader/AudioAttachment.js +0 -18
  496. package/lib/Middleware/AttachmentForScreenReader/FileAttachment.js +0 -28
  497. package/lib/Middleware/AttachmentForScreenReader/ImageAttachment.js +0 -18
  498. package/lib/Middleware/AttachmentForScreenReader/TextAttachment.js +0 -28
  499. package/lib/Middleware/AttachmentForScreenReader/VideoAttachment.js +0 -18
  500. package/lib/Middleware/AttachmentForScreenReader/createCoreMiddleware.d.ts +0 -3
  501. package/lib/Middleware/AttachmentForScreenReader/createCoreMiddleware.d.ts.map +0 -1
  502. package/lib/Middleware/AttachmentForScreenReader/createCoreMiddleware.js +0 -61
  503. package/lib/Middleware/Avatar/createCoreMiddleware.d.ts +0 -11
  504. package/lib/Middleware/Avatar/createCoreMiddleware.d.ts.map +0 -1
  505. package/lib/Middleware/Avatar/createCoreMiddleware.js +0 -82
  506. package/lib/Middleware/CardAction/createCoreMiddleware.js +0 -108
  507. package/lib/Middleware/ScrollToEndButton/ScrollToEndButton.js +0 -52
  508. package/lib/Middleware/ScrollToEndButton/createScrollToEndButtonMiddleware.d.ts +0 -3
  509. package/lib/Middleware/ScrollToEndButton/createScrollToEndButtonMiddleware.d.ts.map +0 -1
  510. package/lib/Middleware/ScrollToEndButton/createScrollToEndButtonMiddleware.js +0 -27
  511. package/lib/Middleware/Toast/createCoreMiddleware.d.ts +0 -4
  512. package/lib/Middleware/Toast/createCoreMiddleware.d.ts.map +0 -1
  513. package/lib/Middleware/Toast/createCoreMiddleware.js +0 -27
  514. package/lib/Middleware/TypingIndicator/createCoreMiddleware.d.ts +0 -3
  515. package/lib/Middleware/TypingIndicator/createCoreMiddleware.d.ts.map +0 -1
  516. package/lib/Middleware/TypingIndicator/createCoreMiddleware.js +0 -51
  517. package/lib/ReactWebChat.d.ts +0 -42
  518. package/lib/ReactWebChat.d.ts.map +0 -1
  519. package/lib/ReactWebChat.js +0 -52
  520. package/lib/ScreenReaderText.d.ts +0 -9
  521. package/lib/ScreenReaderText.d.ts.map +0 -1
  522. package/lib/ScreenReaderText.js +0 -57
  523. package/lib/SendBox/Assets/MicrophoneIcon.js +0 -26
  524. package/lib/SendBox/Assets/SendIcon.js +0 -45
  525. package/lib/SendBox/AutoResizeTextArea.d.ts +0 -24
  526. package/lib/SendBox/AutoResizeTextArea.d.ts.map +0 -1
  527. package/lib/SendBox/AutoResizeTextArea.js +0 -113
  528. package/lib/SendBox/BasicSendBox.d.ts +0 -9
  529. package/lib/SendBox/BasicSendBox.d.ts.map +0 -1
  530. package/lib/SendBox/BasicSendBox.js +0 -123
  531. package/lib/SendBox/DictationInterims.d.ts +0 -7
  532. package/lib/SendBox/DictationInterims.d.ts.map +0 -1
  533. package/lib/SendBox/DictationInterims.js +0 -68
  534. package/lib/SendBox/IconButton.d.ts +0 -11
  535. package/lib/SendBox/IconButton.d.ts.map +0 -1
  536. package/lib/SendBox/IconButton.js +0 -73
  537. package/lib/SendBox/MicrophoneButton.d.ts +0 -10
  538. package/lib/SendBox/MicrophoneButton.d.ts.map +0 -1
  539. package/lib/SendBox/MicrophoneButton.js +0 -160
  540. package/lib/SendBox/SendButton.d.ts +0 -7
  541. package/lib/SendBox/SendButton.d.ts.map +0 -1
  542. package/lib/SendBox/SendButton.js +0 -53
  543. package/lib/SendBox/SuggestedAction.d.ts +0 -16
  544. package/lib/SendBox/SuggestedAction.d.ts.map +0 -1
  545. package/lib/SendBox/SuggestedAction.js +0 -166
  546. package/lib/SendBox/SuggestedActions.d.ts +0 -7
  547. package/lib/SendBox/SuggestedActions.d.ts.map +0 -1
  548. package/lib/SendBox/SuggestedActions.js +0 -256
  549. package/lib/SendBox/TextBox.d.ts +0 -24
  550. package/lib/SendBox/TextBox.d.ts.map +0 -1
  551. package/lib/SendBox/TextBox.js +0 -252
  552. package/lib/SendBox/createMiddleware.d.ts +0 -4
  553. package/lib/SendBox/createMiddleware.d.ts.map +0 -1
  554. package/lib/SendBox/createMiddleware.js +0 -38
  555. package/lib/SendBoxToolbar/Assets/AttachmentIcon.d.ts +0 -7
  556. package/lib/SendBoxToolbar/Assets/AttachmentIcon.d.ts.map +0 -1
  557. package/lib/SendBoxToolbar/Assets/AttachmentIcon.js +0 -63
  558. package/lib/SendBoxToolbar/BasicSendBoxToolbar.d.ts +0 -6
  559. package/lib/SendBoxToolbar/BasicSendBoxToolbar.d.ts.map +0 -1
  560. package/lib/SendBoxToolbar/BasicSendBoxToolbar.js +0 -32
  561. package/lib/SendBoxToolbar/UploadButton.d.ts +0 -7
  562. package/lib/SendBoxToolbar/UploadButton.d.ts.map +0 -1
  563. package/lib/SendBoxToolbar/UploadButton.js +0 -156
  564. package/lib/SendBoxToolbar/createMiddleware.d.ts +0 -4
  565. package/lib/SendBoxToolbar/createMiddleware.d.ts.map +0 -1
  566. package/lib/SendBoxToolbar/createMiddleware.js +0 -20
  567. package/lib/Styles/CSSTokens.d.ts +0 -16
  568. package/lib/Styles/CSSTokens.d.ts.map +0 -1
  569. package/lib/Styles/CSSTokens.js +0 -19
  570. package/lib/Styles/CustomPropertyNames.d.ts +0 -13
  571. package/lib/Styles/CustomPropertyNames.d.ts.map +0 -1
  572. package/lib/Styles/CustomPropertyNames.js +0 -24
  573. package/lib/Styles/StyleSet/Activities.d.ts +0 -5
  574. package/lib/Styles/StyleSet/Activities.d.ts.map +0 -1
  575. package/lib/Styles/StyleSet/Activities.js +0 -13
  576. package/lib/Styles/StyleSet/AudioAttachment.d.ts +0 -6
  577. package/lib/Styles/StyleSet/AudioAttachment.d.ts.map +0 -1
  578. package/lib/Styles/StyleSet/AudioAttachment.js +0 -15
  579. package/lib/Styles/StyleSet/AudioContent.d.ts +0 -4
  580. package/lib/Styles/StyleSet/AudioContent.d.ts.map +0 -1
  581. package/lib/Styles/StyleSet/AudioContent.js +0 -12
  582. package/lib/Styles/StyleSet/AutoResizeTextArea.d.ts +0 -37
  583. package/lib/Styles/StyleSet/AutoResizeTextArea.d.ts.map +0 -1
  584. package/lib/Styles/StyleSet/AutoResizeTextArea.js +0 -45
  585. package/lib/Styles/StyleSet/Avatar.d.ts +0 -9
  586. package/lib/Styles/StyleSet/Avatar.d.ts.map +0 -1
  587. package/lib/Styles/StyleSet/Avatar.js +0 -18
  588. package/lib/Styles/StyleSet/BasicTranscript.d.ts +0 -85
  589. package/lib/Styles/StyleSet/BasicTranscript.d.ts.map +0 -1
  590. package/lib/Styles/StyleSet/BasicTranscript.js +0 -110
  591. package/lib/Styles/StyleSet/Bubble.d.ts +0 -5
  592. package/lib/Styles/StyleSet/Bubble.d.ts.map +0 -1
  593. package/lib/Styles/StyleSet/Bubble.js +0 -153
  594. package/lib/Styles/StyleSet/CSSCustomProperties.d.ts +0 -16
  595. package/lib/Styles/StyleSet/CSSCustomProperties.d.ts.map +0 -1
  596. package/lib/Styles/StyleSet/CSSCustomProperties.js +0 -27
  597. package/lib/Styles/StyleSet/CarouselFilmStrip.d.ts +0 -5
  598. package/lib/Styles/StyleSet/CarouselFilmStrip.d.ts.map +0 -1
  599. package/lib/Styles/StyleSet/CarouselFilmStrip.js +0 -90
  600. package/lib/Styles/StyleSet/CarouselFilmStripAttachment.d.ts +0 -3
  601. package/lib/Styles/StyleSet/CarouselFilmStripAttachment.d.ts.map +0 -1
  602. package/lib/Styles/StyleSet/CarouselFilmStripAttachment.js +0 -57
  603. package/lib/Styles/StyleSet/CarouselFlipper.d.ts +0 -27
  604. package/lib/Styles/StyleSet/CarouselFlipper.d.ts.map +0 -1
  605. package/lib/Styles/StyleSet/CarouselFlipper.js +0 -42
  606. package/lib/Styles/StyleSet/CitationModalDialog.d.ts +0 -8
  607. package/lib/Styles/StyleSet/CitationModalDialog.d.ts.map +0 -1
  608. package/lib/Styles/StyleSet/CitationModalDialog.js +0 -16
  609. package/lib/Styles/StyleSet/ConnectivityNotification.d.ts +0 -13
  610. package/lib/Styles/StyleSet/ConnectivityNotification.d.ts.map +0 -1
  611. package/lib/Styles/StyleSet/ConnectivityNotification.js +0 -26
  612. package/lib/Styles/StyleSet/Constants.d.ts +0 -6
  613. package/lib/Styles/StyleSet/Constants.d.ts.map +0 -1
  614. package/lib/Styles/StyleSet/Constants.js +0 -15
  615. package/lib/Styles/StyleSet/DictationInterims.d.ts +0 -13
  616. package/lib/Styles/StyleSet/DictationInterims.d.ts.map +0 -1
  617. package/lib/Styles/StyleSet/DictationInterims.js +0 -22
  618. package/lib/Styles/StyleSet/ErrorBox.d.ts +0 -33
  619. package/lib/Styles/StyleSet/ErrorBox.d.ts.map +0 -1
  620. package/lib/Styles/StyleSet/ErrorBox.js +0 -43
  621. package/lib/Styles/StyleSet/ErrorNotification.d.ts +0 -23
  622. package/lib/Styles/StyleSet/ErrorNotification.d.ts.map +0 -1
  623. package/lib/Styles/StyleSet/ErrorNotification.js +0 -36
  624. package/lib/Styles/StyleSet/FileContent.d.ts +0 -32
  625. package/lib/Styles/StyleSet/FileContent.d.ts.map +0 -1
  626. package/lib/Styles/StyleSet/FileContent.js +0 -43
  627. package/lib/Styles/StyleSet/ImageAvatar.d.ts +0 -7
  628. package/lib/Styles/StyleSet/ImageAvatar.d.ts.map +0 -1
  629. package/lib/Styles/StyleSet/ImageAvatar.js +0 -15
  630. package/lib/Styles/StyleSet/InitialsAvatar.d.ts +0 -19
  631. package/lib/Styles/StyleSet/InitialsAvatar.d.ts.map +0 -1
  632. package/lib/Styles/StyleSet/InitialsAvatar.js +0 -31
  633. package/lib/Styles/StyleSet/LinkDefinitions.d.ts +0 -165
  634. package/lib/Styles/StyleSet/LinkDefinitions.d.ts.map +0 -1
  635. package/lib/Styles/StyleSet/LinkDefinitions.js +0 -180
  636. package/lib/Styles/StyleSet/MicrophoneButton.d.ts +0 -13
  637. package/lib/Styles/StyleSet/MicrophoneButton.d.ts.map +0 -1
  638. package/lib/Styles/StyleSet/MicrophoneButton.js +0 -21
  639. package/lib/Styles/StyleSet/ModalDialog.d.ts +0 -94
  640. package/lib/Styles/StyleSet/ModalDialog.d.ts.map +0 -1
  641. package/lib/Styles/StyleSet/ModalDialog.js +0 -98
  642. package/lib/Styles/StyleSet/RenderMarkdown.d.ts +0 -51
  643. package/lib/Styles/StyleSet/RenderMarkdown.d.ts.map +0 -1
  644. package/lib/Styles/StyleSet/RenderMarkdown.js +0 -67
  645. package/lib/Styles/StyleSet/Root.d.ts +0 -8
  646. package/lib/Styles/StyleSet/Root.d.ts.map +0 -1
  647. package/lib/Styles/StyleSet/Root.js +0 -19
  648. package/lib/Styles/StyleSet/ScrollToEndButton.d.ts +0 -36
  649. package/lib/Styles/StyleSet/ScrollToEndButton.d.ts.map +0 -1
  650. package/lib/Styles/StyleSet/ScrollToEndButton.js +0 -55
  651. package/lib/Styles/StyleSet/SendBox.d.ts +0 -24
  652. package/lib/Styles/StyleSet/SendBox.d.ts.map +0 -1
  653. package/lib/Styles/StyleSet/SendBox.js +0 -37
  654. package/lib/Styles/StyleSet/SendBoxButton.d.ts +0 -79
  655. package/lib/Styles/StyleSet/SendBoxButton.d.ts.map +0 -1
  656. package/lib/Styles/StyleSet/SendBoxButton.js +0 -112
  657. package/lib/Styles/StyleSet/SendBoxTextBox.d.ts +0 -41
  658. package/lib/Styles/StyleSet/SendBoxTextBox.d.ts.map +0 -1
  659. package/lib/Styles/StyleSet/SendBoxTextBox.js +0 -57
  660. package/lib/Styles/StyleSet/SendStatus.d.ts +0 -19
  661. package/lib/Styles/StyleSet/SendStatus.d.ts.map +0 -1
  662. package/lib/Styles/StyleSet/SendStatus.js +0 -29
  663. package/lib/Styles/StyleSet/SingleAttachmentActivity.d.ts +0 -11
  664. package/lib/Styles/StyleSet/SingleAttachmentActivity.d.ts.map +0 -1
  665. package/lib/Styles/StyleSet/SingleAttachmentActivity.js +0 -21
  666. package/lib/Styles/StyleSet/SlottedActivityStatus.d.ts +0 -12
  667. package/lib/Styles/StyleSet/SlottedActivityStatus.d.ts.map +0 -1
  668. package/lib/Styles/StyleSet/SlottedActivityStatus.js +0 -22
  669. package/lib/Styles/StyleSet/SpinnerAnimation.d.ts +0 -15
  670. package/lib/Styles/StyleSet/SpinnerAnimation.d.ts.map +0 -1
  671. package/lib/Styles/StyleSet/SpinnerAnimation.js +0 -34
  672. package/lib/Styles/StyleSet/StackedLayout.d.ts +0 -63
  673. package/lib/Styles/StyleSet/StackedLayout.d.ts.map +0 -1
  674. package/lib/Styles/StyleSet/StackedLayout.js +0 -77
  675. package/lib/Styles/StyleSet/SuggestedAction.d.ts +0 -94
  676. package/lib/Styles/StyleSet/SuggestedAction.d.ts.map +0 -1
  677. package/lib/Styles/StyleSet/SuggestedAction.js +0 -152
  678. package/lib/Styles/StyleSet/SuggestedActions.d.ts +0 -139
  679. package/lib/Styles/StyleSet/SuggestedActions.d.ts.map +0 -1
  680. package/lib/Styles/StyleSet/SuggestedActions.js +0 -165
  681. package/lib/Styles/StyleSet/TextContent.d.ts +0 -24
  682. package/lib/Styles/StyleSet/TextContent.d.ts.map +0 -1
  683. package/lib/Styles/StyleSet/TextContent.js +0 -34
  684. package/lib/Styles/StyleSet/ThumbButton.d.ts +0 -32
  685. package/lib/Styles/StyleSet/ThumbButton.d.ts.map +0 -1
  686. package/lib/Styles/StyleSet/ThumbButton.js +0 -44
  687. package/lib/Styles/StyleSet/Toast.d.ts +0 -65
  688. package/lib/Styles/StyleSet/Toast.d.ts.map +0 -1
  689. package/lib/Styles/StyleSet/Toast.js +0 -83
  690. package/lib/Styles/StyleSet/Toaster.d.ts +0 -111
  691. package/lib/Styles/StyleSet/Toaster.d.ts.map +0 -1
  692. package/lib/Styles/StyleSet/Toaster.js +0 -137
  693. package/lib/Styles/StyleSet/TypingAnimation.d.ts +0 -8
  694. package/lib/Styles/StyleSet/TypingAnimation.d.ts.map +0 -1
  695. package/lib/Styles/StyleSet/TypingAnimation.js +0 -26
  696. package/lib/Styles/StyleSet/TypingIndicator.d.ts +0 -11
  697. package/lib/Styles/StyleSet/TypingIndicator.d.ts.map +0 -1
  698. package/lib/Styles/StyleSet/TypingIndicator.js +0 -19
  699. package/lib/Styles/StyleSet/UploadButton.d.ts +0 -14
  700. package/lib/Styles/StyleSet/UploadButton.d.ts.map +0 -1
  701. package/lib/Styles/StyleSet/UploadButton.js +0 -27
  702. package/lib/Styles/StyleSet/VideoAttachment.d.ts +0 -2
  703. package/lib/Styles/StyleSet/VideoAttachment.d.ts.map +0 -1
  704. package/lib/Styles/StyleSet/VideoAttachment.js +0 -10
  705. package/lib/Styles/StyleSet/VideoContent.d.ts +0 -6
  706. package/lib/Styles/StyleSet/VideoContent.d.ts.map +0 -1
  707. package/lib/Styles/StyleSet/VideoContent.js +0 -14
  708. package/lib/Styles/StyleSet/VimeoContent.d.ts +0 -7
  709. package/lib/Styles/StyleSet/VimeoContent.d.ts.map +0 -1
  710. package/lib/Styles/StyleSet/VimeoContent.js +0 -15
  711. package/lib/Styles/StyleSet/WarningNotification.d.ts +0 -22
  712. package/lib/Styles/StyleSet/WarningNotification.d.ts.map +0 -1
  713. package/lib/Styles/StyleSet/WarningNotification.js +0 -37
  714. package/lib/Styles/StyleSet/YouTubeContent.d.ts +0 -7
  715. package/lib/Styles/StyleSet/YouTubeContent.d.ts.map +0 -1
  716. package/lib/Styles/StyleSet/YouTubeContent.js +0 -15
  717. package/lib/Styles/createStyleSet.d.ts +0 -1653
  718. package/lib/Styles/createStyleSet.d.ts.map +0 -1
  719. package/lib/Styles/createStyleSet.js +0 -119
  720. package/lib/Styles/mirrorStyle.js +0 -40
  721. package/lib/Toast/CheckMarkIcon.js +0 -36
  722. package/lib/Toast/CollapseIcon.js +0 -32
  723. package/lib/Toast/DismissIcon.js +0 -32
  724. package/lib/Toast/ExclamationMarkIcon.js +0 -34
  725. package/lib/Toast/ExpandIcon.js +0 -32
  726. package/lib/Toast/NotificationIcon.js +0 -46
  727. package/lib/Toast/createToastMiddleware.d.ts +0 -4
  728. package/lib/Toast/createToastMiddleware.d.ts.map +0 -1
  729. package/lib/Toast/createToastMiddleware.js +0 -26
  730. package/lib/Transcript/ActivityRow.d.ts +0 -9
  731. package/lib/Transcript/ActivityRow.d.ts.map +0 -1
  732. package/lib/Transcript/ActivityRow.js +0 -134
  733. package/lib/Transcript/FocusTrap.d.ts +0 -8
  734. package/lib/Transcript/FocusTrap.d.ts.map +0 -1
  735. package/lib/Transcript/FocusTrap.js +0 -75
  736. package/lib/Transcript/LiveRegion/SendFailed.d.ts +0 -14
  737. package/lib/Transcript/LiveRegion/SendFailed.d.ts.map +0 -1
  738. package/lib/Transcript/LiveRegion/SendFailed.js +0 -90
  739. package/lib/Transcript/LiveRegion/isPresentational.d.ts +0 -9
  740. package/lib/Transcript/LiveRegion/isPresentational.d.ts.map +0 -1
  741. package/lib/Transcript/LiveRegion/isPresentational.js +0 -30
  742. package/lib/Transcript/LiveRegionTranscript.d.ts +0 -8
  743. package/lib/Transcript/LiveRegionTranscript.d.ts.map +0 -1
  744. package/lib/Transcript/LiveRegionTranscript.js +0 -178
  745. package/lib/Transcript/types.d.ts +0 -2
  746. package/lib/Transcript/types.d.ts.map +0 -1
  747. package/lib/Transcript/types.js +0 -2
  748. package/lib/Transcript/useActivityAccessibleName.d.ts +0 -11
  749. package/lib/Transcript/useActivityAccessibleName.d.ts.map +0 -1
  750. package/lib/Transcript/useActivityAccessibleName.js +0 -103
  751. package/lib/Transcript/useTypistNames.d.ts +0 -3
  752. package/lib/Transcript/useTypistNames.d.ts.map +0 -1
  753. package/lib/Transcript/useTypistNames.js +0 -50
  754. package/lib/Utils/AccessKeySink/Surface.js +0 -74
  755. package/lib/Utils/AccessKeySink/internal/Context.js +0 -11
  756. package/lib/Utils/AccessKeySink/internal/useContext.js +0 -13
  757. package/lib/Utils/AccessKeySink/useFocusAccessKeyEffect.js +0 -34
  758. package/lib/Utils/AccessibleButton.d.ts +0 -11
  759. package/lib/Utils/AccessibleButton.d.ts.map +0 -1
  760. package/lib/Utils/AccessibleButton.js +0 -78
  761. package/lib/Utils/AccessibleInputText.d.ts +0 -22
  762. package/lib/Utils/AccessibleInputText.d.ts.map +0 -1
  763. package/lib/Utils/AccessibleInputText.js +0 -114
  764. package/lib/Utils/AccessibleTextArea.d.ts +0 -20
  765. package/lib/Utils/AccessibleTextArea.d.ts.map +0 -1
  766. package/lib/Utils/AccessibleTextArea.js +0 -105
  767. package/lib/Utils/CroppedImage.js +0 -61
  768. package/lib/Utils/FocusRedirector.d.ts +0 -9
  769. package/lib/Utils/FocusRedirector.d.ts.map +0 -1
  770. package/lib/Utils/FocusRedirector.js +0 -61
  771. package/lib/Utils/InlineMarkdown.js +0 -166
  772. package/lib/Utils/JSONLinkedData/BlankNode.d.ts +0 -15
  773. package/lib/Utils/JSONLinkedData/BlankNode.d.ts.map +0 -1
  774. package/lib/Utils/JSONLinkedData/BlankNode.js +0 -2
  775. package/lib/Utils/JSONLinkedData/__snapshots__/dereferenceBlankNodes.spec.ts.snap +0 -92
  776. package/lib/Utils/JSONLinkedData/dereferenceBlankNodes.d.ts +0 -16
  777. package/lib/Utils/JSONLinkedData/dereferenceBlankNodes.d.ts.map +0 -1
  778. package/lib/Utils/JSONLinkedData/dereferenceBlankNodes.js +0 -96
  779. package/lib/Utils/JSONLinkedData/dereferenceBlankNodes.spec.d.ts +0 -2
  780. package/lib/Utils/JSONLinkedData/dereferenceBlankNodes.spec.d.ts.map +0 -1
  781. package/lib/Utils/JSONLinkedData/getSafeOwnPropertyNames.d.ts +0 -10
  782. package/lib/Utils/JSONLinkedData/getSafeOwnPropertyNames.d.ts.map +0 -1
  783. package/lib/Utils/JSONLinkedData/getSafeOwnPropertyNames.js +0 -22
  784. package/lib/Utils/JSONLinkedData/isBlankNode.d.ts +0 -10
  785. package/lib/Utils/JSONLinkedData/isBlankNode.d.ts.map +0 -1
  786. package/lib/Utils/JSONLinkedData/isBlankNode.js +0 -22
  787. package/lib/Utils/JSONLinkedData/isBlankNode.spec.d.ts +0 -2
  788. package/lib/Utils/JSONLinkedData/isBlankNode.spec.d.ts.map +0 -1
  789. package/lib/Utils/JSONLinkedData/isUnconnectedBlankNode.d.ts +0 -10
  790. package/lib/Utils/JSONLinkedData/isUnconnectedBlankNode.d.ts.map +0 -1
  791. package/lib/Utils/JSONLinkedData/isUnconnectedBlankNode.js +0 -21
  792. package/lib/Utils/JSONLinkedData/isUnconnectedBlankNode.spec.d.ts +0 -2
  793. package/lib/Utils/JSONLinkedData/isUnconnectedBlankNode.spec.d.ts.map +0 -1
  794. package/lib/Utils/JSONLinkedData/visitOnce.d.ts +0 -2
  795. package/lib/Utils/JSONLinkedData/visitOnce.d.ts.map +0 -1
  796. package/lib/Utils/JSONLinkedData/visitOnce.js +0 -17
  797. package/lib/Utils/LocalizedString.d.ts +0 -26
  798. package/lib/Utils/LocalizedString.d.ts.map +0 -1
  799. package/lib/Utils/LocalizedString.js +0 -138
  800. package/lib/Utils/TypeFocusSink/Context.js +0 -14
  801. package/lib/Utils/TypeFocusSink/FocusBox.js +0 -91
  802. package/lib/Utils/TypeFocusSink/getTabIndex.d.ts +0 -2
  803. package/lib/Utils/TypeFocusSink/getTabIndex.d.ts.map +0 -1
  804. package/lib/Utils/TypeFocusSink/getTabIndex.js +0 -27
  805. package/lib/Utils/TypeFocusSink/index.js +0 -18
  806. package/lib/Utils/TypeFocusSink/inputtableKey.d.ts +0 -2
  807. package/lib/Utils/TypeFocusSink/inputtableKey.d.ts.map +0 -1
  808. package/lib/Utils/TypeFocusSink/inputtableKey.js +0 -28
  809. package/lib/Utils/TypeFocusSink/navigableEvent.js +0 -59
  810. package/lib/Utils/activityAltText.d.ts +0 -8
  811. package/lib/Utils/activityAltText.d.ts.map +0 -1
  812. package/lib/Utils/activityAltText.js +0 -79
  813. package/lib/Utils/addTargetBlankToHyperlinksMarkdown.js +0 -34
  814. package/lib/Utils/betterLinks.d.ts +0 -28
  815. package/lib/Utils/betterLinks.d.ts.map +0 -1
  816. package/lib/Utils/betterLinks.js +0 -142
  817. package/lib/Utils/computeSuggestedActionText.d.ts +0 -3
  818. package/lib/Utils/computeSuggestedActionText.d.ts.map +0 -1
  819. package/lib/Utils/computeSuggestedActionText.js +0 -24
  820. package/lib/Utils/createCSSKey.js +0 -16
  821. package/lib/Utils/createCustomEvent.js +0 -34
  822. package/lib/Utils/detectBrowser.js +0 -27
  823. package/lib/Utils/downscaleImageToDataURL/WorkerJob.d.ts +0 -16
  824. package/lib/Utils/downscaleImageToDataURL/WorkerJob.d.ts.map +0 -1
  825. package/lib/Utils/downscaleImageToDataURL/WorkerJob.js +0 -2
  826. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingBrowser.d.ts +0 -2
  827. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingBrowser.d.ts.map +0 -1
  828. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingBrowser.js +0 -90
  829. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingWorker.d.ts +0 -4
  830. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingWorker.d.ts.map +0 -1
  831. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingWorker.js +0 -198
  832. package/lib/Utils/downscaleImageToDataURL/downscaleImageToDataURLUsingWorker.worker.js +0 -96
  833. package/lib/Utils/downscaleImageToDataURL/index.d.ts +0 -2
  834. package/lib/Utils/downscaleImageToDataURL/index.d.ts.map +0 -1
  835. package/lib/Utils/downscaleImageToDataURL/index.js +0 -44
  836. package/lib/Utils/filterMap.js +0 -28
  837. package/lib/Utils/findAncestor.d.ts +0 -2
  838. package/lib/Utils/findAncestor.d.ts.map +0 -1
  839. package/lib/Utils/findAncestor.js +0 -15
  840. package/lib/Utils/firstTabbableDescendant.js +0 -40
  841. package/lib/Utils/getActivityUniqueId.d.ts +0 -3
  842. package/lib/Utils/getActivityUniqueId.d.ts.map +0 -1
  843. package/lib/Utils/getActivityUniqueId.js +0 -11
  844. package/lib/Utils/intersectionOf.d.ts +0 -5
  845. package/lib/Utils/intersectionOf.d.ts.map +0 -1
  846. package/lib/Utils/intersectionOf.js +0 -27
  847. package/lib/Utils/isZeroOrPositive.d.ts +0 -5
  848. package/lib/Utils/isZeroOrPositive.d.ts.map +0 -1
  849. package/lib/Utils/isZeroOrPositive.js +0 -14
  850. package/lib/Utils/mapMap.js +0 -27
  851. package/lib/Utils/parseDocumentFromString.d.ts +0 -2
  852. package/lib/Utils/parseDocumentFromString.d.ts.map +0 -1
  853. package/lib/Utils/parseDocumentFromString.js +0 -11
  854. package/lib/Utils/randomId.js +0 -15
  855. package/lib/Utils/readDataURIToBlob.js +0 -44
  856. package/lib/Utils/removeInline.js +0 -18
  857. package/lib/Utils/scrollIntoViewWithBlockNearest.d.ts +0 -7
  858. package/lib/Utils/scrollIntoViewWithBlockNearest.d.ts.map +0 -1
  859. package/lib/Utils/scrollIntoViewWithBlockNearest.js +0 -38
  860. package/lib/Utils/serializeDocumentIntoString.d.ts +0 -2
  861. package/lib/Utils/serializeDocumentIntoString.d.ts.map +0 -1
  862. package/lib/Utils/serializeDocumentIntoString.js +0 -27
  863. package/lib/Utils/shallowEquals.js +0 -21
  864. package/lib/Utils/singleToArray.d.ts +0 -2
  865. package/lib/Utils/singleToArray.d.ts.map +0 -1
  866. package/lib/Utils/singleToArray.js +0 -10
  867. package/lib/Utils/supportPseudoClass.d.ts +0 -2
  868. package/lib/Utils/supportPseudoClass.d.ts.map +0 -1
  869. package/lib/Utils/supportPseudoClass.js +0 -21
  870. package/lib/Utils/tabbableElements.d.ts +0 -2
  871. package/lib/Utils/tabbableElements.d.ts.map +0 -1
  872. package/lib/Utils/tabbableElements.js +0 -20
  873. package/lib/Utils/textFormatToContentType.js +0 -17
  874. package/lib/Utils/updateMarkdownAttrs.js +0 -16
  875. package/lib/Utils/walkMarkdownTokens.js +0 -19
  876. package/lib/hooks/index.d.ts +0 -22
  877. package/lib/hooks/index.d.ts.map +0 -1
  878. package/lib/hooks/index.js +0 -152
  879. package/lib/hooks/internal/BypassSpeechSynthesisPonyfill.js +0 -278
  880. package/lib/hooks/internal/UITracker.js +0 -39
  881. package/lib/hooks/internal/WebChatUIContext.d.ts +0 -8
  882. package/lib/hooks/internal/WebChatUIContext.d.ts.map +0 -1
  883. package/lib/hooks/internal/WebChatUIContext.js +0 -11
  884. package/lib/hooks/internal/createWaitUntilable.d.ts +0 -5
  885. package/lib/hooks/internal/createWaitUntilable.d.ts.map +0 -1
  886. package/lib/hooks/internal/createWaitUntilable.js +0 -50
  887. package/lib/hooks/internal/createWaitUntilable.spec.d.ts +0 -2
  888. package/lib/hooks/internal/createWaitUntilable.spec.d.ts.map +0 -1
  889. package/lib/hooks/internal/private/createOnEventShim.d.ts +0 -5
  890. package/lib/hooks/internal/private/createOnEventShim.d.ts.map +0 -1
  891. package/lib/hooks/internal/private/createOnEventShim.js +0 -25
  892. package/lib/hooks/internal/private/createOnEventShim.spec.d.ts +0 -2
  893. package/lib/hooks/internal/private/createOnEventShim.spec.d.ts.map +0 -1
  894. package/lib/hooks/internal/useChanged.d.ts +0 -9
  895. package/lib/hooks/internal/useChanged.d.ts.map +0 -1
  896. package/lib/hooks/internal/useChanged.js +0 -21
  897. package/lib/hooks/internal/useDispatchScrollPosition.js +0 -12
  898. package/lib/hooks/internal/useDispatchTranscriptFocusByActivityKey.d.ts +0 -2
  899. package/lib/hooks/internal/useDispatchTranscriptFocusByActivityKey.d.ts.map +0 -1
  900. package/lib/hooks/internal/useDispatchTranscriptFocusByActivityKey.js +0 -12
  901. package/lib/hooks/internal/useEnterKeyHint.js +0 -18
  902. package/lib/hooks/internal/useFocusVisible.d.ts +0 -3
  903. package/lib/hooks/internal/useFocusVisible.d.ts.map +0 -1
  904. package/lib/hooks/internal/useFocusVisible.js +0 -37
  905. package/lib/hooks/internal/useFocusWithin.d.ts +0 -3
  906. package/lib/hooks/internal/useFocusWithin.d.ts.map +0 -1
  907. package/lib/hooks/internal/useFocusWithin.js +0 -38
  908. package/lib/hooks/internal/useForceRender.js +0 -24
  909. package/lib/hooks/internal/useForceRenderAtInterval.d.ts +0 -3
  910. package/lib/hooks/internal/useForceRenderAtInterval.d.ts.map +0 -1
  911. package/lib/hooks/internal/useForceRenderAtInterval.js +0 -57
  912. package/lib/hooks/internal/useInternalMarkdownIt.js +0 -14
  913. package/lib/hooks/internal/useInternalRenderMarkdownInline.js +0 -16
  914. package/lib/hooks/internal/useLocalizeAccessKey.d.ts +0 -2
  915. package/lib/hooks/internal/useLocalizeAccessKey.d.ts.map +0 -1
  916. package/lib/hooks/internal/useLocalizeAccessKey.js +0 -38
  917. package/lib/hooks/internal/useMemoWithPrevious.d.ts +0 -3
  918. package/lib/hooks/internal/useMemoWithPrevious.d.ts.map +0 -1
  919. package/lib/hooks/internal/useMemoWithPrevious.js +0 -20
  920. package/lib/hooks/internal/useMemoize.d.ts +0 -14
  921. package/lib/hooks/internal/useMemoize.d.ts.map +0 -1
  922. package/lib/hooks/internal/useMemoize.js +0 -62
  923. package/lib/hooks/internal/useNavigatorPlatform.js +0 -31
  924. package/lib/hooks/internal/useNonce.js +0 -14
  925. package/lib/hooks/internal/useObserveFocusVisible.d.ts +0 -3
  926. package/lib/hooks/internal/useObserveFocusVisible.d.ts.map +0 -1
  927. package/lib/hooks/internal/useObserveFocusVisible.js +0 -201
  928. package/lib/hooks/internal/usePrevious.d.ts +0 -2
  929. package/lib/hooks/internal/usePrevious.d.ts.map +0 -1
  930. package/lib/hooks/internal/usePrevious.js +0 -17
  931. package/lib/hooks/internal/useRegisterFocusTranscript.js +0 -27
  932. package/lib/hooks/internal/useRegisterScrollRelative.js +0 -27
  933. package/lib/hooks/internal/useRegisterScrollTo.js +0 -27
  934. package/lib/hooks/internal/useRegisterScrollToEnd.js +0 -25
  935. package/lib/hooks/internal/useReplaceEmoticon.js +0 -58
  936. package/lib/hooks/internal/useResumeAudioContext.d.ts +0 -2
  937. package/lib/hooks/internal/useResumeAudioContext.d.ts.map +0 -1
  938. package/lib/hooks/internal/useResumeAudioContext.js +0 -23
  939. package/lib/hooks/internal/useScrollRelative.js +0 -22
  940. package/lib/hooks/internal/useSendBoxFocusRef.js +0 -12
  941. package/lib/hooks/internal/useSettableDictateAbortable.js +0 -15
  942. package/lib/hooks/internal/useStateRef.d.ts +0 -3
  943. package/lib/hooks/internal/useStateRef.d.ts.map +0 -1
  944. package/lib/hooks/internal/useStateRef.js +0 -30
  945. package/lib/hooks/internal/useStyleToEmotionObject.js +0 -12
  946. package/lib/hooks/internal/useSuggestedActionsAccessKey.js +0 -14
  947. package/lib/hooks/internal/useTimer.d.ts +0 -5
  948. package/lib/hooks/internal/useTimer.d.ts.map +0 -1
  949. package/lib/hooks/internal/useTimer.js +0 -46
  950. package/lib/hooks/internal/useTranscriptActivityElementsRef.js +0 -12
  951. package/lib/hooks/internal/useTranscriptFocusRef.js +0 -12
  952. package/lib/hooks/internal/useUniqueId.d.ts +0 -2
  953. package/lib/hooks/internal/useUniqueId.d.ts.map +0 -1
  954. package/lib/hooks/internal/useUniqueId.js +0 -19
  955. package/lib/hooks/internal/useValueRef.d.ts +0 -3
  956. package/lib/hooks/internal/useValueRef.d.ts.map +0 -1
  957. package/lib/hooks/internal/useValueRef.js +0 -24
  958. package/lib/hooks/internal/useWebChatUIContext.js +0 -17
  959. package/lib/hooks/sendBoxFocus.d.ts +0 -7
  960. package/lib/hooks/sendBoxFocus.d.ts.map +0 -1
  961. package/lib/hooks/sendBoxFocus.js +0 -13
  962. package/lib/hooks/useDictateAbortable.d.ts +0 -2
  963. package/lib/hooks/useDictateAbortable.d.ts.map +0 -1
  964. package/lib/hooks/useDictateAbortable.js +0 -22
  965. package/lib/hooks/useFocus.d.ts +0 -2
  966. package/lib/hooks/useFocus.d.ts.map +0 -1
  967. package/lib/hooks/useFocus.js +0 -65
  968. package/lib/hooks/useMakeThumbnail.d.ts +0 -2
  969. package/lib/hooks/useMakeThumbnail.d.ts.map +0 -1
  970. package/lib/hooks/useMakeThumbnail.js +0 -74
  971. package/lib/hooks/useObserveScrollPosition.d.ts +0 -3
  972. package/lib/hooks/useObserveScrollPosition.d.ts.map +0 -1
  973. package/lib/hooks/useObserveScrollPosition.js +0 -31
  974. package/lib/hooks/useObserveTranscriptFocus.d.ts +0 -5
  975. package/lib/hooks/useObserveTranscriptFocus.d.ts.map +0 -1
  976. package/lib/hooks/useObserveTranscriptFocus.js +0 -31
  977. package/lib/hooks/useRenderMarkdownAsHTML.d.ts +0 -5
  978. package/lib/hooks/useRenderMarkdownAsHTML.d.ts.map +0 -1
  979. package/lib/hooks/useRenderMarkdownAsHTML.js +0 -62
  980. package/lib/hooks/useScrollDown.d.ts +0 -4
  981. package/lib/hooks/useScrollDown.d.ts.map +0 -1
  982. package/lib/hooks/useScrollDown.js +0 -19
  983. package/lib/hooks/useScrollTo.d.ts +0 -5
  984. package/lib/hooks/useScrollTo.d.ts.map +0 -1
  985. package/lib/hooks/useScrollTo.js +0 -22
  986. package/lib/hooks/useScrollToEnd.d.ts +0 -2
  987. package/lib/hooks/useScrollToEnd.d.ts.map +0 -1
  988. package/lib/hooks/useScrollToEnd.js +0 -21
  989. package/lib/hooks/useScrollUp.d.ts +0 -4
  990. package/lib/hooks/useScrollUp.d.ts.map +0 -1
  991. package/lib/hooks/useScrollUp.js +0 -19
  992. package/lib/hooks/useSendFiles.d.ts +0 -5
  993. package/lib/hooks/useSendFiles.d.ts.map +0 -1
  994. package/lib/hooks/useSendFiles.js +0 -63
  995. package/lib/hooks/useSendMessage.d.ts +0 -8
  996. package/lib/hooks/useSendMessage.d.ts.map +0 -1
  997. package/lib/hooks/useSendMessage.js +0 -102
  998. package/lib/hooks/useStyleSet.d.ts +0 -3
  999. package/lib/hooks/useStyleSet.d.ts.map +0 -1
  1000. package/lib/hooks/useStyleSet.js +0 -13
  1001. package/lib/hooks/useWebSpeechPonyfill.d.ts +0 -3
  1002. package/lib/hooks/useWebSpeechPonyfill.d.ts.map +0 -1
  1003. package/lib/hooks/useWebSpeechPonyfill.js +0 -12
  1004. package/lib/index.d.ts +0 -331
  1005. package/lib/index.d.ts.map +0 -1
  1006. package/lib/index.js +0 -164
  1007. package/lib/internal.d.ts +0 -4
  1008. package/lib/internal.d.ts.map +0 -1
  1009. package/lib/internal.js +0 -21
  1010. package/lib/providers/ActivityTree/ActivityTreeComposer.d.ts +0 -5
  1011. package/lib/providers/ActivityTree/ActivityTreeComposer.d.ts.map +0 -1
  1012. package/lib/providers/ActivityTree/ActivityTreeComposer.js +0 -63
  1013. package/lib/providers/ActivityTree/private/Context.d.ts +0 -9
  1014. package/lib/providers/ActivityTree/private/Context.d.ts.map +0 -1
  1015. package/lib/providers/ActivityTree/private/Context.js +0 -10
  1016. package/lib/providers/ActivityTree/private/types.d.ts +0 -10
  1017. package/lib/providers/ActivityTree/private/types.d.ts.map +0 -1
  1018. package/lib/providers/ActivityTree/private/types.js +0 -2
  1019. package/lib/providers/ActivityTree/private/useActivitiesWithRenderer.d.ts +0 -4
  1020. package/lib/providers/ActivityTree/private/useActivitiesWithRenderer.d.ts.map +0 -1
  1021. package/lib/providers/ActivityTree/private/useActivitiesWithRenderer.js +0 -51
  1022. package/lib/providers/ActivityTree/private/useActivityTreeWithRenderer.d.ts +0 -5
  1023. package/lib/providers/ActivityTree/private/useActivityTreeWithRenderer.d.ts.map +0 -1
  1024. package/lib/providers/ActivityTree/private/useActivityTreeWithRenderer.js +0 -147
  1025. package/lib/providers/ActivityTree/private/useContext.d.ts +0 -3
  1026. package/lib/providers/ActivityTree/private/useContext.d.ts.map +0 -1
  1027. package/lib/providers/ActivityTree/private/useContext.js +0 -18
  1028. package/lib/providers/ActivityTree/useActivityTreeWithRenderer.d.ts +0 -8
  1029. package/lib/providers/ActivityTree/useActivityTreeWithRenderer.d.ts.map +0 -1
  1030. package/lib/providers/ActivityTree/useActivityTreeWithRenderer.js +0 -14
  1031. package/lib/providers/LiveRegionTwin/LiveRegionTwinComposer.d.ts +0 -37
  1032. package/lib/providers/LiveRegionTwin/LiveRegionTwinComposer.d.ts.map +0 -1
  1033. package/lib/providers/LiveRegionTwin/LiveRegionTwinComposer.js +0 -145
  1034. package/lib/providers/LiveRegionTwin/private/Context.d.ts +0 -10
  1035. package/lib/providers/LiveRegionTwin/private/Context.d.ts.map +0 -1
  1036. package/lib/providers/LiveRegionTwin/private/Context.js +0 -11
  1037. package/lib/providers/LiveRegionTwin/private/LiveRegionTwinContainer.d.ts +0 -12
  1038. package/lib/providers/LiveRegionTwin/private/LiveRegionTwinContainer.d.ts.map +0 -1
  1039. package/lib/providers/LiveRegionTwin/private/LiveRegionTwinContainer.js +0 -77
  1040. package/lib/providers/LiveRegionTwin/private/types.d.ts +0 -8
  1041. package/lib/providers/LiveRegionTwin/private/types.d.ts.map +0 -1
  1042. package/lib/providers/LiveRegionTwin/private/types.js +0 -2
  1043. package/lib/providers/LiveRegionTwin/private/useContext.d.ts +0 -3
  1044. package/lib/providers/LiveRegionTwin/private/useContext.d.ts.map +0 -1
  1045. package/lib/providers/LiveRegionTwin/private/useContext.js +0 -18
  1046. package/lib/providers/LiveRegionTwin/private/useMarkAllAsRenderedEffect.d.ts +0 -2
  1047. package/lib/providers/LiveRegionTwin/private/useMarkAllAsRenderedEffect.d.ts.map +0 -1
  1048. package/lib/providers/LiveRegionTwin/private/useMarkAllAsRenderedEffect.js +0 -20
  1049. package/lib/providers/LiveRegionTwin/private/useStaticElementEntries.d.ts +0 -3
  1050. package/lib/providers/LiveRegionTwin/private/useStaticElementEntries.d.ts.map +0 -1
  1051. package/lib/providers/LiveRegionTwin/private/useStaticElementEntries.js +0 -12
  1052. package/lib/providers/LiveRegionTwin/useQueueStaticElement.d.ts +0 -8
  1053. package/lib/providers/LiveRegionTwin/useQueueStaticElement.d.ts.map +0 -1
  1054. package/lib/providers/LiveRegionTwin/useQueueStaticElement.js +0 -17
  1055. package/lib/providers/ModalDialog/ModalDialogComposer.d.ts +0 -7
  1056. package/lib/providers/ModalDialog/ModalDialogComposer.d.ts.map +0 -1
  1057. package/lib/providers/ModalDialog/ModalDialogComposer.js +0 -51
  1058. package/lib/providers/ModalDialog/private/Context.d.ts +0 -13
  1059. package/lib/providers/ModalDialog/private/Context.d.ts.map +0 -1
  1060. package/lib/providers/ModalDialog/private/Context.js +0 -24
  1061. package/lib/providers/ModalDialog/private/Popover.d.ts +0 -10
  1062. package/lib/providers/ModalDialog/private/Popover.d.ts.map +0 -1
  1063. package/lib/providers/ModalDialog/private/Popover.js +0 -79
  1064. package/lib/providers/ModalDialog/private/useContext.d.ts +0 -4
  1065. package/lib/providers/ModalDialog/private/useContext.d.ts.map +0 -1
  1066. package/lib/providers/ModalDialog/private/useContext.js +0 -13
  1067. package/lib/providers/ModalDialog/useClose.d.ts +0 -3
  1068. package/lib/providers/ModalDialog/useClose.d.ts.map +0 -1
  1069. package/lib/providers/ModalDialog/useClose.js +0 -12
  1070. package/lib/providers/ModalDialog/useShowModal.d.ts +0 -3
  1071. package/lib/providers/ModalDialog/useShowModal.d.ts.map +0 -1
  1072. package/lib/providers/ModalDialog/useShowModal.js +0 -12
  1073. package/lib/providers/RovingTabIndex/RovingTabIndexComposer.d.ts +0 -8
  1074. package/lib/providers/RovingTabIndex/RovingTabIndexComposer.d.ts.map +0 -1
  1075. package/lib/providers/RovingTabIndex/RovingTabIndexComposer.js +0 -163
  1076. package/lib/providers/RovingTabIndex/private/Context.d.ts +0 -8
  1077. package/lib/providers/RovingTabIndex/private/Context.d.ts.map +0 -1
  1078. package/lib/providers/RovingTabIndex/private/Context.js +0 -17
  1079. package/lib/providers/RovingTabIndex/private/useContext.d.ts +0 -2
  1080. package/lib/providers/RovingTabIndex/private/useContext.d.ts.map +0 -1
  1081. package/lib/providers/RovingTabIndex/private/useContext.js +0 -18
  1082. package/lib/providers/RovingTabIndex/useItemRef.d.ts +0 -3
  1083. package/lib/providers/RovingTabIndex/useItemRef.d.ts.map +0 -1
  1084. package/lib/providers/RovingTabIndex/useItemRef.js +0 -19
  1085. package/lib/providers/Theme/ThemeProvider.d.ts +0 -7
  1086. package/lib/providers/Theme/ThemeProvider.d.ts.map +0 -1
  1087. package/lib/providers/Theme/ThemeProvider.js +0 -103
  1088. package/lib/providers/Theme/private/Context.d.ts +0 -19
  1089. package/lib/providers/Theme/private/Context.d.ts.map +0 -1
  1090. package/lib/providers/Theme/private/Context.js +0 -26
  1091. package/lib/providers/Theme/useTheme.d.ts +0 -2
  1092. package/lib/providers/Theme/useTheme.d.ts.map +0 -1
  1093. package/lib/providers/Theme/useTheme.js +0 -13
  1094. package/lib/providers/TranscriptFocus/TranscriptFocusComposer.d.ts +0 -7
  1095. package/lib/providers/TranscriptFocus/TranscriptFocusComposer.d.ts.map +0 -1
  1096. package/lib/providers/TranscriptFocus/TranscriptFocusComposer.js +0 -153
  1097. package/lib/providers/TranscriptFocus/private/Context.d.ts +0 -12
  1098. package/lib/providers/TranscriptFocus/private/Context.d.ts.map +0 -1
  1099. package/lib/providers/TranscriptFocus/private/Context.js +0 -11
  1100. package/lib/providers/TranscriptFocus/private/useContext.d.ts +0 -2
  1101. package/lib/providers/TranscriptFocus/private/useContext.d.ts.map +0 -1
  1102. package/lib/providers/TranscriptFocus/private/useContext.js +0 -18
  1103. package/lib/providers/TranscriptFocus/useActiveDescendantId.d.ts +0 -2
  1104. package/lib/providers/TranscriptFocus/useActiveDescendantId.d.ts.map +0 -1
  1105. package/lib/providers/TranscriptFocus/useActiveDescendantId.js +0 -12
  1106. package/lib/providers/TranscriptFocus/useFocusByActivityKey.d.ts +0 -8
  1107. package/lib/providers/TranscriptFocus/useFocusByActivityKey.d.ts.map +0 -1
  1108. package/lib/providers/TranscriptFocus/useFocusByActivityKey.js +0 -18
  1109. package/lib/providers/TranscriptFocus/useFocusRelativeActivity.d.ts +0 -2
  1110. package/lib/providers/TranscriptFocus/useFocusRelativeActivity.d.ts.map +0 -1
  1111. package/lib/providers/TranscriptFocus/useFocusRelativeActivity.js +0 -12
  1112. package/lib/providers/TranscriptFocus/useFocusedActivityKey.d.ts +0 -2
  1113. package/lib/providers/TranscriptFocus/useFocusedActivityKey.d.ts.map +0 -1
  1114. package/lib/providers/TranscriptFocus/useFocusedActivityKey.js +0 -12
  1115. package/lib/providers/TranscriptFocus/useFocusedExplicitly.d.ts +0 -2
  1116. package/lib/providers/TranscriptFocus/useFocusedExplicitly.d.ts.map +0 -1
  1117. package/lib/providers/TranscriptFocus/useFocusedExplicitly.js +0 -12
  1118. package/lib/providers/TranscriptFocus/useGetDescendantIdByActivityKey.d.ts +0 -2
  1119. package/lib/providers/TranscriptFocus/useGetDescendantIdByActivityKey.d.ts.map +0 -1
  1120. package/lib/providers/TranscriptFocus/useGetDescendantIdByActivityKey.js +0 -12
  1121. package/lib/providers/internal/SendBox/SendBoxComposer.d.ts +0 -4
  1122. package/lib/providers/internal/SendBox/SendBoxComposer.d.ts.map +0 -1
  1123. package/lib/providers/internal/SendBox/SendBoxComposer.js +0 -161
  1124. package/lib/providers/internal/SendBox/private/Context.d.ts +0 -4
  1125. package/lib/providers/internal/SendBox/private/Context.d.ts.map +0 -1
  1126. package/lib/providers/internal/SendBox/private/Context.js +0 -11
  1127. package/lib/providers/internal/SendBox/private/types.d.ts +0 -8
  1128. package/lib/providers/internal/SendBox/private/types.d.ts.map +0 -1
  1129. package/lib/providers/internal/SendBox/private/types.js +0 -2
  1130. package/lib/providers/internal/SendBox/private/useContext.d.ts +0 -3
  1131. package/lib/providers/internal/SendBox/private/useContext.d.ts.map +0 -1
  1132. package/lib/providers/internal/SendBox/private/useContext.js +0 -17
  1133. package/lib/providers/internal/SendBox/useErrorMessageId.d.ts +0 -12
  1134. package/lib/providers/internal/SendBox/useErrorMessageId.d.ts.map +0 -1
  1135. package/lib/providers/internal/SendBox/useErrorMessageId.js +0 -22
  1136. package/lib/providers/internal/SendBox/useSubmit.d.ts +0 -14
  1137. package/lib/providers/internal/SendBox/useSubmit.d.ts.map +0 -1
  1138. package/lib/providers/internal/SendBox/useSubmit.js +0 -20
  1139. package/lib/tsconfig.json +0 -18
  1140. package/lib/types/ContextOf.d.ts +0 -4
  1141. package/lib/types/ContextOf.d.ts.map +0 -1
  1142. package/lib/types/ContextOf.js +0 -2
  1143. package/lib/types/PropsOf.d.ts +0 -3
  1144. package/lib/types/PropsOf.d.ts.map +0 -1
  1145. package/lib/types/PropsOf.js +0 -2
  1146. package/lib/types/ScrollPosition.d.ts +0 -6
  1147. package/lib/types/ScrollPosition.d.ts.map +0 -1
  1148. package/lib/types/ScrollPosition.js +0 -2
  1149. package/lib/types/internal/FocusTranscriptInit.d.ts +0 -4
  1150. package/lib/types/internal/FocusTranscriptInit.d.ts.map +0 -1
  1151. package/lib/types/internal/FocusTranscriptInit.js +0 -2
  1152. package/lib/types/internal/SendStatus.d.ts +0 -7
  1153. package/lib/types/internal/SendStatus.d.ts.map +0 -1
  1154. package/lib/types/internal/SendStatus.js +0 -19
  1155. package/lib/types/internal/TypeOfArray.d.ts +0 -2
  1156. package/lib/types/internal/TypeOfArray.d.ts.map +0 -1
  1157. package/lib/types/internal/TypeOfArray.js +0 -2
  1158. package/lib/withEmoji/private/UndoEntry.d.ts +0 -9
  1159. package/lib/withEmoji/private/UndoEntry.d.ts.map +0 -1
  1160. package/lib/withEmoji/private/UndoEntry.js +0 -69
  1161. package/lib/withEmoji/private/useUndoStack.d.ts +0 -6
  1162. package/lib/withEmoji/private/useUndoStack.d.ts.map +0 -1
  1163. package/lib/withEmoji/private/useUndoStack.js +0 -64
  1164. package/lib/withEmoji/withEmoji.d.ts +0 -15
  1165. package/lib/withEmoji/withEmoji.d.ts.map +0 -1
  1166. package/lib/withEmoji/withEmoji.js +0 -128
  1167. package/src/Activity/SayAlt.js +0 -26
  1168. package/src/ActivityStatus/Slotted.tsx +0 -26
  1169. package/src/ActivityStatus/private/Feedback/Feedback.tsx +0 -60
  1170. package/src/ActivityStatus/private/Feedback/private/ThumbButton.Image.tsx +0 -30
  1171. package/src/ActivityStatus/private/Feedback/private/ThumbButton.tsx +0 -54
  1172. package/src/ActivityStatus/private/Feedback/private/VoteButton.tsx +0 -36
  1173. package/src/Attachment/Assets/DownloadIcon.js +0 -29
  1174. package/src/Avatar/ImageAvatar.js +0 -49
  1175. package/src/Avatar/InitialsAvatar.js +0 -50
  1176. package/src/ConnectivityStatus/Connecting.js +0 -72
  1177. package/src/Middleware/ScrollToEndButton/ScrollToEndButton.js +0 -45
  1178. package/src/Styles/StyleSet/CSSCustomProperties.ts +0 -46
  1179. package/src/Styles/StyleSet/SingleAttachmentActivity.ts +0 -18
  1180. package/src/Styles/StyleSet/SlottedActivityStatus.ts +0 -16
  1181. package/src/Utils/CroppedImage.js +0 -45
  1182. package/src/Utils/parseDocumentFromString.ts +0 -5
  1183. package/src/Utils/serializeDocumentIntoString.ts +0 -10
  1184. package/src/Utils/textFormatToContentType.js +0 -12
  1185. package/src/hooks/internal/useMemoize.spec.js +0 -74
  1186. package/src/hooks/internal/useMemoize.ts +0 -53
  1187. package/src/hooks/internal/useRegisterScrollRelative.js +0 -21
  1188. package/src/hooks/internal/useScrollRelative.js +0 -12
  1189. package/src/hooks/internal/useStyleToEmotionObject.js +0 -5
  1190. package/src/providers/ActivityTree/ActivityTreeComposer.tsx +0 -74
  1191. package/src/providers/ActivityTree/private/Context.ts +0 -12
  1192. package/src/providers/ActivityTree/private/types.ts +0 -12
  1193. package/src/providers/ActivityTree/private/useActivitiesWithRenderer.ts +0 -64
  1194. package/src/providers/ActivityTree/private/useActivityTreeWithRenderer.ts +0 -135
  1195. package/src/providers/ActivityTree/private/useContext.ts +0 -15
  1196. package/src/providers/ActivityTree/useActivityTreeWithRenderer.ts +0 -16
  1197. package/src/providers/LiveRegionTwin/LiveRegionTwinComposer.tsx +0 -172
  1198. package/src/providers/LiveRegionTwin/private/Context.ts +0 -15
  1199. /package/dist/{chunk-X37JABN5.mjs.LEGAL.txt → botframework-webchat-component.decorator.css.LEGAL.txt} +0 -0
  1200. /package/src/{ActivityStatus/private/Feedback/private/icons → ActivityFeedback/private}/ThumbDislike16Filled.tsx +0 -0
  1201. /package/src/{ActivityStatus/private/Feedback/private/icons → ActivityFeedback/private}/ThumbDislike16Regular.tsx +0 -0
  1202. /package/src/{ActivityStatus/private/Feedback/private/icons → ActivityFeedback/private}/ThumbLike16Filled.tsx +0 -0
  1203. /package/src/{ActivityStatus/private/Feedback/private/icons → ActivityFeedback/private}/ThumbLike16Regular.tsx +0 -0
@@ -1,1653 +0,0 @@
1
- import { StyleOptions } from 'botframework-webchat-api';
2
- export default function createStyleSet(styleOptions: StyleOptions): Readonly<{
3
- readonly activities: {
4
- margin: number;
5
- padding: number;
6
- };
7
- readonly audioAttachment: {
8
- display: string;
9
- minHeight: number;
10
- };
11
- readonly audioContent: {
12
- width: string;
13
- };
14
- readonly autoResizeTextArea: {
15
- '&.webchat__auto-resize-textarea': {
16
- fontFamily: string;
17
- overflow: string;
18
- position: string;
19
- '& .webchat__auto-resize-textarea__doppelganger': {
20
- color: string;
21
- height: string;
22
- overflowY: string;
23
- userSelect: string;
24
- width: string;
25
- whiteSpace: string;
26
- wordBreak: string;
27
- };
28
- '& .webchat__auto-resize-textarea__textarea': {
29
- appearance: string;
30
- backgroundColor: string;
31
- border: number;
32
- color: string;
33
- fontFamily: string;
34
- fontSize: string;
35
- height: string;
36
- left: number;
37
- margin: number;
38
- outline: number;
39
- overflowY: string;
40
- padding: number;
41
- position: string;
42
- resize: string;
43
- top: number;
44
- width: string;
45
- wordBreak: string;
46
- };
47
- };
48
- };
49
- readonly avatar: {
50
- '&.webchat__defaultAvatar': {
51
- borderRadius: string | number;
52
- height: number;
53
- width: number;
54
- };
55
- };
56
- readonly basicTranscript: {
57
- '&.webchat__basic-transcript': {
58
- '&:focus': {
59
- outline: number;
60
- '& .webchat__basic-transcript__activity-indicator.webchat__basic-transcript__activity-indicator--focus': {
61
- borderColor: string;
62
- borderStyle: string;
63
- borderWidth: string | number;
64
- boxSizing: string;
65
- height: string;
66
- left: number;
67
- marginBottom: number;
68
- marginLeft: number;
69
- marginRight: number;
70
- marginTop: number;
71
- pointerEvents: string;
72
- position: string;
73
- top: number;
74
- width: string;
75
- };
76
- };
77
- '&:focus-visible .webchat__basic-transcript__focus-indicator, .webchat__basic-transcript__terminator:focus-visible + .webchat__basic-transcript__focus-indicator': {
78
- height: string;
79
- borderColor: string;
80
- borderStyle: string;
81
- borderWidth: string | number;
82
- boxSizing: string;
83
- pointerEvents: string;
84
- position: string;
85
- top: number;
86
- width: string;
87
- };
88
- '& .webchat__basic-transcript__activity': {
89
- paddingTop: number;
90
- position: string;
91
- '&:first-child': {
92
- marginTop: number;
93
- };
94
- '&:not(:first-child)': {
95
- marginTop: number;
96
- };
97
- };
98
- '& .webchat__basic-transcript__activity-active-descendant': {
99
- height: string;
100
- left: number;
101
- marginTop: number;
102
- paddingBottom: number;
103
- pointerEvents: string;
104
- position: string;
105
- top: number;
106
- width: string;
107
- };
108
- '& .webchat__basic-transcript__activity-body:not(:empty)': {
109
- paddingBottom: number;
110
- };
111
- '& .webchat__basic-transcript__terminator': {
112
- bottom: number;
113
- height: number;
114
- outline: number;
115
- position: string;
116
- width: string;
117
- };
118
- '& .webchat__basic-transcript__terminator-body': {
119
- bottom: number;
120
- display: string;
121
- justifyContent: string;
122
- position: string;
123
- width: string;
124
- };
125
- '& .webchat__basic-transcript__terminator:not(:focus) .webchat__basic-transcript__terminator-body': {
126
- display: string;
127
- };
128
- '& .webchat__basic-transcript__terminator-text': {
129
- backgroundColor: string;
130
- borderRadius: string | number;
131
- color: string;
132
- fontFamily: string;
133
- fontSize: string | number;
134
- margin: number;
135
- padding: number;
136
- };
137
- };
138
- };
139
- readonly bubble: {
140
- '&.webchat__bubble': any;
141
- };
142
- readonly carouselFilmStrip: {
143
- '&.webchat__carousel-filmstrip': any;
144
- };
145
- readonly carouselFilmStripAttachment: any;
146
- readonly carouselFlipper: {
147
- '&.webchat__carousel-layout': {
148
- '& .react-film__flipper': {
149
- '& .react-film__flipper__body': {
150
- backgroundColor: string;
151
- color: string;
152
- outline: number;
153
- };
154
- '&:disabled, &[aria-disabled="true"]': {
155
- '& .react-film__flipper__body': {
156
- backgroundColor: string;
157
- color: string;
158
- };
159
- };
160
- '&:focus .react-film__flipper__body': {
161
- backgroundColor: string;
162
- color: string;
163
- };
164
- '&:hover .react-film__flipper__body': {
165
- backgroundColor: string;
166
- color: string;
167
- };
168
- };
169
- };
170
- };
171
- readonly connectivityNotification: {
172
- alignItems: string;
173
- color: string;
174
- display: string;
175
- fontFamily: string;
176
- fontSize: string | number;
177
- marginBottom: number;
178
- marginLeft: number;
179
- marginRight: number;
180
- marginTop: number;
181
- };
182
- readonly dictationInterims: {
183
- fontFamily: string;
184
- margin: number;
185
- paddingBottom: number;
186
- paddingLeft: number;
187
- paddingRight: number;
188
- paddingTop: number;
189
- '&.dictating > span:not(:first-child), &.status': {
190
- opacity: number;
191
- };
192
- };
193
- readonly errorBox: {
194
- display: string;
195
- flexDirection: string;
196
- fontFamily: string;
197
- margin: number;
198
- minHeight: number;
199
- maxHeight: number;
200
- overflowY: string;
201
- WebkitOverflowScrolling: string;
202
- '& > :first-child': {
203
- backgroundColor: string;
204
- color: string;
205
- padding: string;
206
- };
207
- '& > :last-child': {
208
- borderColor: string;
209
- borderStyle: string;
210
- borderBottomWidth: number;
211
- borderLeftWidth: number;
212
- borderRightWidth: number;
213
- borderTopWidth: number;
214
- margin: number;
215
- overflowY: string;
216
- padding: number;
217
- '& > pre': {
218
- fontFamily: string;
219
- fontSize: string;
220
- margin: number;
221
- };
222
- };
223
- };
224
- readonly errorNotification: {
225
- alignItems: string;
226
- color: string | number;
227
- display: string;
228
- fontFamily: string;
229
- fontSize: string | number;
230
- fontWeight: string;
231
- marginBottom: number;
232
- marginLeft: number;
233
- marginRight: number;
234
- marginTop: number;
235
- '& > svg': {
236
- fill: string | number;
237
- '&:not(.webchat__error--rtl)': {
238
- paddingRight: number;
239
- };
240
- '&.webchat__error--rtl': {
241
- paddingLeft: number;
242
- };
243
- };
244
- };
245
- readonly fileContent: {
246
- color: string;
247
- display: string;
248
- fontFamily: string;
249
- padding: number;
250
- '& .webchat__fileContent__badge': {
251
- justifyContent: string;
252
- };
253
- '& .webchat__fileContent__buttonLink': {
254
- alignItems: string;
255
- color: string;
256
- textDecoration: string;
257
- '&:focus': {
258
- backgroundColor: string;
259
- };
260
- };
261
- '& .webchat__fileContent__downloadIcon': {
262
- fill: string;
263
- padding: number;
264
- '&:not(.webchat__fileContent__downloadIcon--rtl)': {
265
- marginLeft: number;
266
- };
267
- '&.webchat__fileContent__downloadIcon--rtl': {
268
- marginRight: number;
269
- };
270
- };
271
- '& .webchat__fileContent__fileName': {
272
- color: string;
273
- };
274
- };
275
- readonly imageAvatar: {
276
- height: number;
277
- overflow: string;
278
- width: number;
279
- };
280
- readonly initialsAvatar: {
281
- '&.webchat__initialsAvatar': {
282
- alignItems: string;
283
- color: string;
284
- fontFamily: string;
285
- height: number;
286
- justifyContent: string;
287
- overflow: string;
288
- width: number;
289
- '&.webchat__initialsAvatar--fromUser': {
290
- backgroundColor: string;
291
- };
292
- '&:not(.webchat__initialsAvatar--fromUser)': {
293
- backgroundColor: string;
294
- };
295
- };
296
- };
297
- readonly microphoneButton: {
298
- '&.webchat__microphone-button': {
299
- '&.webchat__microphone-button--dictating .webchat__microphone-button__button': {
300
- '&, &:focus, &:hover': {
301
- '& .webchat__microphone-button__icon': {
302
- fill: string;
303
- };
304
- };
305
- };
306
- };
307
- };
308
- readonly options: {
309
- readonly accent: string;
310
- readonly backgroundColor: string;
311
- readonly subtle: string;
312
- readonly paddingRegular: number;
313
- readonly paddingWide: number;
314
- readonly transitionDuration: string;
315
- readonly fontSizeSmall: string | number;
316
- readonly monospaceFont: string;
317
- readonly primaryFont: string;
318
- readonly rootHeight: string | number;
319
- readonly rootWidth: string | number;
320
- readonly rootZIndex: number;
321
- readonly avatarBorderRadius: string | number;
322
- readonly avatarSize: number;
323
- readonly botAvatarBackgroundColor: string;
324
- readonly botAvatarImage: string;
325
- readonly botAvatarInitials: string;
326
- readonly userAvatarBackgroundColor: string;
327
- readonly userAvatarImage: string;
328
- readonly userAvatarInitials: string;
329
- readonly showAvatarInGroup: true | "sender" | "status";
330
- readonly bubbleBackground: string;
331
- readonly bubbleBorderColor: string;
332
- readonly bubbleBorderRadius: number;
333
- readonly bubbleBorderStyle: string;
334
- readonly bubbleBorderWidth: number;
335
- readonly bubbleFromUserBackground: string;
336
- readonly bubbleFromUserBorderColor: string;
337
- readonly bubbleFromUserBorderRadius: number;
338
- readonly bubbleFromUserBorderStyle: string;
339
- readonly bubbleFromUserBorderWidth: number;
340
- readonly bubbleFromUserNubOffset: number;
341
- readonly bubbleFromUserNubSize: number;
342
- readonly bubbleFromUserTextColor: string;
343
- readonly bubbleImageHeight: number;
344
- readonly bubbleMaxWidth: number;
345
- readonly bubbleMinHeight: number;
346
- readonly bubbleMinWidth: number;
347
- readonly bubbleNubOffset: number;
348
- readonly bubbleNubSize: number;
349
- readonly bubbleTextColor: string;
350
- readonly messageActivityWordBreak: "break-word" | "normal" | "break-all" | "keep-all";
351
- readonly connectivityIconPadding: number;
352
- readonly connectivityMarginLeftRight: number;
353
- readonly connectivityMarginTopBottom: number;
354
- readonly connectivityTextSize: string | number;
355
- readonly failedConnectivity: string | number;
356
- readonly slowConnectivity: string;
357
- readonly notificationText: string;
358
- readonly slowConnectionAfter: number;
359
- readonly emojiSet: (boolean | Record<string, string>) & (false | Record<string, string>);
360
- readonly internalLiveRegionFadeAfter: number;
361
- readonly markdownRespectCRLF: boolean;
362
- readonly markdownRenderHTML: boolean;
363
- readonly markdownExternalLinkIconImage: string;
364
- readonly autoScrollSnapOnActivity: number | boolean;
365
- readonly autoScrollSnapOnActivityOffset: number;
366
- readonly autoScrollSnapOnPage: number | boolean;
367
- readonly autoScrollSnapOnPageOffset: number;
368
- readonly hideSendBox: boolean;
369
- readonly hideUploadButton: boolean;
370
- readonly hideTelephoneKeypadButton: boolean;
371
- readonly microphoneButtonColorOnDictate: string;
372
- readonly sendBoxBackground: string;
373
- readonly uploadAccept: string;
374
- readonly uploadMultiple: boolean;
375
- readonly sendAttachmentOn: "attach" | "send";
376
- readonly sendBoxButtonColor: string;
377
- readonly sendBoxButtonShadeBorderRadius: number;
378
- readonly sendBoxButtonShadeColor: string;
379
- readonly sendBoxButtonShadeInset: number;
380
- readonly sendBoxButtonColorOnActive: string;
381
- readonly sendBoxButtonShadeColorOnActive: string;
382
- readonly sendBoxButtonColorOnDisabled: string;
383
- readonly sendBoxButtonShadeColorOnDisabled: string;
384
- readonly sendBoxButtonColorOnFocus: string;
385
- readonly sendBoxButtonShadeColorOnFocus: string;
386
- readonly sendBoxButtonColorOnHover: string;
387
- readonly sendBoxButtonShadeColorOnHover: string;
388
- readonly sendBoxButtonKeyboardFocusIndicatorBorderColor: string;
389
- readonly sendBoxButtonKeyboardFocusIndicatorBorderRadius: string | number;
390
- readonly sendBoxButtonKeyboardFocusIndicatorBorderStyle: string;
391
- readonly sendBoxButtonKeyboardFocusIndicatorBorderWidth: number;
392
- readonly sendBoxButtonKeyboardFocusIndicatorInset: number;
393
- readonly sendBoxDisabledTextColor: string;
394
- readonly sendBoxHeight: string | number;
395
- readonly sendBoxMaxHeight: string | number;
396
- readonly sendBoxTextColor: string;
397
- readonly sendBoxBorderBottom: string | number;
398
- readonly sendBoxBorderLeft: string | number;
399
- readonly sendBoxBorderRight: string | number;
400
- readonly sendBoxBorderTop: string | number;
401
- readonly sendBoxPlaceholderColor: string;
402
- readonly sendBoxTextWrap: boolean;
403
- readonly sendBoxButtonAlignment: "bottom" | "top" | "stretch";
404
- readonly showSpokenText: boolean;
405
- readonly spinnerAnimationBackgroundImage: string;
406
- readonly spinnerAnimationHeight: string | number;
407
- readonly spinnerAnimationWidth: string | number;
408
- readonly spinnerAnimationPadding: string | number;
409
- readonly suggestedActionBorderRadius: string | number;
410
- readonly suggestedActionBackground: string;
411
- readonly suggestedActionBackgroundColor: string;
412
- readonly suggestedActionBorderColor: string;
413
- readonly suggestedActionBorderStyle: string;
414
- readonly suggestedActionBorderWidth: number;
415
- readonly suggestedActionTextColor: string;
416
- readonly suggestedActionBackgroundColorOnDisabled: string;
417
- readonly suggestedActionBorderColorOnDisabled: string;
418
- readonly suggestedActionBorderStyleOnDisabled: string;
419
- readonly suggestedActionBorderWidthOnDisabled: number;
420
- readonly suggestedActionTextColorOnDisabled: string;
421
- readonly suggestedActionBackgroundColorOnActive: string;
422
- readonly suggestedActionBorderColorOnActive: string;
423
- readonly suggestedActionBorderStyleOnActive: string;
424
- readonly suggestedActionBorderWidthOnActive: number;
425
- readonly suggestedActionTextColorOnActive: string;
426
- readonly suggestedActionBackgroundColorOnFocus: string;
427
- readonly suggestedActionBorderColorOnFocus: string;
428
- readonly suggestedActionBorderStyleOnFocus: string;
429
- readonly suggestedActionBorderWidthOnFocus: number;
430
- readonly suggestedActionTextColorOnFocus: string;
431
- readonly suggestedActionBackgroundColorOnHover: string;
432
- readonly suggestedActionBorderColorOnHover: string;
433
- readonly suggestedActionBorderStyleOnHover: string;
434
- readonly suggestedActionBorderWidthOnHover: number;
435
- readonly suggestedActionTextColorOnHover: string;
436
- readonly suggestedActionDisabledBackground: string;
437
- readonly suggestedActionDisabledBorderColor: string;
438
- readonly suggestedActionDisabledBorderStyle: string;
439
- readonly suggestedActionDisabledBorderWidth: number;
440
- readonly suggestedActionDisabledTextColor: string;
441
- readonly suggestedActionHeight: string | number;
442
- readonly suggestedActionImageHeight: string | number;
443
- readonly suggestedActionLayout: "carousel" | "flow" | "stacked";
444
- readonly suggestedActionKeyboardFocusIndicatorBorderColor: string;
445
- readonly suggestedActionKeyboardFocusIndicatorBorderRadius: string | number;
446
- readonly suggestedActionKeyboardFocusIndicatorBorderStyle: string;
447
- readonly suggestedActionKeyboardFocusIndicatorBorderWidth: number;
448
- readonly suggestedActionKeyboardFocusIndicatorInset: number;
449
- readonly suggestedActionActiveBackground: string;
450
- readonly suggestedActionFocusBackground: string;
451
- readonly suggestedActionHoverBackground: string;
452
- readonly suggestedActionsCarouselFlipperCursor: string;
453
- readonly suggestedActionsCarouselFlipperBoxWidth: number;
454
- readonly suggestedActionsCarouselFlipperSize: number;
455
- readonly suggestedActionsFlowMaxHeight: undefined;
456
- readonly suggestedActionsStackedHeight: number | "auto";
457
- readonly suggestedActionsStackedOverflow: "hidden" | "auto" | "scroll" | "visible";
458
- readonly suggestedActionsStackedLayoutButtonMaxHeight: string | number;
459
- readonly suggestedActionsStackedLayoutButtonTextWrap: boolean;
460
- readonly suggestedActionsVisualKeyboardIndicatorColor: string;
461
- readonly suggestedActionsVisualKeyboardIndicatorStyle: string;
462
- readonly suggestedActionsVisualKeyboardIndicatorWidth: number;
463
- readonly groupTimestamp: number | boolean;
464
- readonly sendTimeout: number | ((activity: import("botframework-webchat-core").WebChatActivity) => number);
465
- readonly sendTimeoutForAttachments: number;
466
- readonly timestampColor: string;
467
- readonly timestampFormat: "absolute" | "relative";
468
- readonly transcriptTerminatorBackgroundColor: string;
469
- readonly transcriptTerminatorBorderRadius: string | number;
470
- readonly transcriptTerminatorColor: string;
471
- readonly transcriptTerminatorFontSize: string | number;
472
- readonly transcriptActivityVisualKeyboardIndicatorColor: string;
473
- readonly transcriptActivityVisualKeyboardIndicatorStyle: string;
474
- readonly transcriptActivityVisualKeyboardIndicatorWidth: string | number;
475
- readonly transcriptVisualKeyboardIndicatorColor: string;
476
- readonly transcriptVisualKeyboardIndicatorStyle: string;
477
- readonly transcriptVisualKeyboardIndicatorWidth: string | number;
478
- readonly scrollToEndButtonBehavior: false | "any" | "unread";
479
- readonly scrollToEndButtonFontSize: string | number;
480
- readonly transcriptOverlayButtonBackground: string;
481
- readonly transcriptOverlayButtonBackgroundOnDisabled: string;
482
- readonly transcriptOverlayButtonBackgroundOnFocus: string;
483
- readonly transcriptOverlayButtonBackgroundOnHover: string;
484
- readonly transcriptOverlayButtonColor: string;
485
- readonly transcriptOverlayButtonColorOnDisabled: string;
486
- readonly transcriptOverlayButtonColorOnFocus: string;
487
- readonly transcriptOverlayButtonColorOnHover: string;
488
- readonly notificationDebounceTimeout: number;
489
- readonly hideToaster: boolean;
490
- readonly toasterHeight: string | number;
491
- readonly toasterMaxHeight: string | number;
492
- readonly toasterSingularMaxHeight: string | number;
493
- readonly toastFontSize: string | number;
494
- readonly toastIconWidth: string | number;
495
- readonly toastSeparatorColor: string;
496
- readonly toastTextPadding: string | number;
497
- readonly toastErrorBackgroundColor: string;
498
- readonly toastErrorColor: string;
499
- readonly toastInfoBackgroundColor: string;
500
- readonly toastInfoColor: string;
501
- readonly toastSuccessBackgroundColor: string;
502
- readonly toastSuccessColor: string;
503
- readonly toastWarnBackgroundColor: string;
504
- readonly toastWarnColor: string;
505
- readonly typingAnimationBackgroundImage: string;
506
- readonly typingAnimationDuration: number;
507
- readonly typingAnimationHeight: string | number;
508
- readonly typingAnimationWidth: string | number;
509
- readonly enableUploadThumbnail: boolean;
510
- readonly uploadThumbnailContentType: string;
511
- readonly uploadThumbnailHeight: number;
512
- readonly uploadThumbnailQuality: number;
513
- readonly uploadThumbnailWidth: number;
514
- readonly videoHeight: string | number;
515
- readonly maxMessageLength: number;
516
- };
517
- readonly root: {
518
- backgroundColor: string;
519
- height: string | number;
520
- width: string | number;
521
- zIndex: number;
522
- };
523
- readonly scrollToEndButton: {
524
- '&.webchat__scroll-to-end-button': {
525
- '@media screen and (forced-colors: active)': {
526
- borderWidth: string;
527
- outline: string;
528
- };
529
- appearance: string;
530
- backgroundColor: string;
531
- borderRadius: number;
532
- borderWidth: number;
533
- bottom: number;
534
- color: string;
535
- fontFamily: string;
536
- fontSize: string | number;
537
- outline: number;
538
- padding: number;
539
- position: string;
540
- zIndex: number;
541
- '&:hover': {
542
- backgroundColor: string;
543
- color: string;
544
- };
545
- '&:focus': {
546
- backgroundColor: string;
547
- color: string;
548
- };
549
- '&:not(.webchat__scroll-to-end-button--rtl)': {
550
- right: number;
551
- };
552
- '&.webchat__scroll-to-end-button--rtl': {
553
- left: number;
554
- };
555
- };
556
- };
557
- readonly sendBox: {
558
- '&.webchat__send-box': {
559
- '& .webchat__send-box__button--align-bottom': {
560
- alignSelf: string;
561
- };
562
- '& .webchat__send-box__button--align-stretch': {
563
- alignSelf: string;
564
- };
565
- '& .webchat__send-box__button--align-top': {
566
- alignSelf: string;
567
- };
568
- '& .webchat__send-box__main': {
569
- alignItems: string;
570
- backgroundColor: string;
571
- borderBottom: string | number;
572
- borderLeft: string | number;
573
- borderRight: string | number;
574
- borderTop: string | number;
575
- minHeight: string | number;
576
- };
577
- };
578
- };
579
- readonly sendBoxButton: {
580
- '&.webchat__icon-button': {
581
- alignItems: string;
582
- appearance: string;
583
- backgroundColor: string;
584
- border: number;
585
- display: string;
586
- fill: string;
587
- justifyContent: string;
588
- outline: number;
589
- padding: number;
590
- position: string;
591
- width: string | number;
592
- '&:not(.webchat__icon-button--stretch)': {
593
- height: string | number;
594
- };
595
- '&:disabled, &[aria-disabled="true"]': {
596
- fill: string;
597
- '& .webchat__icon-button__shade': {
598
- backgroundColor: string;
599
- };
600
- };
601
- '&:not(:disabled):not([aria-disabled="true"])': {
602
- '&:active': {
603
- fill: string;
604
- '& .webchat__icon-button__shade': {
605
- backgroundColor: string;
606
- };
607
- };
608
- '&:not(:active)': {
609
- '&:hover': {
610
- fill: string;
611
- '& .webchat__icon-button__shade': {
612
- backgroundColor: string;
613
- };
614
- };
615
- '&:not(:hover)': {
616
- '&:focus': {
617
- fill: string;
618
- '& .webchat__icon-button__shade': {
619
- backgroundColor: string;
620
- };
621
- };
622
- };
623
- };
624
- };
625
- '&:not(:focus-visible) .webchat__icon-button__keyboard-focus-indicator': {
626
- display: string;
627
- };
628
- '&:not(.webchat__icon-button--focus-visible) .webchat__icon-button__keyboard-focus-indicator': {
629
- display: string;
630
- };
631
- '& > *': {
632
- position: string;
633
- };
634
- '& .webchat__icon-button__shade': {
635
- backgroundColor: string;
636
- borderRadius: number;
637
- bottom: number;
638
- left: number;
639
- position: string;
640
- right: number;
641
- top: number;
642
- };
643
- '& .webchat__icon-button__keyboard-focus-indicator': {
644
- borderColor: string;
645
- borderRadius: string | number;
646
- borderStyle: string;
647
- borderWidth: number;
648
- bottom: number;
649
- left: number;
650
- position: string;
651
- right: number;
652
- top: number;
653
- };
654
- };
655
- };
656
- readonly sendBoxTextBox: {
657
- '&.webchat__send-box-text-box': {
658
- alignItems: string;
659
- fontFamily: string;
660
- padding: number;
661
- position: string;
662
- '& .webchat__send-box-text-box__input': {
663
- border: number;
664
- fontFamily: string;
665
- fontSize: string;
666
- height: string;
667
- outline: number;
668
- padding: number;
669
- };
670
- '& .webchat__send-box-text-box__input, & .webchat__send-box-text-box__html-text-area': {
671
- backgroundColor: string;
672
- '&:not(:disabled):not([aria-disabled="true"])': {
673
- color: string;
674
- };
675
- '&:disabled, &[aria-disabled="true"]': {
676
- color: string;
677
- };
678
- '&::placeholder': {
679
- color: string;
680
- };
681
- };
682
- '& .webchat__send-box-text-box__input, & .webchat__send-box-text-box__text-area': {
683
- maxHeight: string | number;
684
- };
685
- '& .webchat__send-box-text-box__glass': {
686
- height: string;
687
- left: number;
688
- position: string;
689
- top: number;
690
- userSelect: number;
691
- width: string;
692
- };
693
- };
694
- };
695
- readonly singleAttachmentActivity: {
696
- '& > .bubble-box': {
697
- maxWidth: number;
698
- minWidth: number;
699
- };
700
- '& > .filler': {
701
- minWidth: number;
702
- };
703
- };
704
- readonly spinnerAnimation: {
705
- backgroundImage: string;
706
- backgroundRepeat: string;
707
- backgroundSize: string;
708
- height: string | number;
709
- width: string | number;
710
- ':not(.webchat__spinner--rtl)': {
711
- marginRight: string | number;
712
- };
713
- '.webchat__spinner--rtl': {
714
- marginLeft: string | number;
715
- };
716
- };
717
- readonly stackedLayout: {
718
- '&.webchat__stacked-layout': {
719
- marginLeft: number;
720
- marginRight: number;
721
- '& .webchat__stacked-layout__alignment-pad': {
722
- transitionDuration: string;
723
- transitionProperty: string;
724
- width: number;
725
- };
726
- '&.webchat__stacked-layout--extra-trailing .webchat__stacked-layout__alignment-pad': {
727
- width: number;
728
- };
729
- '& .webchat__stacked-layout__avatar-gutter': {
730
- transitionDuration: string;
731
- transitionProperty: string;
732
- width: number;
733
- };
734
- '& .webchat__stacked-layout__attachment': {
735
- maxWidth: number;
736
- minWidth: number;
737
- transitionDuration: string;
738
- transitionProperty: string;
739
- };
740
- '& .webchat__stacked-layout__attachment-row': {
741
- marginTop: number;
742
- width: string;
743
- };
744
- '&.webchat__stacked-layout--no-message .webchat__stacked-layout__attachment-row.webchat__stacked-layout__attachment-row--first': {
745
- marginTop: number;
746
- };
747
- '& .webchat__stacked-layout__message': {
748
- maxWidth: number;
749
- overflow: string;
750
- transitionDuration: string;
751
- transitionProperty: string;
752
- };
753
- '& .webchat__stacked-layout__nub-pad': {
754
- transitionDuration: string;
755
- transitionProperty: string;
756
- width: number;
757
- };
758
- '&.webchat__stacked-layout--hide-avatar, &.webchat__stacked-layout--show-avatar': {
759
- '& .webchat__stacked-layout__avatar-gutter': {
760
- width: number;
761
- };
762
- };
763
- '&.webchat__stacked-layout--hide-avatar, &.webchat__stacked-layout--show-avatar, &.webchat__stacked-layout--hide-nub, &.webchat__stacked-layout--show-nub': {
764
- '& .webchat__stacked-layout__attachment, & .webchat__stacked-layout__message': {
765
- maxWidth: number;
766
- };
767
- '& .webchat__stacked-layout__nub-pad': {
768
- width: number;
769
- };
770
- };
771
- '&:not(.webchat__stacked-layout--top-callout)': {
772
- '& .webchat__stacked-layout__avatar-gutter, & .webchat__stacked-layout__content': {
773
- justifyContent: string;
774
- };
775
- };
776
- };
777
- };
778
- readonly suggestedAction: {
779
- '&.webchat__suggested-action': {
780
- alignItems: string;
781
- background: string;
782
- backgroundColor: string;
783
- borderColor: string;
784
- borderRadius: string | number;
785
- borderStyle: string;
786
- borderWidth: number;
787
- color: string;
788
- fontFamily: string;
789
- fontSize: string;
790
- height: string | number;
791
- justifyContent: string;
792
- maxWidth: string;
793
- outline: number;
794
- paddingLeft: number;
795
- paddingRight: number;
796
- position: string;
797
- whiteSpace: string;
798
- width: string;
799
- '&:disabled, &[aria-disabled="true"]': {
800
- background: string;
801
- backgroundColor: string;
802
- borderColor: string;
803
- borderStyle: string;
804
- borderWidth: number;
805
- color: string;
806
- };
807
- '&:not(:disabled):not([aria-disabled="true"])': {
808
- '&:active': {
809
- background: string;
810
- backgroundColor: string;
811
- borderColor: string;
812
- borderStyle: string;
813
- borderWidth: number;
814
- color: string;
815
- };
816
- '&:not(:active)': {
817
- '&:hover': {
818
- background: string;
819
- backgroundColor: string;
820
- borderColor: string;
821
- borderStyle: string;
822
- borderWidth: number;
823
- color: string;
824
- };
825
- '&:not(:hover)': {
826
- '&:focus': {
827
- background: string;
828
- backgroundColor: string;
829
- borderColor: string;
830
- borderStyle: string;
831
- borderWidth: number;
832
- color: string;
833
- };
834
- };
835
- };
836
- };
837
- '&:not(:focus-visible) .webchat__suggested-action__keyboard-focus-indicator': {
838
- display: string;
839
- };
840
- '&:not(.webchat__suggested-action--focus-visible) .webchat__suggested-action__keyboard-focus-indicator': {
841
- display: string;
842
- };
843
- '&:not(.webchat__suggested-action--rtl) .webchat__suggested-action__image + .webchat__suggested-action__text': {
844
- paddingLeft: number;
845
- };
846
- '&.webchat__suggested-action--rtl .webchat__suggested-action__image + .webchat__suggested-action__text': {
847
- paddingRight: number;
848
- };
849
- '&.webchat__suggested-action--wrapping': {
850
- height: string;
851
- maxHeight: string | number;
852
- minHeight: string | number;
853
- };
854
- '& .webchat__suggested-action__image': {
855
- height: string | number;
856
- };
857
- '& .webchat__suggested-action__keyboard-focus-indicator': {
858
- borderColor: string;
859
- borderRadius: string | number;
860
- borderStyle: string;
861
- borderWidth: number;
862
- bottom: number;
863
- left: number;
864
- position: string;
865
- right: number;
866
- top: number;
867
- };
868
- };
869
- };
870
- readonly suggestedActions: {
871
- '&.webchat__suggested-actions': {
872
- position: string;
873
- '&.webchat__suggested-actions--carousel-layout': {
874
- '& .webchat__suggested-actions__carousel': {
875
- paddingBottom: number;
876
- paddingTop: number;
877
- '& .webchat__suggested-actions__item-box': {
878
- paddingBottom: number;
879
- paddingLeft: number;
880
- paddingRight: number;
881
- paddingTop: number;
882
- };
883
- '& .react-film__filmstrip': {
884
- scrollbarWidth: string;
885
- };
886
- '& .react-film__flipper': {
887
- '&:disabled, &[aria-disabled="true"]': {
888
- '& .react-film__flipper__body': {
889
- backgroundColor: string;
890
- color: string;
891
- };
892
- };
893
- '&:focus .react-film__flipper__body': {
894
- backgroundColor: string;
895
- color: string;
896
- };
897
- '&:hover .react-film__flipper__body': {
898
- backgroundColor: string;
899
- color: string;
900
- };
901
- '& .react-film__flipper__body': {
902
- background: string;
903
- color: string;
904
- outline: number;
905
- };
906
- };
907
- };
908
- '&:not(.webchat__suggested-actions--rtl)': {
909
- '& .react-film__filmstrip__item:first-child': {
910
- paddingLeft: number;
911
- };
912
- '& .react-film__filmstrip__item:last-child': {
913
- paddingRight: number;
914
- };
915
- '& .react-film__flipper + .react-film__filmstrip': {
916
- '& .react-film__filmstrip__item:first-child': {
917
- paddingLeft: number;
918
- };
919
- '& .react-film__filmstrip__item:last-child': {
920
- paddingRight: number;
921
- };
922
- };
923
- };
924
- '&.webchat__suggested-actions--rtl': {
925
- '& .react-film__filmstrip__item:first-child': {
926
- paddingRight: number;
927
- };
928
- '& .react-film__filmstrip__item:last-child': {
929
- paddingLeft: number;
930
- };
931
- '& .react-film__flipper + .react-film__filmstrip': {
932
- '& .react-film__filmstrip__item:first-child': {
933
- paddingRight: number;
934
- };
935
- '& .react-film__filmstrip__item:last-child': {
936
- paddingLeft: number;
937
- };
938
- };
939
- };
940
- };
941
- '&.webchat__suggested-actions--flow-layout': {
942
- '& .webchat__suggested-actions__flow-box': {
943
- maxHeight: undefined;
944
- overflowY: string;
945
- paddingBottom: number;
946
- paddingLeft: number;
947
- paddingRight: number;
948
- paddingTop: number;
949
- };
950
- '& .webchat__suggested-actions__flow-item-box': {
951
- maxWidth: string;
952
- overflow: string;
953
- };
954
- '& .webchat__suggested-actions__item-box': {
955
- paddingBottom: number;
956
- paddingLeft: number;
957
- paddingRight: number;
958
- paddingTop: number;
959
- };
960
- };
961
- '&.webchat__suggested-actions--stacked-layout': {
962
- '& .webchat__suggested-actions__stack': {
963
- maxHeight: number | "auto";
964
- overflowY: "hidden" | "auto" | "scroll" | "visible";
965
- paddingBottom: number;
966
- paddingLeft: number;
967
- paddingRight: number;
968
- paddingTop: number;
969
- };
970
- '& .webchat__suggested-actions__item-box': {
971
- paddingBottom: number;
972
- paddingLeft: number;
973
- paddingRight: number;
974
- paddingTop: number;
975
- };
976
- };
977
- '&.webchat__suggested-actions--flow-layout, &.webchat__suggested-actions--stacked-layout': {
978
- '& .webchat__suggested-actions__button-text': {
979
- overflow: string;
980
- textOverflow: string;
981
- };
982
- '& .webchat__suggested-actions__button-text-stacked-text-wrap': {
983
- alignItems: string;
984
- display: string;
985
- whiteSpace: string;
986
- };
987
- };
988
- '& .webchat__suggested-actions__item-box': {
989
- display: string;
990
- maxWidth: string;
991
- };
992
- '&.webchat__suggested-actions--focus-within, &:focus-within': {
993
- '& .webchat__suggested-actions__focus-indicator': {
994
- borderColor: string;
995
- borderStyle: string;
996
- borderWidth: number;
997
- boxSizing: string;
998
- height: string;
999
- pointerEvents: string;
1000
- position: string;
1001
- top: number;
1002
- width: string;
1003
- };
1004
- };
1005
- };
1006
- };
1007
- readonly toast: {
1008
- fontFamily: string;
1009
- fontSize: string | number;
1010
- minHeight: string | number;
1011
- '&.webchat__toast--error': {
1012
- color: string;
1013
- fill: string;
1014
- };
1015
- '&.webchat__toast--info': {
1016
- color: string;
1017
- fill: string;
1018
- };
1019
- '&.webchat__toast--success': {
1020
- color: string;
1021
- fill: string;
1022
- };
1023
- '&.webchat__toast--warn': {
1024
- color: string;
1025
- fill: string;
1026
- };
1027
- '& .webchat__toast__iconBox': {
1028
- alignItems: string;
1029
- display: string;
1030
- flexShrink: number;
1031
- height: string | number;
1032
- justifyContent: string;
1033
- width: string | number;
1034
- };
1035
- '& .webchat__toast__dismissButton': {
1036
- alignItems: string;
1037
- appearance: string;
1038
- backgroundColor: string;
1039
- border: number;
1040
- display: string;
1041
- height: string | number;
1042
- justifyContent: string;
1043
- outline: number;
1044
- padding: number;
1045
- width: string | number;
1046
- '&:focus .webchat__toast__dismissButtonFocus': {
1047
- borderColor: string;
1048
- };
1049
- '&:hover .webchat__toast__dismissButtonFocus': {
1050
- backgroundColor: string;
1051
- };
1052
- };
1053
- '& .webchat__toast__dismissButtonFocus': {
1054
- alignItems: string;
1055
- borderColor: string;
1056
- borderStyle: string;
1057
- borderWidth: number;
1058
- borderRadius: number;
1059
- display: string;
1060
- height: number;
1061
- justifyContent: string;
1062
- width: number;
1063
- };
1064
- '& .webchat__toast__text': {
1065
- alignSelf: string;
1066
- paddingBottom: string | number;
1067
- paddingTop: string | number;
1068
- };
1069
- };
1070
- readonly toaster: {
1071
- overflowY: string;
1072
- '&:not(.webchat__toaster--expandable)': {
1073
- maxHeight: string | number;
1074
- };
1075
- '&.webchat__toaster--expandable:not(.webchat__toaster--expanded) > ul': {
1076
- height: number;
1077
- };
1078
- '&.webchat__toaster--expandable.webchat__toaster--expanded': {
1079
- maxHeight: string | number;
1080
- };
1081
- '& .webchat__toaster__header': {
1082
- alignItems: string;
1083
- alignSelf: string;
1084
- appearance: string;
1085
- backgroundColor: string;
1086
- border: number;
1087
- display: string;
1088
- fontFamily: string;
1089
- fontSize: string | number;
1090
- minHeight: string | number;
1091
- outline: number;
1092
- padding: number;
1093
- textAlign: string;
1094
- '&:focus .webchat__toaster__expandIconFocus': {
1095
- borderColor: string;
1096
- };
1097
- '&:hover .webchat__toaster__expandIconFocus': {
1098
- backgroundColor: string;
1099
- };
1100
- };
1101
- '& .webchat__toaster__expandIconFocus': {
1102
- alignItems: string;
1103
- borderColor: string;
1104
- borderStyle: string;
1105
- borderWidth: number;
1106
- borderRadius: number;
1107
- display: string;
1108
- height: number;
1109
- justifyContent: string;
1110
- width: number;
1111
- };
1112
- '&.webchat__toaster--error': {
1113
- '&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
1114
- backgroundColor: string;
1115
- };
1116
- '& .webchat__toaster__header': {
1117
- color: string;
1118
- fill: string;
1119
- };
1120
- };
1121
- '&.webchat__toaster--info': {
1122
- '&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
1123
- backgroundColor: string;
1124
- };
1125
- '& .webchat__toaster__header': {
1126
- color: string;
1127
- fill: string;
1128
- };
1129
- };
1130
- '&.webchat__toaster--success': {
1131
- '&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
1132
- backgroundColor: string;
1133
- };
1134
- '& .webchat__toaster__header': {
1135
- color: string;
1136
- fill: string;
1137
- };
1138
- };
1139
- '&.webchat__toaster--warn': {
1140
- '&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
1141
- backgroundColor: string;
1142
- };
1143
- '& .webchat__toaster__header': {
1144
- color: string;
1145
- fill: string;
1146
- };
1147
- };
1148
- '& .webchat__toaster__expandLevelIconBox': {
1149
- height: string | number;
1150
- width: string | number;
1151
- };
1152
- '& .webchat__toaster__expandIcon': {
1153
- height: string | number;
1154
- width: string | number;
1155
- };
1156
- '& .webchat__toaster__expandText': {
1157
- padding: string;
1158
- };
1159
- '& .webchat__toaster__expandLevelIconBox, & .webchat__toaster__expandIcon': {
1160
- alignItems: string;
1161
- display: string;
1162
- justifyContent: string;
1163
- };
1164
- '& .webchat__toaster__list': {
1165
- margin: number;
1166
- overflowY: string;
1167
- padding: number;
1168
- };
1169
- '& .webchat__toaster__listItem:first-child:last-child': {
1170
- overflow: string;
1171
- };
1172
- '& .webchat__toaster__listItem:not(:first-child), & .webchat__toaster__listItem:not(:last-child)': {
1173
- borderBottomColor: string;
1174
- borderBottomStyle: string;
1175
- borderBottomWidth: number;
1176
- minHeight: number;
1177
- };
1178
- };
1179
- readonly typingAnimation: {
1180
- backgroundImage: string;
1181
- backgroundRepeat: string;
1182
- height: string | number;
1183
- width: string | number;
1184
- };
1185
- readonly typingIndicator: {
1186
- paddingBottom: number;
1187
- '&:not(.webchat__typingIndicator--rtl)': {
1188
- paddingLeft: number;
1189
- };
1190
- '&.webchat__typingIndicator--rtl': {
1191
- paddingRight: number;
1192
- };
1193
- };
1194
- readonly uploadButton: {
1195
- width: string | number;
1196
- '& > .icon > svg': {
1197
- fill: string;
1198
- };
1199
- '& > input:hover + .icon > svg': {
1200
- fill: string;
1201
- };
1202
- '& > input:focus + .icon > svg': {
1203
- fill: string;
1204
- };
1205
- };
1206
- readonly videoAttachment: {};
1207
- readonly videoContent: {
1208
- height: string | number;
1209
- width: string;
1210
- };
1211
- readonly vimeoContent: {
1212
- border: number;
1213
- height: string | number;
1214
- width: string;
1215
- };
1216
- readonly warningNotification: {
1217
- alignItems: string;
1218
- color: string;
1219
- display: string;
1220
- fontFamily: string;
1221
- fontSize: string | number;
1222
- marginBottom: number;
1223
- marginLeft: number;
1224
- marginRight: number;
1225
- marginTop: number;
1226
- '& > svg': {
1227
- fill: string;
1228
- '&:not(webchat__warning--rtl)': {
1229
- paddingRight: number;
1230
- };
1231
- '&.webchat__warning--rtl': {
1232
- paddingLeft: number;
1233
- };
1234
- };
1235
- };
1236
- readonly youTubeContent: {
1237
- border: number;
1238
- height: string | number;
1239
- width: string;
1240
- };
1241
- readonly citationModalDialog: {
1242
- '&.webchat__citation-modal-dialog': {
1243
- '& .webchat__citation-modal-dialog__body': {
1244
- lineHeight: string;
1245
- };
1246
- };
1247
- };
1248
- readonly cssCustomProperties: {
1249
- '&.webchat__css-custom-properties': {
1250
- display: string;
1251
- "--webchat__color--accent": string;
1252
- "--webchat__color--subtle": string;
1253
- "--webchat__color--timestamp": string;
1254
- "--webchat__font--primary": string;
1255
- "--webchat__font-size--small": string | number;
1256
- "--webchat__icon-url--external-link": string;
1257
- "--webchat__max-width--bubble": string;
1258
- "--webchat__min-height--bubble": string;
1259
- "--webchat__padding--regular": string;
1260
- };
1261
- };
1262
- readonly linkDefinitions: {
1263
- '&.webchat__link-definitions': {
1264
- '.webchat__link-definitions__header': {
1265
- alignItems: string;
1266
- display: string;
1267
- fontFamily: "var(--webchat__font--primary)";
1268
- fontSize: "var(--webchat__font-size--small)";
1269
- gap: number;
1270
- listStyle: string;
1271
- "@media (forced-colors: none)": {
1272
- color: string;
1273
- };
1274
- "@media (forced-colors: none) and not (forced-colors: none)": {
1275
- color: string;
1276
- };
1277
- };
1278
- '.webchat__link-definitions__header-text': {
1279
- flexShrink: number;
1280
- };
1281
- '.webchat__link-definitions__header::-webkit-details-marker': {
1282
- display: string;
1283
- };
1284
- '.webchat__link-definitions__header-chevron': {
1285
- flexShrink: number;
1286
- };
1287
- '&:not([open]) .webchat__link-definitions__header-chevron': {
1288
- transform: string;
1289
- };
1290
- '.webchat__link-definitions__header-filler': {
1291
- flexGrow: number;
1292
- };
1293
- '.webchat__link-definitions__header-accessory': {
1294
- overflow: string;
1295
- };
1296
- '.webchat__link-definitions__message-sensitivity-label': {
1297
- display: string;
1298
- gap: number;
1299
- };
1300
- '.webchat__link-definitions__message-sensitivity-label-icon': {
1301
- color: string;
1302
- flexShrink: number;
1303
- };
1304
- '.webchat__link-definitions__message-sensitivity-label-text': {
1305
- overflow: string;
1306
- textOverflow: string;
1307
- whiteSpace: string;
1308
- };
1309
- '.webchat__link-definitions__list': {
1310
- display: string;
1311
- flexDirection: string;
1312
- gap: number;
1313
- margin: string;
1314
- padding: number;
1315
- };
1316
- '.webchat__link-definitions__list-item': {
1317
- display: string;
1318
- flexDirection: string;
1319
- };
1320
- '.webchat__link-definitions__badge': {
1321
- alignItems: string;
1322
- alignSelf: string;
1323
- borderRadius: string;
1324
- borderStyle: string;
1325
- borderWidth: number;
1326
- display: string;
1327
- flexShrink: number;
1328
- fontSize: string;
1329
- justifyContent: string;
1330
- margin: number;
1331
- minWidth: string;
1332
- overflow: string;
1333
- padding: number;
1334
- whiteSpace: string;
1335
- "@media (forced-colors: none)": {
1336
- backgroundColor: string;
1337
- borderColor: string;
1338
- color: string;
1339
- };
1340
- "@media (forced-colors: none) and not (forced-colors: none)": {
1341
- backgroundColor: string;
1342
- borderColor: string;
1343
- color: string;
1344
- };
1345
- "@media (forced-colors: active)": {
1346
- borderColor: string;
1347
- };
1348
- };
1349
- '.webchat__link-definitions__list-item-box': {
1350
- alignItems: string;
1351
- borderRadius: number;
1352
- borderStyle: string;
1353
- borderWidth: number;
1354
- "@media (forced-colors: none)": {
1355
- backgroundColor: string;
1356
- borderColor: string;
1357
- };
1358
- "@media (forced-colors: none) and not (forced-colors: none)": {
1359
- backgroundColor: string;
1360
- borderColor: string;
1361
- };
1362
- "@media (forced-colors: active)": {
1363
- backgroundColor: string;
1364
- borderColor: string;
1365
- };
1366
- };
1367
- '.webchat__link-definitions__list-item-box--as-link': {
1368
- display: string;
1369
- outlineOffset: number;
1370
- textDecoration: string;
1371
- };
1372
- '.webchat__link-definitions__list-item-box--as-button': {
1373
- appearance: string;
1374
- background: string;
1375
- cursor: string;
1376
- fontFamily: string;
1377
- fontSize: string;
1378
- overflow: string;
1379
- padding: number;
1380
- textAlign: string;
1381
- };
1382
- '.webchat__link-definitions__list-item-body': {
1383
- alignItems: string;
1384
- display: string;
1385
- fontFamily: string;
1386
- gap: number;
1387
- padding: number;
1388
- };
1389
- '.webchat__link-definitions__list-item-body-main': {
1390
- display: string;
1391
- flexDirection: string;
1392
- gap: number;
1393
- overflow: string;
1394
- };
1395
- '.webchat__link-definitions__list-item-main-text': {
1396
- alignItems: string;
1397
- display: string;
1398
- gap: number;
1399
- };
1400
- '.webchat__link-definitions__list-item-badge, .webchat__link-definitions__list-item-text': {
1401
- overflow: string;
1402
- textOverflow: string;
1403
- whiteSpace: string;
1404
- };
1405
- '.webchat__link-definitions__list-item-text': {
1406
- textDecoration: string;
1407
- "@media (forced-colors: none)": {
1408
- color: "var(--webchat__color--accent)";
1409
- };
1410
- };
1411
- '.webchat__link-definitions__list-item-badge': {
1412
- fontSize: "var(--webchat__font-size--small)";
1413
- "@media (forced-colors: none)": {
1414
- color: "var(--webchat__color--subtle)";
1415
- };
1416
- };
1417
- '.webchat__link-definitions__open-in-new-window-icon': {
1418
- flexShrink: number;
1419
- paddingRight: number;
1420
- "@media (forced-colors: none)": {
1421
- color: "var(--webchat__color--accent)";
1422
- };
1423
- };
1424
- };
1425
- };
1426
- readonly modalDialog: {
1427
- '&.webchat__modal-dialog': {
1428
- fontFamily: "var(--webchat__font--primary)";
1429
- maxHeight: string;
1430
- maxWidth: string;
1431
- width: string;
1432
- "@media (forced-colors: none)": {
1433
- backgroundColor: string;
1434
- border: number;
1435
- };
1436
- '& .webchat__modal-dialog__box': {
1437
- borderRadius: number;
1438
- overflow: string;
1439
- margin: string;
1440
- '@media screen and (max-width: 639px)': {
1441
- maxWidth: string;
1442
- };
1443
- '@media screen and (min-width: 640px)': {
1444
- maxWidth: string;
1445
- minWidth: string;
1446
- width: string;
1447
- };
1448
- "@media (forced-colors: none)": {
1449
- backgroundColor: string;
1450
- boxShadow: string;
1451
- };
1452
- "@media (forced-colors: none) and not (forced-colors: none)": {
1453
- backgroundColor: string;
1454
- boxShadow: string;
1455
- color: string;
1456
- };
1457
- "@media (forced-colors: active)": {
1458
- outlineColor: string;
1459
- outlineStyle: string;
1460
- outlineWidth: number;
1461
- };
1462
- };
1463
- '& .webchat__modal-dialog__close-button-layout': {
1464
- float: string;
1465
- padding: "var(--webchat__padding--regular)";
1466
- };
1467
- '& .webchat__modal-dialog__close-button': {
1468
- height: number;
1469
- width: number;
1470
- "@media (forced-colors: none)": {
1471
- appearance: string;
1472
- backgroundColor: string;
1473
- borderColor: string;
1474
- borderRadius: number;
1475
- borderStyle: string;
1476
- borderWidth: number;
1477
- color: string;
1478
- outline: number;
1479
- };
1480
- };
1481
- '& .webchat__modal-dialog__close-button:focus': {
1482
- "@media (forced-colors: none)": {
1483
- borderColor: string;
1484
- '&:active': {
1485
- backgroundColor: string;
1486
- };
1487
- '&:not(:active):hover': {
1488
- backgroundColor: string;
1489
- };
1490
- };
1491
- "@media (forced-colors: none) and not (forced-colors: none)": {
1492
- borderColor: string;
1493
- '&:active': {
1494
- backgroundColor: string;
1495
- };
1496
- '&:not(:active):hover': {
1497
- backgroundColor: string;
1498
- };
1499
- };
1500
- };
1501
- '& .webchat__modal-dialog__close-button-image': {
1502
- height: number;
1503
- width: number;
1504
- "@media (forced-colors: none)": {
1505
- fill: string;
1506
- };
1507
- "@media (forced-colors: none) and not (forced-colors: none)": {
1508
- fill: string;
1509
- };
1510
- "@media (forced-colors: active)": {
1511
- fill: string;
1512
- };
1513
- };
1514
- '& .webchat__modal-dialog__body': {
1515
- margin: string;
1516
- };
1517
- };
1518
- };
1519
- readonly renderMarkdown: {
1520
- '&.webchat__render-markdown': {
1521
- display: string;
1522
- '&.webchat__render-markdown--adaptive-cards > *:first-child': {
1523
- marginTop: number;
1524
- width: string;
1525
- overflow: string;
1526
- textOverflow: string;
1527
- };
1528
- '&.webchat__render-markdown--adaptive-cards > *:last-child': {
1529
- marginBottom: number;
1530
- };
1531
- '&.webchat__render-markdown--message-activity > *:first-child': {
1532
- marginTop: number;
1533
- };
1534
- '&.webchat__render-markdown--message-activity > *:last-child': {
1535
- marginBottom: number;
1536
- };
1537
- '& .webchat__render-markdown__external-link-icon': {
1538
- backgroundImage: "var(--webchat__icon-url--external-link)";
1539
- height: string;
1540
- marginLeft: string;
1541
- };
1542
- '& .webchat__render-markdown__citation': {
1543
- background: string;
1544
- border: number;
1545
- cursor: string;
1546
- fontFamily: string;
1547
- fontSize: string;
1548
- padding: number;
1549
- textDecoration: string;
1550
- whiteSpace: string;
1551
- "@media (forced-colors: active)": {
1552
- color: string;
1553
- };
1554
- "@media (forced-colors: none)": {
1555
- color: "var(--webchat__color--accent)";
1556
- };
1557
- };
1558
- '& .webchat__render-markdown__pure-identifier': {
1559
- whiteSpace: string;
1560
- };
1561
- '& .webchat__render-markdown__pure-identifier::after': {
1562
- content: string;
1563
- };
1564
- '& .webchat__render-markdown__pure-identifier::before': {
1565
- content: string;
1566
- };
1567
- };
1568
- };
1569
- readonly sendStatus: {
1570
- '&.webchat__activity-status': {
1571
- color: "var(--webchat__color--timestamp)";
1572
- fontFamily: "var(--webchat__font--primary)";
1573
- fontSize: "var(--webchat__font-size--small)";
1574
- marginTop: string;
1575
- };
1576
- '&.webchat__activity-status--slotted': {
1577
- display: string;
1578
- gap: number;
1579
- };
1580
- '& .webchat__activity-status__originator': {
1581
- alignItems: string;
1582
- '&.webchat__activity-status__originator--has-link': {
1583
- color: "var(--webchat__color--accent)";
1584
- };
1585
- };
1586
- };
1587
- readonly slottedActivityStatus: {
1588
- '&.webchat__slotted-activity-status': {
1589
- alignItems: string;
1590
- display: string;
1591
- gap: number;
1592
- marginTop: string;
1593
- '& .webchat__slotted-activity-status__pipe': {
1594
- fontSize: "var(--webchat__font-size--small)";
1595
- };
1596
- };
1597
- };
1598
- readonly textContent: {
1599
- '&.webchat__text-content': {
1600
- fontFamily: "var(--webchat__font--primary)";
1601
- margin: number;
1602
- minHeight: string;
1603
- padding: "var(--webchat__padding--regular)";
1604
- '&.webchat__text-content--is-markdown': {
1605
- display: string;
1606
- flexDirection: string;
1607
- gap: "var(--webchat__padding--regular)";
1608
- };
1609
- '& .webchat__text-content__markdown img:not(.webchat__render-markdown__external-link-icon)': {
1610
- maxWidth: "var(--webchat__max-width--bubble)";
1611
- width: string;
1612
- };
1613
- '& .webchat__text-content__markdown pre': {
1614
- overflow: string;
1615
- };
1616
- '& .webchat__text-content__open-in-new-window-icon': {
1617
- height: string;
1618
- };
1619
- };
1620
- };
1621
- readonly thumbButton: {
1622
- '&.webchat__thumb-button': {
1623
- appearance: string;
1624
- background: string;
1625
- border: number;
1626
- borderRadius: number;
1627
- height: number;
1628
- overflow: string;
1629
- padding: number;
1630
- width: number;
1631
- '&:active': {
1632
- background: string;
1633
- };
1634
- '&:focus': {
1635
- outline: string;
1636
- };
1637
- '& .webchat__thumb-button__image': {
1638
- color: "var(--webchat__color--accent)";
1639
- width: number;
1640
- };
1641
- '&:hover .webchat__thumb-button__image:not(.webchat__thumb-button__image--is-filled)': {
1642
- display: string;
1643
- };
1644
- '&.webchat__thumb-button--is-pressed .webchat__thumb-button__image:not(.webchat__thumb-button__image--is-filled)': {
1645
- display: string;
1646
- };
1647
- '&.webchat__thumb-button:not(:hover):not(.webchat__thumb-button--is-pressed) .webchat__thumb-button__image--is-filled': {
1648
- display: string;
1649
- };
1650
- };
1651
- };
1652
- }>;
1653
- //# sourceMappingURL=createStyleSet.d.ts.map