botframework-webchat-fluent-theme 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.
- package/dist/botframework-webchat-fluent-theme.css.map +1 -1
- package/dist/botframework-webchat-fluent-theme.d.mts +23 -5
- package/dist/botframework-webchat-fluent-theme.d.ts +23 -5
- package/dist/botframework-webchat-fluent-theme.development.css.map +1 -1
- package/dist/botframework-webchat-fluent-theme.development.js +11 -1
- package/dist/botframework-webchat-fluent-theme.development.js.map +1 -1
- package/dist/botframework-webchat-fluent-theme.js +1 -1
- package/dist/botframework-webchat-fluent-theme.js.map +1 -1
- package/dist/botframework-webchat-fluent-theme.mjs +1 -1
- package/dist/botframework-webchat-fluent-theme.mjs.map +1 -1
- package/dist/botframework-webchat-fluent-theme.production.min.css.map +1 -1
- package/dist/botframework-webchat-fluent-theme.production.min.js +11 -1
- package/dist/botframework-webchat-fluent-theme.production.min.js.map +1 -1
- package/package.json +27 -26
- package/src/bundle.ts +2 -0
- package/src/components/activity/ActivityDecorator.module.css +432 -0
- package/src/components/activity/ActivityDecorator.tsx +26 -0
- package/src/components/activity/ActivityLoader.module.css +10 -0
- package/src/components/activity/ActivityLoader.tsx +21 -0
- package/src/components/activity/CopilotMessageHeader.module.css +38 -0
- package/src/components/activity/CopilotMessageHeader.tsx +49 -0
- package/src/components/activity/index.ts +2 -0
- package/src/components/activity/private/isAIGeneratedActivity.ts +5 -0
- package/src/components/activity/private/useActivityAuthor.ts +16 -0
- package/src/components/activity/private/useActivityStyleOptions.ts +19 -0
- package/src/components/assets/AssetComposer.tsx +37 -0
- package/src/components/assets/AssetName.ts +1 -0
- package/src/components/assets/SlidingDots.tsx +61 -0
- package/src/components/assets/private/Context.ts +24 -0
- package/src/components/assets/private/useAssetURL.ts +12 -0
- package/src/components/assets/private/useContext.ts +8 -0
- package/src/components/dropZone/DropZone.module.css +3 -4
- package/src/components/dropZone/DropZone.tsx +41 -6
- package/src/components/linerActivity/index.ts +2 -0
- package/src/components/linerActivity/private/LinerActivity.tsx +20 -0
- package/src/components/linerActivity/private/LinerMessageActivity.module.css +28 -0
- package/src/components/linerActivity/private/isLinerMessageActivity.ts +7 -0
- package/src/components/preChatActivity/PreChatMessageActivity.module.css +56 -0
- package/src/components/preChatActivity/PreChatMessageActivity.tsx +60 -0
- package/src/components/preChatActivity/StarterPromptsCardAction.module.css +126 -0
- package/src/components/preChatActivity/StarterPromptsCardAction.tsx +75 -0
- package/src/components/preChatActivity/StarterPromptsToolbar.module.css +18 -0
- package/src/components/preChatActivity/StarterPromptsToolbar.tsx +47 -0
- package/src/components/preChatActivity/index.tsx +2 -0
- package/src/components/preChatActivity/isPreChatMessageActivity.ts +7 -0
- package/src/components/sendBox/Attachments.module.css +1 -1
- package/src/components/sendBox/Attachments.tsx +5 -4
- package/src/components/sendBox/ErrorMessage.tsx +15 -4
- package/src/components/sendBox/SendBox.module.css +21 -6
- package/src/components/sendBox/SendBox.tsx +95 -56
- package/src/components/sendBox/TextArea.module.css +27 -8
- package/src/components/sendBox/TextArea.tsx +60 -31
- package/src/components/sendBox/Toolbar.module.css +15 -7
- package/src/components/sendBox/Toolbar.tsx +17 -7
- package/src/components/sendBox/index.tsx +1 -1
- package/src/components/sendBox/private/useSubmitError.ts +17 -4
- package/src/components/sendBox/private/useTranscriptNavigation.ts +53 -0
- package/src/components/suggestedActions/AccessibleButton.tsx +15 -13
- package/src/components/suggestedActions/SuggestedAction.module.css +14 -13
- package/src/components/suggestedActions/SuggestedAction.tsx +7 -4
- package/src/components/suggestedActions/SuggestedActions.module.css +2 -3
- package/src/components/suggestedActions/SuggestedActions.tsx +49 -46
- package/src/components/telephoneKeypad/private/Button.module.css +2 -3
- package/src/components/telephoneKeypad/private/Button.tsx +1 -5
- package/src/components/telephoneKeypad/private/TelephoneKeypad.module.css +0 -1
- package/src/components/telephoneKeypad/private/TelephoneKeypad.tsx +4 -8
- package/src/components/telephoneKeypad/types.ts +1 -1
- package/src/components/theme/Theme.module.css +665 -15
- package/src/components/theme/Theme.tsx +4 -3
- package/src/components/typingIndicator/SlidingDotsTypingIndicator.module.css +12 -0
- package/src/components/typingIndicator/SlidingDotsTypingIndicator.tsx +19 -0
- package/src/env.d.ts +1 -7
- package/src/external.umd/botframework-webchat-api/decorator.ts +1 -0
- package/src/external.umd/botframework-webchat-component/decorator.ts +1 -0
- package/src/external.umd/botframework-webchat-component/index.ts +5 -0
- package/src/external.umd/botframework-webchat-component/internal.ts +1 -0
- package/src/icons/AddDocumentIcon.tsx +8 -16
- package/src/icons/AttachmentIcon.tsx +8 -16
- package/src/icons/InfoSmallIcon.tsx +7 -15
- package/src/icons/SendIcon.tsx +7 -15
- package/src/icons/TelephoneKeypadIcon.tsx +7 -15
- package/src/index.ts +2 -4
- package/src/private/FluentThemeProvider.tsx +91 -10
- package/src/private/VariantComposer.ts +29 -0
- package/src/private/createComposer.tsx +16 -0
- package/src/private/useVariants.ts +7 -0
- package/src/styles/createStyles.ts +5 -0
- package/src/styles/index.ts +3 -2
- package/src/styles/useStyles.ts +2 -19
- package/src/styles/useVariantClassName.ts +16 -0
- package/src/testIds.ts +3 -0
- package/src/tsconfig.json +12 -10
- package/src/types/PropsOf.ts +2 -5
- package/src/external.umd/botframework-webchat-component.ts +0 -4
- package/src/styles/injectStyle.ts +0 -9
- /package/src/external.umd/{botframework-webchat-api.ts → botframework-webchat-api/index.ts} +0 -0
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";var Dt=Object.create;var Y=Object.defineProperty;var Pt=Object.getOwnPropertyDescriptor;var Rt=Object.getOwnPropertyNames;var Kt=Object.getPrototypeOf,zt=Object.prototype.hasOwnProperty;var Ot=(e,t)=>{for(var o in t)Y(e,o,{get:t[o],enumerable:!0})},Fe=(e,t,o,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Rt(t))!zt.call(e,n)&&n!==o&&Y(e,n,{get:()=>t[n],enumerable:!(r=Pt(t,n))||r.enumerable});return e};var i=(e,t,o)=>(o=e!=null?Dt(Kt(e)):{},Fe(t||!e||!e.__esModule?Y(o,"default",{value:e,enumerable:!0}):o,e)),Ut=e=>Fe(Y({},"__esModule",{value:!0}),e);var sr={};Ot(sr,{FluentThemeProvider:()=>At,buildInfo:()=>ar,testIds:()=>f});module.exports=Ut(sr);var Mt=require("inject-meta-tag");var Ft=require("botframework-webchat-component"),U=i(require("react"));var M=i(require("react"));var Ae=require("react"),Me=(0,Ae.createContext)(new Proxy({},{get(){throw new Error("botframework-webchat: This hook can only used under its corresponding <Provider>.")}}));Me.displayName="TelephoneKeypad.Context";var q=Me;var Zt=(0,M.memo)(({children:e})=>{let[t,o]=(0,M.useState)(!1),r=(0,M.useMemo)(()=>Object.freeze({setShown:o,shown:t}),[o,t]);return M.default.createElement(q.Provider,{value:r},e)}),ce=Zt;var ee=i(require("react"));var Pe=require("botframework-webchat-component"),Re=i(require("classnames")),l=i(require("react")),ge=require("use-ref-from");var N=i(require("react")),Ie=require("use-ref-from");var He={"telephone-keypad__button":"r","telephone-keypad__button__ruby":"e","telephone-keypad__button__text":"o","telephone-keypad--horizontal":"l"};var Wt=".webchat-fluent .r{-webkit-user-select:none;align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border-radius:100%;border:solid 1px var(--webchat-colorNeutralStroke1);color:var(--webchat-colorGray200);font-weight:var(--webchat-fontWeightSemibold);cursor:pointer;display:flex;flex-direction:column;height:60px;opacity:.7;padding:0;position:relative;touch-action:none;user-select:none;width:60px}.webchat-fluent .r:hover{background-color:var(--webchat-colorGray30)}.webchat-fluent .e{color:var(--webchat-colorGray190);font-size:10px}.webchat-fluent .o{font-size:24px;margin-top:8px}.webchat-fluent .l .r{height:32px;justify-content:center;margin:8px 4px;width:32px}.webchat-fluent .l .e{display:none}.webchat-fluent .l .o{font-size:20px;margin-top:0}.webchat-fluent .c{align-items:center;background:var(--webchat-colorNeutralBackground1);border:none;border-radius:var(--webchat-borderRadiusXLarge);display:flex;flex-direction:column;font-family:var(--webchat-fontFamilyBase);justify-content:center}.webchat-fluent .n{box-sizing:border-box;display:grid;gap:16px;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);justify-items:center;padding:16px;width:100%}.webchat-fluent .d{align-items:center;color:var(--webchat-colorNeutralForeground4);display:flex;font-size:12px;gap:6px;margin-block-end:6px}.webchat-fluent .i{color:var(--webchat-colorBrandForegroundLink);text-decoration-color:transparent}.webchat-fluent .i:target{color:var(--webchat-colorBrandForegroundLinkSelected)}.webchat-fluent .i:hover{color:var(--webchat-colorBrandForegroundLinkHover);text-decoration:underline 1px currentColor}.webchat-fluent .i:active{color:var(--webchat-colorBrandForegroundLinkPressed)}.webchat-fluent .i:focus-visible{outline:none;text-decoration:underline 1px double var(--webchat-colorStrokeFocus2)}.webchat-fluent.a{display:contents;--webchat-colorNeutralForeground1: var(--colorNeutralForeground1, #242424);--webchat-colorNeutralForeground2: var(--colorNeutralForeground2, #424242);--webchat-colorNeutralForeground4: var(--colorNeutralForeground4, #707070);--webchat-colorNeutralForeground2BrandHover: var(--colorNeutralForeground2BrandHover, #02729c);--webchat-colorNeutralForeground2BrandPressed: var(--colorNeutralForeground2BrandPressed, #01678c);--webchat-colorNeutralForeground2BrandSelected: var(--colorNeutralForeground2BrandSelected, #067191);--webchat-colorNeutralForegroundDisabled: var(--colorNeutralForegroundDisabled, #bdbdbd);--webchat-colorNeutralBackground1: var(--colorNeutralBackground1, #ffffff);--webchat-colorNeutralBackground4: var(--colorNeutralBackground4, #f0f0f0);--webchat-colorNeutralBackground5: var(--colorNeutralBackground5, #ebebeb);--webchat-colorNeutralStroke1: var(--colorNeutralStroke1, #d1d1d1);--webchat-colorNeutralStroke2: var(--colorNeutralStroke2, #e0e0e0);--webchat-colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected, #bdbdbd);--webchat-colorStrokeFocus2: var(--colorStrokeFocus2, #000000);--webchat-colorBrandStroke2: var(--colorBrandStroke2, #9edcf7);--webchat-colorBrandForeground2Hover: var(--colorBrandForeground2Hover, #015a7a);--webchat-colorBrandForeground2Pressed: var(--colorBrandForeground2Pressed, #01384d);--webchat-colorBrandForegroundLink: var(--colorBrandForegroundLink, #01678c);--webchat-colorBrandForegroundLinkHover: var(--colorBrandForegroundLinkHover, #015a7a);--webchat-colorBrandForegroundLinkPressed: var(--colorBrandForegroundLinkPressed, #014259);--webchat-colorBrandForegroundLinkSelected: var(--colorBrandForegroundLinkSelected, #01678c);--webchat-colorBrandBackground2Hover: var(--colorBrandBackground2Hover, #bee7fa);--webchat-colorBrandBackground2Pressed: var(--colorBrandBackground2Pressed, #7fd2f5);--webchat-colorCompoundBrandForeground1Hover: var(--colorCompoundBrandForeground1Hover, #02729c);--webchat-colorStatusDangerForeground1: var(--colorStatusDangerForeground1, #b10e1c);--webchat-colorGray30: var(--colorGray30, #edebe9);--webchat-colorGray160: var(--colorGray160, #323130);--webchat-colorGray190: var(--colorGray190, #201f1e);--webchat-colorGray200: var(--colorGray200, #1b1a19);--webchat-borderRadiusSmall: var(--borderRadiusSmall, 2px);--webchat-borderRadiusLarge: var(--borderRadiusLarge, 6px);--webchat-borderRadiusXLarge: var(--borderRadiusXLarge, 8px);--webchat-shadow16: var(--shadow16, 0 6.4px 14.4px 0 rgba(0, 0, 0, .132), 0 1.2px 3.6px 0 rgba(0, 0, 0, .108));--webchat-spacingHorizontalMNudge: var(--spacingHorizontalMNudge, 10px);--webchat-fontFamilyBase: var(--fontFamilyBase, \"Segoe UI\", \"Segoe UI Web (West European)\", -apple-system, BlinkMacSystemFont, Roboto, \"Helvetica Neue\", sans-serif);--webchat-fontFamilyNumeric: var(--fontFamilyNumeric, Bahnschrift, \"Segoe UI\", \"Segoe UI Web (West European)\", -apple-system, BlinkMacSystemFont, Roboto, \"Helvetica Neue\", sans-serif);--webchat-fontWeightSemibold: var(--fontWeightSemibold, 600);--webchat-strokeWidthThicker: var(--strokeWidthThicker, 3px);--webchat-durationUltraFast: var(--durationUltraFast, 0);--webchat-durationNormal: var(--durationNormal, .2s);--webchat-curveAccelerateMid: var(--curveAccelerateMid, cubic-bezier(1,0,1,1));--webchat-curveDecelerateMid: var(--curveDecelerateMid, cubic-bezier(0,0,0,1))}@media (prefers-reduced-motion){.webchat-fluent.a{--webchat-durationUltraFast: .01ms;--webchat-durationNormal: .01ms}}.webchat-fluent .b{background-color:var(--webchat-colorNeutralBackground4);border-radius:inherit;cursor:copy;display:grid;gap:8px;inset:0;place-content:center;place-items:center;position:absolute}.webchat-fluent .u{background-color:#e00;color:#fff}.webchat-fluent .h{height:36px;pointer-events:none;width:36px}.webchat-fluent .s{align-items:center;background:transparent;border-radius:8px;border:1px solid var(--webchat-colorBrandStroke2);color:currentColor;cursor:pointer;display:flex;font-size:12px;gap:4px;padding:4px 8px;text-align:start;transition:all .15s ease-out}@media (hover: hover){.webchat-fluent .s:not([aria-disabled=true]):hover{background-color:var(--webchat-colorBrandBackground2Hover);color:var(--webchat-colorBrandForeground2Hover)}}.webchat-fluent .s:not([aria-disabled=true]):active{background-color:var(--webchat-colorBrandBackground2Pressed);color:var(--webchat-colorBrandForeground2Pressed)}.webchat-fluent .s[aria-disabled=true]{color:var(--webchat-colorNeutralForegroundDisabled);cursor:not-allowed}.webchat-fluent .g{font-size:12px;height:1em;width:1em}.webchat-fluent .p{align-items:flex-end;align-self:flex-end;display:flex;flex-direction:column;gap:8px}.webchat-fluent .p:not(:empty){padding-block-end:8px;padding-inline-start:4px}.webchat-fluent .p.w{flex-direction:row;flex-wrap:wrap;justify-content:flex-end}.webchat-fluent .p.v{flex-direction:column}.webchat-fluent .f{display:flex;gap:4px;margin-inline-start:auto}.webchat-fluent .x{align-items:center;-webkit-appearance:none;appearance:none;aspect-ratio:1;background:transparent;border-radius:var(--webchat-borderRadiusSmall);border:none;color:currentColor;cursor:pointer;display:flex;justify-content:center;padding:3px;width:32px}.webchat-fluent .x>svg{font-size:20px;pointer-events:none}.webchat-fluent .x.k{color:var(--webchat-colorNeutralForeground2BrandSelected)}@media (hover: hover){.webchat-fluent .x:not([aria-disabled=true]):hover{color:var(--webchat-colorNeutralForeground2BrandHover)}}.webchat-fluent .x:not([aria-disabled=true]):active{color:var(--webchat-colorNeutralForeground2BrandPressed)}.webchat-fluent .x[aria-disabled=true]{color:var(--webchat-colorNeutralForegroundDisabled);cursor:not-allowed}.webchat-fluent .m{align-self:center;border-inline-end:1px solid var(--webchat-colorNeutralStroke2);height:28px}.webchat-fluent .m:is(:first-child,:last-child,:only-child){display:none}.webchat-fluent .B{display:grid}.webchat-fluent .F{font-size:0;height:0;opacity:0;width:1px}.webchat-fluent .y{border-radius:var(--webchat-borderRadiusLarge);border:1px solid var(--webchat-colorNeutralStroke1);cursor:default;padding:6px 8px;width:fit-content}.webchat-fluent .N{color:transparent;font-size:0;height:0;left:0;position:absolute;top:0;width:0}.webchat-fluent .S{display:grid;grid-template-areas:\"main\";max-height:200px;overflow:hidden}.webchat-fluent .z{height:0;visibility:collapse}.webchat-fluent .L{border:none;font:inherit;grid-area:main;outline:inherit;overflow-wrap:anywhere;resize:inherit;scrollbar-gutter:stable}.webchat-fluent .H{overflow:hidden;visibility:hidden;white-space:pre-wrap}.webchat-fluent .W{background-color:inherit;color:currentColor;height:100%;padding:0}.webchat-fluent .P{scrollbar-color:unset;scrollbar-width:unset;-moz-scrollbar-color:var(--webchat-colorNeutralBackground5) var(--webchat-colorNeutralForeground2);-moz-scrollbar-width:thin}.webchat-fluent .P::-webkit-scrollbar{width:8px}.webchat-fluent .P::-webkit-scrollbar-track{background-color:var(--webchat-colorNeutralBackground5);border-radius:16px}.webchat-fluent .P::-webkit-scrollbar-thumb{background-color:var(--webchat-colorNeutralForeground2);border-radius:16px}.webchat-fluent .P::-webkit-scrollbar-corner{background-color:var(--webchat-colorNeutralBackground5)}.webchat-fluent .R{color:var(--webchat-colorNeutralForeground1);font-family:var(--webchat-fontFamilyBase);padding:0 10px 10px;text-rendering:optimizeLegibility;--webchat-sendbox-attachment-area-active: ;--webchat-sendbox-border-radius: var(--webchat-borderRadiusLarge)}.webchat-fluent .G{background-color:var(--webchat-colorNeutralBackground1);border-radius:var(--webchat-sendbox-border-radius);border:1px solid var(--webchat-colorNeutralStroke1);display:grid;font-family:var(--webchat-fontFamilyBase);font-size:14px;gap:6px;grid-template:[telephone-keypad-start] \"text-area\" [telephone-keypad-end] var(--webchat-sendbox-attachment-area-active) \"controls\" / [telephone-keypad] 1fr;line-height:20px;padding:8px;position:relative}.webchat-fluent .G:has(.t){--webchat-sendbox-attachment-area-active: \"attachment\" }.webchat-fluent .G:focus-within{border-color:var(--webchat-colorNeutralStroke1Selected)}.webchat-fluent .G:after{border-bottom-left-radius:var(--webchat-sendbox-border-radius);border-bottom-right-radius:var(--webchat-sendbox-border-radius);border-bottom:var(--webchat-strokeWidthThicker) solid var(--webchat-colorCompoundBrandForeground1Hover);bottom:-1px;clip-path:inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);content:\"\";height:var(--webchat-sendbox-border-radius);left:-1px;position:absolute;right:-1px;transition:clip-path var(--webchat-durationUltraFast) var(--webchat-curveAccelerateMid)}.webchat-fluent .G:focus-within:after{clip-path:inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);transition:clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent .G>.D{grid-area:text-area}.webchat-fluent .G>.t{grid-area:attachment}.webchat-fluent .G>.M{grid-area:controls}.webchat-fluent .G>.U{grid-area:telephone-keypad}.webchat-fluent .C{background-color:transparent;border:none;flex:auto;font-family:var(--webchat-fontFamilyBase);font-size:14px;line-height:20px;outline:none;padding:4px 4px 0;resize:none}.webchat-fluent .j{align-items:center;display:flex;padding-inline-start:4px}.webchat-fluent .T{color:var(--webchat-colorNeutralForeground4);cursor:default;font-family:var(--webchat-fontFamilyNumeric);font-size:10px;line-height:14px;margin-inline-end:4px}.webchat-fluent .I{color:var(--webchat-colorStatusDangerForeground1)}\n/*! For license information please see botframework-webchat-fluent-theme.css.LEGAL.txt */\n";function J(){if(globalThis.document){let e=document.createElement("style");e.append(document.createTextNode(Wt)),document.head.appendChild(e)}}var Le=require("react");function Xt(e){return(0,Le.useMemo)(()=>Object.freeze(Object.fromEntries(Object.entries(e).map(([t,o])=>[t,`${t} ${o}`]))),[e])}var m=Xt;var De=(0,N.memo)((0,N.forwardRef)(({button:e,"data-testid":t,onClick:o,ruby:r},n)=>{let u=m(He),p=(0,Ie.useRefFrom)(o),a=(0,N.useCallback)(()=>p.current?.(),[p]);return N.default.createElement("button",{className:u["telephone-keypad__button"],"data-testid":t,onClick:a,ref:n,type:"button"},N.default.createElement("span",{className:u["telephone-keypad__button__text"]},e==="star"?"\u2217":e==="pound"?"#":e),!!r&&N.default.createElement("ruby",{className:u["telephone-keypad__button__ruby"]},r))}));De.displayName="TelephoneKeypad.Button";var w=De;var Gt={sendBoxDropZone:"send box drop zone",sendBoxSendButton:"send box send button",sendBoxTextBox:"send box text area",sendBoxTelephoneKeypadButton1:"send box telephone keypad button 1",sendBoxTelephoneKeypadButton2:"send box telephone keypad button 2",sendBoxTelephoneKeypadButton3:"send box telephone keypad button 3",sendBoxTelephoneKeypadButton4:"send box telephone keypad button 4",sendBoxTelephoneKeypadButton5:"send box telephone keypad button 5",sendBoxTelephoneKeypadButton6:"send box telephone keypad button 6",sendBoxTelephoneKeypadButton7:"send box telephone keypad button 7",sendBoxTelephoneKeypadButton8:"send box telephone keypad button 8",sendBoxTelephoneKeypadButton9:"send box telephone keypad button 9",sendBoxTelephoneKeypadButton0:"send box telephone keypad button 0",sendBoxTelephoneKeypadButtonStar:"send box telephone keypad button star",sendBoxTelephoneKeypadButtonPound:"send box telephone keypad button pound",sendBoxTelephoneKeypadToolbarButton:"send box telephone keypad toolbar button",sendBoxUploadButton:"send box upload button"},f=Gt;var Q=require("react");function S(){let{setShown:e,shown:t}=(0,Q.useContext)(q);return(0,Q.useMemo)(()=>Object.freeze([t,e]),[t,e])}var ue={"telephone-keypad":"c","telephone-keypad__box":"n","telephone-keypad__info-message":"d","telephone-keypad__info-message-link":"i"};var j=i(require("react"));function Vt(e){return j.default.createElement("svg",{"aria-hidden":"true",className:e.className,height:"1em",viewBox:"0 0 20 20",width:"1em",xmlns:"http://www.w3.org/2000/svg"},j.default.createElement("path",{d:"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z",fill:"currentColor"}))}var me=(0,j.memo)(Vt);var W=i(require("react"));function Yt(e){return W.default.createElement("svg",{"aria-hidden":"true",className:e.className,height:"1em",viewBox:"0 0 20 20",width:"1em",xmlns:"http://www.w3.org/2000/svg"},W.default.createElement("path",{d:"m4.83 10.48 5.65-5.65a3 3 0 0 1 4.25 4.24L8 15.8a1.5 1.5 0 0 1-2.12-2.12l6-6.01a.5.5 0 1 0-.7-.71l-6 6.01a2.5 2.5 0 0 0 3.53 3.54l6.71-6.72a4 4 0 1 0-5.65-5.66L4.12 9.78a.5.5 0 0 0 .7.7Z",fill:"currentColor"}))}var pe=(0,W.memo)(Yt);var X=i(require("react"));function qt(e){return X.default.createElement("svg",{"aria-hidden":"true",className:e.className,height:"1em",viewBox:"0 0 16 16",width:"1em",xmlns:"http://www.w3.org/2000/svg"},X.default.createElement("path",{d:"M8.5 7.5a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0v-3Zm.25-2a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Z",fill:"currentColor"}))}var be=(0,X.memo)(qt);var G=i(require("react"));function Jt(e){return G.default.createElement("svg",{"aria-hidden":"true",className:e.className,height:"1em",viewBox:"0 0 20 20",width:"1em",xmlns:"http://www.w3.org/2000/svg"},G.default.createElement("path",{d:"M2.18 2.11a.5.5 0 0 1 .54-.06l15 7.5a.5.5 0 0 1 0 .9l-15 7.5a.5.5 0 0 1-.7-.58L3.98 10 2.02 2.63a.5.5 0 0 1 .16-.52Zm2.7 8.39-1.61 6.06L16.38 10 3.27 3.44 4.88 9.5h6.62a.5.5 0 1 1 0 1H4.88Z",fill:"currentColor"}))}var fe=(0,G.memo)(Jt);var $=i(require("react"));function Qt(e){return $.default.createElement("svg",{"aria-hidden":"true",className:e.className,height:"1em",viewBox:"0 0 20 20",width:"1em",xmlns:"http://www.w3.org/2000/svg"},$.default.createElement("path",{d:"M6 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm0 4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM7.25 12a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 16a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM15.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z",fill:"currentColor"}))}var he=(0,$.memo)(Qt);var{LocalizedString:eo}=Pe.Components,Ke=(0,l.memo)(({children:e,isHorizontal:t})=>{let o=m(ue);return t?null:l.default.createElement("div",{className:o["telephone-keypad__box"]},e)});Ke.displayName="TelephoneKeypad:Orientation";var ze=(0,l.memo)(({autoFocus:e,className:t,onButtonClick:o,isHorizontal:r})=>{let n=(0,ge.useRefFrom)(e),u=m(ue),p=(0,l.useRef)(null),a=(0,ge.useRefFrom)(o),[,b]=S(),x=(0,l.useCallback)(()=>a.current?.("1"),[a]),s=(0,l.useCallback)(()=>a.current?.("2"),[a]),d=(0,l.useCallback)(()=>a.current?.("3"),[a]),g=(0,l.useCallback)(()=>a.current?.("4"),[a]),y=(0,l.useCallback)(()=>a.current?.("5"),[a]),A=(0,l.useCallback)(()=>a.current?.("6"),[a]),C=(0,l.useCallback)(()=>a.current?.("7"),[a]),F=(0,l.useCallback)(()=>a.current?.("8"),[a]),_=(0,l.useCallback)(()=>a.current?.("9"),[a]),B=(0,l.useCallback)(()=>a.current?.("0"),[a]),P=(0,l.useCallback)(()=>a.current?.("star"),[a]),z=(0,l.useCallback)(()=>a.current?.("pound"),[a]),le=(0,l.useCallback)(de=>{de.key==="Escape"&&b(!1)},[b]);return(0,l.useEffect)(()=>{n.current&&p.current?.focus()},[n,p]),l.default.createElement("div",{className:(0,Re.default)(u["telephone-keypad"],t),onKeyDown:le},l.default.createElement(Ke,{isHorizontal:r},l.default.createElement(w,{button:"1","data-testid":f.sendBoxTelephoneKeypadButton1,onClick:x,ref:p}),l.default.createElement(w,{button:"2","data-testid":f.sendBoxTelephoneKeypadButton2,onClick:s,ruby:"ABC"}),l.default.createElement(w,{button:"3","data-testid":f.sendBoxTelephoneKeypadButton3,onClick:d,ruby:"DEF"}),l.default.createElement(w,{button:"4","data-testid":f.sendBoxTelephoneKeypadButton4,onClick:g,ruby:"GHI"}),l.default.createElement(w,{button:"5","data-testid":f.sendBoxTelephoneKeypadButton5,onClick:y,ruby:"JKL"}),l.default.createElement(w,{button:"6","data-testid":f.sendBoxTelephoneKeypadButton6,onClick:A,ruby:"MNO"}),l.default.createElement(w,{button:"7","data-testid":f.sendBoxTelephoneKeypadButton7,onClick:C,ruby:"PQRS"}),l.default.createElement(w,{button:"8","data-testid":f.sendBoxTelephoneKeypadButton8,onClick:F,ruby:"TUV"}),l.default.createElement(w,{button:"9","data-testid":f.sendBoxTelephoneKeypadButton9,onClick:_,ruby:"WXYZ"}),l.default.createElement(w,{button:"star","data-testid":f.sendBoxTelephoneKeypadButtonStar,onClick:P}),l.default.createElement(w,{button:"0","data-testid":f.sendBoxTelephoneKeypadButton0,onClick:B,ruby:"+"}),l.default.createElement(w,{button:"pound","data-testid":f.sendBoxTelephoneKeypadButtonPound,onClick:z})),l.default.createElement("div",{className:u["telephone-keypad__info-message"]},l.default.createElement(be,null),l.default.createElement(eo,{linkClassName:u["telephone-keypad__info-message-link"],stringIds:"TELEPHONE_KEYPAD_INPUT_MESSAGE"})))});ze.displayName="TelephoneKeypad";var Oe=ze;var Ue=(0,ee.memo)(e=>S()[0]?ee.default.createElement(Oe,{...e}):null);Ue.displayName="TelephoneKeypad.Surrogate";var xe=Ue;var je=i(require("react")),We=i(require("classnames"));var Ze={theme:"a"};var oo="webchat-fluent";function te(e){let t=m(Ze);return je.default.createElement("div",{className:(0,We.default)(oo,t.theme)},e.children)}var Ct=require("botframework-webchat-component"),O=i(require("classnames")),c=i(require("react")),Se=require("use-ref-from");var $e=require("botframework-webchat-component"),Ve=i(require("classnames")),T=i(require("react")),Ye=require("use-ref-from");var Xe={"sendbox__attachment-drop-zone":"b","sendbox__attachment-drop-zone--droppable":"u","sendbox__attachment-drop-zone-icon":"h"};var{useLocalizer:no}=$e.hooks,ao=e=>{e.preventDefault()},Ge=e=>!!e.dataTransfer?.types?.some(t=>t.toLowerCase()==="files");function so(e,t){let o=e.parentNode;for(;o;){if(o===t)return!0;o=o.parentNode}return!1}var qe=e=>{let[t,o]=(0,T.useState)(!1),r=m(Xe),n=(0,T.useRef)(null),u=no(),p=(0,Ye.useRefFrom)(e.onFilesAdded);(0,T.useEffect)(()=>{let b=0,x=d=>{b++,Ge(d)&&o(n.current&&(d.target===n.current||d.target instanceof HTMLElement&&so(d.target,n.current))?"droppable":"visible")},s=()=>--b<=0&&o(!1);return document.addEventListener("dragenter",x,!1),document.addEventListener("dragleave",s,!1),()=>{document.removeEventListener("dragenter",x),document.removeEventListener("dragleave",s)}},[o]);let a=(0,T.useCallback)(b=>{b.preventDefault(),o(!1),Ge(b.nativeEvent)&&p.current([...b.dataTransfer.files])},[p,o]);return t?T.default.createElement("div",{className:(0,Ve.default)(r["sendbox__attachment-drop-zone"],{[r["sendbox__attachment-drop-zone--droppable"]]:t==="droppable"}),"data-testid":f.sendBoxDropZone,onDragOver:ao,onDrop:a,ref:n},T.default.createElement(me,{className:r["sendbox__attachment-drop-zone-icon"]}),u("TEXT_INPUT_DROP_ZONE")):null};qe.displayName="DropZone";var ye=(0,T.memo)(qe);var st=require("botframework-webchat-component"),lt=i(require("classnames")),E=i(require("react"));var rt=require("botframework-webchat-component"),nt=i(require("classnames")),L=i(require("react"));var Je={"suggested-action":"s","suggested-action__image":"g"};var H=i(require("react")),io=e=>e.preventDefault(),co=(0,H.forwardRef)(({"aria-hidden":e,children:t,disabled:o,onClick:r,tabIndex:n,...u},p)=>{let a=(0,H.useRef)(null);return H.default.createElement("button",{"aria-disabled":o?"true":"false","aria-hidden":e,onClick:o?io:r,ref:p||a,tabIndex:n,...o&&{"aria-disabled":"true",tabIndex:-1},...u,type:"button"},t)}),Qe=(0,H.memo)(co);var h=i(require("react")),et=(0,h.createContext)({itemEffector:()=>{throw new Error("botframework-webchat-fluent-theme rovingFocus: no provider for RovingFocusContext.")}});function uo(e){let t=(0,h.useRef)(0),o=(0,h.useRef)([]),r=(0,h.useCallback)(({current:s},d)=>s&&(s.tabIndex=t.current===d?0:-1),[t]),n=(0,h.useCallback)(s=>{let d;typeof s=="number"?d=s:d=s(t.current),d&&!o.current.at(d)?.current&&(d=0),t.current!==d&&(t.current=d,o.current.forEach((g,y)=>r(g,y)),o.current.at(d)?.current?.focus())},[r,o,t]),u=(0,h.useCallback)(s=>{let{target:d}=s,g=o.current.findIndex(({current:y})=>y===d);g!==-1&&n(g)},[o,n]),p=(0,h.useCallback)(s=>d=>{let g=!e.direction,y=/up|down/iu.test(s)&&e.direction==="vertical",A=/left|right/iu.test(s)&&e.direction==="horizontal",C=/right|down/iu.test(s),F=g||y||A?C?1:-1:0,_=o.current.map((P,z)=>z),B=_.indexOf(d)+F;return _.at(B)??0},[e.direction]),a=(0,h.useCallback)(s=>{let{key:d}=s;switch(d){case"Up":case"ArrowUp":case"Left":case"ArrowLeft":case"Down":case"ArrowDown":case"Right":case"ArrowRight":n(p(d));break;case"Home":n(0);break;case"End":n(-1);break;case"Escape":e.onEscapeKey?.();break;default:return}s.preventDefault(),s.stopPropagation()},[n,p,e]),b=(0,h.useCallback)((s,d)=>{let{current:g}=s;return o.current[Number(d)]=s,g.addEventListener("focus",u),g.addEventListener("keydown",a),r(s,d),()=>{g.removeEventListener("focus",u),g.removeEventListener("keydown",a),delete o.current[Number(d)]}},[u,a,r,o]),x=(0,h.useMemo)(()=>({itemEffector:b}),[b]);return h.default.createElement(et.Provider,{value:x},e.children)}function tt(e){let t=(0,h.useRef)(null),{itemEffector:o}=(0,h.useContext)(et);return(0,h.useEffect)(()=>o(t,e)),t}var ot=(0,h.memo)(uo);var{useDisabled:mo,useFocus:po,usePerformCardAction:bo,useScrollToEnd:fo,useStyleSet:ho,useSuggestedActions:go}=rt.hooks;function xo({buttonText:e,className:t,displayText:o,image:r,imageAlt:n,itemIndex:u,text:p,type:a,value:b}){let[x,s]=go(),[{suggestedAction:d}]=ho(),[g]=mo(),y=po(),A=tt(u),C=bo(),F=m(Je),_=fo(),B=(0,L.useCallback)(({target:P})=>{(async function(){await y("sendBoxWithoutKeyboard"),C({displayText:o,text:p,type:a,value:b},{target:P}),a==="openUrl"&&s([]),_()})()},[o,y,C,_,s,p,a,b]);return L.default.createElement(Qe,{className:(0,nt.default)(F["suggested-action"],d+"",(t||"")+""),disabled:g,onClick:B,ref:A,type:"button"},r&&L.default.createElement("img",{alt:n,className:F["suggested-action__image"],src:r}),L.default.createElement("span",null,e))}var at=(0,L.memo)(xo);function ve(e){let{title:t}=e,{type:o,value:r}=e;return o==="messageBack"?t||e.displayText:t||(typeof r=="string"?r:JSON.stringify(r))}var we={"suggested-actions":"p","suggested-actions--flow":"w","suggested-actions--stacked":"v"};var{useFocus:vo,useLocalizer:wo,useStyleOptions:To,useStyleSet:ko,useSuggestedActions:_o}=st.hooks;function Bo(e){let[{suggestedActionLayout:t}]=To(),[{suggestedActions:o}]=ko(),r=m(we);return E.default.createElement("div",{"aria-label":e["aria-label"],"aria-live":"polite","aria-orientation":"vertical",className:(0,lt.default)(r["suggested-actions"],o+"",{[r["suggested-actions--flow"]]:t==="flow",[r["suggested-actions--stacked"]]:t!=="flow"},e.className),role:"toolbar"},!!e.children&&!!E.default.Children.count(e.children)&&e.children)}function No(){let e=m(we),t=wo(),[o]=_o(),r=vo(),n=(0,E.useCallback)(()=>{r("sendBox")},[r]),u=o.map((p,a)=>{let{displayText:b,image:x,imageAltText:s,text:d,type:g,value:y}=p;return o?.length?E.default.createElement(at,{buttonText:ve(p),displayText:b,image:x,imageAlt:x&&(s||d),itemIndex:a,key:a,text:d,type:g,value:y}):null});return E.default.createElement(ot,{onEscapeKey:n},E.default.createElement(Bo,{"aria-label":t("SUGGESTED_ACTIONS_LABEL_ALT"),className:e["suggested-actions"]},u))}var Te=(0,E.memo)(No);var it=require("botframework-webchat-component"),k=i(require("react")),ct=require("use-ref-from");var re=i(require("classnames")),I=i(require("react"));var oe={sendbox__toolbar:"f","sendbox__toolbar-button":"x","sendbox__toolbar-button--selected":"k","sendbox__toolbar-separator":"m"};var Eo=e=>e.preventDefault(),R=(0,I.memo)(e=>{let t=m(oe);return I.default.createElement("button",{"aria-label":e["aria-label"],className:(0,re.default)(t["sendbox__toolbar-button"],e.className,{[t["sendbox__toolbar-button--selected"]]:e.selected}),"data-testid":e["data-testid"],onClick:e.disabled?Eo:e.onClick,type:e.type==="submit"?"submit":"button",...e.disabled&&{"aria-disabled":"true",tabIndex:-1}},e.children)});R.displayName="ToolbarButton";var ke=(0,I.memo)(e=>{let t=m(oe);return I.default.createElement("div",{className:(0,re.default)(t.sendbox__toolbar,e.className)},e.children)});ke.displayName="Toolbar";var _e=(0,I.memo)(e=>{let t=m(oe);return I.default.createElement("div",{"aria-orientation":"vertical",className:(0,re.default)(t["sendbox__toolbar-separator"],e.className),role:"separator"})});_e.displayName="ToolbarSeparator";var dt={"sendbox__add-attachment":"B","sendbox__add-attachment-input":"F"};var{useLocalizer:Fo,useStyleOptions:Ao}=it.hooks;function Mo(e){let t=(0,k.useRef)(null),o=m(dt),r=Fo(),[{uploadAccept:n,uploadMultiple:u}]=Ao(),p=(0,ct.useRefFrom)(e.onFilesAdded),a=(0,k.useCallback)(()=>t.current?.click(),[t]),b=(0,k.useCallback)(({target:{files:x}})=>{x&&(p.current?.([...x]),t.current&&(t.current.value=""))},[t,p]);return k.default.createElement("div",{className:o["sendbox__add-attachment"]},k.default.createElement("input",{accept:n,"aria-disabled":e.disabled,"aria-hidden":"true",className:o["sendbox__add-attachment-input"],multiple:u,onInput:e.disabled?void 0:b,readOnly:e.disabled,ref:t,role:"button",tabIndex:-1,type:"file"}),k.default.createElement(R,{"aria-label":r("TEXT_INPUT_UPLOAD_BUTTON_ALT"),"data-testid":f.sendBoxUploadButton,onClick:a},k.default.createElement(pe,null)))}var ut=(0,k.memo)(Mo);var pt=require("botframework-webchat-component"),ne=i(require("react")),bt=i(require("classnames"));var mt={sendbox__attachment:"y"};var{useLocalizer:Lo}=pt.hooks,Io={one:"TEXT_INPUT_ATTACHMENTS_ONE",two:"TEXT_INPUT_ATTACHMENTS_TWO",few:"TEXT_INPUT_ATTACHMENTS_FEW",many:"TEXT_INPUT_ATTACHMENTS_MANY",other:"TEXT_INPUT_ATTACHMENTS_OTHER"};function Do({attachments:e,className:t}){let o=m(mt),r=Lo({plural:!0});return e.length?ne.default.createElement("div",{className:(0,bt.default)(o.sendbox__attachment,t)},r(Io,e.length)):null}var ft=(0,ne.memo)(Do);var ae=i(require("react"));var ht={"sendbox__error-message":"N"};function Ro(e){let t=m(ht);return ae.default.createElement("span",{className:t["sendbox__error-message"],id:e.id,role:"alert"},e.error)}var gt=(0,ae.memo)(Ro);var K=i(require("react")),xt=require("botframework-webchat-component");var{useLocalizer:Ko}=xt.hooks,yt=(0,K.memo)(()=>{let[e,t]=S(),o=Ko(),r=(0,K.useCallback)(()=>t(n=>!n),[t]);return K.default.createElement(R,{"aria-label":o("TEXT_INPUT_TELEPHONE_KEYPAD_BUTTON_ALT"),"data-testid":f.sendBoxTelephoneKeypadToolbarButton,onClick:r,selected:e},K.default.createElement(he,null))});yt.displayName="SendBox.TelephoneKeypadToolbarButton";var vt=yt;var se=i(require("classnames")),D=i(require("react"));var wt={"sendbox__text-area":"S","sendbox__text-area--hidden":"z","sendbox__text-area-shared":"L","sendbox__text-area-doppelganger":"H","sendbox__text-area-input":"W","sendbox__text-area-input--scroll":"P"};var Tt=(0,D.forwardRef)((e,t)=>{let o=m(wt),r=(0,D.useCallback)(n=>{!n.shiftKey&&n.key==="Enter"&&(n.preventDefault(),"form"in n.target&&n.target.form instanceof HTMLFormElement&&n.target?.form?.requestSubmit())},[]);return D.default.createElement("div",{className:(0,se.default)(o["sendbox__text-area"],{[o["sendbox__text-area--hidden"]]:e.hidden},e.className),role:e.hidden?"hidden":void 0},D.default.createElement("div",{className:(0,se.default)(o["sendbox__text-area-doppelganger"],o["sendbox__text-area-shared"],o["sendbox__text-area-input--scroll"])},e.value||e.placeholder," "),D.default.createElement("textarea",{"aria-label":e["aria-label"],className:(0,se.default)(o["sendbox__text-area-input"],o["sendbox__text-area-shared"],o["sendbox__text-area-input--scroll"]),"data-testid":e["data-testid"],onInput:e.onInput,onKeyDown:r,placeholder:e.placeholder,ref:t,rows:e.startRows??1,tabIndex:e.hidden?-1:void 0,value:e.value}))});Tt.displayName="TextArea";var kt=Tt;var _t=require("botframework-webchat-component"),Be=require("react"),Bt=require("use-ref-from"),{useConnectivityStatus:Oo,useLocalizer:Uo}=_t.hooks,Zo=({attachments:e,message:t})=>{let[o]=Oo(),r=Uo(),n=(0,Bt.useRefFrom)(o!=="connected"&&o!=="reconnected"?"offline":!t&&!e.length?"empty":void 0),u=(0,Be.useMemo)(()=>Object.freeze(new Map().set("empty",r("SEND_BOX_IS_EMPTY_TOOLTIP_ALT")).set("offline",r("CONNECTIVITY_STATUS_ALT_FATAL"))),[r]);return(0,Be.useMemo)(()=>Object.freeze([n,n.current&&u.get(n.current)]),[u,n])},Nt=Zo;var St=require("react");function Ne(e){let t=(0,St.useMemo)(()=>Math.random().toString(36).substr(2,5),[]);return e=e?`${e}--`:"",`${e}${t}`}var Et={sendbox:"R",sendbox__sendbox:"G","sendbox__attachment--in-grid":"t","sendbox__text-area--in-grid":"D","sendbox__sendbox-controls--in-grid":"M","sendbox__telephone-keypad--in-grid":"U","sendbox__sendbox-text":"C","sendbox__sendbox-controls":"j","sendbox__text-counter":"T","sendbox__text-counter--error":"I"};var{useFocus:Wo,useLocalizer:Xo,useMakeThumbnail:Go,useRegisterFocusSendBox:$o,useSendBoxAttachments:Vo,useSendMessage:Yo,useStyleOptions:qo}=Ct.hooks;function Jo(e){let t=(0,c.useRef)(null),[o,r]=(0,c.useState)(""),[n,u]=Vo(),[{hideTelephoneKeypadButton:p,hideUploadButton:a,maxMessageLength:b}]=qo(),x=!!b&&o.length>b,s=m(Et),d=Xo(),g=Yo(),y=Go(),A=Ne("sendbox__error-message-id"),[C,F]=Nt({message:o,attachments:n}),[_]=S(),B=Wo();$o((0,c.useCallback)(({noKeyboard:v,waitUntil:ie})=>{t.current&&(v?ie((async()=>{let Z=t.current?.getAttribute("readonly");t.current?.setAttribute("readonly","true"),await new Promise(V=>setTimeout(V,0)),t.current?.focus(),typeof Z!="string"?t.current?.removeAttribute("readonly"):t.current?.setAttribute("readonly",Z)})()):t.current?.focus())},[t]));let P=(0,Se.useRefFrom)(n),z=(0,Se.useRefFrom)(o),le=(0,c.useCallback)(v=>{"tabIndex"in v.target&&typeof v.target.tabIndex=="number"&&v.target.tabIndex>=0||B("sendBox")},[B]),de=(0,c.useCallback)(v=>r(v.currentTarget.value),[r]),Ce=(0,c.useCallback)(async v=>{let ie=Object.freeze(await Promise.all(v.map(Z=>y(Z).then(V=>Object.freeze({blob:Z,...V&&{thumbnailURL:V}})))));u(ie)},[y,u]),Ht=(0,c.useCallback)(v=>{v.preventDefault(),C.current!=="empty"&&!x&&(g(z.current,void 0,{attachments:P.current}),r(""),u([])),B("sendBox")},[P,z,g,u,r,x,C,B]),Lt=(0,c.useCallback)(v=>g(`/DTMF ${v}`),[g]),It={"aria-invalid":"false",...F&&{"aria-invalid":"true","aria-errormessage":A}};return c.default.createElement("form",{...It,className:(0,O.default)(s.sendbox,e.className),onSubmit:Ht},c.default.createElement(Te,null),c.default.createElement("div",{className:(0,O.default)(s.sendbox__sendbox),onClickCapture:le},c.default.createElement(kt,{"aria-label":d(x?"TEXT_INPUT_LENGTH_EXCEEDED_ALT":"TEXT_INPUT_ALT"),className:(0,O.default)(s["sendbox__sendbox-text"],s["sendbox__text-area--in-grid"]),"data-testid":f.sendBoxTextBox,hidden:_,onInput:de,placeholder:e.placeholder??d("TEXT_INPUT_PLACEHOLDER"),ref:t,value:o}),c.default.createElement(xe,{autoFocus:!0,className:s["sendbox__telephone-keypad--in-grid"],isHorizontal:!1,onButtonClick:Lt}),c.default.createElement(ft,{attachments:n,className:s["sendbox__attachment--in-grid"]}),c.default.createElement("div",{className:(0,O.default)(s["sendbox__sendbox-controls"],s["sendbox__sendbox-controls--in-grid"])},!_&&b&&c.default.createElement("div",{className:(0,O.default)(s["sendbox__text-counter"],{[s["sendbox__text-counter--error"]]:x})},`${o.length}/${b}`),c.default.createElement(ke,null,!p&&c.default.createElement(vt,null),!a&&c.default.createElement(ut,{onFilesAdded:Ce}),c.default.createElement(_e,null),c.default.createElement(R,{"aria-label":d("TEXT_INPUT_SEND_BUTTON_ALT"),"data-testid":f.sendBoxSendButton,disabled:x||_,type:"submit"},c.default.createElement(fe,null)))),c.default.createElement(ye,{onFilesAdded:Ce}),c.default.createElement(gt,{error:F,id:A})))}var Ee=(0,c.memo)(Jo);var{ThemeProvider:Qo}=Ft.Components,er=[()=>()=>()=>Ee],tr=({children:e})=>U.default.createElement(te,null,U.default.createElement(ce,null,U.default.createElement(Qo,{sendBoxMiddleware:er},e))),At=(0,U.memo)(tr);var or="tsup",rr="commonjs",nr="4.17.1",ar={buildTool:or,moduleFormat:rr,version:nr};(0,Mt.injectMetaTag)("botframework-webchat:fluent-theme","version=4.17.1; build-tool=tsup; module-format=commonjs");J();
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }var _injectmetatag = require('inject-meta-tag');var _botframeworkwebchatcomponent = require('botframework-webchat-component');var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames);var _react = require('react'); var _react2 = _interopRequireDefault(_react);var _usereffrom = require('use-ref-from');var{MonochromeImageMasker:So}=_botframeworkwebchatcomponent.Components,To=`data:image/svg+xml;utf8,${encodeURIComponent('<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z"/></svg>')}`;function Bo(e){return _react2.default.createElement(So,{className:_classnames2.default.call(void 0, "icon__add-document",e.className),src:To})}var ne=_react.memo.call(void 0, Bo);var{MonochromeImageMasker:zo}=_botframeworkwebchatcomponent.Components,Ao=`data:image/svg+xml;utf8,${encodeURIComponent('<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="m4.83 10.48 5.65-5.65a3 3 0 0 1 4.25 4.24L8 15.8a1.5 1.5 0 0 1-2.12-2.12l6-6.01a.5.5 0 1 0-.7-.71l-6 6.01a2.5 2.5 0 0 0 3.53 3.54l6.71-6.72a4 4 0 1 0-5.65-5.66L4.12 9.78a.5.5 0 0 0 .7.7Z"/></svg>')}`;function Lo(e){return _react2.default.createElement(zo,{className:_classnames2.default.call(void 0, "icon__attachment",e.className),src:Ao})}var ie=_react.memo.call(void 0, Lo);var{MonochromeImageMasker:Ro}=_botframeworkwebchatcomponent.Components,Vo=`data:image/svg+xml;utf8,${encodeURIComponent('<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 7.5a.5.5 0 1 0-1 0v3a.5.5 0 0 0 1 0v-3Zm.25-2a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Z"/></svg>')}`;function Oo(e){return _react2.default.createElement(Ro,{className:_classnames2.default.call(void 0, "icon__info--small",e.className),src:Vo})}var le=_react.memo.call(void 0, Oo);var{MonochromeImageMasker:jo}=_botframeworkwebchatcomponent.Components,Go=`data:image/svg+xml;utf8,${encodeURIComponent('<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M2.18 2.11a.5.5 0 0 1 .54-.06l15 7.5a.5.5 0 0 1 0 .9l-15 7.5a.5.5 0 0 1-.7-.58L3.98 10 2.02 2.63a.5.5 0 0 1 .16-.52Zm2.7 8.39-1.61 6.06L16.38 10 3.27 3.44 4.88 9.5h6.62a.5.5 0 1 1 0 1H4.88Z"/></svg>')}`;function Zo(e){return _react2.default.createElement(jo,{className:_classnames2.default.call(void 0, "icon__send",e.className),src:Go})}var ce=_react.memo.call(void 0, Zo);var{MonochromeImageMasker:Qo}=_botframeworkwebchatcomponent.Components,ea=`data:image/svg+xml;utf8,${encodeURIComponent('<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M6 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm0 4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM7.25 12a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 16a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM15.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z"/></svg>')}`;function ta(e){return _react2.default.createElement(Qo,{className:_classnames2.default.call(void 0, "icon__telephone-keypad",e.className),src:ea})}var se=_react.memo.call(void 0, ta);function oa(e){let t=document.createElement("style");return t.append(document.createTextNode(e)),t}function qe(...e){return function(){if(!globalThis.document)throw new Error("Unable to create styles: document is not defined");return e.map(t=>oa(t))}}var aa=".webchat-fluent .pa{background-color:var(--webchat-colorNeutralBackground4);border-radius:inherit;cursor:copy;display:grid;gap:8px;inset:0;place-content:center;place-items:center;position:absolute;transition:all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent ._a{background-color:var(--webchat-colorBrandBackground2Hover)}.webchat-fluent .fa{font-size:36px;pointer-events:none}.webchat-fluent .ka{box-sizing:border-box;display:grid;gap:var(--webchat-spacingHorizontalXXXL);grid-template-areas:\"body\" \"toolbar\";grid-template-rows:auto auto;padding:var(--webchat-spacingHorizontalXXXL) var(--webchat-spacingHorizontalM);position:relative}.webchat-fluent .ma{align-items:center;display:flex;flex-flow:column nowrap;font-family:var(--webchat-fontFamilyBase);font-size:var(--webchat-fontSizeBase300);font-weight:var(--webchat-fontWeightRegular);gap:var(--webchat-spacingVerticalXS);grid-area:body;line-height:var(--webchat-lineHeightBase300);text-align:center}.webchat-fluent .xa{opacity:60%}.webchat-fluent .xa .ra{filter:grayscale(1)}.webchat-fluent .ra{border-radius:var(--webchat-borderRadiusMedium);height:64px;margin-block-end:var(--webchat-spacingVerticalM)}.webchat-fluent .Ba{color:var(--webchat-colorNeutralForeground1);font-family:inherit;font-size:var(--webchat-fontSizeHero700);font-weight:var(--webchat-fontWeightSemibold);line-height:var(--webchat-lineHeightHero700);margin:0;overflow-wrap:anywhere}.webchat-fluent .ya{font-size:var(--webchat-fontSizeBase300);line-height:var(--webchat-lineHeightBase300);overflow-wrap:anywhere}.webchat-fluent .Na{grid-area:toolbar}.webchat-fluent .Sa{-webkit-appearance:none;appearance:none;background-color:var(--webchat-colorNeutralBackground1);border:0;border-radius:16px;box-shadow:var(--webchat-shadow2);color:var(--webchat-colorNeutralForeground1);cursor:pointer;display:grid;gap:var(--webchat-spacingVerticalS);grid-template-areas:\"title\" \"subtitle\";grid-template-columns:1fr;grid-template-rows:auto 1fr;overflow:hidden;padding:16px 20px;text-align:left;transition:background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);-webkit-user-select:none;user-select:none}.webchat-fluent .Sa:has(.oa){grid-template-areas:\"image title\" \"image subtitle\";grid-template-columns:20px 1fr}.webchat-fluent .Sa:empty{row-gap:14px}.webchat-fluent .Sa:is([aria-disabled=true],:empty){cursor:default}.webchat-fluent .Sa[aria-disabled=true]:not(:empty){background-color:var(--webchat-colorNeutralBackgroundDisabled)}.webchat-fluent .Sa:hover:not([aria-disabled=true],:empty){background-color:var(--webchat-colorNeutralBackground1Hover)}.webchat-fluent .Sa:active:not([aria-disabled=true],:empty){background-color:var(--webchat-colorNeutralBackground1Pressed)}.webchat-fluent .Sa:focus-visible{outline:solid 2px var(--webchat-colorStrokeFocus2);outline-offset:-2px}.webchat-fluent .Sa:empty:after,.webchat-fluent .Sa:empty:before{animation:ta 3s linear infinite;background-attachment:fixed;background-image:linear-gradient(-90deg,var(--webchat-colorNeutralStencil1) 0%,var(--webchat-colorNeutralStencil2) 50%,var(--webchat-colorNeutralStencil1) 100%);background-size:300% 100%;content:\"\";display:block}@media (prefers-reduced-motion: reduce){.webchat-fluent .Sa:empty:after,.webchat-fluent .Sa:empty:before{animation-delay:-1s;animation-play-state:paused}}.webchat-fluent .Sa:dir(rtl):empty:after,.webchat-fluent .Sa:dir(rtl):empty:before{animation-direction:reverse}.webchat-fluent .Sa:empty:after{border-radius:16px;height:16px;width:100%}.webchat-fluent .Sa:empty:before{border-radius:18px;height:18px;width:66%}@keyframes ta{0%{background-position-x:0%}to{background-position-x:-300%}}.webchat-fluent .oa{color:var(--webchat-colorNeutralForeground4);font-size:20px;grid-area:image}.webchat-fluent .za{font-family:var(--webchat-fontFamilyBase);font-size:14px;font-weight:var(--webchat-fontWeightRegular);grid-area:subtitle;line-height:20px;pointer-events:none}.webchat-fluent .Ha{font-family:var(--webchat-fontFamilyBase);font-size:14px;font-weight:var(--webchat-fontWeightSemibold);grid-area:title;line-height:20px}.webchat-fluent .Fa{container-name:ca;container-type:inline-size}.webchat-fluent .la{display:grid;gap:var(--webchat-spacingHorizontalM);grid-template-columns:1fr 1fr 1fr;padding:0}@container ca (width <= 480px){.webchat-fluent .la{grid-template-columns:1fr}}.webchat-fluent .aa{display:contents;font-family:var(--webchat__font--primary);--webchat__bubble--inline-padding: var(--webchat-spacingHorizontalL);--webchat__bubble--block-padding: var(--webchat-spacingVerticalM);--webchat__bubble--min-height: var(--webchat-bubble-minHeight);--webchat__bubble--max-width: var(--webchat-bubble-maxWidth);--webchat__bubble--min-width: var(--webchat-bubble-minWidth);--webchat-bubble-maxWidth: var(--bubble-maxWidth, max(450px, 75%));--webchat-bubble-minWidth: var(--bubble-minWidth, auto);--webchat-bubble-minHeight: var(--bubble-minHeight, 36px);--webchat-externalLink-mask: var( --externalLink-mask, var(--webchat__icon-url--external-link) center center / 10px 10px );--webchat-externalLink-maxWidth: var(--externalLink-maxWidth, 204px)}.webchat-fluent .aa:has(.webchat__stacked-layout .webchat__bubble--from-user){--webchat__bubble--background-color: var(--webchat-colorBrandBackground2);--webchat__bubble--block-padding: var(--webchat-spacingVerticalS);--webchat__bubble--min-width: auto}.webchat-fluent .aa.Ma{--webchat__bubble--background-color: var(--webchat-colorNeutralBackground1);--webchat__bubble--border-radius: var(--webchat-borderRadiusXLarge);--webchat__bubble--box-shadow: var(--webchat-shadow4)}.webchat-fluent .aa.ia{--webchat__bubble--border-radius: var(--webchat-borderRadiusXLarge)}.webchat-fluent .aa.ia .webchat__activity-status{margin:0 0 var(--webchat-spacingHorizontalXXS)}.webchat-fluent .aa.ia .webchat__stacked-layout__status{order:-1}.webchat-fluent .aa.ia:has(.webchat__bubble--from-user) .webchat__bubble{margin-block-end:var(--webchat-spacingVerticalM)}.webchat-fluent .aa.ia .webchat__bubble .webchat__text-content .webchat__text-content__generated-badge{display:none}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)){--webchat__bubble--block-padding: 0;--webchat__bubble--border-radius: var(--webchat-borderRadiusMedium);--webchat__bubble--inline-padding: 0;--webchat__bubble--max-width: 100%;--webchat__bubble--min-height: 20px;display:flex;flex-flow:column nowrap;gap:var(--webchat-spacingVerticalS);margin-inline:var(--webchat-spacingHorizontalM);padding:var(--webchat-spacingVerticalMNudge) var(--webchat-spacingHorizontalM) var(--webchat-spacingVerticalM);position:relative}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .webchat__stacked-layout{margin:0;position:static}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .webchat__bubble{position:static;width:var(--webchat__bubble--max-width)}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .webchat__bubble .webchat__bubble__content{overflow:visible}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .webchat__text-content{margin-inline-start:28px}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .border-loader{display:flex;flex-flow:column nowrap;gap:var(--webchat-spacingVerticalS);padding-inline-end:var(--webchat-spacingHorizontalM);width:500px}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .border-loader__track{border-radius:inherit;box-sizing:border-box;clip-path:border-box;margin-inline-start:28px;order:-1;width:auto}.webchat-fluent .aa.ia:not(:has(.webchat__bubble--from-user)) .webchat__stacked-layout__status{display:none}.webchat-fluent .aa .webchat__basic-transcript__activity-body:not(:empty){padding-block-end:var(--webchat-spacingVerticalXL)}.webchat-fluent .aa .webchat__stacked-layout{display:flex;flex-flow:column nowrap}.webchat-fluent .aa .webchat__stacked-layout .webchat__stacked-layout__content:has(.webchat__bubble){max-width:100%;overflow:visible}.webchat-fluent .aa .webchat__stacked-layout .webchat__stacked-layout__status{font-size:var(--webchat__font-size--small);line-height:var(--webchat__line-height--small)}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble{max-width:min(var(--webchat__bubble--max-width),100%);min-width:var(--webchat__bubble--min-width);overflow:visible}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble:has(.border-loader){width:100%}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble:has(.activity-loader) .webchat__bubble__content{background:transparent;box-shadow:none}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__bubble__content{background-color:var(--webchat__bubble--background-color);border-radius:var(--webchat__bubble--border-radius);border-width:0;box-shadow:var(--webchat__bubble--box-shadow);box-sizing:border-box;color:var(--webchat-colorNeutralForeground1);max-width:100%;min-height:var(--webchat__bubble--min-height)}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__text-content{font-size:var(--webchat__font-size--medium);line-height:var(--webchat__line-height--medium);min-height:auto;padding-block:var(--webchat__bubble--block-padding);padding-inline:var(--webchat__bubble--inline-padding)}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__text-content:empty{padding-block-end:0}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__text-content+.webchat__text-content{margin-top:calc(var(--webchat__bubble--block-padding) * -1)}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__text-content__generated-badge{align-items:center;align-self:flex-start;background-color:var(--webchat-colorNeutralBackground5);border-radius:var(--webchat-borderRadiusMedium);box-sizing:border-box;color:var(--webchat-colorNeutralForeground3);cursor:default;display:inline-flex;font-size:var(--webchat-fontSizeBase100);height:16px;line-height:var(--webchat-lineHeightBase100);padding-inline:var(--webchat-spacingHorizontalXS)}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__fileContent__badge{cursor:default;font-size:var(--webchat-fontSizeBase300);line-height:var(--webchat-lineHeightBase300)}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__fileContent__badge .webchat__fileContent__fileName{color:var(--webchat-colorBrandForegroundLink);font-family:inherit}.webchat-fluent .aa .webchat__stacked-layout .webchat__bubble .webchat__fileContent__badge .webchat__fileContent__size{color:var(--webchat-colorNeutralForeground2);font-family:inherit}.webchat-fluent .aa .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier){color:var(--webchat-colorBrandForegroundLink);text-decoration-color:transparent}.webchat-fluent .aa .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier):target{color:var(--webchat-colorBrandForegroundLinkSelected)}.webchat-fluent .aa .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier):hover{color:var(--webchat-colorBrandForegroundLinkHover);text-decoration:underline 1px currentColor}.webchat-fluent .aa .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier):active{color:var(--webchat-colorBrandForegroundLinkPressed)}.webchat-fluent .aa .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier):focus-visible{outline:none;text-decoration:underline 1px double var(--webchat-colorStrokeFocus2)}.webchat-fluent .aa .webchat__render-markdown a[href]:not(.webchat__render-markdown__pure-identifier) .webchat__render-markdown__external-link-icon{background:currentColor;-webkit-mask:var(--webchat__icon-url--external-link) no-repeat;mask:var(--webchat__icon-url--external-link) no-repeat}.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier{align-items:center;background-color:var(--webchat-colorNeutralBackground3);border-radius:var(--webchat-borderRadiusMedium);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);box-sizing:border-box;color:var(--webchat-colorNeutralForeground2);display:inline-flex;font-size:var(--webchat-fontSizeBase100);font-weight:var(--webchat-fontWeightSemibold);height:14px;justify-content:center;line-height:var(--webchat-lineHeightBase100);margin-left:var(--webchat-spacingHorizontalXXS);margin-right:var(--webchat-spacingHorizontalXXS);min-width:14px;text-decoration:none;transition:all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid);vertical-align:calc((var(--webchat-lineHeightBase100) - var(--webchat-fontSizeBase100)) / 2)}:is(.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier):hover{background-color:var(--webchat-colorBrandBackground2Hover);border-color:var(--webchat-colorBrandStroke2Hover);color:var(--webchat-colorBrandForeground2Hover);cursor:pointer}:is(.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier):hover:active{background-color:var(--webchat-colorBrandBackground2Pressed);border-color:var(--webchat-colorBrandStroke2Pressed);color:var(--webchat-colorBrandForeground2Pressed)}:is(.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier):before,:is(.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier):after{all:unset}:is(.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier):has(.webchat__render-markdown__external-link-icon){padding-inline:3px}:is(.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__citation,.webchat-fluent .aa .webchat__render-markdown .webchat__render-markdown__pure-identifier) .webchat__render-markdown__external-link-icon{background:currentColor;height:.7em;-webkit-mask:var(--webchat__icon-url--external-link) no-repeat;mask:var(--webchat__icon-url--external-link) no-repeat}.webchat-fluent .aa .webchat__link-definitions__header{border-radius:var(--webchat-borderRadiusMedium)}.webchat-fluent .aa .webchat__link-definitions__header .webchat__link-definitions__header-text{color:var(--webchat-colorNeutralForeground3)}.webchat-fluent .aa .webchat__link-definitions__header .webchat__link-definitions__header-chevron{fill:var(--webchat-colorNeutralForeground3);font-size:var(--webchat__font-size--small);width:1em}.webchat-fluent .aa .webchat__link-definitions__header:focus-visible{outline-offset:1px;outline:var(--webchat-strokeWidthThin) solid var(--webchat-colorStrokeFocus2)}.webchat-fluent .aa .webchat__link-definitions{--webchat__citation__external-link--mask: var(--webchat-externalLink-mask);--webchat__citation__link--max-width: var(--webchat-externalLink-maxWidth)}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list{color:var(--webchat__color--subtle);display:flex;flex-flow:row wrap;gap:var(--webchat-spacingHorizontalS)}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list-item{border-radius:var(--webchat-borderRadiusMedium);max-width:var(--webchat__citation__link--max-width)}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list-item-box{background-color:var(--webchat-colorNeutralBackground3);border-radius:var(--webchat-borderRadiusMedium);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);box-sizing:border-box;color:currentColor;display:inline-flex;font-size:var(--webchat__font-size--small);height:24px;padding-inline-end:var(--webchat-spacingHorizontalS)}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list-item-body{font-family:inherit;gap:var(--webchat-spacingHorizontalSNudge);min-width:0;padding:0}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__badge{align-self:center;background-color:transparent;border-radius:0;border:none;color:currentColor;font-size:var(--webchat-fontSizeBase100);font-weight:var(--webchat-fontWeightSemibold);line-height:var(--webchat-lineHeightBase100);margin:0;min-width:20px;padding:0;position:relative;text-align:center}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__badge:after{border-right:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);bottom:0;content:\"\";display:block;height:16px;position:absolute;right:0;top:0;width:0}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list-item-main-text{gap:var(--webchat-spacingHorizontalXS)}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list-item-text{color:currentColor;text-decoration:none;text-overflow:ellipsis}.webchat-fluent .aa .webchat__link-definitions .webchat__link-definitions__list-item-main-text:has(.webchat__link-definitions__open-in-new-window-icon):before{align-self:center;background:currentColor;color:currentColor;content:\"\";flex:none;font-size:var(--webchat-fontSizeBase400);height:1em;-webkit-mask:var(--webchat__citation__external-link--mask) no-repeat;mask:var(--webchat__citation__external-link--mask) no-repeat;padding:0;width:1em}.webchat-fluent .aa .webchat__link-definitions :is(.webchat__link-definitions__list-item-badge,.webchat__link-definitions__open-in-new-window-icon){display:none}.webchat-fluent .Wa{align-items:center;box-sizing:border-box;cursor:default;display:flex;flex-wrap:nowrap;gap:var(--webchat-spacingHorizontalS);max-width:var(--webchat__bubble--max-width)}.webchat-fluent .Xa{aspect-ratio:1;background-color:var(--background-color);border-radius:var(--webchat-borderRadiusSmall);width:20px}.webchat-fluent .La{font-size:var(--webchat-fontSizeBase300);font-weight:var(--webchat-fontWeightSemibold);line-height:var(--webchat-lineHeightBase300);overflow:hidden;text-overflow:ellipsis;text-wrap:nowrap}.webchat-fluent .Va{align-items:center;background-color:var(--webchat-colorNeutralBackground5);border-radius:var(--webchat-borderRadiusMedium);color:var(--webchat-colorNeutralForeground3);display:flex;flex:none;font-size:var(--webchat-fontSizeBase100);height:20px;line-height:var(--webchat-lineHeightBase100);padding-inline:var(--webchat-spacingHorizontalXS)}.webchat-fluent .Ta{align-items:center;background:transparent;border-radius:var(--webchat-borderRadiusXLarge);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandStroke2);color:currentColor;cursor:pointer;display:flex;font-family:var(--webchat__font--primary);font-size:var(--webchat-fontSizeBase200);gap:var(--webchat-spacingHorizontalXS);padding:var(--webchat-spacingVerticalXS) var(--webchat-spacingHorizontalS);text-align:start;transition:all var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}@media (hover: hover){.webchat-fluent .Ta:not([aria-disabled=true]):hover{background-color:var(--webchat-colorBrandBackground2Hover);color:var(--webchat-colorBrandForeground2Hover)}}.webchat-fluent .Ta:not([aria-disabled=true]):active{background-color:var(--webchat-colorBrandBackground2Pressed);color:var(--webchat-colorBrandForeground2Pressed)}.webchat-fluent .Ta[aria-disabled=true]{color:var(--webchat-colorNeutralForegroundDisabled);cursor:not-allowed}.webchat-fluent .Ra{font-size:var(--webchat-fontSizeBase200);height:1em;width:1em}.webchat-fluent .Pa{align-items:flex-end;align-self:flex-end;display:flex;flex-direction:column;gap:8px}.webchat-fluent .Pa:not(:empty){padding-block-end:8px;padding-inline-start:4px}.webchat-fluent .Pa.Da{flex-direction:row;flex-wrap:wrap;justify-content:flex-end}.webchat-fluent .Pa.Ca{flex-direction:column}.webchat-fluent .na{-webkit-user-select:none;align-items:center;-webkit-appearance:none;appearance:none;background-color:#fff;border-radius:100%;border:solid 1px var(--webchat-colorNeutralStroke1);color:var(--webchat-colorGray200);font-weight:var(--webchat-fontWeightSemibold);cursor:pointer;display:flex;flex-direction:column;height:60px;opacity:.7;padding:0;position:relative;touch-action:none;user-select:none;width:60px}.webchat-fluent .na:hover{background-color:var(--webchat-colorGray30)}.webchat-fluent .ba{color:var(--webchat-colorGray190);font-size:10px}.webchat-fluent .da{font-size:24px;margin-top:8px}.webchat-fluent .Ga .na{height:32px;justify-content:center;margin:8px 4px;width:32px}.webchat-fluent .Ga .ba{display:none}.webchat-fluent .Ga .da{font-size:20px;margin-top:0}.webchat-fluent .Ua{align-items:center;background:var(--webchat-colorNeutralBackground1);border:none;border-radius:var(--webchat-borderRadiusXLarge);display:flex;flex-direction:column;font-family:var(--webchat-fontFamilyBase);justify-content:center}.webchat-fluent .ja{box-sizing:border-box;display:grid;gap:16px;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);justify-items:center;padding:16px;width:100%}.webchat-fluent .Aa{align-items:center;color:var(--webchat-colorNeutralForeground4);display:flex;font-size:12px;gap:6px;margin-block-end:6px}.webchat-fluent .Ia{color:var(--webchat-colorBrandForegroundLink);text-decoration-color:transparent}.webchat-fluent .Ia:target{color:var(--webchat-colorBrandForegroundLinkSelected)}.webchat-fluent .Ia:hover{color:var(--webchat-colorBrandForegroundLinkHover);text-decoration:underline 1px currentColor}.webchat-fluent .Ia:active{color:var(--webchat-colorBrandForegroundLinkPressed)}.webchat-fluent .Ia:focus-visible{outline:none;text-decoration:underline 1px double var(--webchat-colorStrokeFocus2)}.webchat-fluent .Ka{--webchat__sendbox-button-height: 32px;display:flex;gap:4px;height:var(--webchat__sendbox-button-height);margin-inline-start:auto}.webchat-fluent .Oa{align-items:center;-webkit-appearance:none;appearance:none;aspect-ratio:1;background:transparent;border-radius:var(--webchat-borderRadiusSmall);border:none;color:currentColor;cursor:pointer;display:flex;height:var(--webchat__sendbox-button-height);justify-content:center;padding:3px}.webchat-fluent .Oa>.webchat__monochrome-image-masker{font-size:20px;pointer-events:none}.webchat-fluent .Oa.Ea{color:var(--webchat-colorNeutralForeground2BrandSelected)}@media (hover: hover){.webchat-fluent .Oa:not([aria-disabled=true]):hover{color:var(--webchat-colorNeutralForeground2BrandHover)}}.webchat-fluent .Oa:not([aria-disabled=true]):active{color:var(--webchat-colorNeutralForeground2BrandPressed)}.webchat-fluent .Oa[aria-disabled=true]{color:var(--webchat-colorNeutralForegroundDisabled);cursor:not-allowed}.webchat-fluent .qa{align-self:center;border-inline-end:1px solid var(--webchat-colorNeutralStroke2);height:28px}.webchat-fluent .qa:is(:first-child,:last-child,:only-child){display:none}.webchat-fluent .Ja{display:grid}.webchat-fluent .Qa{font-size:0;height:0;opacity:0;width:1px}.webchat-fluent .Ya{border-radius:var(--webchat-borderRadiusLarge);border:1px solid var(--webchat-colorNeutralStroke1);cursor:default;padding:6px 8px;width:fit-content}.webchat-fluent .Za{color:transparent;font-size:0;height:0;left:0;position:absolute;top:0;width:0}.webchat-fluent .ha{--webchat__sendbox--padding: var(--webchat__padding--sendbox);color:var(--webchat-colorNeutralForeground1);font-family:var(--webchat-fontFamilyBase);padding:var(--webchat__sendbox--padding);text-rendering:optimizeLegibility;--webchat-sendbox-attachment-area-active: ;--webchat-sendbox-border-radius: var(--webchat-borderRadiusLarge)}.webchat-fluent .ha.ae .sa:not(.ua){visibility:hidden}.webchat-fluent .ee{background-color:var(--webchat-colorNeutralBackground1);border-radius:var(--webchat-sendbox-border-radius);border:1px solid var(--webchat-colorNeutralStroke1);display:grid;font-family:var(--webchat-fontFamilyBase);font-size:14px;gap:6px;grid-template:[telephone-keypad-start] \"text-area\" [telephone-keypad-end] var(--webchat-sendbox-attachment-area-active) \"controls\" / [telephone-keypad] 1fr;line-height:20px;padding:8px;position:relative}.webchat-fluent .ee:has(.wa){--webchat-sendbox-attachment-area-active: \"attachment\"}.webchat-fluent .ee:focus-within{border-color:var(--webchat-colorNeutralStroke1Selected)}.webchat-fluent .ee:after{border-bottom-left-radius:var(--webchat-sendbox-border-radius);border-bottom-right-radius:var(--webchat-sendbox-border-radius);border-bottom:var(--webchat-strokeWidthThicker) solid var(--webchat-colorCompoundBrandForeground1Hover);bottom:-1px;clip-path:inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);content:\"\";height:var(--webchat-sendbox-border-radius);left:-1px;position:absolute;right:-1px;transition:clip-path var(--webchat-durationUltraFast) var(--webchat-curveAccelerateMid)}.webchat-fluent .ee:focus-within:after{clip-path:inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);transition:clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent .ee>.re{grid-area:text-area}.webchat-fluent .ee>.wa{grid-area:attachment}.webchat-fluent .ee>.oe{grid-area:controls}.webchat-fluent .ee>.te{grid-area:telephone-keypad}.webchat-fluent .ce{background-color:transparent;border:none;flex:auto;font-family:var(--webchat-fontFamilyBase);font-size:14px;line-height:20px;outline:none;margin:var(--webchat-spacingVerticalXS) var(--webchat-spacingHorizontalXS) var(--webchat-spacingVerticalNone);resize:none}@media only screen and (hover: none) and (pointer: coarse){.webchat-fluent .ce:focus-within{font-size:16px}}.webchat-fluent .le{align-items:center;display:flex;padding-inline-start:4px}.webchat-fluent .sa{color:var(--webchat-colorNeutralForeground4);cursor:default;font-family:var(--webchat-fontFamilyNumeric);font-size:10px;line-height:14px;margin-inline-end:4px}.webchat-fluent .ua{color:var(--webchat-colorStatusDangerForeground1)}.webchat-fluent .ie{display:grid;grid-template-areas:\"main\";max-height:200px;overflow:auto;scrollbar-gutter:stable}.webchat-fluent .ne{height:0;visibility:collapse}.webchat-fluent .be .ga{visibility:unset}.webchat-fluent .be .va{background-color:transparent;caret-color:var(--webchat-colorNeutralForeground1);color:transparent}.webchat-fluent .be textarea::placeholder{color:transparent}.webchat-fluent .de{border:none;font:inherit;grid-area:main;outline:inherit;overflow-wrap:anywhere;resize:inherit}.webchat-fluent .ga{overflow:visible;pointer-events:none;-webkit-user-select:none;user-select:none;visibility:hidden;white-space:pre-wrap}.webchat-fluent .va{background-color:inherit;color:currentColor;contain:size;overflow:hidden;padding:0}.webchat-fluent .he{scrollbar-color:unset;scrollbar-width:unset;-moz-scrollbar-color:var(--webchat-colorNeutralBackground5) var(--webchat-colorNeutralForeground2);-moz-scrollbar-width:thin}.webchat-fluent .he::-webkit-scrollbar{width:8px}.webchat-fluent .he::-webkit-scrollbar-track{background-color:var(--webchat-colorNeutralBackground5);border-radius:16px}.webchat-fluent .he::-webkit-scrollbar-thumb{background-color:var(--webchat-colorNeutralForeground2);border-radius:16px}.webchat-fluent .he::-webkit-scrollbar-corner{background-color:var(--webchat-colorNeutralBackground5)}.webchat-fluent .se{flex:none;height:8px;margin:var(--webchat-spacingHorizontalM) 0 0 18px;width:auto}.webchat-fluent .se.ue{margin:0 0 var(--webchat-spacingHorizontalM) var(--webchat-spacingVerticalSNudge)}.webchat-fluent .we{align-items:center;box-sizing:border-box;color:var(--webchat-colorNeutralForeground3);display:flex;flex-direction:row;font-family:var(--webchat__font--primary);font-size:var(--webchat-fontSizeBase200);font-weight:var(--webchat-fontWeightRegular);gap:var(--webchat-spacingHorizontalM);line-height:var(--webchat-lineHeightBase200);padding:var(--webchat-spacingVerticalSNudge) var(--webchat-spacingHorizontalM);text-align:center;width:100%}.webchat-fluent .we:before,.webchat-fluent .we:after{border-top:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke2);content:\"\";display:flex;flex:auto;min-width:8px}.webchat-fluent .ge{text-align:center}.webchat-fluent._{display:contents;--webchat-colorNeutralForegroundDisabled: var(--colorNeutralForegroundDisabled, #bdbdbd);--webchat-colorNeutralForeground1: var(--colorNeutralForeground1, #242424);--webchat-colorNeutralForeground1Hover: var(--colorNeutralForeground1Hover, #242424);--webchat-colorNeutralForeground1Pressed: var(--colorNeutralForeground1Pressed, #242424);--webchat-colorNeutralForeground2: var(--colorNeutralForeground2, #424242);--webchat-colorNeutralForeground2BrandHover: var(--colorNeutralForeground2BrandHover, #02729c);--webchat-colorNeutralForeground2BrandPressed: var(--colorNeutralForeground2BrandPressed, #01678c);--webchat-colorNeutralForeground2BrandSelected: var(--colorNeutralForeground2BrandSelected, #067191);--webchat-colorNeutralForeground3: var(--colorNeutralForeground3, #616161);--webchat-colorNeutralForeground4: var(--colorNeutralForeground4, #707070);--webchat-colorNeutralForeground5: var(--colorNeutralForeground5, #7e7e7e);--webchat-colorNeutralForegroundOnBrand: var(--colorNeutralForegroundOnBrand, #fff);--webchat-colorNeutralBackgroundDisabled: var(--colorNeutralBackgroundDisabled, #f0f0f0);--webchat-colorNeutralBackground1: var(--colorNeutralBackground1, #ffffff);--webchat-colorNeutralBackground1Hover: var(--colorNeutralBackground1Hover, #f5f5f5);--webchat-colorNeutralBackground1Pressed: var(--colorNeutralBackground1Pressed, #e0e0e0);--webchat-colorNeutralBackground3: var(--colorNeutralBackground3, #f5f5f5);--webchat-colorNeutralBackground4: var(--colorNeutralBackground4, #f0f0f0);--webchat-colorNeutralBackground5: var(--colorNeutralBackground5, #ebebeb);--webchat-colorNeutralBackground6: var(--colorNeutralBackground6, #e6e6e6);--webchat-colorNeutralStencil1: var(--colorNeutralStencil1, #e6e6e6);--webchat-colorNeutralStencil2: var(--colorNeutralStencil2, #fafafa);--webchat-colorNeutralShadowAmbient: var(--colorNeutralShadowAmbient, rgba(0, 0, 0, .12));--webchat-colorNeutralShadowKey: var(--colorNeutralShadowKey, rgba(0, 0, 0, .14));--webchat-colorTransparentBackground: var(--colorTransparentBackground, rgba(0, 0, 0, .4));--webchat-colorNeutralStrokeDisabled: var(--colorNeutralStrokeDisabled, #e0e0e0);--webchat-colorNeutralStroke1: var(--colorNeutralStroke1, #d1d1d1);--webchat-colorNeutralStroke1Hover: var(--colorNeutralStroke1Hover, #c7c7c7);--webchat-colorNeutralStroke1Pressed: var(--colorNeutralStroke1Pressed, #b3b3b3);--webchat-colorNeutralStroke1Selected: var(--colorNeutralStroke1Selected, #bdbdbd);--webchat-colorNeutralStroke2: var(--colorNeutralStroke2, #e0e0e0);--webchat-colorStrokeFocus2: var(--colorStrokeFocus2, #000000);--webchat-colorBrandStroke2: var(--colorBrandStroke2, #9edcf7);--webchat-colorBrandStroke2Pressed: var(--colorBrandStroke2Pressed, #01384d);--webchat-colorTransparentStroke: var(--colorTransparentStroke, transparent);--webchat-colorBrandForeground1: var(--colorBrandForeground1, #01678c);--webchat-colorBrandForeground2Hover: var(--colorBrandForeground2Hover, #015a7a);--webchat-colorBrandForeground2Pressed: var(--colorBrandForeground2Pressed, #01384d);--webchat-colorBrandForegroundLink: var(--colorBrandForegroundLink, #01678c);--webchat-colorBrandForegroundLinkHover: var(--colorBrandForegroundLinkHover, #015a7a);--webchat-colorBrandForegroundLinkPressed: var(--colorBrandForegroundLinkPressed, #014259);--webchat-colorBrandForegroundLinkSelected: var(--colorBrandForegroundLinkSelected, #01678c);--webchat-colorBrandBackground: var(--colorBrandBackground, #077fab);--webchat-colorBrandBackgroundHover: var(--colorBrandBackgroundHover, #06729a);--webchat-colorBrandBackgroundPressed: var(--colorBrandBackgroundPressed, #044760);--webchat-colorBrandBackground2: var(--colorBrandBackground2, #def2fc);--webchat-colorBrandBackground2Hover: var(--colorBrandBackground2Hover, #bee7fa);--webchat-colorBrandBackground2Pressed: var(--colorBrandBackground2Pressed, #7fd2f5);--webchat-colorCompoundBrandForeground1Hover: var(--colorCompoundBrandForeground1Hover, #02729c);--webchat-colorStatusDangerForeground1: var(--colorStatusDangerForeground1, #b10e1c);--webchat-colorGray30: var(--colorGray30, #edebe9);--webchat-colorGray160: var(--colorGray160, #323130);--webchat-colorGray190: var(--colorGray190, #201f1e);--webchat-colorGray200: var(--colorGray200, #1b1a19);--webchat-colorGrey8: #141414;--webchat-colorGrey14: #242424;--webchat-colorGrey92: #ebebeb;--webchat-colorGrey98: #fafafa;--webchat-shadow2: var(--shadow2, 0 0 2px rgba(0, 0, 0, 12%), 0 1px 2px rgba(0, 0, 0, 14%));--webchat-shadow4: var(--shadow4, 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .14));--webchat-shadow16: var(--shadow16, 0 6.4px 14.4px 0 rgba(0, 0, 0, .132), 0 1.2px 3.6px 0 rgba(0, 0, 0, .108));--webchat-shadow64: var(--shadow64, 0 0 8px rgba(0, 0, 0, .12), 0 32px 64px rgba(0, 0, 0, .14));--webchat-spacingHorizontalNone: var(--spacingHorizontalNone, 0);--webchat-spacingHorizontalXXS: var(--spacingHorizontalXXS, 2px);--webchat-spacingHorizontalXS: var(--spacingHorizontalXS, 4px);--webchat-spacingHorizontalSNudge: var(--spacingHorizontalSNudge, 6px);--webchat-spacingHorizontalS: var(--spacingHorizontalS, 8px);--webchat-spacingHorizontalMNudge: var(--spacingHorizontalMNudge, 10px);--webchat-spacingHorizontalM: var(--spacingHorizontalM, 12px);--webchat-spacingHorizontalL: var(--spacingHorizontalL, 16px);--webchat-spacingHorizontalXL: var(--spacingHorizontalXL, 20px);--webchat-spacingHorizontalXXL: var(--spacingHorizontalXXL, 24px);--webchat-spacingHorizontalXXXL: var(--spacingHorizontalXXXL, 32px);--webchat-spacingVerticalNone: var(--spacingVerticalNone, 0);--webchat-spacingVerticalXXS: var(--spacingVerticalXXS, 2px);--webchat-spacingVerticalXS: var(--spacingVerticalXS, 4px);--webchat-spacingVerticalSNudge: var(--spacingVerticalSNudge, 6px);--webchat-spacingVerticalS: var(--spacingVerticalS, 8px);--webchat-spacingVerticalMNudge: var(--spacingVerticalMNudge, 10px);--webchat-spacingVerticalM: var(--spacingVerticalM, 12px);--webchat-spacingVerticalL: var(--spacingVerticalL, 16px);--webchat-spacingVerticalXL: var(--spacingVerticalXL, 20px);--webchat-spacingVerticalXXL: var(--spacingVerticalXXL, 24px);--webchat-spacingVerticalXXXL: var(--spacingVerticalXXXL, 32px);--webchat-fontFamilyBase: var( --fontFamilyBase, \"Segoe UI\", \"Segoe UI Web (West European)\", -apple-system, BlinkMacSystemFont, Roboto, \"Helvetica Neue\", sans-serif );--webchat-fontFamilyMonospace: var(--fontFamilyMonospace, Consolas, \"Courier New\", Courier, monospace);--webchat-fontFamilyNumeric: var( --fontFamilyNumeric, Bahnschrift, \"Segoe UI\", \"Segoe UI Web (West European)\", -apple-system, BlinkMacSystemFont, Roboto, \"Helvetica Neue\", sans-serif );--webchat-fontWeightRegular: var(--fontWeightRegular, 400);--webchat-fontWeightSemibold: var(--fontWeightSemibold, 600);--webchat-fontSizeBase100: var(--fontSizeBase100, 10px);--webchat-fontSizeBase200: var(--fontSizeBase200, 12px);--webchat-fontSizeBase300: var(--fontSizeBase300, 14px);--webchat-fontSizeBase400: var(--fontSizeBase400, 16px);--webchat-fontSizeBase500: var(--fontSizeBase500, 20px);--webchat-fontSizeBase600: var(--fontSizeBase600, 24px);--webchat-fontSizeHero700: var(--fontSizeHero700, 28px);--webchat-fontSizeHero800: var(--fontSizeHero800, 32px);--webchat-fontSizeHero900: var(--fontSizeHero900, 40px);--webchat-lineHeightBase100: var(--lineHeightBase100, 14px);--webchat-lineHeightBase200: var(--lineHeightBase200, 16px);--webchat-lineHeightBase300: var(--lineHeightBase300, 20px);--webchat-lineHeightBase400: var(--lineHeightBase400, 22px);--webchat-lineHeightBase500: var(--lineHeightBase500, 28px);--webchat-lineHeightBase600: var(--lineHeightBase600, 32px);--webchat-lineHeightHero700: var(--lineHeightHero700, 36px);--webchat-lineHeightHero800: var(--lineHeightHero800, 40px);--webchat-lineHeightHero900: var(--lineHeightHero900, 52px);--webchat-lineHeightHero1000: var(--lineHeightHero1000, 92px);--webchat-borderRadiusSmall: var(--borderRadiusSmall, 2px);--webchat-borderRadiusMedium: var(--borderRadiusMedium, 4px);--webchat-borderRadiusLarge: var(--borderRadiusLarge, 6px);--webchat-borderRadiusXLarge: var(--borderRadiusXLarge, 8px);--webchat-strokeWidthThin: var(--strokeWidthThin, 1px);--webchat-strokeWidthThick: var(--strokeWidthThick, 2px);--webchat-strokeWidthThicker: var(--strokeWidthThicker, 3px);--webchat-durationUltraFast: var(--durationUltraFast, 0);--webchat-durationNormal: var(--durationNormal, .2s);--webchat-durationUltraSlow: var(--durationUltraSlow, .5s);--webchat-curveAccelerateMid: var(--curveAccelerateMid, cubic-bezier(1, 0, 1, 1));--webchat-curveDecelerateMid: var(--curveDecelerateMid, cubic-bezier(0, 0, 0, 1))}@media (prefers-reduced-motion){.webchat-fluent._{--webchat-durationUltraFast: .01ms;--webchat-durationNormal: .01ms}}.webchat-fluent._ .webchat__css-custom-properties{--webchat__color--accent: var(--webchat-colorBrandForeground1);--webchat__color--subtle: var(--webchat-colorNeutralForeground2);--webchat__color--timestamp: var(--webchat-colorNeutralForeground3);--webchat__font--primary: var(--webchat-fontFamilyBase);--webchat__font-size--small: var(--webchat-fontSizeBase200);--webchat__font-size--medium: var(--webchat-fontSizeBase300);--webchat__line-height--small: var(--webchat-lineHeightBase200);--webchat__line-height--medium: var(--webchat-lineHeightBase300);--webchat__max-width--bubble: var(--webchat-bubble-maxWidth);--webchat__min-height--bubble: var(--webchat-bubble-minHeight);--webchat__padding--regular: var(--webchat-spacingVerticalS);--webchat__padding--sendbox: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalMNudge) var(--webchat-spacingHorizontalMNudge);--webchat__border-animation--color-1: #464feb;--webchat__border-animation--color-2: #47cffa;--webchat__border-animation--color-3: #b47cf8}.webchat-fluent._.ea .webchat__css-custom-properties{--webchat__padding--sendbox: var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalXL) var(--webchat-spacingVerticalMNudge) var(--webchat-spacingHorizontalMNudge)}.webchat-fluent._ .webchat__surface{background-color:var(--webchat__color--surface)}.webchat-fluent._.ea .webchat__surface{box-sizing:border-box;padding-inline-start:var(--webchat-spacingHorizontalMNudge)}.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__scrollable,.webchat-fluent._ .webchat__view-code-dialog__code-body,.webchat-fluent._ .webchat__render-markdown [data-math-type=block],.webchat-fluent._ .webchat__feedback-form-text-area-input--scroll,.webchat-fluent._ .webchat__view-code-dialog__body{scrollbar-color:unset;scrollbar-width:unset;-moz-scrollbar-color:var(--webchat-colorNeutralForeground5) transparent;-moz-scrollbar-width:thin}:is(.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__scrollable,.webchat-fluent._ .webchat__view-code-dialog__code-body,.webchat-fluent._ .webchat__render-markdown [data-math-type=block],.webchat-fluent._ .webchat__feedback-form-text-area-input--scroll,.webchat-fluent._ .webchat__view-code-dialog__body)::-webkit-scrollbar{height:var(--webchat-spacingVerticalMNudge);width:var(--webchat-spacingVerticalMNudge);visibility:hidden}:is(.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__scrollable,.webchat-fluent._ .webchat__view-code-dialog__code-body,.webchat-fluent._ .webchat__render-markdown [data-math-type=block],.webchat-fluent._ .webchat__feedback-form-text-area-input--scroll,.webchat-fluent._ .webchat__view-code-dialog__body)::-webkit-scrollbar-corner{background:transparent}:is(.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__scrollable,.webchat-fluent._ .webchat__view-code-dialog__code-body,.webchat-fluent._ .webchat__render-markdown [data-math-type=block],.webchat-fluent._ .webchat__feedback-form-text-area-input--scroll,.webchat-fluent._ .webchat__view-code-dialog__body):hover::-webkit-scrollbar{height:var(--webchat-spacingVerticalMNudge);width:var(--webchat-spacingVerticalMNudge)}:is(.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__scrollable,.webchat-fluent._ .webchat__view-code-dialog__code-body,.webchat-fluent._ .webchat__render-markdown [data-math-type=block],.webchat-fluent._ .webchat__feedback-form-text-area-input--scroll,.webchat-fluent._ .webchat__view-code-dialog__body):hover::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:var(--webchat-colorNeutralForeground5);border-radius:10px;border-right:4px solid transparent;border:3px solid transparent}:is(.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__scrollable,.webchat-fluent._ .webchat__view-code-dialog__code-body,.webchat-fluent._ .webchat__render-markdown [data-math-type=block],.webchat-fluent._ .webchat__feedback-form-text-area-input--scroll,.webchat-fluent._ .webchat__view-code-dialog__body):hover::-webkit-scrollbar-thumb:hover{background-clip:padding-box;background-color:var(--webchat-colorNeutralForeground5);border-radius:10px;border-right:2px solid transparent;border:1px solid transparent}.webchat-fluent._.ea .webchat__basic-transcript .webchat__basic-transcript__scrollable{scrollbar-gutter:stable}.webchat-fluent._ .webchat__basic-transcript .webchat__basic-transcript__terminator:focus-visible+.webchat__basic-transcript__focus-indicator{border-color:var(--webchat-colorStrokeFocus2)}.webchat-fluent._ .webchat__basic-transcript:not(:focus-visible) .webchat__basic-transcript__activity-indicator--focus{display:none}.webchat-fluent._ .webchat__basic-transcript:focus-visible:has(.webchat__basic-transcript__activity-indicator--focus) .webchat__basic-transcript__focus-indicator{display:none}.webchat-fluent._ .webchat__basic-transcript:focus-visible .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus) .webchat__basic-transcript__activity-indicator--focus{display:none}.webchat-fluent._ .webchat__basic-transcript:focus-visible .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus) .webchat__bubble:after,.webchat-fluent._ .webchat__basic-transcript:focus-visible .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus) .pre-chat-message-activity:after{border-radius:var(--webchat__bubble--border-radius);content:\"\";inset:0;outline-offset:0;outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);pointer-events:none;position:absolute}.webchat-fluent._ .webchat__basic-transcript:focus-visible .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus) .pre-chat-message-activity:after{border-radius:var(--webchat-borderRadiusMedium);outline-offset:-3px}.webchat-fluent._ .webchat__basic-transcript:focus-visible .webchat__basic-transcript__activity:has(.webchat__basic-transcript__activity-indicator--focus) .liner-message-activity__text{border-radius:20px;outline-offset:4px;outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2)}.webchat-fluent._.ea .webchat__basic-transcript .webchat__basic-transcript__filler{flex-grow:0}.webchat-fluent._ .webchat__basic-transcript:has(.webchat__basic-transcript__activity:only-child):has(.pre-chat-message-activity) .webchat__basic-transcript__filler{flex-grow:.5}.webchat-fluent._ .webchat__modal-dialog{height:100%;display:grid;place-items:center}.webchat-fluent._ .webchat__modal-dialog::backdrop{background-color:var(--webchat-colorTransparentBackground)}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__box{background-color:var(--webchat-colorNeutralBackground1);border-radius:var(--webchat-borderRadiusXLarge);position:relative;color:var(--webchat-colorNeutralForeground1);box-shadow:var(--webchat-shadow64)}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__close-button{color:var(--webchat-colorNeutralForeground1);transition:background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__close-button:not(:active):hover{background-color:var(--webchat-colorNeutralBackground3)}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__close-button:focus:active{background-color:var(--webchat-colorNeutralBackground4)}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__close-button:not(:focus-visible){border:none}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__close-button:focus{border-color:var(--webchat-colorStrokeFocus2)}.webchat-fluent._ .webchat__modal-dialog .webchat__modal-dialog__close-button-image{fill:currentColor}.webchat-fluent._ .webchat__code-block{border:none;font-family:var(--webchat-fontFamilyMonospace);font-size:var(--webchat-fontSizeBase300);--webchat__code-block__copy-button--color: var(--webchat-colorNeutralForeground1);--webchat__code-block__copy-button--background: var(--webchat-colorNeutralBackground3)}.webchat-fluent._ .webchat__code-block .webchat__code-block-copy-button{background:transparent;border:none;color:var(--webchat__code-block__copy-button--color);height:20px;margin-inline-start:var(--webchat-spacingHorizontalS);padding:0;width:20px;transition:background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent._ .webchat__code-block .webchat__code-block-copy-button .webchat__code-block-copy-button__icon{background-color:currentColor}.webchat-fluent._ .webchat__code-block .webchat__code-block-copy-button:hover,.webchat-fluent._ .webchat__code-block .webchat__code-block-copy-button:active{background:var(--webchat__code-block__copy-button--background);color:var(--webchat__code-block__copy-button--color)}.webchat-fluent._ .webchat__code-block .webchat__code-block-copy-button:focus{color:var(--webchat__code-block__copy-button--color);outline-color:currentColor}.webchat-fluent._ .webchat__code-block:has(.webchat__code-block__body:focus-visible):focus-within{outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);outline-offset:calc(var(--webchat-strokeWidthThick) * -1)}.webchat-fluent._ .webchat__code-block:has(.webchat__code-block__body:focus-visible):focus-within .webchat__code-block__body{outline:none}.webchat-fluent._ .webchat__code-block:has(>.webchat__code-block__theme--github-dark-default){--webchat__background--code-block: var(--codeBlockBackground, var(--webchat-colorGrey8));--webchat__code-block__copy-button--background: var( --codeBlockCopyButtonBackgroundPressed, var(--webchat-colorGrey14) );--webchat__code-block__copy-button--color: var(--codeBlockCopyButtonForeground, var(--webchat__color--code-block));--webchat__color--code-block: var(--codeBlockForeground, var(--webchat-colorGrey98))}.webchat-fluent._ .webchat__code-block:has(>.webchat__code-block__theme--github-light-default){--webchat__background--code-block: var(--codeBlockBackground, var(--webchat-colorGrey98));--webchat__code-block__copy-button--background: var(--codeBlockBackgroundPressed, var(--webchat-colorGrey92));--webchat__code-block__copy-button--color: var(--codeBlockCopyButtonForeground, var(--webchat__color--code-block));--webchat__color--code-block: var(--codeBlockForeground, var(--webchat-colorGrey8))}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__modal-dialog__close-button-layout{display:flex;padding:var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalS)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__modal-dialog__close-button{align-items:center;aspect-ratio:1;display:flex;height:var(--webchat-lineHeightBase300);justify-content:center;padding:0;width:unset}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__code-block-copy-button{--webchat__code-block__copy-button--color: var(--webchat-colorNeutralForeground1);--webchat__code-block__copy-button--background: var(--webchat-colorNeutralBackground3);margin-block-start:var(--webchat-spacingVerticalS);position:absolute;right:32px;top:0}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__modal-dialog__box{width:fit-content}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__modal-dialog__body{margin:0;padding:var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalM)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__title{font-size:var(--webchat-fontSizeBase300);font-weight:var(--webchat-fontWeightSemibold);line-height:var(--webchat-lineHeightBase300)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__body{font-family:var(--webchat-fontFamilyMonospace);font-size:var(--webchat-fontSizeBase300);margin:0 calc(var(--webchat-spacingHorizontalM) * -1);padding:0 var(--webchat-spacingHorizontalM)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__footer{color:var(--webchat-colorNeutralForeground4);font-size:var(--webchat-fontSizeBase100);line-height:var(--webchat-lineHeightBase100)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__link{color:var(--webchat-colorBrandForegroundLink);text-decoration-color:transparent}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__link:target{color:var(--webchat-colorBrandForegroundLinkSelected)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__link:hover{color:var(--webchat-colorBrandForegroundLinkHover);text-decoration:underline 1px currentColor}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__link:active{color:var(--webchat-colorBrandForegroundLinkPressed)}.webchat-fluent._ .webchat__modal-dialog.webchat__view-code-dialog .webchat__view-code-dialog__link:focus-visible{outline:none;text-decoration:underline 1px double var(--webchat-colorStrokeFocus2)}.webchat-fluent._ .webchat__activity-button{background:var(--webchat-colorNeutralBackground1);border-radius:var(--webchat-borderRadiusMedium);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);color:var(--webchat-colorNeutralForeground1);gap:var(--webchat-spacingHorizontalXS);padding:5px var(--webchat-spacingHorizontalM)}.webchat-fluent._ .webchat__activity-button:hover{background:var(--webchat-colorNeutralBackground1Hover);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Hover);color:var(--webchat-colorNeutralForeground1Hover)}.webchat-fluent._ .webchat__activity-button:active{background:var(--webchat-colorNeutralBackground1Pressed);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Pressed);color:var(--webchat-colorNeutralForeground1Pressed)}.webchat-fluent._ .webchat__activity-button:focus-visible{background:var(--webchat-colorNeutralBackground1);outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);outline-offset:calc(var(--webchat-strokeWidthThick) * -1)}.webchat-fluent._ .webchat__activity-button[aria-disabled=true]{background:var(--webchat-colorNeutralBackgroundDisabled);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStrokeDisabled);color:var(--webchat-colorNeutralForegroundDisabled)}.webchat-fluent._ .webchat__activity-button .webchat__activity-button__icon{height:20px;width:20px}.webchat-fluent._ .webchat__activity-copy-button .webchat__activity-copy-button__copied-text{background-color:var(--webchat-colorNeutralBackground1)}.webchat-fluent._ .webchat__activity-copy-button.webchat__activity-copy-button--copied .webchat__activity-copy-button__copied-text{animation-duration:var(--webchat-durationUltraSlow)}.webchat-fluent._ .webchat__monochrome-image-masker{background-color:currentColor;height:1em;width:1em}.webchat-fluent._ .webchat__thumb-button{color:var(--webchat-colorNeutralForeground1)}.webchat-fluent._ .webchat__thumb-button:focus-visible{outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2)}.webchat-fluent._ .webchat__thumb-button[aria-disabled=true]{color:var(--webchat-colorNeutralForegroundDisabled)}.webchat-fluent._ .webchat__tooltip{--webchat__tooltip-background: var(--tooltip-background, var(--webchat-colorNeutralBackground1));color:var(--webchat-colorNeutralForeground1);filter:drop-shadow(0 0 2px var(--webchat-colorNeutralShadowAmbient)) drop-shadow(0 4px 8px var(--webchat-colorNeutralShadowKey));font-family:var(--webchat-fontFamilyBase);font-size:var(--webchat-fontSizeBase200);font-weight:var(--webchat-fontWeightRegular);line-height:var(--webchat-lineHeightBase200);padding:var(--webchat-spacingVerticalSNudge) var(--webchat-spacingHorizontalM);transition:opacity var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent._ .webchat__feedback-form{gap:var(--webchat-spacingVerticalXS)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__body{font-family:var(--webchat-fontFamilyBase);color:var(--webchat-colorNeutralForeground1);font-size:var(--webchat-fontSizeBase300);font-weight:var(--webchat-fontWeightRegular);line-height:var(--webchat-lineHeightBase300)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__caption{font-family:var(--webchat-fontFamilyBase);color:var(--webchat-colorNeutralForeground1);font-size:var(--webchat-fontSizeBase100);font-weight:var(--webchat-fontWeightRegular);line-height:var(--webchat-lineHeightBase200)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__submit-button{background-color:var(--webchat-colorBrandBackground);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackground);border-radius:var(--webchat-borderRadiusMedium);color:var(--webchat-colorNeutralForegroundOnBrand);cursor:pointer;font-family:var(--webchat-fontFamilyBase);font-size:var(--webchat-fontSizeBase300);padding:var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalS);transition:background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__submit-button:hover{background-color:var(--webchat-colorBrandBackgroundHover);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackgroundHover)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__submit-button:focus-visible{outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);outline-offset:calc(var(--webchat-strokeWidthThin) * -1)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__submit-button:active{background-color:var(--webchat-colorBrandBackgroundPressed);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorBrandBackgroundPressed)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__cancel-button{background-color:var(--webchat-colorNeutralBackground1);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);border-radius:var(--webchat-borderRadiusMedium);color:var(--webchat-colorNeutralForeground1);cursor:pointer;font-family:var(--webchat-fontFamilyBase);font-size:var(--webchat-fontSizeBase300);padding:var(--webchat-spacingVerticalNone) var(--webchat-spacingHorizontalS);transition:background-color var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__cancel-button:hover{background-color:var(--webchat-colorNeutralBackground1Hover);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Hover)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__cancel-button:focus-visible{outline:var(--webchat-strokeWidthThick) solid var(--webchat-colorStrokeFocus2);outline-offset:calc(var(--webchat-strokeWidthThin) * -1)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form__cancel-button:active{background-color:var(--webchat-colorNeutralBackground1Pressed);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1Pressed)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form-text-area{background-color:var(--webchat-colorNeutralBackground1);border-radius:var(--webchat-borderRadiusMedium);border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1);font-family:var(--webchat-fontFamilyBase);font-size:var(--webchat-fontSizeBase300);line-height:var(--webchat-lineHeightBase300);gap:var(--webchat-spacingVerticalSNudge);padding:var(--webchat-spacingVerticalS) var(--webchat-spacingHorizontalM)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form-text-area:after{border-bottom-left-radius:var(--webchat-borderRadiusMedium);border-bottom-right-radius:var(--webchat-borderRadiusMedium);border-bottom:var(--webchat-strokeWidthThicker) solid var(--webchat-colorBrandForeground1);clip-path:inset(calc(100% - var(--webchat-strokeWidthThicker)) 50% 0 50%);transition:clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form-text-area:focus-within{border:var(--webchat-strokeWidthThin) solid var(--webchat-colorNeutralStroke1)}.webchat-fluent._ .webchat__feedback-form .webchat__feedback-form-text-area:focus-within:after{clip-path:inset(calc(100% - var(--webchat-strokeWidthThicker)) 0 0 0);transition:clip-path var(--webchat-durationNormal) var(--webchat-curveDecelerateMid)}.webchat-fluent .ve{align-self:start;display:flex;flex:none;height:16px;margin:auto var(--webchat-spacingHorizontalMNudge)}.webchat-fluent .pe{height:6px;width:auto}\n/*! For license information please see botframework-webchat-fluent-theme.css.LEGAL.txt */\n",de=qe(aa);function na(e){return _react.useMemo.call(void 0, ()=>Object.freeze(Object.fromEntries(Object.entries(e).map(([t,o])=>[t,`${t} ${o}`]))),[e])}var s=na;function be({Provider:e},{defaults:t,displayName:o}){let a=({children:n,...i})=>{let c=_react.useMemo.call(void 0, ()=>Object.freeze({...t,...i}),[i]);return _react2.default.createElement(e,{value:c},n)};return a.displayName=o,_react.memo.call(void 0, a)}var ue=_react.createContext.call(void 0, new Proxy({},{get(){throw new Error("Unable to use VariantContext without VariantComposer")}})),da=be(ue,{defaults:{variant:""},displayName:"VariantComposer"}),Je=da;function W(){let{variant:e}=_react.useContext.call(void 0, ue);return _react.useMemo.call(void 0, ()=>e.split(" "),[e])}function M(e){let t=s(e),o=W();return _react.useMemo.call(void 0, ()=>o.map(a=>t[`variant-${a}`]).filter(a=>a).join(" "),[t,o])}var pa={preChatMessageActivityStarterPromptsCardAction:"pre-chat message activity starter prompts card action",sendBoxContainer:"send box container",sendBoxDropZone:"send box drop zone",sendBoxSendButton:"send box send button",sendBoxSuggestedAction:"send box suggested action",sendBoxTextBox:"send box text area",sendBoxTelephoneKeypadButton1:"send box telephone keypad button 1",sendBoxTelephoneKeypadButton2:"send box telephone keypad button 2",sendBoxTelephoneKeypadButton3:"send box telephone keypad button 3",sendBoxTelephoneKeypadButton4:"send box telephone keypad button 4",sendBoxTelephoneKeypadButton5:"send box telephone keypad button 5",sendBoxTelephoneKeypadButton6:"send box telephone keypad button 6",sendBoxTelephoneKeypadButton7:"send box telephone keypad button 7",sendBoxTelephoneKeypadButton8:"send box telephone keypad button 8",sendBoxTelephoneKeypadButton9:"send box telephone keypad button 9",sendBoxTelephoneKeypadButton0:"send box telephone keypad button 0",sendBoxTelephoneKeypadButtonStar:"send box telephone keypad button star",sendBoxTelephoneKeypadButtonPound:"send box telephone keypad button pound",sendBoxTelephoneKeypadToolbarButton:"send box telephone keypad toolbar button",sendBoxUploadButton:"send box upload button"},g= exports.testIds =pa;var Qe={"sendbox__attachment-drop-zone":"pa","sendbox__attachment-drop-zone--droppable":"_a","sendbox__attachment-drop-zone-icon":"fa"};var{useLocalizer:Na}=_botframeworkwebchatcomponent.hooks,G=e=>{e.preventDefault()},tt=e=>{var t,o;return!!((o=(t=e.dataTransfer)==null?void 0:t.types)!=null&&o.some(a=>a.toLowerCase()==="files"))};function Sa(e,t){let o=e.parentNode;for(;o;){if(o===t)return!0;o=o.parentNode}return!1}var ot=e=>{let[t,o]=_react.useState.call(void 0, !1),a=s(Qe),n=_react.useRef.call(void 0, null),i=Na(),c=_usereffrom.useRefFrom.call(void 0, e.onFilesAdded);_react.useEffect.call(void 0, ()=>{let h=0,p=m=>{document.addEventListener("dragover",G),h++,tt(m)&&o(n.current&&(m.target===n.current||m.target instanceof HTMLElement&&Sa(m.target,n.current))?"droppable":"visible")},l=()=>--h<=0&&o(!1),d=()=>{document.removeEventListener("dragover",G),h=0,o(!1)},b=m=>{var w;(w=n.current)!=null&&w.contains(m.target)||d()};return document.addEventListener("dragend",d),document.addEventListener("dragenter",p),document.addEventListener("dragleave",l),document.addEventListener("drop",b),()=>{document.removeEventListener("dragend",d),document.removeEventListener("dragenter",p),document.removeEventListener("dragleave",l),document.removeEventListener("dragover",G),document.removeEventListener("drop",b)}},[o]);let r=_react.useCallback.call(void 0, h=>{h.preventDefault(),o(!1),tt(h.nativeEvent)&&c.current([...h.dataTransfer.files])},[c,o]);return t?_react2.default.createElement("div",{className:_classnames2.default.call(void 0, a["sendbox__attachment-drop-zone"],{[a["sendbox__attachment-drop-zone--droppable"]]:t==="droppable"}),"data-testid":g.sendBoxDropZone,onDragOver:G,onDrop:r,ref:n},_react2.default.createElement(ne,{className:a["sendbox__attachment-drop-zone-icon"]}),i("TEXT_INPUT_DROP_ZONE")):null};ot.displayName="DropZone";var he=_react.memo.call(void 0, ot);var _botframeworkwebchatcore = require('botframework-webchat-core');function D(e){var t,o;return!!(e&&((o=(t=_botframeworkwebchatcore.getOrgSchemaMessage.call(void 0, (e==null?void 0:e.entities)||[]))==null?void 0:t.keywords)!=null&&o.includes("PreChatMessage")))}var at={"pre-chat-message-activity":"ka","pre-chat-message-activity__body":"ma","pre-chat-message-activity__body--blueprint":"xa","pre-chat-message-activity__body-avatar":"ra","pre-chat-message-activity__body-title":"Ba","pre-chat-message-activity__body-subtitle":"ya","pre-chat-message-activity__toolbar":"Na"};var _botframeworkwebchatapi = require('botframework-webchat-api');var rt={"pre-chat-message-activity__card-action-box":"Sa","pre-chat-message-activity__card-action-image":"oa",blueprintAnimation:"ta","pre-chat-message-activity__card-action-subtitle":"za","pre-chat-message-activity__card-action-title":"Ha"};var{useFocus:Ea,useRenderMarkdownAsHTML:Pa,useSendBoxValue:Da,useUIState:Ia}=_botframeworkwebchatcomponent.hooks,{MonochromeImageMasker:Ra}=_botframeworkwebchatcomponent.Components,it=({className:e,messageBackAction:t})=>{let[o,a]=Da(),[n]=Ia(),i=s(rt),c=Ea(),r=_usereffrom.useRefFrom.call(void 0, (t==null?void 0:t.displayText)||(t==null?void 0:t.text)||""),h=Pa("message activity"),p=_react.useMemo.call(void 0, ()=>h?{__html:h((t==null?void 0:t.text)||"")}:void 0,[t==null?void 0:t.text,h]),l=n==="disabled",d=t&&"title"in t&&t.title,b=n==="blueprint"||!d,m=_react.useCallback.call(void 0, ()=>{a(r.current),c("sendBox")},[c,r,a]);return b?_react2.default.createElement("div",{className:_classnames2.default.call(void 0, e,i["pre-chat-message-activity__card-action-box"]),"data-testid":g.preChatMessageActivityStarterPromptsCardAction}):_react2.default.createElement("button",{"aria-disabled":l?!0:void 0,className:_classnames2.default.call(void 0, e,i["pre-chat-message-activity__card-action-box"]),"data-testid":g.preChatMessageActivityStarterPromptsCardAction,onClick:l?void 0:m,tabIndex:l?-1:void 0,type:"button"},_react2.default.createElement("div",{className:i["pre-chat-message-activity__card-action-title"]},d),"image"in t&&t.image&&_react2.default.createElement(Ra,{className:i["pre-chat-message-activity__card-action-image"],src:t.image}),_react2.default.createElement("div",{className:i["pre-chat-message-activity__card-action-subtitle"],dangerouslySetInnerHTML:p}))};it.displayName="StarterPromptsCardAction";var X=_react.memo.call(void 0, it);var lt={"pre-chat-message-activity__card-action-toolbar":"Fa","webchat-container":"ca","pre-chat-message-activity__card-action-toolbar-grid":"la"};var{useUIState:Ua}=_botframeworkwebchatapi.hooks,ct=({cardActions:e,className:t})=>{let o=s(lt),[a]=Ua();return _react2.default.createElement("div",{className:_classnames2.default.call(void 0, t,o["pre-chat-message-activity__card-action-toolbar"])},_react2.default.createElement("div",{className:o["pre-chat-message-activity__card-action-toolbar-grid"]},a==="blueprint"?_react2.default.createElement(_react.Fragment,null,_react2.default.createElement(X,null),_react2.default.createElement(X,null),_react2.default.createElement(X,null)):e.filter(n=>n.type==="messageBack").map((n,i)=>_react2.default.createElement(X,{key:i,messageBackAction:n}))))};ct.displayName="StarterPromptsToolbar";var st=_react.memo.call(void 0, ct);var pe={"activity-decorator":"aa","variant-fluent":"Ma","variant-copilot":"ia"};var{useStyleOptions:$a}=_botframeworkwebchatcomponent.hooks;function me(e){var o,a;let[t]=$a();return _react.useMemo.call(void 0, ()=>{var n,i;return Object.freeze([{...t,...(i=(n=e==null?void 0:e.channelData)==null?void 0:n.webChat)==null?void 0:i.styleOptions}])},[(a=(o=e==null?void 0:e.channelData)==null?void 0:o.webChat)==null?void 0:a.styleOptions,t])}function ge(e){var t,o;return!!(e&&((o=(t=_botframeworkwebchatcore.getOrgSchemaMessage.call(void 0, (e==null?void 0:e.entities)||[]))==null?void 0:t.keywords)!=null&&o.includes("AIGeneratedContent")))}function I(e){return _react.useMemo.call(void 0, ()=>{let t=_botframeworkwebchatcore.getOrgSchemaMessage.call(void 0, (e==null?void 0:e.entities)||[]);return typeof(t==null?void 0:t.author)=="string"?{"@type":"Person",description:void 0,image:void 0,name:t==null?void 0:t.author}:t==null?void 0:t.author},[e])}var dt={"copilot-message-header":"Wa","copilot-message-header__avatar":"Xa","copilot-message-header__title":"La","copilot-message-header__ai-generated-content":"Va"};var{useLocalizer:ar}=_botframeworkwebchatcomponent.hooks;function rr({activity:e}){var l;let[{botAvatarImage:t,botAvatarBackgroundColor:o}]=me(e),a=s(dt),n=ar(),i=ge(e),c=_react.useMemo.call(void 0, ()=>({"--background-color":o}),[o]),r=I(e),h=(r==null?void 0:r.image)||t,p=(r==null?void 0:r.name)||((l=e==null?void 0:e.from)==null?void 0:l.name);return _react2.default.createElement("div",{className:a["copilot-message-header"]},h&&_react2.default.createElement("img",{alt:n("AVATAR_ALT",p),className:a["copilot-message-header__avatar"],src:h,style:c}),_react2.default.createElement("span",{className:a["copilot-message-header__title"],title:p},p),i&&_react2.default.createElement("span",{className:a["copilot-message-header__ai-generated-content"]},n("ACTIVITY_CONTENT_CAUTION")))}var bt=_react.memo.call(void 0, rr);function ht({activity:e,children:t}){var c;let o=s(pe),a=W(),n=M(pe),i=a.includes("copilot")&&((c=e==null?void 0:e.from)==null?void 0:c.role)==="bot"&&!!t;return _react2.default.createElement("div",{className:_classnames2.default.call(void 0, o["activity-decorator"],n)},i&&_react2.default.createElement(bt,{activity:e}),t)}ht.displayName="ActivityDecorator";var fe=_react.memo.call(void 0, ht);var{useLocalizer:br,useRenderMarkdownAsHTML:ur,useUIState:hr}=_botframeworkwebchatcomponent.hooks,pt=({activity:e})=>{var r;let[t]=hr(),o=s(at),a=ur(),n=br(),i=I(e),c=_react.useMemo.call(void 0, ()=>a?{__html:a((i==null?void 0:i.description)||"")}:{__html:""},[i==null?void 0:i.description,a]);return _react2.default.createElement("div",{className:o["pre-chat-message-activity"]},i&&_react2.default.createElement("div",{className:_classnames2.default.call(void 0, o["pre-chat-message-activity__body"],t==="blueprint"&&o["pre-chat-message-activity__body--blueprint"])},i.image&&_react2.default.createElement("img",{alt:n("AVATAR_ALT",i.name),className:o["pre-chat-message-activity__body-avatar"],src:i.image}),i.name&&_react2.default.createElement("h2",{className:o["pre-chat-message-activity__body-title"]},i.name),i.description&&_react2.default.createElement("div",{className:o["pre-chat-message-activity__body-subtitle"],dangerouslySetInnerHTML:c})),_react2.default.createElement(st,{cardActions:((r=e.suggestedActions)==null?void 0:r.actions)||[],className:o["pre-chat-message-activity__toolbar"]}))};pt.displayName="PreChatMessageActivity";var we=_react.memo.call(void 0, pt);function ve(e){let{title:t}=e,{type:o,value:a}=e;return o==="messageBack"?t||e.displayText:t||(typeof a=="string"?a:JSON.stringify(a))}var mt=_react.createContext.call(void 0, {itemEffector:()=>{throw new Error("botframework-webchat-fluent-theme rovingFocus: no provider for RovingFocusContext.")}});function _r(e){let t=_react.useRef.call(void 0, 0),o=_react.useRef.call(void 0, []),a=_react.useCallback.call(void 0, ({current:l},d)=>l&&(l.tabIndex=t.current===d?0:-1),[t]),n=_react.useCallback.call(void 0, l=>{var b,m,w;let d;typeof l=="number"?d=l:d=l(t.current),d&&!((b=o.current.at(d))!=null&&b.current)&&(d=0),t.current!==d&&(t.current=d,o.current.forEach((y,x)=>a(y,x)),(w=(m=o.current.at(d))==null?void 0:m.current)==null||w.focus())},[a,o,t]),i=_react.useCallback.call(void 0, l=>{let{target:d}=l,b=o.current.findIndex(({current:m})=>m===d);b!==-1&&n(b)},[o,n]),c=_react.useCallback.call(void 0, l=>d=>{var S;let b=!e.direction,m=/up|down/iu.test(l)&&e.direction==="vertical",w=/left|right/iu.test(l)&&e.direction==="horizontal",y=/right|down/iu.test(l),x=b||m||w?y?1:-1:0,B=o.current.map((z,A)=>A),C=B.indexOf(d)+x;return(S=B.at(C))!=null?S:0},[e.direction]),r=_react.useCallback.call(void 0, l=>{var b;let{key:d}=l;switch(d){case"Up":case"ArrowUp":case"Left":case"ArrowLeft":case"Down":case"ArrowDown":case"Right":case"ArrowRight":n(c(d));break;case"Home":n(0);break;case"End":n(-1);break;case"Escape":(b=e.onEscapeKey)==null||b.call(e);break;default:return}l.preventDefault(),l.stopPropagation()},[n,c,e]),h=_react.useCallback.call(void 0, (l,d)=>{let{current:b}=l;return o.current[Number(d)]=l,b.addEventListener("focus",i),b.addEventListener("keydown",r),a(l,d),()=>{b.removeEventListener("focus",i),b.removeEventListener("keydown",r),delete o.current[Number(d)]}},[i,r,a,o]),p=_react.useMemo.call(void 0, ()=>({itemEffector:h}),[h]);return _react2.default.createElement(mt.Provider,{value:p},e.children)}function gt(e){let t=_react.useRef.call(void 0, null),{itemEffector:o}=_react.useContext.call(void 0, mt);return _react.useEffect.call(void 0, ()=>o(t,e)),t}var ft=_react.memo.call(void 0, _r);var Sr=e=>e.preventDefault(),Tr=_react.forwardRef.call(void 0, ({"aria-hidden":e,children:t,className:o,"data-testid":a,disabled:n,onClick:i,tabIndex:c},r)=>{let h=_react.useRef.call(void 0, null);return _react2.default.createElement("button",{"aria-disabled":n?"true":void 0,"aria-hidden":e,className:o,"data-testid":a,onClick:n?Sr:i,ref:r||h,tabIndex:n?-1:c,type:"button"},t)}),wt=_react.memo.call(void 0, Tr);var vt={"suggested-action":"Ta","suggested-action__image":"Ra"};var{useFocus:zr,usePerformCardAction:Ar,useScrollToEnd:Lr,useStyleSet:Er,useSuggestedActions:Pr,useUIState:Dr}=_botframeworkwebchatcomponent.hooks;function Ir({buttonText:e,className:t,displayText:o,image:a,imageAlt:n,itemIndex:i,text:c,type:r,value:h}){let[p,l]=Pr(),[{suggestedAction:d}]=Er(),[b]=Dr(),m=zr(),w=gt(i),y=Ar(),x=s(vt),B=Lr(),C=_react.useCallback.call(void 0, ({target:S})=>{(async function(){await m("sendBoxWithoutKeyboard"),y({displayText:o,text:c,type:r,value:h},{target:S}),r==="openUrl"&&l([]),B()})()},[o,m,y,B,l,c,r,h]);return _react2.default.createElement(wt,{className:_classnames2.default.call(void 0, x["suggested-action"],d+"",(t||"")+""),"data-testid":g.sendBoxSuggestedAction,disabled:b==="disabled",onClick:C,ref:w,type:"button"},a&&_react2.default.createElement("img",{alt:n,className:x["suggested-action__image"],src:a}),_react2.default.createElement("span",null,e))}var _t=_react.memo.call(void 0, Ir);var xe={"suggested-actions":"Pa","suggested-actions--flow":"Da","suggested-actions--stacked":"Ca"};var{useFocus:Xr,useLocalizer:Ur,useStyleOptions:jr,useStyleSet:Gr,useSuggestedActions:Zr,useUIState:$r}=_botframeworkwebchatcomponent.hooks;function Yr(e){let[{suggestedActionLayout:t}]=jr(),[{suggestedActions:o}]=Gr(),[a]=$r(),n=s(xe);return _react2.default.createElement("div",{"aria-label":e["aria-label"],"aria-orientation":"vertical",className:_classnames2.default.call(void 0, n["suggested-actions"],o+"",{[n["suggested-actions--flow"]]:t==="flow",[n["suggested-actions--stacked"]]:t!=="flow"},e.className),role:"toolbar"},a!=="blueprint"&&e.children)}function qr(){let e=s(xe),t=Ur(),[o,a,{activity:n}]=Zr(),i=Xr(),c=_react.useCallback.call(void 0, ()=>{i("sendBox")},[i]),r=D(n)?[]:o.map((h,p)=>{let{displayText:l,image:d,imageAltText:b,text:m,type:w,value:y}=h;return o!=null&&o.length?_react2.default.createElement(_t,{buttonText:ve(h),displayText:l,image:d,imageAlt:d&&(b||m),itemIndex:p,key:p,text:m,type:w,value:y}):null});return _react2.default.createElement(ft,{onEscapeKey:c},_react2.default.createElement(Yr,{"aria-label":t("SUGGESTED_ACTIONS_LABEL_ALT"),className:e["suggested-actions"]},r))}var ke=_react.memo.call(void 0, qr);var yt=_react.createContext.call(void 0, new Proxy({},{get(){throw new Error("botframework-webchat: This hook can only used under its corresponding <Provider>.")}}));yt.displayName="TelephoneKeypad.Context";var Y=yt;var an=_react.memo.call(void 0, ({children:e})=>{let[t,o]=_react.useState.call(void 0, !1),a=_react.useMemo.call(void 0, ()=>Object.freeze({setShown:o,shown:t}),[o,t]);return _react2.default.createElement(Y.Provider,{value:a},e)}),Ne=an;var xt={"telephone-keypad__button":"na","telephone-keypad__button__ruby":"ba","telephone-keypad__button__text":"da","telephone-keypad--horizontal":"Ga"};var kt=_react.memo.call(void 0, _react.forwardRef.call(void 0, ({button:e,"data-testid":t,onClick:o,ruby:a},n)=>{let i=s(xt),c=_usereffrom.useRefFrom.call(void 0, o),r=_react.useCallback.call(void 0, ()=>{var h;return(h=c.current)==null?void 0:h.call(c)},[c]);return _react2.default.createElement("button",{className:i["telephone-keypad__button"],"data-testid":t,onClick:r,ref:n,type:"button"},_react2.default.createElement("span",{className:i["telephone-keypad__button__text"]},e==="*"?"\u2217":e),!!a&&_react2.default.createElement("ruby",{className:i["telephone-keypad__button__ruby"]},a))}));kt.displayName="TelephoneKeypad.Button";var k=kt;function H(){let{setShown:e,shown:t}=_react.useContext.call(void 0, Y);return _react.useMemo.call(void 0, ()=>Object.freeze([t,e]),[t,e])}var Te={"telephone-keypad":"Ua","telephone-keypad__box":"ja","telephone-keypad__info-message":"Aa","telephone-keypad__info-message-link":"Ia"};var{LocalizedString:fn}=_botframeworkwebchatcomponent.Components,Tt=_react.memo.call(void 0, ({children:e,isHorizontal:t})=>{let o=s(Te);return t?null:_react2.default.createElement("div",{className:o["telephone-keypad__box"]},e)});Tt.displayName="TelephoneKeypad:Orientation";var Bt=_react.memo.call(void 0, ({autoFocus:e,className:t,onButtonClick:o,isHorizontal:a})=>{let n=_usereffrom.useRefFrom.call(void 0, e),i=s(Te),c=_react.useRef.call(void 0, null),r=_usereffrom.useRefFrom.call(void 0, o),[,h]=H(),p=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"1")},[r]),l=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"2")},[r]),d=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"3")},[r]),b=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"4")},[r]),m=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"5")},[r]),w=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"6")},[r]),y=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"7")},[r]),x=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"8")},[r]),B=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"9")},[r]),C=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"0")},[r]),S=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"*")},[r]),z=_react.useCallback.call(void 0, ()=>{var u;return(u=r.current)==null?void 0:u.call(r,"#")},[r]),A=_react.useCallback.call(void 0, u=>{u.key==="Escape"&&h(!1)},[h]);return _react.useEffect.call(void 0, ()=>{var u;n.current&&((u=c.current)==null||u.focus())},[n,c]),_react2.default.createElement("div",{className:_classnames2.default.call(void 0, i["telephone-keypad"],t),onKeyDown:A},_react2.default.createElement(Tt,{isHorizontal:a},_react2.default.createElement(k,{button:"1","data-testid":g.sendBoxTelephoneKeypadButton1,onClick:p,ref:c}),_react2.default.createElement(k,{button:"2","data-testid":g.sendBoxTelephoneKeypadButton2,onClick:l,ruby:"ABC"}),_react2.default.createElement(k,{button:"3","data-testid":g.sendBoxTelephoneKeypadButton3,onClick:d,ruby:"DEF"}),_react2.default.createElement(k,{button:"4","data-testid":g.sendBoxTelephoneKeypadButton4,onClick:b,ruby:"GHI"}),_react2.default.createElement(k,{button:"5","data-testid":g.sendBoxTelephoneKeypadButton5,onClick:m,ruby:"JKL"}),_react2.default.createElement(k,{button:"6","data-testid":g.sendBoxTelephoneKeypadButton6,onClick:w,ruby:"MNO"}),_react2.default.createElement(k,{button:"7","data-testid":g.sendBoxTelephoneKeypadButton7,onClick:y,ruby:"PQRS"}),_react2.default.createElement(k,{button:"8","data-testid":g.sendBoxTelephoneKeypadButton8,onClick:x,ruby:"TUV"}),_react2.default.createElement(k,{button:"9","data-testid":g.sendBoxTelephoneKeypadButton9,onClick:B,ruby:"WXYZ"}),_react2.default.createElement(k,{button:"*","data-testid":g.sendBoxTelephoneKeypadButtonStar,onClick:S}),_react2.default.createElement(k,{button:"0","data-testid":g.sendBoxTelephoneKeypadButton0,onClick:C,ruby:"+"}),_react2.default.createElement(k,{button:"#","data-testid":g.sendBoxTelephoneKeypadButtonPound,onClick:z})),_react2.default.createElement("div",{className:i["telephone-keypad__info-message"]},_react2.default.createElement(le,null),_react2.default.createElement(fn,{linkClassName:i["telephone-keypad__info-message-link"],stringIds:"TELEPHONE_KEYPAD_INPUT_MESSAGE"})))});Bt.displayName="TelephoneKeypad";var Ct=Bt;var Mt=_react.memo.call(void 0, e=>H()[0]?_react2.default.createElement(Ct,{...e}):null);Mt.displayName="TelephoneKeypad.Surrogate";var Be=Mt;var q={sendbox__toolbar:"Ka","sendbox__toolbar-button":"Oa","sendbox__toolbar-button--selected":"Ea","sendbox__toolbar-separator":"qa"};var{useUIState:Ht}=_botframeworkwebchatapi.hooks,xn=e=>e.preventDefault(),E=_react.memo.call(void 0, e=>{let t=s(q),[o]=Ht(),a=e.disabled||o==="disabled";return _react2.default.createElement("button",{"aria-disabled":a?"true":void 0,"aria-label":e["aria-label"],className:_classnames2.default.call(void 0, t["sendbox__toolbar-button"],e.className,{[t["sendbox__toolbar-button--selected"]]:e.selected}),"data-testid":e["data-testid"],onClick:a?xn:e.onClick,tabIndex:a?-1:void 0,type:e.type==="submit"?"submit":"button"},e.children)});E.displayName="ToolbarButton";var Fe=_react.memo.call(void 0, e=>{let[t]=Ht(),o=s(q);return _react2.default.createElement("div",{className:_classnames2.default.call(void 0, o.sendbox__toolbar,e.className)},t!=="blueprint"&&e.children)});Fe.displayName="Toolbar";var ze=_react.memo.call(void 0, e=>{let t=s(q);return _react2.default.createElement("div",{"aria-orientation":"vertical",className:_classnames2.default.call(void 0, t["sendbox__toolbar-separator"],e.className),role:"separator"})});ze.displayName="ToolbarSeparator";var Ft={"sendbox__add-attachment":"Ja","sendbox__add-attachment-input":"Qa"};var{useLocalizer:Cn,useStyleOptions:Mn}=_botframeworkwebchatcomponent.hooks;function Hn(e){let t=_react.useRef.call(void 0, null),o=s(Ft),a=Cn(),[{uploadAccept:n,uploadMultiple:i}]=Mn(),c=_usereffrom.useRefFrom.call(void 0, e.onFilesAdded),r=_react.useCallback.call(void 0, ()=>{var p;return(p=t.current)==null?void 0:p.click()},[t]),h=_react.useCallback.call(void 0, ({target:{files:p}})=>{var l;p&&((l=c.current)==null||l.call(c,[...p]),t.current&&(t.current.value=""))},[t,c]);return _react2.default.createElement("div",{className:o["sendbox__add-attachment"]},_react2.default.createElement("input",{accept:n,"aria-disabled":e.disabled,"aria-hidden":"true",className:o["sendbox__add-attachment-input"],multiple:i,onInput:e.disabled?void 0:h,readOnly:e.disabled,ref:t,role:"button",tabIndex:-1,type:"file"}),_react2.default.createElement(E,{"aria-label":a("TEXT_INPUT_UPLOAD_BUTTON_ALT"),"data-testid":g.sendBoxUploadButton,onClick:r},_react2.default.createElement(ie,null)))}var At=_react.memo.call(void 0, Hn);var Lt={sendbox__attachment:"Ya"};var{useLocalizer:Pn,useUIState:Dn}=_botframeworkwebchatcomponent.hooks,In={one:"TEXT_INPUT_ATTACHMENTS_ONE",two:"TEXT_INPUT_ATTACHMENTS_TWO",few:"TEXT_INPUT_ATTACHMENTS_FEW",many:"TEXT_INPUT_ATTACHMENTS_MANY",other:"TEXT_INPUT_ATTACHMENTS_OTHER"};function Rn({attachments:e,className:t}){let[o]=Dn(),a=s(Lt),n=Pn({plural:!0});return o!=="blueprint"&&e.length?_react2.default.createElement("div",{className:_classnames2.default.call(void 0, a.sendbox__attachment,t)},n(In,e.length)):null}var Et=_react.memo.call(void 0, Rn);var _internal = require('botframework-webchat-component/internal');var Pt={"sendbox__error-message":"Za"};function It({error:e,id:t}){let o=s(Pt);return _internal.useLiveRegion.call(void 0, ()=>e&&_react2.default.createElement("div",{className:"sendbox__error-message__status"},e),[e]),_react2.default.createElement("span",{className:o["sendbox__error-message"],id:t},e)}It.displayName="ErrorMessage";var Rt=_react.memo.call(void 0, It);var{useConnectivityStatus:Gn,useLocalizer:Zn}=_botframeworkwebchatcomponent.hooks,$n=({attachments:e,message:t})=>{let[o]=Gn(),[a,n]=_react.useState.call(void 0, ),i=Zn(),c=_usereffrom.useRefFrom.call(void 0, o!=="connected"&&o!=="reconnected"?"offline":!t&&!e.length?"empty":void 0),r=_react.useMemo.call(void 0, ()=>Object.freeze(new Map().set("empty",i("SEND_BOX_IS_EMPTY_TOOLTIP_ALT")).set("offline",i("CONNECTIVITY_STATUS_ALT_FATAL"))),[i]),h=!!(t!=null&&t.trim());a==="empty"&&h&&n(void 0);let p=_react.useCallback.call(void 0, ()=>(n(c.current),c.current),[c]);return _react.useMemo.call(void 0, ()=>Object.freeze([a&&r.get(a),p]),[a,r,p])},Ot=$n;var{useScrollDown:Jn,useScrollUp:Qn}=_botframeworkwebchatcomponent.hooks;function Ae(){let e=Jn(),t=Qn();return _react.useCallback.call(void 0, o=>{if(o.target instanceof HTMLTextAreaElement&&o.target.value)return;let{ctrlKey:a,metaKey:n,shiftKey:i}=o;if(a||n||i)return;let c=!0;switch(o.key){case"End":e({displacement:1/0});break;case"Home":t({displacement:1/0});break;case"PageDown":e();break;case"PageUp":t();break;default:c=!1;break}c&&(o.preventDefault(),o.stopPropagation())},[e,t])}function Le(e){let t=_react.useMemo.call(void 0, ()=>Math.random().toString(36).substr(2,5),[]);return e=e?`${e}--`:"",`${e}${t}`}var Ee={sendbox:"ha","variant-copilot":"ae","sendbox__text-counter":"sa","sendbox__text-counter--error":"ua",sendbox__sendbox:"ee","sendbox__attachment--in-grid":"wa","sendbox__text-area--in-grid":"re","sendbox__sendbox-controls--in-grid":"oe","sendbox__telephone-keypad--in-grid":"te","sendbox__sendbox-text":"ce","sendbox__sendbox-controls":"le"};var{useLocalizer:ni}=_botframeworkwebchatcomponent.hooks,Kt=_react.memo.call(void 0, ()=>{let[e,t]=H(),o=ni(),a=_react.useCallback.call(void 0, ()=>t(n=>!n),[t]);return _react2.default.createElement(E,{"aria-label":o("TEXT_INPUT_TELEPHONE_KEYPAD_BUTTON_ALT"),"data-testid":g.sendBoxTelephoneKeypadToolbarButton,onClick:a,selected:e},_react2.default.createElement(se,null))});Kt.displayName="SendBox.TelephoneKeypadToolbarButton";var Xt=Kt;var Ut={"sendbox__text-area":"ie","sendbox__text-area--hidden":"ne","sendbox__text-area--in-completion":"be","sendbox__text-area-doppelganger":"ga","sendbox__text-area-input":"va","sendbox__text-area-shared":"de","sendbox__text-area--scroll":"he"};var{useUIState:bi}=_botframeworkwebchatapi.hooks,jt=_react.forwardRef.call(void 0, (e,t)=>{var p;let[o]=bi(),a=s(Ut),n=_react.useRef.call(void 0, !1),i=o==="disabled",c=_react.useCallback.call(void 0, ()=>{n.current=!1},[n]),r=_react.useCallback.call(void 0, ()=>{n.current=!0},[n]),h=_react.useCallback.call(void 0, l=>{var d,b;!l.shiftKey&&l.key==="Enter"&&!n.current&&(l.preventDefault(),"form"in l.target&&l.target.form instanceof HTMLFormElement&&((b=(d=l.target)==null?void 0:d.form)==null||b.requestSubmit()))},[]);return _react2.default.createElement("div",{className:_classnames2.default.call(void 0, a["sendbox__text-area"],a["sendbox__text-area--scroll"],{[a["sendbox__text-area--hidden"]]:e.hidden},{[a["sendbox__text-area--in-completion"]]:e.completion},e.className),role:e.hidden?"hidden":void 0},o==="blueprint"?_react2.default.createElement("div",{className:_classnames2.default.call(void 0, a["sendbox__text-area-doppelganger"],a["sendbox__text-area-shared"])}," "):_react2.default.createElement(_react.Fragment,null,_react2.default.createElement("div",{className:_classnames2.default.call(void 0, a["sendbox__text-area-doppelganger"],a["sendbox__text-area-shared"])},e.completion?e.completion:e.value||e.placeholder," "),_react2.default.createElement("textarea",{"aria-disabled":i,"aria-label":e["aria-label"],className:_classnames2.default.call(void 0, a["sendbox__text-area-input"],a["sendbox__text-area-shared"]),"data-testid":e["data-testid"],onClick:e.onClick,onCompositionEnd:c,onCompositionStart:r,onInput:e.onInput,onKeyDown:h,placeholder:e.placeholder,readOnly:i,ref:t,rows:(p=e.startRows)!=null?p:1,tabIndex:e.hidden?-1:void 0,value:e.value})))});jt.displayName="TextArea";var Gt=jt;var{useFocus:mi,useLocalizer:gi,useMakeThumbnail:fi,useRegisterFocusSendBox:wi,useSendBoxAttachments:vi,useSendBoxValue:_i,useSendMessage:yi,useStyleOptions:xi,useUIState:ki}=_botframeworkwebchatcomponent.hooks;function Yt(e){var Ze;let[{hideTelephoneKeypadButton:t,hideUploadButton:o,maxMessageLength:a}]=xi(),[n,i]=vi(),[c,r]=_i(),[h,p]=_react.useState.call(void 0, ""),[l]=H(),[d]=ki(),b=s(Ee),m=M(Ee),w=Le("sendbox__error-message-id"),y=_react.useRef.call(void 0, null),x=gi(),B=fi(),C=yi(),S=mi(),z=e.isPrimary?c:h,A=e.isPrimary?r:p,u=d==="blueprint",[We,Ke]=Ot({message:z,attachments:n}),O=!!a&&z.length>a,ho=!u&&!l&&a&&isFinite(a),Xe=!u&&l;wi(_react.useCallback.call(void 0, ({noKeyboard:_})=>{let{current:F}=y;_&&(F==null||F.setAttribute("inputmode","none")),F==null||F.focus()},[y]));let Ue=_usereffrom.useRefFrom.call(void 0, n),je=_usereffrom.useRefFrom.call(void 0, z),po=_react.useCallback.call(void 0, _=>{"tabIndex"in _.target&&typeof _.target.tabIndex=="number"&&_.target.tabIndex>=0||S("sendBox")},[S]),mo=_react.useCallback.call(void 0, _=>A(_.currentTarget.value),[A]),Ge=_react.useCallback.call(void 0, async _=>{let F=Object.freeze(await Promise.all(_.map($e=>B($e).then(Ye=>Object.freeze({blob:$e,...Ye&&{thumbnailURL:Ye}})))));i(F)},[B,i]),go=_react.useCallback.call(void 0, ({currentTarget:_})=>_.removeAttribute("inputmode"),[]),fo=_react.useCallback.call(void 0, _=>{_.preventDefault(),Ke()!=="empty"&&!O&&(C(je.current,void 0,{attachments:Ue.current}),A(""),i([])),S("sendBox")},[Ke,O,S,C,A,je,Ue,i]),wo=_react.useCallback.call(void 0, _=>C(`/DTMFKey ${_}`),[C]),vo=Ae(),_o={"aria-invalid":"false",...We&&{"aria-describedby":w,"aria-errormessage":w,"aria-invalid":"true"}};return _react2.default.createElement("form",{..._o,className:_classnames2.default.call(void 0, b.sendbox,m,e.className),"data-testid":g.sendBoxContainer,onSubmit:fo},_react2.default.createElement(ke,null),_react2.default.createElement("div",{className:_classnames2.default.call(void 0, b.sendbox__sendbox),onClickCapture:po,onKeyDown:vo},_react2.default.createElement(Gt,{"aria-label":x(O?"TEXT_INPUT_LENGTH_EXCEEDED_ALT":"TEXT_INPUT_ALT"),className:_classnames2.default.call(void 0, b["sendbox__sendbox-text"],b["sendbox__text-area--in-grid"]),completion:e.completion,"data-testid":g.sendBoxTextBox,hidden:Xe,onClick:go,onInput:mo,placeholder:(Ze=e.placeholder)!=null?Ze:x("TEXT_INPUT_PLACEHOLDER"),ref:y,value:z}),_react2.default.createElement(Be,{autoFocus:!0,className:b["sendbox__telephone-keypad--in-grid"],isHorizontal:!1,onButtonClick:wo}),_react2.default.createElement(Et,{attachments:n,className:b["sendbox__attachment--in-grid"]}),_react2.default.createElement("div",{className:_classnames2.default.call(void 0, b["sendbox__sendbox-controls"],b["sendbox__sendbox-controls--in-grid"])},ho&&_react2.default.createElement("div",{className:_classnames2.default.call(void 0, b["sendbox__text-counter"],{[b["sendbox__text-counter--error"]]:O})},`${z.length}/${a}`),_react2.default.createElement(Fe,null,!t&&_react2.default.createElement(Xt,null),!o&&_react2.default.createElement(At,{onFilesAdded:Ge}),_react2.default.createElement(ze,null),_react2.default.createElement(E,{"aria-label":x("TEXT_INPUT_SEND_BUTTON_ALT"),"data-testid":g.sendBoxSendButton,disabled:O||Xe,type:"submit"},_react2.default.createElement(ce,null)))),_react2.default.createElement(he,{onFilesAdded:Ge}),_react2.default.createElement(Rt,{error:We,id:w})))}var ee=_react.memo.call(void 0, e=>_react2.default.createElement(Yt,{...e,isPrimary:!0}));ee.displayName="PrimarySendBox";var qt=_react.memo.call(void 0, Yt);var _decorator = require('botframework-webchat-api/decorator');var _decorator3 = require('botframework-webchat-component/decorator');var Si={urlStateMap:{get(){throw new Error("urlMap cannot be used outside of <AssetComposerContext>.")}}},Jt=_react.createContext.call(void 0, Object.create({},Si));Jt.displayName="AssetComposerContext";var te=Jt;function De(){return _react.useContext.call(void 0, te)}function Ie(e){let t=De().urlStateMap.get(e);if(!t)throw new Error(`botframework-webchat-fluent-theme internal: Asset "${e}" was not found.`);return t}var{useLocalizer:Ai,useShouldReduceMotion:Li}=_botframeworkwebchatcomponent.hooks,Qt=({className:e})=>{let[t]=Li(),[o]=Ie("sliding dots"),a=Ai(),n=_react.useRef.call(void 0, null),i=a("TYPING_INDICATOR_ALT"),c=_usereffrom.useRefFrom.call(void 0, t),r=_react.useCallback.call(void 0, ()=>{var m;let l=(m=n.current)==null?void 0:m.contentDocument,d=l==null?void 0:l.documentElement,{SVGSVGElement:b}=(l==null?void 0:l.defaultView)||{};b&&d instanceof b&&d.pauseAnimations()},[n]),h=_react.useCallback.call(void 0, ()=>{var m;let l=(m=n.current)==null?void 0:m.contentDocument,d=l==null?void 0:l.documentElement,{SVGSVGElement:b}=(l==null?void 0:l.defaultView)||{};b&&d instanceof b&&d.unpauseAnimations()},[n]),p=_react.useCallback.call(void 0, ()=>c.current?r():h(),[r,c,h]);return _react.useEffect.call(void 0, p,[p,t]),_react2.default.createElement("object",{"aria-label":i,className:e,data:o.href,onLoad:p,ref:n,type:"image/svg+xml"})};Qt.displayName="SlidingDots";var oe=_react.memo.call(void 0, Qt);var eo={"activity-loader":"se","variant-fluent":"ue"};function Ri({children:e}){let t=s(eo),o=M(t);return _react2.default.createElement(_react.Fragment,null,e,_react2.default.createElement(oe,{className:_classnames2.default.call(void 0, t["activity-loader"],o)}))}var oo=_react.memo.call(void 0, Ri);var Ki='<svg xmlns="http://www.w3.org/2000/svg" width="400" height="20" viewBox="0 0 400 20"><defs><linearGradient id="a" x1="0" x2="100%" y1="0" y2="0" gradientUnits="userSpaceOnUse"><stop offset="0%"><animate attributeName="stop-color" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="#ad5ae1;#ad5ae1;#0E94E1;#0E94E1;#669fc2;#669fc2;#ad5ae1"/></stop><stop offset="50%"><animate attributeName="stop-color" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="#e9618d;#e9618d;#57AB82;#57AB82;#6377e0;#6377e0;#e9618d"/></stop><stop offset="100%"><animate attributeName="stop-color" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="#fd9e5f;#fd9e5f;#C6C225;#C6C225;#9b80ec;#9b80ec;#fd9e5f"/></stop></linearGradient></defs><g fill="url(#a)"><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.5;0.66;1" repeatCount="indefinite" values="26;26;0;0"/><animate attributeName="width" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;1" repeatCount="indefinite" values="20;20;30;30;20;20"/><animate attributeName="opacity" dur="2s" keyTimes="0;0.5;0.66;1" repeatCount="indefinite" values="1;1;0;0"/></rect><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="62;62;72;72;26;26;0"/><animate attributeName="width" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="104;104;20;20;70;70;20"/><animate attributeName="opacity" dur="2s" keyTimes="0;0.8;1" repeatCount="indefinite" values="1;1;0"/></rect><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="182;182;108;108;112;112;26"/><animate attributeName="width" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;1" repeatCount="indefinite" values="20;20;60;60;20;20"/></rect><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="218;218;184;184;148;148;62"/><animate attributeName="width" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="60;60;80;80;40;40;104"/></rect><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="294;294;280;280;204;204;182"/><animate attributeName="width" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="40;40;20;20;80;80;20"/></rect><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="350;350;316;316;300;300;218"/><animate attributeName="width" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="20;20;60;60;20;20;60"/></rect><rect height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="386;386;392;392;336;336;294"/><animate attributeName="width" dur="2s" keyTimes="0;0.5;0.66;1" repeatCount="indefinite" values="20;20;40;40"/><animate attributeName="opacity" dur="2s" keyTimes="0;0.5;0.66;1" repeatCount="indefinite" values="0;0;1;1"/></rect><rect width="20" height="20" rx="10"><animate attributeName="x" dur="2s" keyTimes="0;0.2;0.33;0.5;0.66;0.8;1" repeatCount="indefinite" values="422;422;428;428;392;392;350"/><animate attributeName="opacity" dur="2s" keyTimes="0;0.8;1" repeatCount="indefinite" values="0;0;1"/></rect></g></svg>',ro=_react.memo.call(void 0, ({children:e})=>{let t=_react.useMemo.call(void 0, ()=>URL.createObjectURL(new Blob([Ki],{type:"image/svg+xml"})),[]);_react.useEffect.call(void 0, ()=>()=>URL.revokeObjectURL(t),[t]);let o=_react.useMemo.call(void 0, ()=>Object.freeze({urlStateMap:new Map([["sliding dots",Object.freeze([new URL(t)])]])}),[t]);return _react2.default.createElement(te.Provider,{value:o},e)});ro.displayName="AssetComposer";var no=ro;function ae(e){return!!(e&&e.from.role==="channel"&&e.type==="message"&&"text"in e)}var io={"liner-message-activity":"we","liner-message-activity__text":"ge"};var co=({activity:e})=>{let t=s(io);return _react2.default.createElement("div",{className:t["liner-message-activity"],role:"separator"},_react2.default.createElement("span",{className:t["liner-message-activity__text"]},e.text))};co.displayName="LinerMessageActivity";var Ve=_react.memo.call(void 0, co);var Oe={theme:"_","variant-copilot":"ea"};var $i="webchat-fluent";function re(e){let t=s(Oe),o=M(Oe);return _react2.default.createElement("div",{className:_classnames2.default.call(void 0, $i,t.theme,o)},e.children)}var so={"sliding-dots-typing-indicator":"ve","sliding-dots-typing-indicator__image":"pe"};function el(){let e=s(so);return _react2.default.createElement("div",{className:e["sliding-dots-typing-indicator"],"data-testid":_botframeworkwebchatcomponent.testIds.typingIndicator},_react2.default.createElement(oe,{className:_classnames2.default.call(void 0, e["sliding-dots-typing-indicator__image"])}))}var uo=_react.memo.call(void 0, el);var{ThemeProvider:nl}=_botframeworkwebchatcomponent.Components,il=Object.freeze([()=>e=>(...t)=>{var n;let o=(n=t[0])==null?void 0:n.activity;if(D(o))return()=>_react2.default.createElement(we,{activity:o});if(ae(o))return()=>_react2.default.createElement(Ve,{activity:o});let a=e(...t);return a&&((...i)=>_react2.default.createElement(fe,{activity:o},a(...i)))}]),ll=[()=>()=>()=>ee],cl=Object.freeze([e=>e==="activity border"&&(t=>o=>o.livestreamingState==="preparing"?oo:t(o))]),sl=de(),dl=Object.freeze({feedbackActionsPlacement:"activity-actions"}),bl=Object.freeze([()=>e=>(...t)=>t[0].visible?_react2.default.createElement(uo,null):e(...t)]);function ul({children:e,variant:t="fluent"}){return _react2.default.createElement(Je,{variant:t},_react2.default.createElement(re,null,_react2.default.createElement(Ne,null,_react2.default.createElement(nl,{activityMiddleware:il,sendBoxMiddleware:ll,styleOptions:dl,styles:sl,typingIndicatorMiddleware:bl},_react2.default.createElement(no,null,_react2.default.createElement(_decorator3.WebChatDecorator,null,_react2.default.createElement(_decorator.DecoratorComposer,{middleware:cl},e)))))))}var hl=_react.memo.call(void 0, ul);var ml="tsup",gl="commonjs",fl="4.18.1-hotfix.20260127.b53acdf",Ah= exports.buildInfo ={buildTool:ml,moduleFormat:gl,version:fl};_injectmetatag.injectMetaTag.call(void 0, "botframework-webchat:fluent-theme","version=4.18.1-hotfix.20260127.b53acdf; build-tool=tsup; module-format=commonjs");exports.FluentSendBox = qt; exports.FluentThemeProvider = hl; exports.buildInfo = Ah; exports.testIds = g;
|
|
2
2
|
/*! For license information please see botframework-webchat-fluent-theme.js.LEGAL.txt */
|
|
3
3
|
//# sourceMappingURL=botframework-webchat-fluent-theme.js.map
|