@microsoft/omnichannel-chat-components 0.1.0-main.ea06308
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/lib/cjs/assets/assets.d.js +1 -0
- package/lib/cjs/assets/imgs/ChatBubble.svg +28 -0
- package/lib/cjs/assets/imgs/ChatReconnectPopupIcon.png +0 -0
- package/lib/cjs/assets/imgs/Proactive_banner.png +0 -0
- package/lib/cjs/assets/imgs/agent.png +0 -0
- package/lib/cjs/assets/imgs/callacceptbutton.svg +3 -0
- package/lib/cjs/assets/imgs/callrejectbutton.svg +3 -0
- package/lib/cjs/assets/imgs/chat.svg +47 -0
- package/lib/cjs/assets/imgs/chatIcon.svg +16 -0
- package/lib/cjs/assets/imgs/closeButton.svg +3 -0
- package/lib/cjs/assets/imgs/closeChatButton.svg +3 -0
- package/lib/cjs/assets/imgs/error.svg +3 -0
- package/lib/cjs/assets/imgs/lcwAudioOff.svg +3 -0
- package/lib/cjs/assets/imgs/lcwAudioOn.svg +3 -0
- package/lib/cjs/assets/imgs/loading.gif +0 -0
- package/lib/cjs/assets/imgs/minimizeChatButton.svg +3 -0
- package/lib/cjs/assets/imgs/transcriptDownloadIcon.svg +4 -0
- package/lib/cjs/assets/imgs/transcriptEmailIcon.svg +5 -0
- package/lib/cjs/assets/imgs/videocallacceptbutton.svg +3 -0
- package/lib/cjs/assets/imgs/videooff.svg +3 -0
- package/lib/cjs/assets/imgs/videoon.svg +3 -0
- package/lib/cjs/assets/imgs/voiceoff.svg +3 -0
- package/lib/cjs/assets/imgs/voiceon.svg +3 -0
- package/lib/cjs/common/Constants.js +48 -0
- package/lib/cjs/common/decodeComponentString.js +35 -0
- package/lib/cjs/common/encodeComponentString.js +12 -0
- package/lib/cjs/common/utils.js +136 -0
- package/lib/cjs/components/callingcontainer/CallingContainer.js +57 -0
- package/lib/cjs/components/callingcontainer/common/defaultProps/defaultCallingContainerControlProps.js +13 -0
- package/lib/cjs/components/callingcontainer/common/defaultProps/defaultCallingContainerProps.js +16 -0
- package/lib/cjs/components/callingcontainer/common/defaultStyles/customizedCallingContainerStyles.js +14 -0
- package/lib/cjs/components/callingcontainer/common/defaultStyles/defaultCallingContainerStyles.js +15 -0
- package/lib/cjs/components/callingcontainer/interfaces/ICallingContainerControlProps.js +1 -0
- package/lib/cjs/components/callingcontainer/interfaces/ICallingContainerProps.js +1 -0
- package/lib/cjs/components/callingcontainer/interfaces/ICallingContainerStyleProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/CurrentCall.js +290 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlProps.js +83 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlPropsRtl.js +125 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallProps.js +16 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/componentOverridesStyleProps.js +20 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/customizedCurrentCallStyleProps.js +98 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/defaultCurrentCallStyleProps.js +98 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallClassNames.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallComponentOverrides.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallControlProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallNonActionControlIds.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallStyleProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/IncomingCall.js +155 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverrideProps.js +66 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverridesControlProps.js +19 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlProps.js +62 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlPropsRtl.js +95 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallProps.js +16 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/componentOverridesStyleProps.js +50 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/defaultIncomingCallStyleProps.js +61 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallComponentOverrides.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallControlProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallStyleProps.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/Timer/ITimer.js +1 -0
- package/lib/cjs/components/callingcontainer/subcomponents/Timer/Timer.js +36 -0
- package/lib/cjs/components/chatbutton/ChatButton.js +147 -0
- package/lib/cjs/components/chatbutton/common/defaultProps/defaultChatButtonControlProps.js +25 -0
- package/lib/cjs/components/chatbutton/common/defaultProps/defaultChatButtonProps.js +16 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonGeneralStyles.js +32 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonIconContainerStyles.js +29 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonNotificationBubbleStyles.js +23 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonStyleProps.js +31 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonSubTitleStyles.js +20 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonTextContainerStyles.js +12 -0
- package/lib/cjs/components/chatbutton/common/defaultStyles/defaultChatButtonTitleStyles.js +22 -0
- package/lib/cjs/components/chatbutton/interfaces/IChatButtonClassNames.js +1 -0
- package/lib/cjs/components/chatbutton/interfaces/IChatButtonComponentOverrides.js +1 -0
- package/lib/cjs/components/chatbutton/interfaces/IChatButtonControlProps.js +1 -0
- package/lib/cjs/components/chatbutton/interfaces/IChatButtonProps.js +1 -0
- package/lib/cjs/components/chatbutton/interfaces/IChatButtonStyleProps.js +1 -0
- package/lib/cjs/components/common/commandbutton/CommandButton.js +69 -0
- package/lib/cjs/components/common/interfaces/ICommandButtonControlProps.js +1 -0
- package/lib/cjs/components/common/interfaces/ICommandButtonProps.js +1 -0
- package/lib/cjs/components/common/interfaces/IImageControlProps.js +1 -0
- package/lib/cjs/components/common/interfaces/ILabelControlProps.js +1 -0
- package/lib/cjs/components/confirmationpane/ConfirmationPane.js +147 -0
- package/lib/cjs/components/confirmationpane/common/defaultProps/defaultConfirmationPaneControlProps.js +28 -0
- package/lib/cjs/components/confirmationpane/common/defaultProps/defaultConfirmationPaneProps.js +16 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneButtonGroupStyles.js +14 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonFocusedStyles.js +10 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonHoveredStyles.js +10 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonStyles.js +15 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonFocusedStyles.js +10 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonHoveredStyles.js +10 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonStyles.js +16 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneGeneralStyles.js +23 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneStyles.js +28 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneSubtitleStyles.js +16 -0
- package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneTitleStyles.js +16 -0
- package/lib/cjs/components/confirmationpane/interfaces/IConfirmationPaneClassNames.js +1 -0
- package/lib/cjs/components/confirmationpane/interfaces/IConfirmationPaneComponentOverrides.js +1 -0
- package/lib/cjs/components/confirmationpane/interfaces/IConfirmationPaneControlProps.js +1 -0
- package/lib/cjs/components/confirmationpane/interfaces/IConfirmationPaneProps.js +1 -0
- package/lib/cjs/components/confirmationpane/interfaces/IConfirmationPaneStyleProps.js +1 -0
- package/lib/cjs/components/footer/Footer.js +100 -0
- package/lib/cjs/components/footer/common/defaultProps/customFooterControlProps.js +69 -0
- package/lib/cjs/components/footer/common/defaultProps/defaultFooterComponentOverrides.js +43 -0
- package/lib/cjs/components/footer/common/defaultProps/defaultFooterControlProps.js +50 -0
- package/lib/cjs/components/footer/common/defaultProps/defaultFooterOverridesProps.js +19 -0
- package/lib/cjs/components/footer/common/defaultProps/defaultFooterProps.js +16 -0
- package/lib/cjs/components/footer/common/defaultStyles/defaultFooterStyleProps.js +53 -0
- package/lib/cjs/components/footer/interfaces/IFooterComponentOverrides.js +1 -0
- package/lib/cjs/components/footer/interfaces/IFooterControlProps.js +1 -0
- package/lib/cjs/components/footer/interfaces/IFooterProps.js +1 -0
- package/lib/cjs/components/footer/interfaces/IFooterStyleProps.js +1 -0
- package/lib/cjs/components/footer/subcomponents/AudioNotificationButton.js +78 -0
- package/lib/cjs/components/footer/subcomponents/DownloadTranscriptButton.js +42 -0
- package/lib/cjs/components/footer/subcomponents/EmailTranscriptButton.js +42 -0
- package/lib/cjs/components/header/Header.js +112 -0
- package/lib/cjs/components/header/common/defaultProps/azureHeaderControlProps.js +52 -0
- package/lib/cjs/components/header/common/defaultProps/azureHeaderProps.js +19 -0
- package/lib/cjs/components/header/common/defaultProps/customHeaderControlProps.js +73 -0
- package/lib/cjs/components/header/common/defaultProps/defaultHeaderComponentOverrides.js +44 -0
- package/lib/cjs/components/header/common/defaultProps/defaultHeaderControlProps.js +53 -0
- package/lib/cjs/components/header/common/defaultProps/defaultHeaderProps.js +16 -0
- package/lib/cjs/components/header/common/defaultProps/overridesDefaultHeaderProps.js +19 -0
- package/lib/cjs/components/header/common/defaultStyles/advancedHeaderStyleProps.js +43 -0
- package/lib/cjs/components/header/common/defaultStyles/defaultHeaderStyleProps.js +48 -0
- package/lib/cjs/components/header/interfaces/IHeaderComponentOverrides.js +1 -0
- package/lib/cjs/components/header/interfaces/IHeaderControlProps.js +1 -0
- package/lib/cjs/components/header/interfaces/IHeaderProps.js +1 -0
- package/lib/cjs/components/header/interfaces/IHeaderStyleProps.js +1 -0
- package/lib/cjs/components/header/subcomponents/CloseButton.js +42 -0
- package/lib/cjs/components/header/subcomponents/MinimizeButton.js +42 -0
- package/lib/cjs/components/inputvalidationpane/InputValidationPane.js +254 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneControlProps.js +44 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneProps.js +16 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneButtonGroupStyles.js +10 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonHoveredStyles.js +8 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonStyles.js +21 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneGeneralStyles.js +22 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneHeaderGroupStyles.js +10 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInputStyles.js +15 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInvalidInputErrorMessageStyles.js +15 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonHoveredStyles.js +8 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonStyles.js +17 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneStyles.js +43 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSubtitleStyles.js +14 -0
- package/lib/cjs/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneTitleStyles.js +14 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneComponentOverrides.js +30 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneControlProps.js +43 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneProps.js +19 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneCancelButtonStyles.js +15 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneHeaderGroupStyles.js +10 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneInputStyles.js +11 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneSendButtonStyles.js +15 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneStyles.js +25 -0
- package/lib/cjs/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneTitleStyles.js +15 -0
- package/lib/cjs/components/inputvalidationpane/interfaces/IInputValidationPaneClassNames.js +1 -0
- package/lib/cjs/components/inputvalidationpane/interfaces/IInputValidationPaneComponentOverrides.js +1 -0
- package/lib/cjs/components/inputvalidationpane/interfaces/IInputValidationPaneControlProps.js +1 -0
- package/lib/cjs/components/inputvalidationpane/interfaces/IInputValidationPaneProps.js +1 -0
- package/lib/cjs/components/inputvalidationpane/interfaces/IInputValidationPaneStyleProps.js +1 -0
- package/lib/cjs/components/loadingpane/LoadingPane.js +92 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultLoadingPaneControlProps.js +20 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultLoadingPaneProps.js +16 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneGeneralStyles.js +18 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconImageProps.js +22 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconStyles.js +18 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerStyles.js +15 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerTextStyles.js +17 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneStyles.js +31 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSubtitleStyles.js +18 -0
- package/lib/cjs/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneTitleStyles.js +18 -0
- package/lib/cjs/components/loadingpane/common/presetOneProps/presetOneLoadingPaneControlProps.js +14 -0
- package/lib/cjs/components/loadingpane/common/presetOneProps/presetOneLoadingPaneProps.js +16 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneControlProps.js +19 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneProps.js +16 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneGeneralStyles.js +24 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconImageProps.js +22 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconStyles.js +18 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerStyles.js +16 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerTextStyles.js +19 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneStyles.js +31 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSubtitleStyles.js +19 -0
- package/lib/cjs/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneTitleStyles.js +19 -0
- package/lib/cjs/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneControlProps.js +20 -0
- package/lib/cjs/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneProps.js +16 -0
- package/lib/cjs/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneGeneralStyles.js +32 -0
- package/lib/cjs/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneSpinnerStyles.js +17 -0
- package/lib/cjs/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneStyles.js +31 -0
- package/lib/cjs/components/loadingpane/interfaces/ILoadingPaneClassNames.js +1 -0
- package/lib/cjs/components/loadingpane/interfaces/ILoadingPaneComponentOverrides.js +1 -0
- package/lib/cjs/components/loadingpane/interfaces/ILoadingPaneControlProps.js +1 -0
- package/lib/cjs/components/loadingpane/interfaces/ILoadingPaneProps.js +1 -0
- package/lib/cjs/components/loadingpane/interfaces/ILoadingPaneStyleProps.js +1 -0
- package/lib/cjs/components/outofofficehourspane/OOOHPane.js +48 -0
- package/lib/cjs/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneControlProps.js +14 -0
- package/lib/cjs/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneProps.js +16 -0
- package/lib/cjs/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneGeneralStyles.js +22 -0
- package/lib/cjs/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneStyles.js +16 -0
- package/lib/cjs/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneTitleStyles.js +15 -0
- package/lib/cjs/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneControlProps.js +14 -0
- package/lib/cjs/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneProps.js +16 -0
- package/lib/cjs/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneControlProps.js +14 -0
- package/lib/cjs/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneProps.js +16 -0
- package/lib/cjs/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneGeneralStyles.js +32 -0
- package/lib/cjs/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneStyles.js +16 -0
- package/lib/cjs/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneTitleStyles.js +18 -0
- package/lib/cjs/components/outofofficehourspane/interfaces/IOOOHPaneClassNames.js +1 -0
- package/lib/cjs/components/outofofficehourspane/interfaces/IOOOHPaneComponentOverrides.js +1 -0
- package/lib/cjs/components/outofofficehourspane/interfaces/IOOOHPaneControlProps.js +1 -0
- package/lib/cjs/components/outofofficehourspane/interfaces/IOOOHPaneProps.js +1 -0
- package/lib/cjs/components/outofofficehourspane/interfaces/IOOOHPaneStyleProps.js +1 -0
- package/lib/cjs/components/postchatsurveypane/PostChatSurveyPane.js +49 -0
- package/lib/cjs/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneControlProps.js +12 -0
- package/lib/cjs/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneProps.js +16 -0
- package/lib/cjs/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneGeneralStyles.js +14 -0
- package/lib/cjs/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneStyles.js +13 -0
- package/lib/cjs/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneControlProps.js +13 -0
- package/lib/cjs/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneProps.js +16 -0
- package/lib/cjs/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneGeneralStyles.js +19 -0
- package/lib/cjs/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneStyles.js +13 -0
- package/lib/cjs/components/postchatsurveypane/interfaces/IPostChatSurveyPaneClassNames.js +1 -0
- package/lib/cjs/components/postchatsurveypane/interfaces/IPostChatSurveyPaneControlProps.js +1 -0
- package/lib/cjs/components/postchatsurveypane/interfaces/IPostChatSurveyPaneProps.js +1 -0
- package/lib/cjs/components/postchatsurveypane/interfaces/IPostChatSurveyPaneStyleProps.js +1 -0
- package/lib/cjs/components/prechatsurveypane/PreChatSurveyPane.js +138 -0
- package/lib/cjs/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneControlProps.js +18 -0
- package/lib/cjs/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneProps.js +16 -0
- package/lib/cjs/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneACContainerStyles.js +12 -0
- package/lib/cjs/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneButtonStyles.js +11 -0
- package/lib/cjs/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneGeneralStyles.js +17 -0
- package/lib/cjs/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneStyles.js +19 -0
- package/lib/cjs/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneControlProps.js +13 -0
- package/lib/cjs/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneProps.js +16 -0
- package/lib/cjs/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneControlProps.js +18 -0
- package/lib/cjs/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneProps.js +16 -0
- package/lib/cjs/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneACContainerStyles.js +12 -0
- package/lib/cjs/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneButtonStyles.js +11 -0
- package/lib/cjs/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneGeneralStyles.js +18 -0
- package/lib/cjs/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneStyles.js +19 -0
- package/lib/cjs/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneControlProps.js +18 -0
- package/lib/cjs/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneProps.js +16 -0
- package/lib/cjs/components/prechatsurveypane/interfaces/IPreChatSurveyPaneButtonStyles.js +1 -0
- package/lib/cjs/components/prechatsurveypane/interfaces/IPreChatSurveyPaneControlProps.js +1 -0
- package/lib/cjs/components/prechatsurveypane/interfaces/IPreChatSurveyPaneProps.js +1 -0
- package/lib/cjs/components/prechatsurveypane/interfaces/IPreChatSurveyPaneStyleProps.js +1 -0
- package/lib/cjs/components/proactivechatpane/ProactiveChatPane.js +191 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneControlProps.js +31 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneProps.js +16 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyContainerStyles.js +8 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyTitleStyles.js +17 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonHoveredStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonStyles.js +24 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneGeneralStyles.js +20 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneHeaderContainerStyles.js +22 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonHoveredStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonStyles.js +18 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStyles.js +43 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneSubtitleStyles.js +13 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTextContainerStyles.js +16 -0
- package/lib/cjs/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTitleStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneControlProps.js +31 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneProps.js +16 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneBodyTitleStyles.js +12 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonHoveredStyles.js +10 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonHoveredStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonStyles.js +12 -0
- package/lib/cjs/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStyles.js +25 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneControlProps.js +31 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneProps.js +16 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneBodyContainerStyles.js +15 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonHoveredStyles.js +10 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneGeneralStyles.js +14 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneHeaderContainerStyles.js +10 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonHoveredStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonStyles.js +13 -0
- package/lib/cjs/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStyles.js +31 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneComponentOverrides.js +46 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneControlProps.js +26 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneProps.js +19 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneBodyContainerStyles.js +12 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneGeneralStyles.js +13 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneHeaderContainerStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonHoveredStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonStyles.js +13 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStyles.js +28 -0
- package/lib/cjs/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneTextContainerStyles.js +11 -0
- package/lib/cjs/components/proactivechatpane/interfaces/IProactiveChatPaneClassNames.js +1 -0
- package/lib/cjs/components/proactivechatpane/interfaces/IProactiveChatPaneComponentOverrides.js +1 -0
- package/lib/cjs/components/proactivechatpane/interfaces/IProactiveChatPaneControlProps.js +1 -0
- package/lib/cjs/components/proactivechatpane/interfaces/IProactiveChatPaneProps.js +1 -0
- package/lib/cjs/components/proactivechatpane/interfaces/IProactiveChatPaneStyleProps.js +1 -0
- package/lib/cjs/components/reconnectchatpane/ReconnectChatPane.js +182 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneControlProps.js +35 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneProps.js +16 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneButtonGroupStyles.js +10 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonHoveredStyles.js +10 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonStyles.js +18 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneGeneralStyles.js +17 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneIconStyles.js +21 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonHoveredStyles.js +10 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonStyles.js +17 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStyles.js +40 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneSubtitleStyles.js +14 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneTitleStyles.js +15 -0
- package/lib/cjs/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneWrapperStyles.js +16 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneControlProps.js +32 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneProps.js +16 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneButtonGroupStyles.js +10 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneContinueChatButtonStyles.js +12 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneGeneralStyles.js +13 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneStyles.js +25 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneTitleStyles.js +12 -0
- package/lib/cjs/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneWrapperStyles.js +11 -0
- package/lib/cjs/components/reconnectchatpane/interfaces/IReconnectChatPaneClassNames.js +1 -0
- package/lib/cjs/components/reconnectchatpane/interfaces/IReconnectChatPaneComponentOverrides.js +1 -0
- package/lib/cjs/components/reconnectchatpane/interfaces/IReconnectChatPaneControlProps.js +1 -0
- package/lib/cjs/components/reconnectchatpane/interfaces/IReconnectChatPaneProps.js +1 -0
- package/lib/cjs/components/reconnectchatpane/interfaces/IReconnectChatPaneStyleProps.js +1 -0
- package/lib/cjs/index.js +159 -0
- package/lib/cjs/interfaces/ICustomEvent.js +1 -0
- package/lib/cjs/services/BroadcastService.js +43 -0
- package/lib/esm/assets/assets.d.js +0 -0
- package/lib/esm/assets/imgs/ChatBubble.svg +28 -0
- package/lib/esm/assets/imgs/ChatReconnectPopupIcon.png +0 -0
- package/lib/esm/assets/imgs/Proactive_banner.png +0 -0
- package/lib/esm/assets/imgs/agent.png +0 -0
- package/lib/esm/assets/imgs/callacceptbutton.svg +3 -0
- package/lib/esm/assets/imgs/callrejectbutton.svg +3 -0
- package/lib/esm/assets/imgs/chat.svg +47 -0
- package/lib/esm/assets/imgs/chatIcon.svg +16 -0
- package/lib/esm/assets/imgs/closeButton.svg +3 -0
- package/lib/esm/assets/imgs/closeChatButton.svg +3 -0
- package/lib/esm/assets/imgs/error.svg +3 -0
- package/lib/esm/assets/imgs/lcwAudioOff.svg +3 -0
- package/lib/esm/assets/imgs/lcwAudioOn.svg +3 -0
- package/lib/esm/assets/imgs/loading.gif +0 -0
- package/lib/esm/assets/imgs/minimizeChatButton.svg +3 -0
- package/lib/esm/assets/imgs/transcriptDownloadIcon.svg +4 -0
- package/lib/esm/assets/imgs/transcriptEmailIcon.svg +5 -0
- package/lib/esm/assets/imgs/videocallacceptbutton.svg +3 -0
- package/lib/esm/assets/imgs/videooff.svg +3 -0
- package/lib/esm/assets/imgs/videoon.svg +3 -0
- package/lib/esm/assets/imgs/voiceoff.svg +3 -0
- package/lib/esm/assets/imgs/voiceon.svg +3 -0
- package/lib/esm/common/Constants.js +36 -0
- package/lib/esm/common/decodeComponentString.js +23 -0
- package/lib/esm/common/encodeComponentString.js +3 -0
- package/lib/esm/common/utils.js +96 -0
- package/lib/esm/components/callingcontainer/CallingContainer.js +39 -0
- package/lib/esm/components/callingcontainer/common/defaultProps/defaultCallingContainerControlProps.js +6 -0
- package/lib/esm/components/callingcontainer/common/defaultProps/defaultCallingContainerProps.js +6 -0
- package/lib/esm/components/callingcontainer/common/defaultStyles/customizedCallingContainerStyles.js +7 -0
- package/lib/esm/components/callingcontainer/common/defaultStyles/defaultCallingContainerStyles.js +8 -0
- package/lib/esm/components/callingcontainer/interfaces/ICallingContainerControlProps.js +1 -0
- package/lib/esm/components/callingcontainer/interfaces/ICallingContainerProps.js +1 -0
- package/lib/esm/components/callingcontainer/interfaces/ICallingContainerStyleProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/CurrentCall.js +265 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlProps.js +76 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlPropsRtl.js +110 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallProps.js +6 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/componentOverridesStyleProps.js +11 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/customizedCurrentCallStyleProps.js +91 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/defaultCurrentCallStyleProps.js +91 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallClassNames.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallComponentOverrides.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallControlProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallNonActionControlIds.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallStyleProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/IncomingCall.js +136 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverrideProps.js +49 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverridesControlProps.js +8 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlProps.js +55 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlPropsRtl.js +82 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallProps.js +6 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/componentOverridesStyleProps.js +43 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/defaultIncomingCallStyleProps.js +54 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallComponentOverrides.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallControlProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallStyleProps.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/Timer/ITimer.js +1 -0
- package/lib/esm/components/callingcontainer/subcomponents/Timer/Timer.js +22 -0
- package/lib/esm/components/chatbutton/ChatButton.js +122 -0
- package/lib/esm/components/chatbutton/common/defaultProps/defaultChatButtonControlProps.js +18 -0
- package/lib/esm/components/chatbutton/common/defaultProps/defaultChatButtonProps.js +6 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonGeneralStyles.js +25 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonIconContainerStyles.js +18 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonNotificationBubbleStyles.js +16 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonStyleProps.js +17 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonSubTitleStyles.js +13 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonTextContainerStyles.js +5 -0
- package/lib/esm/components/chatbutton/common/defaultStyles/defaultChatButtonTitleStyles.js +15 -0
- package/lib/esm/components/chatbutton/interfaces/IChatButtonClassNames.js +1 -0
- package/lib/esm/components/chatbutton/interfaces/IChatButtonComponentOverrides.js +1 -0
- package/lib/esm/components/chatbutton/interfaces/IChatButtonControlProps.js +1 -0
- package/lib/esm/components/chatbutton/interfaces/IChatButtonProps.js +1 -0
- package/lib/esm/components/chatbutton/interfaces/IChatButtonStyleProps.js +1 -0
- package/lib/esm/components/common/commandbutton/CommandButton.js +52 -0
- package/lib/esm/components/common/interfaces/ICommandButtonControlProps.js +1 -0
- package/lib/esm/components/common/interfaces/ICommandButtonProps.js +1 -0
- package/lib/esm/components/common/interfaces/IImageControlProps.js +1 -0
- package/lib/esm/components/common/interfaces/ILabelControlProps.js +1 -0
- package/lib/esm/components/confirmationpane/ConfirmationPane.js +115 -0
- package/lib/esm/components/confirmationpane/common/defaultProps/defaultConfirmationPaneControlProps.js +21 -0
- package/lib/esm/components/confirmationpane/common/defaultProps/defaultConfirmationPaneProps.js +6 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneButtonGroupStyles.js +7 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonFocusedStyles.js +3 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonHoveredStyles.js +3 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonStyles.js +8 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonFocusedStyles.js +3 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonHoveredStyles.js +3 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonStyles.js +9 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneGeneralStyles.js +16 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneStyles.js +14 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneSubtitleStyles.js +9 -0
- package/lib/esm/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneTitleStyles.js +9 -0
- package/lib/esm/components/confirmationpane/interfaces/IConfirmationPaneClassNames.js +1 -0
- package/lib/esm/components/confirmationpane/interfaces/IConfirmationPaneComponentOverrides.js +1 -0
- package/lib/esm/components/confirmationpane/interfaces/IConfirmationPaneControlProps.js +1 -0
- package/lib/esm/components/confirmationpane/interfaces/IConfirmationPaneProps.js +1 -0
- package/lib/esm/components/confirmationpane/interfaces/IConfirmationPaneStyleProps.js +1 -0
- package/lib/esm/components/footer/Footer.js +78 -0
- package/lib/esm/components/footer/common/defaultProps/customFooterControlProps.js +55 -0
- package/lib/esm/components/footer/common/defaultProps/defaultFooterComponentOverrides.js +29 -0
- package/lib/esm/components/footer/common/defaultProps/defaultFooterControlProps.js +43 -0
- package/lib/esm/components/footer/common/defaultProps/defaultFooterOverridesProps.js +8 -0
- package/lib/esm/components/footer/common/defaultProps/defaultFooterProps.js +6 -0
- package/lib/esm/components/footer/common/defaultStyles/defaultFooterStyleProps.js +46 -0
- package/lib/esm/components/footer/interfaces/IFooterComponentOverrides.js +1 -0
- package/lib/esm/components/footer/interfaces/IFooterControlProps.js +1 -0
- package/lib/esm/components/footer/interfaces/IFooterProps.js +1 -0
- package/lib/esm/components/footer/interfaces/IFooterStyleProps.js +1 -0
- package/lib/esm/components/footer/subcomponents/AudioNotificationButton.js +61 -0
- package/lib/esm/components/footer/subcomponents/DownloadTranscriptButton.js +30 -0
- package/lib/esm/components/footer/subcomponents/EmailTranscriptButton.js +30 -0
- package/lib/esm/components/header/Header.js +91 -0
- package/lib/esm/components/header/common/defaultProps/azureHeaderControlProps.js +41 -0
- package/lib/esm/components/header/common/defaultProps/azureHeaderProps.js +8 -0
- package/lib/esm/components/header/common/defaultProps/customHeaderControlProps.js +60 -0
- package/lib/esm/components/header/common/defaultProps/defaultHeaderComponentOverrides.js +28 -0
- package/lib/esm/components/header/common/defaultProps/defaultHeaderControlProps.js +42 -0
- package/lib/esm/components/header/common/defaultProps/defaultHeaderProps.js +6 -0
- package/lib/esm/components/header/common/defaultProps/overridesDefaultHeaderProps.js +8 -0
- package/lib/esm/components/header/common/defaultStyles/advancedHeaderStyleProps.js +36 -0
- package/lib/esm/components/header/common/defaultStyles/defaultHeaderStyleProps.js +41 -0
- package/lib/esm/components/header/interfaces/IHeaderComponentOverrides.js +1 -0
- package/lib/esm/components/header/interfaces/IHeaderControlProps.js +1 -0
- package/lib/esm/components/header/interfaces/IHeaderProps.js +1 -0
- package/lib/esm/components/header/interfaces/IHeaderStyleProps.js +1 -0
- package/lib/esm/components/header/subcomponents/CloseButton.js +30 -0
- package/lib/esm/components/header/subcomponents/MinimizeButton.js +30 -0
- package/lib/esm/components/inputvalidationpane/InputValidationPane.js +220 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneControlProps.js +35 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneProps.js +6 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneButtonGroupStyles.js +3 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonHoveredStyles.js +1 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonStyles.js +14 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneGeneralStyles.js +15 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneHeaderGroupStyles.js +3 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInputStyles.js +8 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInvalidInputErrorMessageStyles.js +8 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonHoveredStyles.js +1 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonStyles.js +10 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneStyles.js +24 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSubtitleStyles.js +7 -0
- package/lib/esm/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneTitleStyles.js +7 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneComponentOverrides.js +18 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneControlProps.js +34 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneProps.js +8 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneCancelButtonStyles.js +8 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneHeaderGroupStyles.js +3 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneInputStyles.js +4 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneSendButtonStyles.js +8 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneStyles.js +12 -0
- package/lib/esm/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneTitleStyles.js +8 -0
- package/lib/esm/components/inputvalidationpane/interfaces/IInputValidationPaneClassNames.js +1 -0
- package/lib/esm/components/inputvalidationpane/interfaces/IInputValidationPaneComponentOverrides.js +1 -0
- package/lib/esm/components/inputvalidationpane/interfaces/IInputValidationPaneControlProps.js +1 -0
- package/lib/esm/components/inputvalidationpane/interfaces/IInputValidationPaneProps.js +1 -0
- package/lib/esm/components/inputvalidationpane/interfaces/IInputValidationPaneStyleProps.js +1 -0
- package/lib/esm/components/loadingpane/LoadingPane.js +72 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultLoadingPaneControlProps.js +13 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultLoadingPaneProps.js +6 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneGeneralStyles.js +11 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconImageProps.js +10 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconStyles.js +11 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerStyles.js +8 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerTextStyles.js +10 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneStyles.js +16 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSubtitleStyles.js +11 -0
- package/lib/esm/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneTitleStyles.js +11 -0
- package/lib/esm/components/loadingpane/common/presetOneProps/presetOneLoadingPaneControlProps.js +5 -0
- package/lib/esm/components/loadingpane/common/presetOneProps/presetOneLoadingPaneProps.js +6 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneControlProps.js +9 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneProps.js +6 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneGeneralStyles.js +17 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconImageProps.js +10 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconStyles.js +11 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerStyles.js +9 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerTextStyles.js +12 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneStyles.js +16 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSubtitleStyles.js +12 -0
- package/lib/esm/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneTitleStyles.js +12 -0
- package/lib/esm/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneControlProps.js +10 -0
- package/lib/esm/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneProps.js +6 -0
- package/lib/esm/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneGeneralStyles.js +21 -0
- package/lib/esm/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneSpinnerStyles.js +10 -0
- package/lib/esm/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneStyles.js +16 -0
- package/lib/esm/components/loadingpane/interfaces/ILoadingPaneClassNames.js +1 -0
- package/lib/esm/components/loadingpane/interfaces/ILoadingPaneComponentOverrides.js +1 -0
- package/lib/esm/components/loadingpane/interfaces/ILoadingPaneControlProps.js +1 -0
- package/lib/esm/components/loadingpane/interfaces/ILoadingPaneProps.js +1 -0
- package/lib/esm/components/loadingpane/interfaces/ILoadingPaneStyleProps.js +1 -0
- package/lib/esm/components/outofofficehourspane/OOOHPane.js +33 -0
- package/lib/esm/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneControlProps.js +7 -0
- package/lib/esm/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneProps.js +6 -0
- package/lib/esm/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneGeneralStyles.js +15 -0
- package/lib/esm/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneStyles.js +6 -0
- package/lib/esm/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneTitleStyles.js +8 -0
- package/lib/esm/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneControlProps.js +5 -0
- package/lib/esm/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneProps.js +6 -0
- package/lib/esm/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneControlProps.js +5 -0
- package/lib/esm/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneProps.js +6 -0
- package/lib/esm/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneGeneralStyles.js +21 -0
- package/lib/esm/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneStyles.js +6 -0
- package/lib/esm/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneTitleStyles.js +11 -0
- package/lib/esm/components/outofofficehourspane/interfaces/IOOOHPaneClassNames.js +1 -0
- package/lib/esm/components/outofofficehourspane/interfaces/IOOOHPaneComponentOverrides.js +1 -0
- package/lib/esm/components/outofofficehourspane/interfaces/IOOOHPaneControlProps.js +1 -0
- package/lib/esm/components/outofofficehourspane/interfaces/IOOOHPaneProps.js +1 -0
- package/lib/esm/components/outofofficehourspane/interfaces/IOOOHPaneStyleProps.js +1 -0
- package/lib/esm/components/postchatsurveypane/PostChatSurveyPane.js +35 -0
- package/lib/esm/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneControlProps.js +5 -0
- package/lib/esm/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneProps.js +6 -0
- package/lib/esm/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneGeneralStyles.js +7 -0
- package/lib/esm/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneStyles.js +4 -0
- package/lib/esm/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneControlProps.js +4 -0
- package/lib/esm/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneProps.js +6 -0
- package/lib/esm/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneGeneralStyles.js +12 -0
- package/lib/esm/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneStyles.js +4 -0
- package/lib/esm/components/postchatsurveypane/interfaces/IPostChatSurveyPaneClassNames.js +1 -0
- package/lib/esm/components/postchatsurveypane/interfaces/IPostChatSurveyPaneControlProps.js +1 -0
- package/lib/esm/components/postchatsurveypane/interfaces/IPostChatSurveyPaneProps.js +1 -0
- package/lib/esm/components/postchatsurveypane/interfaces/IPostChatSurveyPaneStyleProps.js +1 -0
- package/lib/esm/components/prechatsurveypane/PreChatSurveyPane.js +115 -0
- package/lib/esm/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneControlProps.js +11 -0
- package/lib/esm/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneProps.js +6 -0
- package/lib/esm/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneACContainerStyles.js +5 -0
- package/lib/esm/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneButtonStyles.js +4 -0
- package/lib/esm/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneGeneralStyles.js +10 -0
- package/lib/esm/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneStyles.js +8 -0
- package/lib/esm/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneControlProps.js +4 -0
- package/lib/esm/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneProps.js +6 -0
- package/lib/esm/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneControlProps.js +11 -0
- package/lib/esm/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneProps.js +6 -0
- package/lib/esm/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneACContainerStyles.js +5 -0
- package/lib/esm/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneButtonStyles.js +4 -0
- package/lib/esm/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneGeneralStyles.js +11 -0
- package/lib/esm/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneStyles.js +8 -0
- package/lib/esm/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneControlProps.js +11 -0
- package/lib/esm/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneProps.js +6 -0
- package/lib/esm/components/prechatsurveypane/interfaces/IPreChatSurveyPaneButtonStyles.js +1 -0
- package/lib/esm/components/prechatsurveypane/interfaces/IPreChatSurveyPaneControlProps.js +1 -0
- package/lib/esm/components/prechatsurveypane/interfaces/IPreChatSurveyPaneProps.js +1 -0
- package/lib/esm/components/prechatsurveypane/interfaces/IPreChatSurveyPaneStyleProps.js +1 -0
- package/lib/esm/components/proactivechatpane/ProactiveChatPane.js +158 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneControlProps.js +24 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneProps.js +6 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyContainerStyles.js +1 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyTitleStyles.js +10 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonHoveredStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonStyles.js +13 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneGeneralStyles.js +13 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneHeaderContainerStyles.js +11 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonHoveredStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonStyles.js +11 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStyles.js +24 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneSubtitleStyles.js +6 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTextContainerStyles.js +9 -0
- package/lib/esm/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTitleStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneControlProps.js +24 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneProps.js +6 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneBodyTitleStyles.js +5 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonHoveredStyles.js +3 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonHoveredStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonStyles.js +5 -0
- package/lib/esm/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStyles.js +12 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneControlProps.js +24 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneProps.js +6 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneBodyContainerStyles.js +8 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonHoveredStyles.js +3 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneGeneralStyles.js +7 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneHeaderContainerStyles.js +3 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonHoveredStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonStyles.js +6 -0
- package/lib/esm/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStyles.js +16 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneComponentOverrides.js +32 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneControlProps.js +19 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneProps.js +8 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneBodyContainerStyles.js +5 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneGeneralStyles.js +6 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneHeaderContainerStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonHoveredStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonStyles.js +6 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStyles.js +14 -0
- package/lib/esm/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneTextContainerStyles.js +4 -0
- package/lib/esm/components/proactivechatpane/interfaces/IProactiveChatPaneClassNames.js +1 -0
- package/lib/esm/components/proactivechatpane/interfaces/IProactiveChatPaneComponentOverrides.js +1 -0
- package/lib/esm/components/proactivechatpane/interfaces/IProactiveChatPaneControlProps.js +1 -0
- package/lib/esm/components/proactivechatpane/interfaces/IProactiveChatPaneProps.js +1 -0
- package/lib/esm/components/proactivechatpane/interfaces/IProactiveChatPaneStyleProps.js +1 -0
- package/lib/esm/components/reconnectchatpane/ReconnectChatPane.js +150 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneControlProps.js +28 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneProps.js +6 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneButtonGroupStyles.js +3 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonHoveredStyles.js +3 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonStyles.js +11 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneGeneralStyles.js +10 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneIconStyles.js +10 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonHoveredStyles.js +3 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonStyles.js +10 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStyles.js +22 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneSubtitleStyles.js +7 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneTitleStyles.js +8 -0
- package/lib/esm/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneWrapperStyles.js +9 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneControlProps.js +25 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneProps.js +6 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneButtonGroupStyles.js +3 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneContinueChatButtonStyles.js +5 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneGeneralStyles.js +6 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneStyles.js +12 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneTitleStyles.js +5 -0
- package/lib/esm/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneWrapperStyles.js +4 -0
- package/lib/esm/components/reconnectchatpane/interfaces/IReconnectChatPaneClassNames.js +1 -0
- package/lib/esm/components/reconnectchatpane/interfaces/IReconnectChatPaneComponentOverrides.js +1 -0
- package/lib/esm/components/reconnectchatpane/interfaces/IReconnectChatPaneControlProps.js +1 -0
- package/lib/esm/components/reconnectchatpane/interfaces/IReconnectChatPaneProps.js +1 -0
- package/lib/esm/components/reconnectchatpane/interfaces/IReconnectChatPaneStyleProps.js +1 -0
- package/lib/esm/index.js +19 -0
- package/lib/esm/interfaces/ICustomEvent.js +1 -0
- package/lib/esm/services/BroadcastService.js +31 -0
- package/lib/types/common/Constants.d.ts +35 -0
- package/lib/types/common/decodeComponentString.d.ts +2 -0
- package/lib/types/common/encodeComponentString.d.ts +2 -0
- package/lib/types/common/utils.d.ts +18 -0
- package/lib/types/components/callingcontainer/CallingContainer.d.ts +3 -0
- package/lib/types/components/callingcontainer/common/defaultProps/defaultCallingContainerControlProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/common/defaultProps/defaultCallingContainerProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/common/defaultStyles/customizedCallingContainerStyles.d.ts +2 -0
- package/lib/types/components/callingcontainer/common/defaultStyles/defaultCallingContainerStyles.d.ts +2 -0
- package/lib/types/components/callingcontainer/interfaces/ICallingContainerControlProps.d.ts +28 -0
- package/lib/types/components/callingcontainer/interfaces/ICallingContainerProps.d.ts +12 -0
- package/lib/types/components/callingcontainer/interfaces/ICallingContainerStyleProps.d.ts +21 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/CurrentCall.d.ts +3 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallControlPropsRtl.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultProps/defaultCurrentCallProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/componentOverridesStyleProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/customizedCurrentCallStyleProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/defaultCurrentCallStyleProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallClassNames.d.ts +22 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallComponentOverrides.d.ts +7 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallControlProps.d.ts +111 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallNonActionControlIds.d.ts +26 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallProps.d.ts +17 -0
- package/lib/types/components/callingcontainer/subcomponents/CurrentCall/interfaces/ICurrentCallStyleProps.d.ts +64 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/IncomingCall.d.ts +3 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverrideProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/componentOverridesControlProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallControlPropsRtl.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultProps/defaultIncomingCallProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/componentOverridesStyleProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/defaultIncomingCallStyleProps.d.ts +2 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallComponentOverrides.d.ts +7 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallControlProps.d.ts +89 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallProps.d.ts +17 -0
- package/lib/types/components/callingcontainer/subcomponents/IncomingCall/interfaces/IIncomingCallStyleProps.d.ts +43 -0
- package/lib/types/components/callingcontainer/subcomponents/Timer/ITimer.d.ts +15 -0
- package/lib/types/components/callingcontainer/subcomponents/Timer/Timer.d.ts +3 -0
- package/lib/types/components/chatbutton/ChatButton.d.ts +3 -0
- package/lib/types/components/chatbutton/common/defaultProps/defaultChatButtonControlProps.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultProps/defaultChatButtonProps.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonGeneralStyles.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonIconContainerStyles.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonNotificationBubbleStyles.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonStyleProps.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonSubTitleStyles.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonTextContainerStyles.d.ts +2 -0
- package/lib/types/components/chatbutton/common/defaultStyles/defaultChatButtonTitleStyles.d.ts +2 -0
- package/lib/types/components/chatbutton/interfaces/IChatButtonClassNames.d.ts +7 -0
- package/lib/types/components/chatbutton/interfaces/IChatButtonComponentOverrides.d.ts +8 -0
- package/lib/types/components/chatbutton/interfaces/IChatButtonControlProps.d.ts +16 -0
- package/lib/types/components/chatbutton/interfaces/IChatButtonProps.d.ts +8 -0
- package/lib/types/components/chatbutton/interfaces/IChatButtonStyleProps.d.ts +12 -0
- package/lib/types/components/common/commandbutton/CommandButton.d.ts +3 -0
- package/lib/types/components/common/interfaces/ICommandButtonControlProps.d.ts +17 -0
- package/lib/types/components/common/interfaces/ICommandButtonProps.d.ts +21 -0
- package/lib/types/components/common/interfaces/IImageControlProps.d.ts +6 -0
- package/lib/types/components/common/interfaces/ILabelControlProps.d.ts +5 -0
- package/lib/types/components/confirmationpane/ConfirmationPane.d.ts +3 -0
- package/lib/types/components/confirmationpane/common/defaultProps/defaultConfirmationPaneControlProps.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultProps/defaultConfirmationPaneProps.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneButtonGroupStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonFocusedStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneCancelButtonStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonFocusedStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneConfirmButtonStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneSubtitleStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneClassNames.d.ts +7 -0
- package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneComponentOverrides.d.ts +7 -0
- package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneControlProps.d.ts +19 -0
- package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneProps.d.ts +8 -0
- package/lib/types/components/confirmationpane/interfaces/IConfirmationPaneStyleProps.d.ts +15 -0
- package/lib/types/components/footer/Footer.d.ts +3 -0
- package/lib/types/components/footer/common/defaultProps/customFooterControlProps.d.ts +2 -0
- package/lib/types/components/footer/common/defaultProps/defaultFooterComponentOverrides.d.ts +2 -0
- package/lib/types/components/footer/common/defaultProps/defaultFooterControlProps.d.ts +2 -0
- package/lib/types/components/footer/common/defaultProps/defaultFooterOverridesProps.d.ts +2 -0
- package/lib/types/components/footer/common/defaultProps/defaultFooterProps.d.ts +2 -0
- package/lib/types/components/footer/common/defaultStyles/defaultFooterStyleProps.d.ts +2 -0
- package/lib/types/components/footer/interfaces/IFooterComponentOverrides.d.ts +15 -0
- package/lib/types/components/footer/interfaces/IFooterControlProps.d.ts +69 -0
- package/lib/types/components/footer/interfaces/IFooterProps.d.ts +18 -0
- package/lib/types/components/footer/interfaces/IFooterStyleProps.d.ts +40 -0
- package/lib/types/components/footer/subcomponents/AudioNotificationButton.d.ts +3 -0
- package/lib/types/components/footer/subcomponents/DownloadTranscriptButton.d.ts +3 -0
- package/lib/types/components/footer/subcomponents/EmailTranscriptButton.d.ts +3 -0
- package/lib/types/components/header/Header.d.ts +3 -0
- package/lib/types/components/header/common/defaultProps/azureHeaderControlProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultProps/azureHeaderProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultProps/customHeaderControlProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultProps/defaultHeaderComponentOverrides.d.ts +2 -0
- package/lib/types/components/header/common/defaultProps/defaultHeaderControlProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultProps/defaultHeaderProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultProps/overridesDefaultHeaderProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultStyles/advancedHeaderStyleProps.d.ts +2 -0
- package/lib/types/components/header/common/defaultStyles/defaultHeaderStyleProps.d.ts +2 -0
- package/lib/types/components/header/interfaces/IHeaderComponentOverrides.d.ts +19 -0
- package/lib/types/components/header/interfaces/IHeaderControlProps.d.ts +76 -0
- package/lib/types/components/header/interfaces/IHeaderProps.d.ts +18 -0
- package/lib/types/components/header/interfaces/IHeaderStyleProps.d.ts +40 -0
- package/lib/types/components/header/subcomponents/CloseButton.d.ts +3 -0
- package/lib/types/components/header/subcomponents/MinimizeButton.d.ts +3 -0
- package/lib/types/components/inputvalidationpane/InputValidationPane.d.ts +3 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneControlProps.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultProps/defaultInputValidationPaneProps.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneButtonGroupStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneCancelButtonStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneHeaderGroupStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInputStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneInvalidInputErrorMessageStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSendButtonStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneSubtitleStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/default/defaultStyles/defaultInputValidationPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneComponentOverrides.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneControlProps.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoProps/presetTwoInputValidationPaneProps.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneCancelButtonStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneHeaderGroupStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneInputStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneSendButtonStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/common/presetTwo/presetTwoStyles/presetTwoInputValidationPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneClassNames.d.ts +11 -0
- package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneComponentOverrides.d.ts +9 -0
- package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneControlProps.d.ts +29 -0
- package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneProps.d.ts +8 -0
- package/lib/types/components/inputvalidationpane/interfaces/IInputValidationPaneStyleProps.d.ts +16 -0
- package/lib/types/components/loadingpane/LoadingPane.d.ts +3 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultLoadingPaneControlProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultLoadingPaneProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconImageProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneIconStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSpinnerTextStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneSubtitleStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/defaultProps/defaultStyles/defaultLoadingPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetOneProps/presetOneLoadingPaneControlProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetOneProps/presetOneLoadingPaneProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneControlProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeLoadingPaneProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconImageProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneIconStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSpinnerTextStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneSubtitleStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetThreeProps/presetThreeStyles/presetThreeLoadingPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneControlProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoLoadingPaneProps.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneSpinnerStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/common/presetTwoProps/presetTwoStyles/presetTwoLoadingPaneStyles.d.ts +2 -0
- package/lib/types/components/loadingpane/interfaces/ILoadingPaneClassNames.d.ts +7 -0
- package/lib/types/components/loadingpane/interfaces/ILoadingPaneComponentOverrides.d.ts +8 -0
- package/lib/types/components/loadingpane/interfaces/ILoadingPaneControlProps.d.ts +16 -0
- package/lib/types/components/loadingpane/interfaces/ILoadingPaneProps.d.ts +8 -0
- package/lib/types/components/loadingpane/interfaces/ILoadingPaneStyleProps.d.ts +12 -0
- package/lib/types/components/outofofficehourspane/OOOHPane.d.ts +3 -0
- package/lib/types/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneControlProps.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/defaultProps/defaultOOOHPaneProps.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneStyles.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/defaultProps/defaultStyles/defaultOOOHPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneControlProps.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetOneProps/presetOneOOOHPaneProps.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneControlProps.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoOOOHPaneProps.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneStyles.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/common/presetTwoProps/presetTwoStyles/presetTwoOOOHPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneClassNames.d.ts +4 -0
- package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneComponentOverrides.d.ts +4 -0
- package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneControlProps.d.ts +8 -0
- package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneProps.d.ts +8 -0
- package/lib/types/components/outofofficehourspane/interfaces/IOOOHPaneStyleProps.d.ts +7 -0
- package/lib/types/components/postchatsurveypane/PostChatSurveyPane.d.ts +3 -0
- package/lib/types/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneControlProps.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/defaultProps/defaultPostChatSurveyPaneProps.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/defaultProps/defaultStyles/defaultPostChatSurveyPaneStyles.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneControlProps.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOnePostChatSurveyPaneProps.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/common/presetOneProps/presetOneStyles/presetOnePostChatSurveyPaneStyles.d.ts +2 -0
- package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneClassNames.d.ts +3 -0
- package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneControlProps.d.ts +6 -0
- package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneProps.d.ts +6 -0
- package/lib/types/components/postchatsurveypane/interfaces/IPostChatSurveyPaneStyleProps.d.ts +6 -0
- package/lib/types/components/prechatsurveypane/PreChatSurveyPane.d.ts +3 -0
- package/lib/types/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneControlProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/defaultProps/defaultPreChatSurveyPaneProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneACContainerStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneButtonStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/defaultProps/defaultStyles/defaultPreChatSurveyPaneStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneControlProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetOneProps/presetOnePreChatSurveyPaneProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneControlProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreePreChatSurveyPaneProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneACContainerStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneButtonStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetThreeProps/presetThreeStyles/presetThreePreChatSurveyPaneStyles.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneControlProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/common/presetTwoProps/presetTwoPreChatSurveyPaneProps.d.ts +2 -0
- package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneButtonStyles.d.ts +4 -0
- package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneControlProps.d.ts +15 -0
- package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneProps.d.ts +6 -0
- package/lib/types/components/prechatsurveypane/interfaces/IPreChatSurveyPaneStyleProps.d.ts +7 -0
- package/lib/types/components/proactivechatpane/ProactiveChatPane.d.ts +3 -0
- package/lib/types/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneControlProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultProps/defaultProactiveChatPaneProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneBodyTitleStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneCloseButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneHeaderContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStartButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneSubtitleStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTextContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/default/defaultStyles/defaultProactiveChatPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneControlProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneProps/presetOneProactiveChatPaneProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneBodyTitleStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneCloseButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStartButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetOne/presetOneStyles/presetOneProactiveChatPaneStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneControlProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeProps/presetThreeProactiveChatPaneProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneBodyContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneCloseButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneHeaderContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStartButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetThree/presetThreeStyles/presetThreeProactiveChatPaneStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneComponentOverrides.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneControlProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoProps/presetTwoProactiveChatPaneProps.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneBodyContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneHeaderContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStartButtonStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/common/presetTwo/presetTwoStyles/presetTwoProactiveChatPaneTextContainerStyles.d.ts +2 -0
- package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneClassNames.d.ts +11 -0
- package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneComponentOverrides.d.ts +8 -0
- package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneControlProps.d.ts +20 -0
- package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneProps.d.ts +8 -0
- package/lib/types/components/proactivechatpane/interfaces/IProactiveChatPaneStyleProps.d.ts +16 -0
- package/lib/types/components/reconnectchatpane/ReconnectChatPane.d.ts +3 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneControlProps.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultProps/defaultReconnectChatPaneProps.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneButtonGroupStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneContinueChatButtonStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneIconStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonHoveredStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStartNewChatButtonStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneSubtitleStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/default/defaultStyles/defaultReconnectChatPaneWrapperStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneControlProps.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeProps/presetThreeReconnectChatPaneProps.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneButtonGroupStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneContinueChatButtonStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneGeneralStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneTitleStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/common/presetThree/presetThreeStyles/presetThreeReconnectChatPaneWrapperStyles.d.ts +2 -0
- package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneClassNames.d.ts +10 -0
- package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneComponentOverrides.d.ts +8 -0
- package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneControlProps.d.ts +22 -0
- package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneProps.d.ts +8 -0
- package/lib/types/components/reconnectchatpane/interfaces/IReconnectChatPaneStyleProps.d.ts +15 -0
- package/lib/types/index.d.ts +19 -0
- package/lib/types/interfaces/ICustomEvent.d.ts +7 -0
- package/lib/types/services/BroadcastService.d.ts +9 -0
- package/package.json +102 -0
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _Button = require("@fluentui/react/lib/Button");
|
|
9
|
+
|
|
10
|
+
var _react = require("@fluentui/react");
|
|
11
|
+
|
|
12
|
+
var _react2 = _interopRequireWildcard(require("react"));
|
|
13
|
+
|
|
14
|
+
var _BroadcastService = require("../../services/BroadcastService");
|
|
15
|
+
|
|
16
|
+
var _Constants = require("../../common/Constants");
|
|
17
|
+
|
|
18
|
+
var _decodeComponentString = require("../../common/decodeComponentString");
|
|
19
|
+
|
|
20
|
+
var _defaultConfirmationPaneButtonGroupStyles = require("./common/defaultStyles/defaultConfirmationPaneButtonGroupStyles");
|
|
21
|
+
|
|
22
|
+
var _defaultConfirmationPaneCancelButtonHoveredStyles = require("./common/defaultStyles/defaultConfirmationPaneCancelButtonHoveredStyles");
|
|
23
|
+
|
|
24
|
+
var _defaultConfirmationPaneCancelButtonStyles = require("./common/defaultStyles/defaultConfirmationPaneCancelButtonStyles");
|
|
25
|
+
|
|
26
|
+
var _defaultConfirmationPaneConfirmButtonHoveredStyles = require("./common/defaultStyles/defaultConfirmationPaneConfirmButtonHoveredStyles");
|
|
27
|
+
|
|
28
|
+
var _defaultConfirmationPaneConfirmButtonStyles = require("./common/defaultStyles/defaultConfirmationPaneConfirmButtonStyles");
|
|
29
|
+
|
|
30
|
+
var _defaultConfirmationPaneControlProps = require("./common/defaultProps/defaultConfirmationPaneControlProps");
|
|
31
|
+
|
|
32
|
+
var _defaultConfirmationPaneGeneralStyles = require("./common/defaultStyles/defaultConfirmationPaneGeneralStyles");
|
|
33
|
+
|
|
34
|
+
var _defaultConfirmationPaneSubtitleStyles = require("./common/defaultStyles/defaultConfirmationPaneSubtitleStyles");
|
|
35
|
+
|
|
36
|
+
var _defaultConfirmationPaneTitleStyles = require("./common/defaultStyles/defaultConfirmationPaneTitleStyles");
|
|
37
|
+
|
|
38
|
+
var _defaultConfirmationPaneConfirmButtonFocusedStyles = require("./common/defaultStyles/defaultConfirmationPaneConfirmButtonFocusedStyles");
|
|
39
|
+
|
|
40
|
+
var _defaultConfirmationPaneCancelButtonFocusedStyles = require("./common/defaultStyles/defaultConfirmationPaneCancelButtonFocusedStyles");
|
|
41
|
+
|
|
42
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
43
|
+
|
|
44
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
45
|
+
|
|
46
|
+
function ConfirmationPane(props) {
|
|
47
|
+
var _props$controlProps, _props$styleProps, _props$styleProps2, _props$styleProps3, _props$styleProps4, _props$styleProps5, _props$styleProps6, _props$styleProps7, _props$styleProps8, _props$styleProps9, _props$styleProps10, _props$controlProps6, _props$controlProps7, _props$controlProps8, _props$componentOverr, _props$styleProps11, _props$styleProps11$c, _props$controlProps9, _props$controlProps10, _props$componentOverr2, _props$styleProps12, _props$styleProps12$c, _props$controlProps11, _props$styleProps13, _props$styleProps13$c, _props$controlProps12, _props$componentOverr3, _props$styleProps14, _props$styleProps14$c, _props$controlProps13, _props$controlProps14, _props$controlProps15, _props$componentOverr4, _props$styleProps15, _props$styleProps15$c, _props$controlProps16, _props$controlProps17;
|
|
48
|
+
|
|
49
|
+
const elementId = ((_props$controlProps = props.controlProps) === null || _props$controlProps === void 0 ? void 0 : _props$controlProps.id) ?? _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.id;
|
|
50
|
+
const handleConfirmClick = (0, _react2.useCallback)(() => {
|
|
51
|
+
var _props$controlProps2;
|
|
52
|
+
|
|
53
|
+
if ((_props$controlProps2 = props.controlProps) !== null && _props$controlProps2 !== void 0 && _props$controlProps2.onConfirm) {
|
|
54
|
+
var _props$controlProps3;
|
|
55
|
+
|
|
56
|
+
const customEvent = {
|
|
57
|
+
elementType: _Constants.ElementType.ConfirmationPaneConfirmButton,
|
|
58
|
+
elementId: elementId + "-confirmbutton",
|
|
59
|
+
eventName: "OnClick"
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
_BroadcastService.BroadcastService.postMessage(customEvent);
|
|
63
|
+
|
|
64
|
+
(_props$controlProps3 = props.controlProps) === null || _props$controlProps3 === void 0 ? void 0 : _props$controlProps3.onConfirm();
|
|
65
|
+
}
|
|
66
|
+
}, []);
|
|
67
|
+
const handleCancelClick = (0, _react2.useCallback)(() => {
|
|
68
|
+
var _props$controlProps4;
|
|
69
|
+
|
|
70
|
+
if ((_props$controlProps4 = props.controlProps) !== null && _props$controlProps4 !== void 0 && _props$controlProps4.onCancel) {
|
|
71
|
+
var _props$controlProps5;
|
|
72
|
+
|
|
73
|
+
const customEvent = {
|
|
74
|
+
elementType: _Constants.ElementType.ConfirmationPaneCancelButton,
|
|
75
|
+
elementId: elementId + "-cancelbutton",
|
|
76
|
+
eventName: "OnClick"
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
_BroadcastService.BroadcastService.postMessage(customEvent);
|
|
80
|
+
|
|
81
|
+
(_props$controlProps5 = props.controlProps) === null || _props$controlProps5 === void 0 ? void 0 : _props$controlProps5.onCancel();
|
|
82
|
+
}
|
|
83
|
+
}, []);
|
|
84
|
+
const containerStyles = {
|
|
85
|
+
root: Object.assign({}, _defaultConfirmationPaneGeneralStyles.defaultConfirmationPaneGeneralStyles, (_props$styleProps = props.styleProps) === null || _props$styleProps === void 0 ? void 0 : _props$styleProps.generalStyleProps)
|
|
86
|
+
};
|
|
87
|
+
const titleStyles = {
|
|
88
|
+
root: Object.assign({}, _defaultConfirmationPaneTitleStyles.defaultConfirmationPaneTitleStyles, (_props$styleProps2 = props.styleProps) === null || _props$styleProps2 === void 0 ? void 0 : _props$styleProps2.titleStyleProps)
|
|
89
|
+
};
|
|
90
|
+
const subtitleStyles = {
|
|
91
|
+
root: Object.assign({}, _defaultConfirmationPaneSubtitleStyles.defaultConfirmationPaneSubtitleStyles, (_props$styleProps3 = props.styleProps) === null || _props$styleProps3 === void 0 ? void 0 : _props$styleProps3.subtitleStyleProps)
|
|
92
|
+
};
|
|
93
|
+
const buttonGroupStyles = {
|
|
94
|
+
root: Object.assign({}, _defaultConfirmationPaneButtonGroupStyles.defaultConfirmationPaneButtonGroupStyles, (_props$styleProps4 = props.styleProps) === null || _props$styleProps4 === void 0 ? void 0 : _props$styleProps4.buttonGroupStyleProps)
|
|
95
|
+
};
|
|
96
|
+
const confirmButtonStyles = {
|
|
97
|
+
root: Object.assign({}, _defaultConfirmationPaneConfirmButtonStyles.defaultConfirmationPaneConfirmButtonStyles, (_props$styleProps5 = props.styleProps) === null || _props$styleProps5 === void 0 ? void 0 : _props$styleProps5.confirmButtonStyleProps),
|
|
98
|
+
rootHovered: Object.assign({}, _defaultConfirmationPaneConfirmButtonHoveredStyles.defaultConfirmationPaneConfirmButtonHoveredStyles, (_props$styleProps6 = props.styleProps) === null || _props$styleProps6 === void 0 ? void 0 : _props$styleProps6.confirmButtonHoveredStyleProps),
|
|
99
|
+
rootFocused: Object.assign({}, _defaultConfirmationPaneConfirmButtonFocusedStyles.defaultConfirmationPaneConfirmButtonFocusedStyles, (_props$styleProps7 = props.styleProps) === null || _props$styleProps7 === void 0 ? void 0 : _props$styleProps7.confirmButtonFocusedStyleProps)
|
|
100
|
+
};
|
|
101
|
+
const cancelButtonStyles = {
|
|
102
|
+
root: Object.assign({}, _defaultConfirmationPaneCancelButtonStyles.defaultConfirmationPaneCancelButtonStyles, (_props$styleProps8 = props.styleProps) === null || _props$styleProps8 === void 0 ? void 0 : _props$styleProps8.cancelButtonStyleProps),
|
|
103
|
+
rootHovered: Object.assign({}, _defaultConfirmationPaneCancelButtonHoveredStyles.defaultConfirmationPaneCancelButtonHoveredStyles, (_props$styleProps9 = props.styleProps) === null || _props$styleProps9 === void 0 ? void 0 : _props$styleProps9.cancelButtonHoveredStyleProps),
|
|
104
|
+
rootFocused: Object.assign({}, _defaultConfirmationPaneCancelButtonFocusedStyles.defaultConfirmationPaneCancelButtonFocusedStyles, (_props$styleProps10 = props.styleProps) === null || _props$styleProps10 === void 0 ? void 0 : _props$styleProps10.cancelButtonFocusedStyleProps)
|
|
105
|
+
};
|
|
106
|
+
return /*#__PURE__*/_react2.default.createElement(_react2.default.Fragment, null, !((_props$controlProps6 = props.controlProps) !== null && _props$controlProps6 !== void 0 && _props$controlProps6.hideConfirmationPane) && /*#__PURE__*/_react2.default.createElement(_react.Stack, {
|
|
107
|
+
id: elementId,
|
|
108
|
+
tabIndex: -1,
|
|
109
|
+
dir: ((_props$controlProps7 = props.controlProps) === null || _props$controlProps7 === void 0 ? void 0 : _props$controlProps7.dir) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.dir,
|
|
110
|
+
styles: containerStyles,
|
|
111
|
+
role: "dialog",
|
|
112
|
+
"aria-labelledby": elementId + "-title",
|
|
113
|
+
"aria-describedby": elementId + "-subtitle"
|
|
114
|
+
}, !((_props$controlProps8 = props.controlProps) !== null && _props$controlProps8 !== void 0 && _props$controlProps8.hideTitle) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr = props.componentOverrides) === null || _props$componentOverr === void 0 ? void 0 : _props$componentOverr.title) || /*#__PURE__*/_react2.default.createElement(_react.Label, {
|
|
115
|
+
className: (_props$styleProps11 = props.styleProps) === null || _props$styleProps11 === void 0 ? void 0 : (_props$styleProps11$c = _props$styleProps11.classNames) === null || _props$styleProps11$c === void 0 ? void 0 : _props$styleProps11$c.titleClassName,
|
|
116
|
+
styles: titleStyles,
|
|
117
|
+
tabIndex: -1,
|
|
118
|
+
id: elementId + "-title"
|
|
119
|
+
}, ((_props$controlProps9 = props.controlProps) === null || _props$controlProps9 === void 0 ? void 0 : _props$controlProps9.titleText) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.titleText)), !((_props$controlProps10 = props.controlProps) !== null && _props$controlProps10 !== void 0 && _props$controlProps10.hideSubtitle) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr2 = props.componentOverrides) === null || _props$componentOverr2 === void 0 ? void 0 : _props$componentOverr2.subtitle) || /*#__PURE__*/_react2.default.createElement(_react.Label, {
|
|
120
|
+
className: (_props$styleProps12 = props.styleProps) === null || _props$styleProps12 === void 0 ? void 0 : (_props$styleProps12$c = _props$styleProps12.classNames) === null || _props$styleProps12$c === void 0 ? void 0 : _props$styleProps12$c.subtitleClassName,
|
|
121
|
+
styles: subtitleStyles,
|
|
122
|
+
tabIndex: -1,
|
|
123
|
+
id: elementId + "-subtitle"
|
|
124
|
+
}, ((_props$controlProps11 = props.controlProps) === null || _props$controlProps11 === void 0 ? void 0 : _props$controlProps11.subtitleText) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.subtitleText)), /*#__PURE__*/_react2.default.createElement(_react.Stack, {
|
|
125
|
+
horizontal: true,
|
|
126
|
+
className: (_props$styleProps13 = props.styleProps) === null || _props$styleProps13 === void 0 ? void 0 : (_props$styleProps13$c = _props$styleProps13.classNames) === null || _props$styleProps13$c === void 0 ? void 0 : _props$styleProps13$c.buttonGroupClassName,
|
|
127
|
+
styles: buttonGroupStyles,
|
|
128
|
+
id: elementId + "-buttongroup"
|
|
129
|
+
}, !((_props$controlProps12 = props.controlProps) !== null && _props$controlProps12 !== void 0 && _props$controlProps12.hideConfirmButton) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr3 = props.componentOverrides) === null || _props$componentOverr3 === void 0 ? void 0 : _props$componentOverr3.confirmButton) || /*#__PURE__*/_react2.default.createElement(_Button.PrimaryButton, {
|
|
130
|
+
className: (_props$styleProps14 = props.styleProps) === null || _props$styleProps14 === void 0 ? void 0 : (_props$styleProps14$c = _props$styleProps14.classNames) === null || _props$styleProps14$c === void 0 ? void 0 : _props$styleProps14$c.confirmButtonClassName,
|
|
131
|
+
styles: confirmButtonStyles,
|
|
132
|
+
text: ((_props$controlProps13 = props.controlProps) === null || _props$controlProps13 === void 0 ? void 0 : _props$controlProps13.confirmButtonText) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.confirmButtonText,
|
|
133
|
+
onClick: handleConfirmClick,
|
|
134
|
+
id: elementId + "-confirmbutton",
|
|
135
|
+
ariaLabel: ((_props$controlProps14 = props.controlProps) === null || _props$controlProps14 === void 0 ? void 0 : _props$controlProps14.confirmButtonAriaLabel) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.confirmButtonAriaLabel
|
|
136
|
+
})), !((_props$controlProps15 = props.controlProps) !== null && _props$controlProps15 !== void 0 && _props$controlProps15.hideCancelButton) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr4 = props.componentOverrides) === null || _props$componentOverr4 === void 0 ? void 0 : _props$componentOverr4.cancelButton) || /*#__PURE__*/_react2.default.createElement(_Button.DefaultButton, {
|
|
137
|
+
className: (_props$styleProps15 = props.styleProps) === null || _props$styleProps15 === void 0 ? void 0 : (_props$styleProps15$c = _props$styleProps15.classNames) === null || _props$styleProps15$c === void 0 ? void 0 : _props$styleProps15$c.cancelButtonClassName,
|
|
138
|
+
styles: cancelButtonStyles,
|
|
139
|
+
text: ((_props$controlProps16 = props.controlProps) === null || _props$controlProps16 === void 0 ? void 0 : _props$controlProps16.cancelButtonText) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.cancelButtonText,
|
|
140
|
+
onClick: handleCancelClick,
|
|
141
|
+
id: elementId + "-cancelbutton",
|
|
142
|
+
ariaLabel: ((_props$controlProps17 = props.controlProps) === null || _props$controlProps17 === void 0 ? void 0 : _props$controlProps17.cancelButtonAriaLabel) || _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps.cancelButtonAriaLabel
|
|
143
|
+
})))));
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
var _default = ConfirmationPane;
|
|
147
|
+
exports.default = _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneControlProps = void 0;
|
|
7
|
+
const defaultConfirmationPaneControlProps = {
|
|
8
|
+
id: "lcw-components-confirmation-pane",
|
|
9
|
+
dir: "ltr",
|
|
10
|
+
hideConfirmationPane: false,
|
|
11
|
+
hideTitle: false,
|
|
12
|
+
titleText: "Close chat",
|
|
13
|
+
hideSubtitle: false,
|
|
14
|
+
subtitleText: "Do you really want to close this chat?",
|
|
15
|
+
hideConfirmButton: false,
|
|
16
|
+
confirmButtonText: "Close",
|
|
17
|
+
confirmButtonAriaLabel: "Close Chat",
|
|
18
|
+
hideCancelButton: false,
|
|
19
|
+
cancelButtonText: "Cancel",
|
|
20
|
+
cancelButtonAriaLabel: "Cancel. Return to Chat",
|
|
21
|
+
onConfirm: function () {
|
|
22
|
+
console.log("on confirm");
|
|
23
|
+
},
|
|
24
|
+
onCancel: function () {
|
|
25
|
+
console.log("on cancel");
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
exports.defaultConfirmationPaneControlProps = defaultConfirmationPaneControlProps;
|
package/lib/cjs/components/confirmationpane/common/defaultProps/defaultConfirmationPaneProps.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneProps = void 0;
|
|
7
|
+
|
|
8
|
+
var _defaultConfirmationPaneControlProps = require("./defaultConfirmationPaneControlProps");
|
|
9
|
+
|
|
10
|
+
var _defaultConfirmationPaneStyles = require("../defaultStyles/defaultConfirmationPaneStyles");
|
|
11
|
+
|
|
12
|
+
const defaultConfirmationPaneProps = {
|
|
13
|
+
controlProps: _defaultConfirmationPaneControlProps.defaultConfirmationPaneControlProps,
|
|
14
|
+
styleProps: _defaultConfirmationPaneStyles.defaultConfirmationPaneStyles
|
|
15
|
+
};
|
|
16
|
+
exports.defaultConfirmationPaneProps = defaultConfirmationPaneProps;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneButtonGroupStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneButtonGroupStyles = {
|
|
8
|
+
display: "flex",
|
|
9
|
+
flexFlow: "row",
|
|
10
|
+
justifyContent: "center",
|
|
11
|
+
alignItems: "center",
|
|
12
|
+
gap: "10px"
|
|
13
|
+
};
|
|
14
|
+
exports.defaultConfirmationPaneButtonGroupStyles = defaultConfirmationPaneButtonGroupStyles;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneCancelButtonFocusedStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneCancelButtonFocusedStyles = {
|
|
8
|
+
border: "2px dotted #000"
|
|
9
|
+
};
|
|
10
|
+
exports.defaultConfirmationPaneCancelButtonFocusedStyles = defaultConfirmationPaneCancelButtonFocusedStyles;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneCancelButtonHoveredStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneCancelButtonHoveredStyles = {
|
|
8
|
+
backgroundColor: "#EFEFEF"
|
|
9
|
+
};
|
|
10
|
+
exports.defaultConfirmationPaneCancelButtonHoveredStyles = defaultConfirmationPaneCancelButtonHoveredStyles;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneCancelButtonStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneCancelButtonStyles = {
|
|
8
|
+
backgroundColor: "white",
|
|
9
|
+
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
10
|
+
fontSize: "14px",
|
|
11
|
+
fontWeight: "500",
|
|
12
|
+
height: "32px",
|
|
13
|
+
width: "80px"
|
|
14
|
+
};
|
|
15
|
+
exports.defaultConfirmationPaneCancelButtonStyles = defaultConfirmationPaneCancelButtonStyles;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneConfirmButtonFocusedStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneConfirmButtonFocusedStyles = {
|
|
8
|
+
border: "2px dotted #000"
|
|
9
|
+
};
|
|
10
|
+
exports.defaultConfirmationPaneConfirmButtonFocusedStyles = defaultConfirmationPaneConfirmButtonFocusedStyles;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneConfirmButtonHoveredStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneConfirmButtonHoveredStyles = {
|
|
8
|
+
backgroundColor: "rgba(9,72,159,0.8)"
|
|
9
|
+
};
|
|
10
|
+
exports.defaultConfirmationPaneConfirmButtonHoveredStyles = defaultConfirmationPaneConfirmButtonHoveredStyles;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneConfirmButtonStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneConfirmButtonStyles = {
|
|
8
|
+
backgroundColor: "rgba(9,72,159,1)",
|
|
9
|
+
color: "white",
|
|
10
|
+
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
11
|
+
fontSize: "14px",
|
|
12
|
+
fontWeight: "500",
|
|
13
|
+
height: "32px",
|
|
14
|
+
width: "80px"
|
|
15
|
+
};
|
|
16
|
+
exports.defaultConfirmationPaneConfirmButtonStyles = defaultConfirmationPaneConfirmButtonStyles;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneGeneralStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneGeneralStyles = {
|
|
8
|
+
backgroundColor: "white",
|
|
9
|
+
borderRadius: "2px",
|
|
10
|
+
color: "black",
|
|
11
|
+
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
12
|
+
fontSize: "14px",
|
|
13
|
+
height: "160px",
|
|
14
|
+
padding: "10px 20px",
|
|
15
|
+
width: "262px",
|
|
16
|
+
position: "absolute",
|
|
17
|
+
justifyContent: "center",
|
|
18
|
+
alignItems: "center",
|
|
19
|
+
display: "flex",
|
|
20
|
+
flexFlow: "column",
|
|
21
|
+
zIndex: "9999"
|
|
22
|
+
};
|
|
23
|
+
exports.defaultConfirmationPaneGeneralStyles = defaultConfirmationPaneGeneralStyles;
|
package/lib/cjs/components/confirmationpane/common/defaultStyles/defaultConfirmationPaneStyles.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneStyles = void 0;
|
|
7
|
+
|
|
8
|
+
var _defaultConfirmationPaneButtonGroupStyles = require("./defaultConfirmationPaneButtonGroupStyles");
|
|
9
|
+
|
|
10
|
+
var _defaultConfirmationPaneCancelButtonStyles = require("./defaultConfirmationPaneCancelButtonStyles");
|
|
11
|
+
|
|
12
|
+
var _defaultConfirmationPaneConfirmButtonStyles = require("./defaultConfirmationPaneConfirmButtonStyles");
|
|
13
|
+
|
|
14
|
+
var _defaultConfirmationPaneGeneralStyles = require("./defaultConfirmationPaneGeneralStyles");
|
|
15
|
+
|
|
16
|
+
var _defaultConfirmationPaneSubtitleStyles = require("./defaultConfirmationPaneSubtitleStyles");
|
|
17
|
+
|
|
18
|
+
var _defaultConfirmationPaneTitleStyles = require("./defaultConfirmationPaneTitleStyles");
|
|
19
|
+
|
|
20
|
+
const defaultConfirmationPaneStyles = {
|
|
21
|
+
generalStyleProps: _defaultConfirmationPaneGeneralStyles.defaultConfirmationPaneGeneralStyles,
|
|
22
|
+
titleStyleProps: _defaultConfirmationPaneTitleStyles.defaultConfirmationPaneTitleStyles,
|
|
23
|
+
subtitleStyleProps: _defaultConfirmationPaneSubtitleStyles.defaultConfirmationPaneSubtitleStyles,
|
|
24
|
+
buttonGroupStyleProps: _defaultConfirmationPaneButtonGroupStyles.defaultConfirmationPaneButtonGroupStyles,
|
|
25
|
+
confirmButtonStyleProps: _defaultConfirmationPaneConfirmButtonStyles.defaultConfirmationPaneConfirmButtonStyles,
|
|
26
|
+
cancelButtonStyleProps: _defaultConfirmationPaneCancelButtonStyles.defaultConfirmationPaneCancelButtonStyles
|
|
27
|
+
};
|
|
28
|
+
exports.defaultConfirmationPaneStyles = defaultConfirmationPaneStyles;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneSubtitleStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneSubtitleStyles = {
|
|
8
|
+
color: "#605e5c",
|
|
9
|
+
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
10
|
+
fontSize: "14px",
|
|
11
|
+
fontWeight: "400",
|
|
12
|
+
margin: "14px 0px",
|
|
13
|
+
width: "100%",
|
|
14
|
+
textAlign: "center"
|
|
15
|
+
};
|
|
16
|
+
exports.defaultConfirmationPaneSubtitleStyles = defaultConfirmationPaneSubtitleStyles;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultConfirmationPaneTitleStyles = void 0;
|
|
7
|
+
const defaultConfirmationPaneTitleStyles = {
|
|
8
|
+
color: "#323130",
|
|
9
|
+
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
10
|
+
fontSize: "16px",
|
|
11
|
+
fontWeight: "500",
|
|
12
|
+
margin: "10px 0 0 0",
|
|
13
|
+
width: "100%",
|
|
14
|
+
textAlign: "center"
|
|
15
|
+
};
|
|
16
|
+
exports.defaultConfirmationPaneTitleStyles = defaultConfirmationPaneTitleStyles;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
var _react2 = require("@fluentui/react");
|
|
11
|
+
|
|
12
|
+
var _AudioNotificationButton = _interopRequireDefault(require("./subcomponents/AudioNotificationButton"));
|
|
13
|
+
|
|
14
|
+
var _DownloadTranscriptButton = _interopRequireDefault(require("./subcomponents/DownloadTranscriptButton"));
|
|
15
|
+
|
|
16
|
+
var _EmailTranscriptButton = _interopRequireDefault(require("./subcomponents/EmailTranscriptButton"));
|
|
17
|
+
|
|
18
|
+
var _decodeComponentString = require("../../common/decodeComponentString");
|
|
19
|
+
|
|
20
|
+
var _defaultFooterProps = require("./common/defaultProps/defaultFooterProps");
|
|
21
|
+
|
|
22
|
+
var _utils = require("../../common/utils");
|
|
23
|
+
|
|
24
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
25
|
+
|
|
26
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
27
|
+
|
|
28
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
29
|
+
|
|
30
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
31
|
+
|
|
32
|
+
(0, _react2.initializeIcons)();
|
|
33
|
+
|
|
34
|
+
function Footer(props) {
|
|
35
|
+
var _props$controlProps, _defaultFooterProps$c, _defaultFooterProps$s, _props$styleProps, _defaultFooterProps$c2, _props$controlProps2, _defaultFooterProps$c3, _props$controlProps3, _defaultFooterProps$c4, _props$controlProps4, _defaultFooterProps$s2, _props$styleProps2, _defaultFooterProps$s3, _props$styleProps3, _defaultFooterProps$s4, _props$styleProps4, _defaultFooterProps$s5, _props$styleProps5, _defaultFooterProps$s6, _props$styleProps6, _defaultFooterProps$s7, _props$styleProps7, _defaultFooterProps$s8, _props$styleProps8, _props$controlProps5, _props$controlProps6, _props$componentOverr, _props$controlProps7, _props$controlProps8, _props$componentOverr2, _props$controlProps9, _props$controlProps10, _props$controlProps11, _props$controlProps12, _props$controlProps13, _props$controlProps14, _props$controlProps15, _props$controlProps16, _props$componentOverr3, _props$controlProps17;
|
|
36
|
+
|
|
37
|
+
const footerId = ((_props$controlProps = props.controlProps) === null || _props$controlProps === void 0 ? void 0 : _props$controlProps.id) ?? ((_defaultFooterProps$c = _defaultFooterProps.defaultFooterProps.controlProps) === null || _defaultFooterProps$c === void 0 ? void 0 : _defaultFooterProps$c.id);
|
|
38
|
+
const stackStyles = {
|
|
39
|
+
root: Object.assign({}, (_defaultFooterProps$s = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s === void 0 ? void 0 : _defaultFooterProps$s.generalStyleProps, (_props$styleProps = props.styleProps) === null || _props$styleProps === void 0 ? void 0 : _props$styleProps.generalStyleProps)
|
|
40
|
+
};
|
|
41
|
+
const downloadTranscriptButtonProps = Object.assign({}, (_defaultFooterProps$c2 = _defaultFooterProps.defaultFooterProps.controlProps) === null || _defaultFooterProps$c2 === void 0 ? void 0 : _defaultFooterProps$c2.downloadTranscriptButtonProps, (_props$controlProps2 = props.controlProps) === null || _props$controlProps2 === void 0 ? void 0 : _props$controlProps2.downloadTranscriptButtonProps);
|
|
42
|
+
const emailTranscriptButtonProps = Object.assign({}, (_defaultFooterProps$c3 = _defaultFooterProps.defaultFooterProps.controlProps) === null || _defaultFooterProps$c3 === void 0 ? void 0 : _defaultFooterProps$c3.emailTranscriptButtonProps, (_props$controlProps3 = props.controlProps) === null || _props$controlProps3 === void 0 ? void 0 : _props$controlProps3.emailTranscriptButtonProps);
|
|
43
|
+
const audioNotificationButtonProps = Object.assign({}, (_defaultFooterProps$c4 = _defaultFooterProps.defaultFooterProps.controlProps) === null || _defaultFooterProps$c4 === void 0 ? void 0 : _defaultFooterProps$c4.audioNotificationButtonProps, (_props$controlProps4 = props.controlProps) === null || _props$controlProps4 === void 0 ? void 0 : _props$controlProps4.audioNotificationButtonProps);
|
|
44
|
+
const downloadTranscriptButtonStyles = Object.assign({}, (_defaultFooterProps$s2 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s2 === void 0 ? void 0 : _defaultFooterProps$s2.downloadTranscriptButtonStyleProps, (_props$styleProps2 = props.styleProps) === null || _props$styleProps2 === void 0 ? void 0 : _props$styleProps2.downloadTranscriptButtonStyleProps);
|
|
45
|
+
const downloadTranscriptButtonHoverStyles = Object.assign({}, (_defaultFooterProps$s3 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s3 === void 0 ? void 0 : _defaultFooterProps$s3.downloadTranscriptButtonHoverStyleProps, (_props$styleProps3 = props.styleProps) === null || _props$styleProps3 === void 0 ? void 0 : _props$styleProps3.downloadTranscriptButtonHoverStyleProps);
|
|
46
|
+
const emailTranscriptButtonStyles = Object.assign({}, (_defaultFooterProps$s4 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s4 === void 0 ? void 0 : _defaultFooterProps$s4.emailTranscriptButtonStyleProps, (_props$styleProps4 = props.styleProps) === null || _props$styleProps4 === void 0 ? void 0 : _props$styleProps4.emailTranscriptButtonStyleProps);
|
|
47
|
+
const emailTranscriptButtonHoverStyles = Object.assign({}, (_defaultFooterProps$s5 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s5 === void 0 ? void 0 : _defaultFooterProps$s5.emailTranscriptButtonHoverStyleProps, (_props$styleProps5 = props.styleProps) === null || _props$styleProps5 === void 0 ? void 0 : _props$styleProps5.emailTranscriptButtonHoverStyleProps);
|
|
48
|
+
const audioNotificationButtonStyles = Object.assign({}, (_defaultFooterProps$s6 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s6 === void 0 ? void 0 : _defaultFooterProps$s6.audioNotificationButtonStyleProps, (_props$styleProps6 = props.styleProps) === null || _props$styleProps6 === void 0 ? void 0 : _props$styleProps6.audioNotificationButtonStyleProps);
|
|
49
|
+
const audioNotificationButtonHoverStyles = Object.assign({}, (_defaultFooterProps$s7 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s7 === void 0 ? void 0 : _defaultFooterProps$s7.audioNotificationButtonHoverStyleProps, (_props$styleProps7 = props.styleProps) === null || _props$styleProps7 === void 0 ? void 0 : _props$styleProps7.audioNotificationButtonHoverStyleProps);
|
|
50
|
+
const footerItemFocusStyles = Object.assign({}, (_defaultFooterProps$s8 = _defaultFooterProps.defaultFooterProps.styleProps) === null || _defaultFooterProps$s8 === void 0 ? void 0 : _defaultFooterProps$s8.footerItemFocusStyleProps, (_props$styleProps8 = props.styleProps) === null || _props$styleProps8 === void 0 ? void 0 : _props$styleProps8.footerItemFocusStyleProps);
|
|
51
|
+
return /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
52
|
+
id: footerId,
|
|
53
|
+
horizontal: true,
|
|
54
|
+
className: props.className,
|
|
55
|
+
horizontalAlign: "space-between",
|
|
56
|
+
styles: stackStyles,
|
|
57
|
+
dir: ((_props$controlProps5 = props.controlProps) === null || _props$controlProps5 === void 0 ? void 0 : _props$controlProps5.dir) ?? "ltr",
|
|
58
|
+
role: "region"
|
|
59
|
+
}, /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
60
|
+
horizontal: true,
|
|
61
|
+
id: "footerLeftGroup",
|
|
62
|
+
verticalAlign: "center"
|
|
63
|
+
}, /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
64
|
+
horizontal: true,
|
|
65
|
+
verticalAlign: "center"
|
|
66
|
+
}, !((_props$controlProps6 = props.controlProps) !== null && _props$controlProps6 !== void 0 && _props$controlProps6.hideDownloadTranscriptButton) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr = props.componentOverrides) === null || _props$componentOverr === void 0 ? void 0 : _props$componentOverr.DownloadTranscriptButton) || /*#__PURE__*/React.createElement(_DownloadTranscriptButton.default, _extends({}, downloadTranscriptButtonProps, {
|
|
67
|
+
onClick: (_props$controlProps7 = props.controlProps) === null || _props$controlProps7 === void 0 ? void 0 : _props$controlProps7.onDownloadTranscriptClick,
|
|
68
|
+
styles: downloadTranscriptButtonStyles,
|
|
69
|
+
hoverStyles: downloadTranscriptButtonHoverStyles,
|
|
70
|
+
focusStyles: footerItemFocusStyles
|
|
71
|
+
}))), !((_props$controlProps8 = props.controlProps) !== null && _props$controlProps8 !== void 0 && _props$controlProps8.hideEmailTranscriptButton) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr2 = props.componentOverrides) === null || _props$componentOverr2 === void 0 ? void 0 : _props$componentOverr2.EmailTranscriptButton) || /*#__PURE__*/React.createElement(_EmailTranscriptButton.default, _extends({}, emailTranscriptButtonProps, {
|
|
72
|
+
onClick: (_props$controlProps9 = props.controlProps) === null || _props$controlProps9 === void 0 ? void 0 : _props$controlProps9.onEmailTranscriptClick,
|
|
73
|
+
styles: emailTranscriptButtonStyles,
|
|
74
|
+
hoverStyles: emailTranscriptButtonHoverStyles,
|
|
75
|
+
focusStyles: footerItemFocusStyles
|
|
76
|
+
}))), (0, _utils.processCustomComponents)((_props$controlProps10 = props.controlProps) === null || _props$controlProps10 === void 0 ? void 0 : (_props$controlProps11 = _props$controlProps10.leftGroup) === null || _props$controlProps11 === void 0 ? void 0 : _props$controlProps11.children))), /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
77
|
+
horizontal: true,
|
|
78
|
+
id: "footerMiddleGroup"
|
|
79
|
+
}, /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
80
|
+
horizontal: true,
|
|
81
|
+
verticalAlign: "start"
|
|
82
|
+
}, /*#__PURE__*/React.createElement(_react2.Stack.Item, {
|
|
83
|
+
align: "start"
|
|
84
|
+
}, (0, _utils.processCustomComponents)((_props$controlProps12 = props.controlProps) === null || _props$controlProps12 === void 0 ? void 0 : (_props$controlProps13 = _props$controlProps12.middleGroup) === null || _props$controlProps13 === void 0 ? void 0 : _props$controlProps13.children)))), /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
85
|
+
horizontal: true,
|
|
86
|
+
id: "footerRightGroup",
|
|
87
|
+
verticalAlign: "start"
|
|
88
|
+
}, /*#__PURE__*/React.createElement(_react2.Stack, {
|
|
89
|
+
horizontal: true,
|
|
90
|
+
verticalAlign: "start"
|
|
91
|
+
}, (0, _utils.processCustomComponents)((_props$controlProps14 = props.controlProps) === null || _props$controlProps14 === void 0 ? void 0 : (_props$controlProps15 = _props$controlProps14.rightGroup) === null || _props$controlProps15 === void 0 ? void 0 : _props$controlProps15.children), !((_props$controlProps16 = props.controlProps) !== null && _props$controlProps16 !== void 0 && _props$controlProps16.hideAudioNotificationButton) && ((0, _decodeComponentString.decodeComponentString)((_props$componentOverr3 = props.componentOverrides) === null || _props$componentOverr3 === void 0 ? void 0 : _props$componentOverr3.AudioNotificationButton) || /*#__PURE__*/React.createElement(_AudioNotificationButton.default, _extends({}, audioNotificationButtonProps, {
|
|
92
|
+
onClick: (_props$controlProps17 = props.controlProps) === null || _props$controlProps17 === void 0 ? void 0 : _props$controlProps17.onAudioNotificationClick,
|
|
93
|
+
styles: audioNotificationButtonStyles,
|
|
94
|
+
hoverStyles: audioNotificationButtonHoverStyles,
|
|
95
|
+
focusStyles: footerItemFocusStyles
|
|
96
|
+
}))))));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
var _default = Footer;
|
|
100
|
+
exports.default = _default;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.customFooterControlProps = void 0;
|
|
7
|
+
|
|
8
|
+
var _lcwAudioOff = _interopRequireDefault(require("../../../../assets/imgs/lcwAudioOff.svg"));
|
|
9
|
+
|
|
10
|
+
var _lcwAudioOn = _interopRequireDefault(require("../../../../assets/imgs/lcwAudioOn.svg"));
|
|
11
|
+
|
|
12
|
+
var _transcriptDownloadIcon = _interopRequireDefault(require("../../../../assets/imgs/transcriptDownloadIcon.svg"));
|
|
13
|
+
|
|
14
|
+
var _transcriptEmailIcon = _interopRequireDefault(require("../../../../assets/imgs/transcriptEmailIcon.svg"));
|
|
15
|
+
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
+
|
|
18
|
+
const customFooterControlProps = {
|
|
19
|
+
id: "oc-lcw-footer",
|
|
20
|
+
hideDownloadTranscriptButton: false,
|
|
21
|
+
hideEmailTranscriptButton: false,
|
|
22
|
+
hideAudioNotificationButton: false,
|
|
23
|
+
onDownloadTranscriptClick: function () {
|
|
24
|
+
console.log("download transcript clicked");
|
|
25
|
+
},
|
|
26
|
+
onEmailTranscriptClick: function () {
|
|
27
|
+
console.log("email transcript clicked");
|
|
28
|
+
},
|
|
29
|
+
onAudioNotificationClick: function () {
|
|
30
|
+
console.log("audio notification clicked");
|
|
31
|
+
},
|
|
32
|
+
middleGroup: {
|
|
33
|
+
children: []
|
|
34
|
+
},
|
|
35
|
+
leftGroup: {
|
|
36
|
+
children: []
|
|
37
|
+
},
|
|
38
|
+
rightGroup: {
|
|
39
|
+
children: []
|
|
40
|
+
},
|
|
41
|
+
downloadTranscriptButtonProps: {
|
|
42
|
+
id: "oc-lcw-footer-downloadtranscript-button",
|
|
43
|
+
type: "icon",
|
|
44
|
+
imageIconProps: {
|
|
45
|
+
src: _transcriptDownloadIcon.default
|
|
46
|
+
},
|
|
47
|
+
ariaLabel: "Download chat transcript"
|
|
48
|
+
},
|
|
49
|
+
emailTranscriptButtonProps: {
|
|
50
|
+
id: "oc-lcw-footer-emailtranscript-button",
|
|
51
|
+
type: "icon",
|
|
52
|
+
imageIconProps: {
|
|
53
|
+
src: _transcriptEmailIcon.default
|
|
54
|
+
},
|
|
55
|
+
ariaLabel: "Email Transcript"
|
|
56
|
+
},
|
|
57
|
+
audioNotificationButtonProps: {
|
|
58
|
+
id: "oc-lcw-footer-audionotification-button",
|
|
59
|
+
ariaLabel: "Turn sound off",
|
|
60
|
+
toggleAriaLabel: "Turn sound on",
|
|
61
|
+
imageIconProps: {
|
|
62
|
+
src: _lcwAudioOn.default
|
|
63
|
+
},
|
|
64
|
+
imageToggleIconProps: {
|
|
65
|
+
src: _lcwAudioOff.default
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
exports.customFooterControlProps = customFooterControlProps;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultFooterComponentOverrides = void 0;
|
|
7
|
+
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
var _react2 = require("@fluentui/react");
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
|
+
|
|
16
|
+
const iconButtonStyles = {
|
|
17
|
+
root: {
|
|
18
|
+
margin: 0
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
const defaultFooterComponentOverrides = {
|
|
22
|
+
DownloadTranscriptButton: /*#__PURE__*/React.createElement(_react2.PrimaryButton, {
|
|
23
|
+
text: "Download",
|
|
24
|
+
onClick: _downloadClicked,
|
|
25
|
+
allowDisabledFocus: true,
|
|
26
|
+
styles: iconButtonStyles
|
|
27
|
+
}),
|
|
28
|
+
EmailTranscriptButton: /*#__PURE__*/React.createElement(_react2.DefaultButton, {
|
|
29
|
+
text: "Email",
|
|
30
|
+
onClick: _emailClicked,
|
|
31
|
+
allowDisabledFocus: true,
|
|
32
|
+
styles: iconButtonStyles
|
|
33
|
+
})
|
|
34
|
+
};
|
|
35
|
+
exports.defaultFooterComponentOverrides = defaultFooterComponentOverrides;
|
|
36
|
+
|
|
37
|
+
function _downloadClicked() {
|
|
38
|
+
console.log("download clicked");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function _emailClicked() {
|
|
42
|
+
console.log("email clicked");
|
|
43
|
+
}
|