botframework-webchat 4.13.0 → 4.14.2
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/.eslintignore +1 -9
- package/.eslintrc.yml +5 -0
- package/README.md +33 -36
- package/babel.config.json +2 -2
- package/babel.sanitize-html.config.json +10 -0
- package/lib/AddFullBundle.d.ts +30 -0
- package/lib/AddFullBundle.d.ts.map +1 -0
- package/lib/AddFullBundle.js +77 -0
- package/lib/FullComposer.d.ts +8 -0
- package/lib/FullComposer.d.ts.map +1 -0
- package/lib/FullComposer.js +6 -16
- package/lib/FullReactWebChat.d.ts +8 -0
- package/lib/FullReactWebChat.d.ts.map +1 -0
- package/lib/FullReactWebChat.js +8 -23
- package/lib/adaptiveCards/AdaptiveCardsComposer.d.ts +10 -0
- package/lib/adaptiveCards/AdaptiveCardsComposer.d.ts.map +1 -0
- package/lib/adaptiveCards/AdaptiveCardsComposer.js +6 -2
- package/lib/adaptiveCards/AdaptiveCardsContext.d.ts +8 -0
- package/lib/adaptiveCards/AdaptiveCardsContext.d.ts.map +1 -0
- package/lib/adaptiveCards/AdaptiveCardsContext.js +3 -3
- package/lib/adaptiveCards/AdaptiveCardsStyleOptions.d.ts +5 -3
- package/lib/adaptiveCards/AdaptiveCardsStyleOptions.d.ts.map +1 -1
- package/lib/adaptiveCards/AdaptiveCardsStyleSet.d.ts +7 -0
- package/lib/adaptiveCards/AdaptiveCardsStyleSet.d.ts.map +1 -0
- package/lib/{FullBundleStyleOptions.js → adaptiveCards/AdaptiveCardsStyleSet.js} +0 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardAttachment.d.ts +9 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardAttachment.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardAttachment.js +1 -1
- package/lib/adaptiveCards/Attachment/AdaptiveCardBuilder.d.ts +28 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardBuilder.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardBuilder.js +4 -4
- package/lib/adaptiveCards/Attachment/AdaptiveCardContent.d.ts +9 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardContent.js +8 -4
- package/lib/adaptiveCards/Attachment/AdaptiveCardRenderer.d.ts +11 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardRenderer.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/AdaptiveCardRenderer.js +210 -49
- package/lib/adaptiveCards/Attachment/AnimationCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/AnimationCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/AnimationCardContent.js +1 -1
- package/lib/adaptiveCards/Attachment/AudioCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/AudioCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/AudioCardContent.js +1 -1
- package/lib/adaptiveCards/Attachment/CommonCard.js +11 -6
- package/lib/adaptiveCards/Attachment/HeroCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/HeroCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/HeroCardContent.js +11 -6
- package/lib/adaptiveCards/Attachment/OAuthCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/OAuthCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/OAuthCardContent.js +11 -6
- package/lib/adaptiveCards/Attachment/ReceiptCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/ReceiptCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/ReceiptCardContent.js +11 -6
- package/lib/adaptiveCards/Attachment/SignInCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/SignInCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/SignInCardContent.js +1 -1
- package/lib/adaptiveCards/Attachment/ThumbnailCardContent.d.ts +10 -0
- package/lib/adaptiveCards/Attachment/ThumbnailCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/ThumbnailCardContent.js +11 -6
- package/lib/adaptiveCards/Attachment/VideoCardContent.d.ts +20 -0
- package/lib/adaptiveCards/Attachment/VideoCardContent.d.ts.map +1 -0
- package/lib/adaptiveCards/Attachment/VideoCardContent.js +7 -5
- package/lib/adaptiveCards/AttachmentForScreenReader/AdaptiveCardAttachment.js +7 -3
- package/lib/adaptiveCards/AttachmentForScreenReader/RichCardAttachment.js +1 -1
- package/lib/adaptiveCards/Styles/StyleSet/AdaptiveCardRenderer.d.ts +56 -0
- package/lib/adaptiveCards/Styles/StyleSet/AdaptiveCardRenderer.d.ts.map +1 -0
- package/lib/adaptiveCards/Styles/StyleSet/AdaptiveCardRenderer.js +1 -1
- package/lib/adaptiveCards/Styles/adaptiveCardHostConfig.d.ts +126 -0
- package/lib/adaptiveCards/Styles/adaptiveCardHostConfig.d.ts.map +1 -0
- package/lib/adaptiveCards/Styles/adaptiveCardHostConfig.js +29 -9
- package/lib/adaptiveCards/Styles/createAdaptiveCardsStyleSet.d.ts +5 -0
- package/lib/adaptiveCards/Styles/createAdaptiveCardsStyleSet.d.ts.map +1 -0
- package/lib/adaptiveCards/Styles/createAdaptiveCardsStyleSet.js +2 -2
- package/lib/adaptiveCards/createAdaptiveCardsAttachmentForScreenReaderMiddleware.d.ts +3 -0
- package/lib/adaptiveCards/createAdaptiveCardsAttachmentForScreenReaderMiddleware.d.ts.map +1 -0
- package/lib/adaptiveCards/createAdaptiveCardsAttachmentForScreenReaderMiddleware.js +5 -11
- package/lib/adaptiveCards/createAdaptiveCardsAttachmentMiddleware.d.ts +3 -0
- package/lib/adaptiveCards/createAdaptiveCardsAttachmentMiddleware.d.ts.map +1 -0
- package/lib/adaptiveCards/createAdaptiveCardsAttachmentMiddleware.js +29 -39
- package/lib/adaptiveCards/defaultStyleOptions.d.ts +4 -0
- package/lib/adaptiveCards/defaultStyleOptions.d.ts.map +1 -0
- package/lib/adaptiveCards/defaultStyleOptions.js +3 -2
- package/lib/adaptiveCards/hooks/internal/useAdaptiveCardsContext.d.ts +3 -0
- package/lib/adaptiveCards/hooks/internal/useAdaptiveCardsContext.d.ts.map +1 -0
- package/lib/adaptiveCards/hooks/internal/useAdaptiveCardsContext.js +1 -1
- package/lib/adaptiveCards/hooks/internal/useParseAdaptiveCardJSON.d.ts +2 -0
- package/lib/adaptiveCards/hooks/internal/useParseAdaptiveCardJSON.d.ts.map +1 -0
- package/lib/adaptiveCards/hooks/internal/useParseAdaptiveCardJSON.js +7 -5
- package/lib/adaptiveCards/hooks/internal/useUniqueId.js +1 -1
- package/lib/adaptiveCards/hooks/useAdaptiveCardsHostConfig.d.ts +2 -0
- package/lib/adaptiveCards/hooks/useAdaptiveCardsHostConfig.d.ts.map +1 -0
- package/lib/adaptiveCards/hooks/useAdaptiveCardsHostConfig.js +3 -5
- package/lib/adaptiveCards/hooks/useAdaptiveCardsPackage.d.ts +3 -0
- package/lib/adaptiveCards/hooks/useAdaptiveCardsPackage.d.ts.map +1 -0
- package/lib/adaptiveCards/hooks/useAdaptiveCardsPackage.js +1 -1
- package/lib/adaptiveCards/normalizeStyleOptions.d.ts +3 -0
- package/lib/adaptiveCards/normalizeStyleOptions.d.ts.map +1 -0
- package/lib/adaptiveCards/normalizeStyleOptions.js +1 -1
- package/lib/addVersion.js +2 -2
- package/lib/createBrowserWebSpeechPonyfillFactory.d.ts +3 -0
- package/lib/createBrowserWebSpeechPonyfillFactory.d.ts.map +1 -0
- package/lib/createBrowserWebSpeechPonyfillFactory.js +7 -4
- package/lib/createCognitiveServicesSpeechServicesPonyfillFactory.d.ts +17 -0
- package/lib/createCognitiveServicesSpeechServicesPonyfillFactory.d.ts.map +1 -0
- package/lib/createCognitiveServicesSpeechServicesPonyfillFactory.js +17 -11
- package/lib/createDirectLine.d.ts +17 -0
- package/lib/createDirectLine.d.ts.map +1 -0
- package/lib/createDirectLine.js +3 -2
- package/lib/createDirectLineAppServiceExtension.d.ts +7 -0
- package/lib/createDirectLineAppServiceExtension.d.ts.map +1 -0
- package/lib/createDirectLineAppServiceExtension.js +1 -1
- package/lib/createDirectLineSpeechAdapters.d.ts +25 -0
- package/lib/createDirectLineSpeechAdapters.d.ts.map +1 -0
- package/lib/createDirectLineSpeechAdapters.js +57 -3
- package/lib/createFullStyleSet.d.ts +1106 -0
- package/lib/createFullStyleSet.d.ts.map +1 -0
- package/lib/createFullStyleSet.js +2 -2
- package/lib/fullBundleDefaultStyleOptions.js +4 -4
- package/lib/hooks/useStyleOptions.d.ts +3 -0
- package/lib/hooks/useStyleOptions.d.ts.map +1 -0
- package/lib/hooks/useStyleOptions.js +21 -0
- package/lib/index-es5.d.ts +24 -20
- package/lib/index-es5.d.ts.map +1 -1
- package/lib/index-es5.js +2 -2
- package/lib/index-minimal.d.ts +9 -6
- package/lib/index-minimal.d.ts.map +1 -1
- package/lib/index-minimal.js +8 -4
- package/lib/index.d.ts +154 -18
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +11 -7
- package/lib/renderMarkdown.d.ts +6 -0
- package/lib/renderMarkdown.d.ts.map +1 -0
- package/lib/renderMarkdown.js +5 -2
- package/lib/renderWebChat.d.ts +3 -0
- package/lib/renderWebChat.d.ts.map +1 -0
- package/lib/renderWebChat.js +1 -1
- package/lib/speech/CustomAudioInputStream.d.ts +94 -0
- package/lib/speech/CustomAudioInputStream.d.ts.map +1 -0
- package/lib/speech/CustomAudioInputStream.js +416 -0
- package/lib/speech/bytesPerSample.d.ts +2 -0
- package/lib/speech/bytesPerSample.d.ts.map +1 -0
- package/lib/speech/bytesPerSample.js +12 -0
- package/lib/speech/createAudioConfig.d.ts +23 -0
- package/lib/speech/createAudioConfig.d.ts.map +1 -0
- package/lib/speech/createAudioConfig.js +84 -0
- package/lib/speech/createAudioContext.d.ts +3 -0
- package/lib/speech/createAudioContext.d.ts.map +1 -0
- package/lib/speech/createAudioContext.js +22 -0
- package/lib/speech/createMicrophoneAudioConfigAndAudioContext.d.ts +9 -0
- package/lib/speech/createMicrophoneAudioConfigAndAudioContext.d.ts.map +1 -0
- package/lib/speech/createMicrophoneAudioConfigAndAudioContext.js +161 -0
- package/lib/speech/getUserMedia.d.ts +2 -0
- package/lib/speech/getUserMedia.d.ts.map +1 -0
- package/lib/speech/getUserMedia.js +25 -0
- package/lib/types/AdaptiveCardsPackage.d.ts +13 -0
- package/lib/types/AdaptiveCardsPackage.d.ts.map +1 -0
- package/lib/types/AdaptiveCardsPackage.js +2 -0
- package/lib/types/CognitiveServicesAudioOutputFormat.d.ts +3 -0
- package/lib/types/CognitiveServicesAudioOutputFormat.d.ts.map +1 -0
- package/lib/types/CognitiveServicesAudioOutputFormat.js +2 -0
- package/lib/types/CognitiveServicesCredentials.d.ts +18 -0
- package/lib/types/CognitiveServicesCredentials.d.ts.map +1 -0
- package/lib/types/CognitiveServicesCredentials.js +2 -0
- package/lib/types/CognitiveServicesTextNormalization.d.ts +3 -0
- package/lib/types/CognitiveServicesTextNormalization.d.ts.map +1 -0
- package/lib/types/CognitiveServicesTextNormalization.js +2 -0
- package/lib/{FullBundleStyleOptions.d.ts → types/FullBundleStyleOptions.d.ts} +1 -1
- package/lib/types/FullBundleStyleOptions.d.ts.map +1 -0
- package/lib/types/FullBundleStyleOptions.js +2 -0
- package/lib/useComposerProps.d.ts +22 -0
- package/lib/useComposerProps.d.ts.map +1 -0
- package/lib/useComposerProps.js +6 -8
- package/package.json +51 -46
- package/src/AddFullBundle.tsx +94 -0
- package/src/FullComposer.tsx +38 -0
- package/src/FullReactWebChat.tsx +32 -0
- package/src/__tests__/createDirectLine.spec.js +2 -0
- package/src/__tests__/renderMarkdown.spec.js +1 -1
- package/src/__tests__/versionTag.es5.spec.js +3 -0
- package/src/__tests__/versionTag.full.spec.js +3 -0
- package/src/__tests__/versionTag.minimal.spec.js +3 -0
- package/src/adaptiveCards/{AdaptiveCardsComposer.js → AdaptiveCardsComposer.tsx} +17 -5
- package/src/adaptiveCards/AdaptiveCardsContext.ts +12 -0
- package/src/adaptiveCards/AdaptiveCardsStyleOptions.ts +5 -3
- package/src/adaptiveCards/AdaptiveCardsStyleSet.ts +7 -0
- package/src/adaptiveCards/Attachment/{AdaptiveCardAttachment.js → AdaptiveCardAttachment.tsx} +8 -2
- package/src/adaptiveCards/Attachment/AdaptiveCardBuilder.ts +21 -15
- package/src/adaptiveCards/Attachment/{AdaptiveCardContent.js → AdaptiveCardContent.tsx} +8 -2
- package/src/adaptiveCards/Attachment/{AdaptiveCardRenderer.js → AdaptiveCardRenderer.tsx} +228 -46
- package/src/adaptiveCards/Attachment/{AnimationCardContent.js → AnimationCardContent.tsx} +9 -2
- package/src/adaptiveCards/Attachment/{AudioCardContent.js → AudioCardContent.tsx} +9 -2
- package/src/adaptiveCards/Attachment/CommonCard.js +2 -1
- package/src/adaptiveCards/Attachment/{HeroCardContent.js → HeroCardContent.tsx} +12 -3
- package/src/adaptiveCards/Attachment/{OAuthCardContent.js → OAuthCardContent.tsx} +11 -3
- package/src/adaptiveCards/Attachment/{ReceiptCardContent.js → ReceiptCardContent.tsx} +58 -28
- package/src/adaptiveCards/Attachment/{SignInCardContent.js → SignInCardContent.tsx} +9 -2
- package/src/adaptiveCards/Attachment/{ThumbnailCardContent.js → ThumbnailCardContent.tsx} +12 -3
- package/src/adaptiveCards/Attachment/{VideoCardContent.js → VideoCardContent.tsx} +15 -3
- package/src/adaptiveCards/Styles/StyleSet/AdaptiveCardRenderer.ts +1 -1
- package/src/adaptiveCards/Styles/adaptiveCardHostConfig.ts +28 -8
- package/src/adaptiveCards/Styles/createAdaptiveCardsStyleSet.spec.js +2 -0
- package/src/adaptiveCards/Styles/createAdaptiveCardsStyleSet.ts +7 -4
- package/src/adaptiveCards/{createAdaptiveCardsAttachmentForScreenReaderMiddleware.js → createAdaptiveCardsAttachmentForScreenReaderMiddleware.tsx} +16 -15
- package/src/adaptiveCards/createAdaptiveCardsAttachmentMiddleware.tsx +45 -0
- package/src/adaptiveCards/defaultStyleOptions.ts +2 -1
- package/src/adaptiveCards/hooks/internal/{useAdaptiveCardsContext.js → useAdaptiveCardsContext.ts} +1 -1
- package/src/adaptiveCards/hooks/internal/{useParseAdaptiveCardJSON.js → useParseAdaptiveCardJSON.ts} +5 -2
- package/src/adaptiveCards/hooks/internal/{useUniqueId.js → useUniqueId.ts} +1 -1
- package/src/adaptiveCards/hooks/{useAdaptiveCardsHostConfig.js → useAdaptiveCardsHostConfig.ts} +6 -8
- package/src/adaptiveCards/hooks/{useAdaptiveCardsPackage.js → useAdaptiveCardsPackage.ts} +2 -1
- package/src/createBrowserWebSpeechPonyfillFactory.ts +21 -0
- package/src/createCognitiveServicesSpeechServicesPonyfillFactory.spec.js +37 -6
- package/src/createCognitiveServicesSpeechServicesPonyfillFactory.ts +78 -0
- package/src/createDirectLine.ts +65 -0
- package/src/createDirectLineAppServiceExtension.ts +22 -0
- package/src/createDirectLineSpeechAdapters.ts +84 -0
- package/src/createFullStyleSet.ts +2 -2
- package/src/fullBundleDefaultStyleOptions.ts +3 -3
- package/src/hooks/useStyleOptions.ts +9 -0
- package/src/index-es5.ts +0 -2
- package/src/index-minimal.ts +3 -2
- package/src/index.ts +22 -10
- package/src/{renderMarkdown.js → renderMarkdown.ts} +8 -1
- package/src/renderWebChat.tsx +6 -0
- package/src/speech/CustomAudioInputStream.ts +325 -0
- package/src/speech/bytesPerSample.ts +4 -0
- package/src/speech/createAudioConfig.spec.js +23 -0
- package/src/speech/createAudioConfig.ts +70 -0
- package/src/speech/createAudioContext.ts +16 -0
- package/src/speech/createMicrophoneAudioConfigAndAudioContext.ts +146 -0
- package/src/speech/getUserMedia.ts +14 -0
- package/src/tsconfig.json +1 -1
- package/src/types/AdaptiveCardsPackage.ts +23 -0
- package/src/types/CognitiveServicesAudioOutputFormat.ts +28 -0
- package/src/types/CognitiveServicesCredentials.ts +28 -0
- package/src/types/CognitiveServicesTextNormalization.ts +3 -0
- package/src/{FullBundleStyleOptions.ts → types/FullBundleStyleOptions.ts} +1 -1
- package/src/{useComposerProps.js → useComposerProps.ts} +21 -11
- package/webpack.config.js +46 -6
- package/lib/FullBundleStyleOptions.d.ts.map +0 -1
- package/src/FullComposer.js +0 -40
- package/src/FullReactWebChat.js +0 -47
- package/src/adaptiveCards/AdaptiveCardsContext.js +0 -5
- package/src/adaptiveCards/createAdaptiveCardsAttachmentMiddleware.js +0 -41
- package/src/createBrowserWebSpeechPonyfillFactory.js +0 -16
- package/src/createCognitiveServicesSpeechServicesPonyfillFactory.js +0 -58
- package/src/createDirectLine.js +0 -38
- package/src/createDirectLineAppServiceExtension.js +0 -12
- package/src/createDirectLineSpeechAdapters.js +0 -5
- package/src/index-es5.tsx +0 -49
- package/src/index-minimal.tsx +0 -9
- package/src/index.tsx +0 -45
- package/src/renderWebChat.js +0 -6
|
@@ -0,0 +1,1106 @@
|
|
|
1
|
+
import FullBundleStyleOptions from './types/FullBundleStyleOptions';
|
|
2
|
+
export default function createFullStyleSet(options: FullBundleStyleOptions): {
|
|
3
|
+
adaptiveCardRenderer: any;
|
|
4
|
+
animationCardAttachment: any;
|
|
5
|
+
audioCardAttachment: any;
|
|
6
|
+
activities: {
|
|
7
|
+
margin: number;
|
|
8
|
+
padding: number;
|
|
9
|
+
};
|
|
10
|
+
audioAttachment: {
|
|
11
|
+
display: string;
|
|
12
|
+
minHeight: number;
|
|
13
|
+
};
|
|
14
|
+
audioContent: {
|
|
15
|
+
width: string;
|
|
16
|
+
};
|
|
17
|
+
autoResizeTextArea: {
|
|
18
|
+
'&.webchat__auto-resize-textarea': {
|
|
19
|
+
fontFamily: string;
|
|
20
|
+
overflow: string;
|
|
21
|
+
position: string;
|
|
22
|
+
'& .webchat__auto-resize-textarea__doppelganger': {
|
|
23
|
+
color: string;
|
|
24
|
+
height: string;
|
|
25
|
+
overflowY: string;
|
|
26
|
+
userSelect: string;
|
|
27
|
+
width: string;
|
|
28
|
+
whiteSpace: string;
|
|
29
|
+
wordBreak: string;
|
|
30
|
+
};
|
|
31
|
+
'& .webchat__auto-resize-textarea__textarea': {
|
|
32
|
+
appearance: string;
|
|
33
|
+
backgroundColor: string;
|
|
34
|
+
border: number;
|
|
35
|
+
color: string;
|
|
36
|
+
fontFamily: string;
|
|
37
|
+
fontSize: string;
|
|
38
|
+
height: string;
|
|
39
|
+
left: number;
|
|
40
|
+
margin: number;
|
|
41
|
+
outline: number;
|
|
42
|
+
overflowY: string;
|
|
43
|
+
padding: number;
|
|
44
|
+
position: string;
|
|
45
|
+
resize: string;
|
|
46
|
+
top: number;
|
|
47
|
+
width: string;
|
|
48
|
+
wordBreak: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
avatar: {
|
|
53
|
+
'&.webchat__defaultAvatar': {
|
|
54
|
+
borderRadius: string | number;
|
|
55
|
+
height: number;
|
|
56
|
+
width: number;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
basicTranscript: {
|
|
60
|
+
'&.webchat__basic-transcript': {
|
|
61
|
+
'&:focus': {
|
|
62
|
+
outline: number;
|
|
63
|
+
'& .webchat__basic-transcript__activity-indicator.webchat__basic-transcript__activity-indicator--focus': {
|
|
64
|
+
borderColor: string;
|
|
65
|
+
borderStyle: string;
|
|
66
|
+
borderWidth: string | number;
|
|
67
|
+
boxSizing: string;
|
|
68
|
+
height: string;
|
|
69
|
+
left: number;
|
|
70
|
+
margin: number;
|
|
71
|
+
pointerEvents: string;
|
|
72
|
+
position: string;
|
|
73
|
+
top: number;
|
|
74
|
+
width: string;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
'&:focus .webchat__basic-transcript__focus-indicator, .webchat__basic-transcript__terminator:focus + .webchat__basic-transcript__focus-indicator': {
|
|
78
|
+
height: string;
|
|
79
|
+
borderColor: string;
|
|
80
|
+
borderStyle: string;
|
|
81
|
+
borderWidth: string | number;
|
|
82
|
+
boxSizing: string;
|
|
83
|
+
pointerEvents: string;
|
|
84
|
+
position: string;
|
|
85
|
+
top: number;
|
|
86
|
+
width: string;
|
|
87
|
+
};
|
|
88
|
+
'& .webchat__basic-transcript__activity': {
|
|
89
|
+
paddingTop: number;
|
|
90
|
+
position: string;
|
|
91
|
+
'&:not(:first-child)': {
|
|
92
|
+
marginTop: number;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
'& .webchat__basic-transcript__activity-box:not(:empty)': {
|
|
96
|
+
paddingBottom: number;
|
|
97
|
+
};
|
|
98
|
+
'& .webchat__basic-transcript__activity-sentinel': {
|
|
99
|
+
height: string;
|
|
100
|
+
left: number;
|
|
101
|
+
pointerEvents: string;
|
|
102
|
+
position: string;
|
|
103
|
+
top: number;
|
|
104
|
+
width: string;
|
|
105
|
+
};
|
|
106
|
+
'& .webchat__basic-transcript__terminator': {
|
|
107
|
+
bottom: number;
|
|
108
|
+
height: number;
|
|
109
|
+
outline: number;
|
|
110
|
+
position: string;
|
|
111
|
+
width: string;
|
|
112
|
+
};
|
|
113
|
+
'& .webchat__basic-transcript__terminator-body': {
|
|
114
|
+
bottom: number;
|
|
115
|
+
display: string;
|
|
116
|
+
justifyContent: string;
|
|
117
|
+
position: string;
|
|
118
|
+
width: string;
|
|
119
|
+
};
|
|
120
|
+
'& .webchat__basic-transcript__terminator:not(:focus) .webchat__basic-transcript__terminator-body': {
|
|
121
|
+
display: string;
|
|
122
|
+
};
|
|
123
|
+
'& .webchat__basic-transcript__terminator-text': {
|
|
124
|
+
backgroundColor: string;
|
|
125
|
+
borderRadius: string | number;
|
|
126
|
+
color: string;
|
|
127
|
+
fontFamily: string;
|
|
128
|
+
fontSize: string | number;
|
|
129
|
+
margin: number;
|
|
130
|
+
padding: number;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
bubble: {
|
|
135
|
+
'&.webchat__bubble': any;
|
|
136
|
+
};
|
|
137
|
+
carouselFilmStrip: {
|
|
138
|
+
'&.webchat__carousel-filmstrip': any;
|
|
139
|
+
};
|
|
140
|
+
carouselFilmStripAttachment: any;
|
|
141
|
+
carouselFlipper: {
|
|
142
|
+
'&.webchat__carousel-layout': {
|
|
143
|
+
'& .react-film__flipper': {
|
|
144
|
+
'& .react-film__flipper__body': {
|
|
145
|
+
backgroundColor: string;
|
|
146
|
+
color: string;
|
|
147
|
+
outline: number;
|
|
148
|
+
};
|
|
149
|
+
'&:disabled, &[aria-disabled="true"]': {
|
|
150
|
+
'& .react-film__flipper__body': {
|
|
151
|
+
backgroundColor: string;
|
|
152
|
+
color: string;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
'&:focus .react-film__flipper__body': {
|
|
156
|
+
backgroundColor: string;
|
|
157
|
+
color: string;
|
|
158
|
+
};
|
|
159
|
+
'&:hover .react-film__flipper__body': {
|
|
160
|
+
backgroundColor: string;
|
|
161
|
+
color: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
connectivityNotification: {
|
|
167
|
+
alignItems: string;
|
|
168
|
+
color: string;
|
|
169
|
+
display: string;
|
|
170
|
+
fontFamily: string;
|
|
171
|
+
fontSize: string | number;
|
|
172
|
+
marginBottom: number;
|
|
173
|
+
marginLeft: number;
|
|
174
|
+
marginRight: number;
|
|
175
|
+
marginTop: number;
|
|
176
|
+
};
|
|
177
|
+
dictationInterims: {
|
|
178
|
+
fontFamily: string;
|
|
179
|
+
margin: number;
|
|
180
|
+
paddingBottom: number;
|
|
181
|
+
paddingLeft: number;
|
|
182
|
+
paddingRight: number;
|
|
183
|
+
paddingTop: number;
|
|
184
|
+
'&.dictating > span:not(:first-child), &.status': {
|
|
185
|
+
opacity: number;
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
errorBox: {
|
|
189
|
+
display: string;
|
|
190
|
+
flexDirection: string;
|
|
191
|
+
fontFamily: string;
|
|
192
|
+
margin: number;
|
|
193
|
+
minHeight: number;
|
|
194
|
+
maxHeight: number;
|
|
195
|
+
overflowY: string;
|
|
196
|
+
WebkitOverflowScrolling: string;
|
|
197
|
+
'& > :first-child': {
|
|
198
|
+
backgroundColor: string;
|
|
199
|
+
color: string;
|
|
200
|
+
padding: string;
|
|
201
|
+
};
|
|
202
|
+
'& > :last-child': {
|
|
203
|
+
borderColor: string;
|
|
204
|
+
borderStyle: string;
|
|
205
|
+
borderBottomWidth: number;
|
|
206
|
+
borderLeftWidth: number;
|
|
207
|
+
borderRightWidth: number;
|
|
208
|
+
borderTopWidth: number;
|
|
209
|
+
margin: number;
|
|
210
|
+
overflowY: string;
|
|
211
|
+
padding: number;
|
|
212
|
+
'& > pre': {
|
|
213
|
+
fontFamily: string;
|
|
214
|
+
fontSize: string;
|
|
215
|
+
margin: number;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
errorNotification: {
|
|
220
|
+
alignItems: string;
|
|
221
|
+
color: string | number;
|
|
222
|
+
display: string;
|
|
223
|
+
fontFamily: string;
|
|
224
|
+
fontSize: string | number;
|
|
225
|
+
fontWeight: string;
|
|
226
|
+
marginBottom: number;
|
|
227
|
+
marginLeft: number;
|
|
228
|
+
marginRight: number;
|
|
229
|
+
marginTop: number;
|
|
230
|
+
'& > svg': {
|
|
231
|
+
fill: string | number;
|
|
232
|
+
'&:not(.webchat__error--rtl)': {
|
|
233
|
+
paddingRight: number;
|
|
234
|
+
};
|
|
235
|
+
'&.webchat__error--rtl': {
|
|
236
|
+
paddingLeft: number;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
fileContent: {
|
|
241
|
+
color: string;
|
|
242
|
+
display: string;
|
|
243
|
+
fontFamily: string;
|
|
244
|
+
padding: number;
|
|
245
|
+
'& .webchat__fileContent__badge': {
|
|
246
|
+
justifyContent: string;
|
|
247
|
+
};
|
|
248
|
+
'& .webchat__fileContent__buttonLink': {
|
|
249
|
+
alignItems: string;
|
|
250
|
+
color: string;
|
|
251
|
+
textDecoration: string;
|
|
252
|
+
'&:focus': {
|
|
253
|
+
backgroundColor: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
'& .webchat__fileContent__downloadIcon': {
|
|
257
|
+
fill: string;
|
|
258
|
+
padding: number;
|
|
259
|
+
'&:not(.webchat__fileContent__downloadIcon--rtl)': {
|
|
260
|
+
marginLeft: number;
|
|
261
|
+
};
|
|
262
|
+
'&.webchat__fileContent__downloadIcon--rtl': {
|
|
263
|
+
marginRight: number;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
'& .webchat__fileContent__fileName': {
|
|
267
|
+
color: string;
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
imageAvatar: {
|
|
271
|
+
height: number;
|
|
272
|
+
overflow: string;
|
|
273
|
+
width: number;
|
|
274
|
+
};
|
|
275
|
+
initialsAvatar: {
|
|
276
|
+
'&.webchat__initialsAvatar': {
|
|
277
|
+
alignItems: string;
|
|
278
|
+
color: string;
|
|
279
|
+
fontFamily: string;
|
|
280
|
+
height: number;
|
|
281
|
+
justifyContent: string;
|
|
282
|
+
overflow: string;
|
|
283
|
+
width: number;
|
|
284
|
+
'&.webchat__initialsAvatar--fromUser': {
|
|
285
|
+
backgroundColor: string;
|
|
286
|
+
};
|
|
287
|
+
'&:not(.webchat__initialsAvatar--fromUser)': {
|
|
288
|
+
backgroundColor: string;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
microphoneButton: {
|
|
293
|
+
'&.webchat__microphone-button': {
|
|
294
|
+
'&.webchat__microphone-button--dictating .webchat__microphone-button__button': {
|
|
295
|
+
'&, &:focus, &:hover': {
|
|
296
|
+
'& .webchat__microphone-button__icon': {
|
|
297
|
+
fill: string;
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
options: {
|
|
304
|
+
accent: string;
|
|
305
|
+
backgroundColor: string;
|
|
306
|
+
subtle: string;
|
|
307
|
+
paddingRegular: number;
|
|
308
|
+
paddingWide: number;
|
|
309
|
+
transitionDuration: string;
|
|
310
|
+
fontSizeSmall: string | number;
|
|
311
|
+
monospaceFont: string;
|
|
312
|
+
primaryFont: string;
|
|
313
|
+
rootHeight: string | number;
|
|
314
|
+
rootWidth: string | number;
|
|
315
|
+
rootZIndex: number;
|
|
316
|
+
avatarBorderRadius: string | number;
|
|
317
|
+
avatarSize: number;
|
|
318
|
+
botAvatarBackgroundColor: string;
|
|
319
|
+
botAvatarImage: string;
|
|
320
|
+
botAvatarInitials: string;
|
|
321
|
+
userAvatarBackgroundColor: string;
|
|
322
|
+
userAvatarImage: string;
|
|
323
|
+
userAvatarInitials: string;
|
|
324
|
+
showAvatarInGroup: true | "sender" | "status";
|
|
325
|
+
bubbleBackground: string;
|
|
326
|
+
bubbleBorderColor: string;
|
|
327
|
+
bubbleBorderRadius: number;
|
|
328
|
+
bubbleBorderStyle: string;
|
|
329
|
+
bubbleBorderWidth: number;
|
|
330
|
+
bubbleFromUserBackground: string;
|
|
331
|
+
bubbleFromUserBorderColor: string;
|
|
332
|
+
bubbleFromUserBorderRadius: number;
|
|
333
|
+
bubbleFromUserBorderStyle: string;
|
|
334
|
+
bubbleFromUserBorderWidth: number;
|
|
335
|
+
bubbleFromUserNubOffset: number;
|
|
336
|
+
bubbleFromUserNubSize: number;
|
|
337
|
+
bubbleFromUserTextColor: string;
|
|
338
|
+
bubbleImageHeight: number;
|
|
339
|
+
bubbleMaxWidth: number;
|
|
340
|
+
bubbleMinHeight: number;
|
|
341
|
+
bubbleMinWidth: number;
|
|
342
|
+
bubbleNubOffset: number;
|
|
343
|
+
bubbleNubSize: number;
|
|
344
|
+
bubbleTextColor: string;
|
|
345
|
+
messageActivityWordBreak: "normal" | "break-all" | "break-word" | "keep-all";
|
|
346
|
+
connectivityIconPadding: number;
|
|
347
|
+
connectivityMarginLeftRight: number;
|
|
348
|
+
connectivityMarginTopBottom: number;
|
|
349
|
+
connectivityTextSize: string | number;
|
|
350
|
+
failedConnectivity: string | number;
|
|
351
|
+
slowConnectivity: string;
|
|
352
|
+
notificationText: string;
|
|
353
|
+
slowConnectionAfter: number;
|
|
354
|
+
emojiSet: (boolean | Record<string, string>) & (false | Record<string, string>);
|
|
355
|
+
internalLiveRegionFadeAfter: number;
|
|
356
|
+
markdownRespectCRLF: boolean;
|
|
357
|
+
markdownExternalLinkIconImage: string;
|
|
358
|
+
autoScrollSnapOnActivity: number | boolean;
|
|
359
|
+
autoScrollSnapOnActivityOffset: number;
|
|
360
|
+
autoScrollSnapOnPage: number | boolean;
|
|
361
|
+
autoScrollSnapOnPageoffset: number;
|
|
362
|
+
hideSendBox: boolean;
|
|
363
|
+
hideUploadButton: boolean;
|
|
364
|
+
microphoneButtonColorOnDictate: string;
|
|
365
|
+
sendBoxBackground: string;
|
|
366
|
+
sendBoxButtonColor: string;
|
|
367
|
+
sendBoxButtonColorOnDisabled: string;
|
|
368
|
+
sendBoxButtonColorOnFocus: string;
|
|
369
|
+
sendBoxButtonColorOnHover: string;
|
|
370
|
+
sendBoxDisabledTextColor: string;
|
|
371
|
+
sendBoxHeight: string | number;
|
|
372
|
+
sendBoxMaxHeight: string | number;
|
|
373
|
+
sendBoxTextColor: string;
|
|
374
|
+
sendBoxBorderBottom: string | number;
|
|
375
|
+
sendBoxBorderLeft: string | number;
|
|
376
|
+
sendBoxBorderRight: string | number;
|
|
377
|
+
sendBoxBorderTop: string | number;
|
|
378
|
+
sendBoxPlaceholderColor: string;
|
|
379
|
+
sendBoxTextWrap: boolean;
|
|
380
|
+
sendBoxButtonAlignment: "bottom" | "top" | "stretch";
|
|
381
|
+
showSpokenText: boolean;
|
|
382
|
+
spinnerAnimationBackgroundImage: string;
|
|
383
|
+
spinnerAnimationHeight: string | number;
|
|
384
|
+
spinnerAnimationWidth: string | number;
|
|
385
|
+
spinnerAnimationPadding: string | number;
|
|
386
|
+
suggestedActionBackground: string;
|
|
387
|
+
suggestedActionBorderColor: string;
|
|
388
|
+
suggestedActionBorderRadius: string | number;
|
|
389
|
+
suggestedActionBorderStyle: string;
|
|
390
|
+
suggestedActionBorderWidth: string | number;
|
|
391
|
+
suggestedActionDisabledBackground: string;
|
|
392
|
+
suggestedActionDisabledBorderColor: string;
|
|
393
|
+
suggestedActionDisabledBorderStyle: string;
|
|
394
|
+
suggestedActionDisabledBorderWidth: string | number;
|
|
395
|
+
suggestedActionDisabledTextColor: string;
|
|
396
|
+
suggestedActionHeight: string | number;
|
|
397
|
+
suggestedActionImageHeight: string | number;
|
|
398
|
+
suggestedActionLayout: "carousel" | "flow" | "stacked";
|
|
399
|
+
suggestedActionTextColor: string;
|
|
400
|
+
suggestedActionsCarouselFlipperCursor: string;
|
|
401
|
+
suggestedActionsCarouselFlipperBoxWidth: number;
|
|
402
|
+
suggestedActionsCarouselFlipperSize: number;
|
|
403
|
+
suggestedActionsFlowMaxHeight: undefined;
|
|
404
|
+
suggestedActionsStackedHeight: number | "auto";
|
|
405
|
+
suggestedActionsStackedOverflow: "string";
|
|
406
|
+
suggestedActionsStackedLayoutButtonMaxHeight: string | number;
|
|
407
|
+
suggestedActionsStackedLayoutButtonTextWrap: boolean;
|
|
408
|
+
groupTimestamp: number | boolean;
|
|
409
|
+
sendTimeout: number | ((activity: any) => number);
|
|
410
|
+
sendTimeoutForAttachments: number;
|
|
411
|
+
timestampColor: string;
|
|
412
|
+
timestampFormat: "absolute" | "relative";
|
|
413
|
+
transcriptTerminatorBackgroundColor: string;
|
|
414
|
+
transcriptTerminatorBorderRadius: string | number;
|
|
415
|
+
transcriptTerminatorColor: string;
|
|
416
|
+
transcriptTerminatorFontSize: string | number;
|
|
417
|
+
transcriptActivityVisualKeyboardIndicatorColor: string;
|
|
418
|
+
transcriptActivityVisualKeyboardIndicatorStyle: string;
|
|
419
|
+
transcriptActivityVisualKeyboardIndicatorWidth: string | number;
|
|
420
|
+
transcriptVisualKeyboardIndicatorColor: string;
|
|
421
|
+
transcriptVisualKeyboardIndicatorStyle: string;
|
|
422
|
+
transcriptVisualKeyboardIndicatorWidth: string | number;
|
|
423
|
+
scrollToEndButtonBehavior: false | "any" | "unread";
|
|
424
|
+
scrollToEndButtonFontSize: string | number;
|
|
425
|
+
transcriptOverlayButtonBackground: string;
|
|
426
|
+
transcriptOverlayButtonBackgroundOnDisabled: string;
|
|
427
|
+
transcriptOverlayButtonBackgroundOnFocus: string;
|
|
428
|
+
transcriptOverlayButtonBackgroundOnHover: string;
|
|
429
|
+
transcriptOverlayButtonColor: string;
|
|
430
|
+
transcriptOverlayButtonColorOnDisabled: string;
|
|
431
|
+
transcriptOverlayButtonColorOnFocus: string;
|
|
432
|
+
transcriptOverlayButtonColorOnHover: string;
|
|
433
|
+
notificationDebounceTimeout: number;
|
|
434
|
+
hideToaster: boolean;
|
|
435
|
+
toasterHeight: string | number;
|
|
436
|
+
toasterMaxHeight: string | number;
|
|
437
|
+
toasterSingularMaxHeight: string | number;
|
|
438
|
+
toastFontSize: string | number;
|
|
439
|
+
toastIconWidth: string | number;
|
|
440
|
+
toastSeparatorColor: string;
|
|
441
|
+
toastTextPadding: string | number;
|
|
442
|
+
toastErrorBackgroundColor: string;
|
|
443
|
+
toastErrorColor: string;
|
|
444
|
+
toastInfoBackgroundColor: string;
|
|
445
|
+
toastInfoColor: string;
|
|
446
|
+
toastSuccessBackgroundColor: string;
|
|
447
|
+
toastSuccessColor: string;
|
|
448
|
+
toastWarnBackgroundColor: string;
|
|
449
|
+
toastWarnColor: string;
|
|
450
|
+
typingAnimationBackgroundImage: string;
|
|
451
|
+
typingAnimationDuration: number;
|
|
452
|
+
typingAnimationHeight: string | number;
|
|
453
|
+
typingAnimationWidth: string | number;
|
|
454
|
+
enableUploadThumbnail: boolean;
|
|
455
|
+
uploadThumbnailContentType: string;
|
|
456
|
+
uploadThumbnailHeight: string | number;
|
|
457
|
+
uploadThumbnailQuality: number;
|
|
458
|
+
uploadThumbnailWidth: string | number;
|
|
459
|
+
videoHeight: string | number;
|
|
460
|
+
};
|
|
461
|
+
root: {
|
|
462
|
+
backgroundColor: string;
|
|
463
|
+
height: string | number;
|
|
464
|
+
width: string | number;
|
|
465
|
+
zIndex: number;
|
|
466
|
+
};
|
|
467
|
+
scrollToEndButton: {
|
|
468
|
+
'&.webchat__scroll-to-end-button': {
|
|
469
|
+
'@media screen and (-ms-high-contrast: active)': {
|
|
470
|
+
borderWidth: string;
|
|
471
|
+
outline: string;
|
|
472
|
+
};
|
|
473
|
+
appearance: string;
|
|
474
|
+
backgroundColor: string;
|
|
475
|
+
borderRadius: number;
|
|
476
|
+
borderWidth: number;
|
|
477
|
+
bottom: number;
|
|
478
|
+
color: string;
|
|
479
|
+
fontFamily: string;
|
|
480
|
+
fontSize: string | number;
|
|
481
|
+
outline: number;
|
|
482
|
+
padding: number;
|
|
483
|
+
position: string;
|
|
484
|
+
zIndex: number;
|
|
485
|
+
'&:hover': {
|
|
486
|
+
backgroundColor: string;
|
|
487
|
+
color: string;
|
|
488
|
+
};
|
|
489
|
+
'&:focus': {
|
|
490
|
+
backgroundColor: string;
|
|
491
|
+
color: string;
|
|
492
|
+
};
|
|
493
|
+
'&:not(.webchat__scroll-to-end-button--rtl)': {
|
|
494
|
+
right: number;
|
|
495
|
+
};
|
|
496
|
+
'&.webchat__scroll-to-end-button--rtl': {
|
|
497
|
+
left: number;
|
|
498
|
+
};
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
sendBox: {
|
|
502
|
+
'&.webchat__send-box': {
|
|
503
|
+
'& .webchat__send-box__button--align-bottom': {
|
|
504
|
+
alignSelf: string;
|
|
505
|
+
};
|
|
506
|
+
'& .webchat__send-box__button--align-stretch': {
|
|
507
|
+
alignSelf: string;
|
|
508
|
+
};
|
|
509
|
+
'& .webchat__send-box__button--align-top': {
|
|
510
|
+
alignSelf: string;
|
|
511
|
+
};
|
|
512
|
+
'& .webchat__send-box__main': {
|
|
513
|
+
alignItems: string;
|
|
514
|
+
backgroundColor: string;
|
|
515
|
+
borderBottom: string | number;
|
|
516
|
+
borderLeft: string | number;
|
|
517
|
+
borderRight: string | number;
|
|
518
|
+
borderTop: string | number;
|
|
519
|
+
minHeight: string | number;
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
sendBoxButton: {
|
|
524
|
+
'&.webchat__icon-button': {
|
|
525
|
+
alignItems: string;
|
|
526
|
+
backgroundColor: string;
|
|
527
|
+
border: number;
|
|
528
|
+
display: string;
|
|
529
|
+
justifyContent: string;
|
|
530
|
+
outline: number;
|
|
531
|
+
padding: number;
|
|
532
|
+
width: string | number;
|
|
533
|
+
'&:not(.webchat__icon-button--stretch)': {
|
|
534
|
+
height: string | number;
|
|
535
|
+
};
|
|
536
|
+
'&:not(:disabled):not([aria-disabled="true"])': {
|
|
537
|
+
'&:focus svg': {
|
|
538
|
+
fill: string;
|
|
539
|
+
};
|
|
540
|
+
'&:hover svg': {
|
|
541
|
+
fill: string;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
'& svg': {
|
|
545
|
+
fill: string;
|
|
546
|
+
};
|
|
547
|
+
'&:disabled, &[aria-disabled="true"]': {
|
|
548
|
+
'& svg': {
|
|
549
|
+
fill: string;
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
sendBoxTextBox: {
|
|
555
|
+
'&.webchat__send-box-text-box': {
|
|
556
|
+
alignItems: string;
|
|
557
|
+
fontFamily: string;
|
|
558
|
+
padding: number;
|
|
559
|
+
position: string;
|
|
560
|
+
'& .webchat__send-box-text-box__input': {
|
|
561
|
+
border: number;
|
|
562
|
+
fontFamily: string;
|
|
563
|
+
fontSize: string;
|
|
564
|
+
height: string;
|
|
565
|
+
outline: number;
|
|
566
|
+
padding: number;
|
|
567
|
+
};
|
|
568
|
+
'& .webchat__send-box-text-box__input, & .webchat__send-box-text-box__html-text-area': {
|
|
569
|
+
backgroundColor: string;
|
|
570
|
+
'&:not(:disabled):not([aria-disabled="true"])': {
|
|
571
|
+
color: string;
|
|
572
|
+
};
|
|
573
|
+
'&:disabled, &[aria-disabled="true"]': {
|
|
574
|
+
color: string;
|
|
575
|
+
};
|
|
576
|
+
'&::placeholder': {
|
|
577
|
+
color: string;
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
'& .webchat__send-box-text-box__input, & .webchat__send-box-text-box__text-area': {
|
|
581
|
+
maxHeight: string | number;
|
|
582
|
+
};
|
|
583
|
+
'& .webchat__send-box-text-box__glass': {
|
|
584
|
+
height: string;
|
|
585
|
+
left: number;
|
|
586
|
+
position: string;
|
|
587
|
+
top: number;
|
|
588
|
+
userSelect: number;
|
|
589
|
+
width: string;
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
sendStatus: {
|
|
594
|
+
color: string;
|
|
595
|
+
fontFamily: string;
|
|
596
|
+
fontSize: string | number;
|
|
597
|
+
paddingTop: number;
|
|
598
|
+
};
|
|
599
|
+
singleAttachmentActivity: {
|
|
600
|
+
'& > .bubble-box': {
|
|
601
|
+
maxWidth: number;
|
|
602
|
+
minWidth: number;
|
|
603
|
+
};
|
|
604
|
+
'& > .filler': {
|
|
605
|
+
minWidth: number;
|
|
606
|
+
};
|
|
607
|
+
};
|
|
608
|
+
spinnerAnimation: {
|
|
609
|
+
backgroundImage: string;
|
|
610
|
+
backgroundRepeat: string;
|
|
611
|
+
backgroundSize: string;
|
|
612
|
+
height: string | number;
|
|
613
|
+
width: string | number;
|
|
614
|
+
':not(.webchat__spinner--rtl)': {
|
|
615
|
+
marginRight: string | number;
|
|
616
|
+
};
|
|
617
|
+
'.webchat__spinner--rtl': {
|
|
618
|
+
marginLeft: string | number;
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
stackedLayout: {
|
|
622
|
+
'&.webchat__stacked-layout': {
|
|
623
|
+
marginLeft: number;
|
|
624
|
+
marginRight: number;
|
|
625
|
+
'& .webchat__stacked-layout__alignment-pad': {
|
|
626
|
+
transitionDuration: string;
|
|
627
|
+
transitionProperty: string;
|
|
628
|
+
width: number;
|
|
629
|
+
};
|
|
630
|
+
'&.webchat__stacked-layout--extra-trailing .webchat__stacked-layout__alignment-pad': {
|
|
631
|
+
width: number;
|
|
632
|
+
};
|
|
633
|
+
'& .webchat__stacked-layout__avatar-gutter': {
|
|
634
|
+
transitionDuration: string;
|
|
635
|
+
transitionProperty: string;
|
|
636
|
+
width: number;
|
|
637
|
+
};
|
|
638
|
+
'& .webchat__stacked-layout__attachment': {
|
|
639
|
+
maxWidth: number;
|
|
640
|
+
minWidth: number;
|
|
641
|
+
transitionDuration: string;
|
|
642
|
+
transitionProperty: string;
|
|
643
|
+
};
|
|
644
|
+
'& .webchat__stacked-layout__attachment-row': {
|
|
645
|
+
marginTop: number;
|
|
646
|
+
width: string;
|
|
647
|
+
};
|
|
648
|
+
'&.webchat__stacked-layout--no-message .webchat__stacked-layout__attachment-row.webchat__stacked-layout__attachment-row--first': {
|
|
649
|
+
marginTop: number;
|
|
650
|
+
};
|
|
651
|
+
'& .webchat__stacked-layout__message': {
|
|
652
|
+
maxWidth: number;
|
|
653
|
+
overflow: string;
|
|
654
|
+
transitionDuration: string;
|
|
655
|
+
transitionProperty: string;
|
|
656
|
+
};
|
|
657
|
+
'& .webchat__stacked-layout__nub-pad': {
|
|
658
|
+
transitionDuration: string;
|
|
659
|
+
transitionProperty: string;
|
|
660
|
+
width: number;
|
|
661
|
+
};
|
|
662
|
+
'&.webchat__stacked-layout--hide-avatar, &.webchat__stacked-layout--show-avatar': {
|
|
663
|
+
'& .webchat__stacked-layout__avatar-gutter': {
|
|
664
|
+
width: number;
|
|
665
|
+
};
|
|
666
|
+
};
|
|
667
|
+
'&.webchat__stacked-layout--hide-avatar, &.webchat__stacked-layout--show-avatar, &.webchat__stacked-layout--hide-nub, &.webchat__stacked-layout--show-nub': {
|
|
668
|
+
'& .webchat__stacked-layout__attachment, & .webchat__stacked-layout__message': {
|
|
669
|
+
maxWidth: number;
|
|
670
|
+
};
|
|
671
|
+
'& .webchat__stacked-layout__nub-pad': {
|
|
672
|
+
width: number;
|
|
673
|
+
};
|
|
674
|
+
};
|
|
675
|
+
'&:not(.webchat__stacked-layout--top-callout)': {
|
|
676
|
+
'& .webchat__stacked-layout__avatar-gutter, & .webchat__stacked-layout__content': {
|
|
677
|
+
justifyContent: string;
|
|
678
|
+
};
|
|
679
|
+
};
|
|
680
|
+
};
|
|
681
|
+
};
|
|
682
|
+
suggestedAction: {
|
|
683
|
+
'&.webchat__suggested-action': {
|
|
684
|
+
display: string;
|
|
685
|
+
maxWidth: string;
|
|
686
|
+
'& .webchat__suggested-action__button': {
|
|
687
|
+
alignItems: string;
|
|
688
|
+
borderRadius: string | number;
|
|
689
|
+
fontFamily: string;
|
|
690
|
+
fontSize: string;
|
|
691
|
+
height: string | number;
|
|
692
|
+
justifyContent: string;
|
|
693
|
+
maxWidth: string;
|
|
694
|
+
paddingLeft: number;
|
|
695
|
+
paddingRight: number;
|
|
696
|
+
whiteSpace: string;
|
|
697
|
+
width: string;
|
|
698
|
+
'&:disabled, &[aria-disabled="true"]': {
|
|
699
|
+
background: string;
|
|
700
|
+
borderColor: string;
|
|
701
|
+
borderStyle: string;
|
|
702
|
+
borderWidth: string | number;
|
|
703
|
+
color: string;
|
|
704
|
+
};
|
|
705
|
+
'&:not(:disabled):not([aria-disabled="true"])': {
|
|
706
|
+
background: string;
|
|
707
|
+
borderColor: string;
|
|
708
|
+
borderStyle: string;
|
|
709
|
+
borderWidth: string | number;
|
|
710
|
+
color: string;
|
|
711
|
+
};
|
|
712
|
+
};
|
|
713
|
+
'& .webchat__suggested-action__image': {
|
|
714
|
+
height: string | number;
|
|
715
|
+
};
|
|
716
|
+
'& .webchat__suggested-action--wrapping': {
|
|
717
|
+
height: string;
|
|
718
|
+
maxHeight: string | number;
|
|
719
|
+
minHeight: string | number;
|
|
720
|
+
};
|
|
721
|
+
'&:not(.webchat__suggested-action--rtl) .webchat__suggested-action__image + .webchat__suggested-action__text': {
|
|
722
|
+
paddingLeft: number;
|
|
723
|
+
};
|
|
724
|
+
'&.webchat__suggested-action--rtl .webchat__suggested-action__image + .webchat__suggested-action__text': {
|
|
725
|
+
paddingRight: number;
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
suggestedActions: {
|
|
730
|
+
'&.webchat__suggested-actions': {
|
|
731
|
+
'&.webchat__suggested-actions--carousel-layout': {
|
|
732
|
+
'& .webchat__suggested-actions__carousel': {
|
|
733
|
+
paddingBottom: number;
|
|
734
|
+
paddingTop: number;
|
|
735
|
+
'& .webchat__suggested-actions__button': {
|
|
736
|
+
paddingBottom: number;
|
|
737
|
+
paddingLeft: number;
|
|
738
|
+
paddingRight: number;
|
|
739
|
+
paddingTop: number;
|
|
740
|
+
};
|
|
741
|
+
'& .react-film__filmstrip': {
|
|
742
|
+
scrollbarWidth: string;
|
|
743
|
+
};
|
|
744
|
+
'& .react-film__flipper': {
|
|
745
|
+
'&:disabled, &[aria-disabled="true"]': {
|
|
746
|
+
'& .react-film__flipper__body': {
|
|
747
|
+
backgroundColor: string;
|
|
748
|
+
color: string;
|
|
749
|
+
};
|
|
750
|
+
};
|
|
751
|
+
'&:focus .react-film__flipper__body': {
|
|
752
|
+
backgroundColor: string;
|
|
753
|
+
color: string;
|
|
754
|
+
};
|
|
755
|
+
'&:hover .react-film__flipper__body': {
|
|
756
|
+
backgroundColor: string;
|
|
757
|
+
color: string;
|
|
758
|
+
};
|
|
759
|
+
'& .react-film__flipper__body': {
|
|
760
|
+
background: string;
|
|
761
|
+
color: string;
|
|
762
|
+
outline: number;
|
|
763
|
+
};
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
'&:not(.webchat__suggested-actions--rtl)': {
|
|
767
|
+
'& .react-film__filmstrip__item:first-child': {
|
|
768
|
+
paddingLeft: number;
|
|
769
|
+
};
|
|
770
|
+
'& .react-film__filmstrip__item:last-child': {
|
|
771
|
+
paddingRight: number;
|
|
772
|
+
};
|
|
773
|
+
'& .react-film__flipper + .react-film__filmstrip': {
|
|
774
|
+
'& .react-film__filmstrip__item:first-child': {
|
|
775
|
+
paddingLeft: number;
|
|
776
|
+
};
|
|
777
|
+
'& .react-film__filmstrip__item:last-child': {
|
|
778
|
+
paddingRight: number;
|
|
779
|
+
};
|
|
780
|
+
};
|
|
781
|
+
};
|
|
782
|
+
'&.webchat__suggested-actions--rtl': {
|
|
783
|
+
'& .react-film__filmstrip__item:first-child': {
|
|
784
|
+
paddingRight: number;
|
|
785
|
+
};
|
|
786
|
+
'& .react-film__filmstrip__item:last-child': {
|
|
787
|
+
paddingLeft: number;
|
|
788
|
+
};
|
|
789
|
+
'& .react-film__flipper + .react-film__filmstrip': {
|
|
790
|
+
'& .react-film__filmstrip__item:first-child': {
|
|
791
|
+
paddingRight: number;
|
|
792
|
+
};
|
|
793
|
+
'& .react-film__filmstrip__item:last-child': {
|
|
794
|
+
paddingLeft: number;
|
|
795
|
+
};
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
};
|
|
799
|
+
'&.webchat__suggested-actions--flow-layout': {
|
|
800
|
+
'& .webchat__suggested-actions__flow-box': {
|
|
801
|
+
maxHeight: undefined;
|
|
802
|
+
overflowY: string;
|
|
803
|
+
paddingBottom: number;
|
|
804
|
+
paddingLeft: number;
|
|
805
|
+
paddingRight: number;
|
|
806
|
+
paddingTop: number;
|
|
807
|
+
};
|
|
808
|
+
'& .webchat__suggested-actions__item': {
|
|
809
|
+
maxWidth: string;
|
|
810
|
+
overflow: string;
|
|
811
|
+
};
|
|
812
|
+
'& .webchat__suggested-actions__button': {
|
|
813
|
+
padding: number;
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
'&.webchat__suggested-actions--stacked-layout': {
|
|
817
|
+
'& .webchat__suggested-actions__stack': {
|
|
818
|
+
maxHeight: number | "auto";
|
|
819
|
+
overflowY: string;
|
|
820
|
+
paddingBottom: number;
|
|
821
|
+
paddingLeft: number;
|
|
822
|
+
paddingRight: number;
|
|
823
|
+
paddingTop: number;
|
|
824
|
+
};
|
|
825
|
+
'& .webchat__suggested-actions__button': {
|
|
826
|
+
paddingBottom: number;
|
|
827
|
+
paddingLeft: number;
|
|
828
|
+
paddingRight: number;
|
|
829
|
+
paddingTop: number;
|
|
830
|
+
};
|
|
831
|
+
};
|
|
832
|
+
'&.webchat__suggested-actions--flow-layout, &.webchat__suggested-actions--stacked-layout': {
|
|
833
|
+
'& .webchat__suggested-actions__button-text': {
|
|
834
|
+
overflow: string;
|
|
835
|
+
textOverflow: string;
|
|
836
|
+
};
|
|
837
|
+
'& .webchat__suggested-actions__button-text-stacked-text-wrap': {
|
|
838
|
+
alignItems: string;
|
|
839
|
+
display: string;
|
|
840
|
+
whiteSpace: string;
|
|
841
|
+
};
|
|
842
|
+
};
|
|
843
|
+
};
|
|
844
|
+
};
|
|
845
|
+
textContent: {
|
|
846
|
+
fontFamily: string;
|
|
847
|
+
margin: number;
|
|
848
|
+
minHeight: number;
|
|
849
|
+
padding: number;
|
|
850
|
+
'& > :first-child': {
|
|
851
|
+
marginTop: number;
|
|
852
|
+
};
|
|
853
|
+
'& > :last-child': {
|
|
854
|
+
marginBottom: number;
|
|
855
|
+
};
|
|
856
|
+
'&.markdown': {
|
|
857
|
+
'& img:not(.webchat__markdown__external-link-icon)': {
|
|
858
|
+
maxWidth: number;
|
|
859
|
+
width: string;
|
|
860
|
+
};
|
|
861
|
+
'& img.webchat__markdown__external-link-icon': {
|
|
862
|
+
backgroundImage: string;
|
|
863
|
+
height: string;
|
|
864
|
+
marginLeft: string;
|
|
865
|
+
};
|
|
866
|
+
'& pre': {
|
|
867
|
+
overflow: string;
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
};
|
|
871
|
+
toast: {
|
|
872
|
+
fontFamily: string;
|
|
873
|
+
fontSize: string | number;
|
|
874
|
+
minHeight: string | number;
|
|
875
|
+
'&.webchat__toast--error': {
|
|
876
|
+
color: string;
|
|
877
|
+
fill: string;
|
|
878
|
+
};
|
|
879
|
+
'&.webchat__toast--info': {
|
|
880
|
+
color: string;
|
|
881
|
+
fill: string;
|
|
882
|
+
};
|
|
883
|
+
'&.webchat__toast--success': {
|
|
884
|
+
color: string;
|
|
885
|
+
fill: string;
|
|
886
|
+
};
|
|
887
|
+
'&.webchat__toast--warn': {
|
|
888
|
+
color: string;
|
|
889
|
+
fill: string;
|
|
890
|
+
};
|
|
891
|
+
'& .webchat__toast__iconBox': {
|
|
892
|
+
alignItems: string;
|
|
893
|
+
display: string;
|
|
894
|
+
flexShrink: number;
|
|
895
|
+
height: string | number;
|
|
896
|
+
justifyContent: string;
|
|
897
|
+
width: string | number;
|
|
898
|
+
};
|
|
899
|
+
'& .webchat__toast__dismissButton': {
|
|
900
|
+
alignItems: string;
|
|
901
|
+
appearance: string;
|
|
902
|
+
backgroundColor: string;
|
|
903
|
+
border: number;
|
|
904
|
+
display: string;
|
|
905
|
+
height: string | number;
|
|
906
|
+
justifyContent: string;
|
|
907
|
+
outline: number;
|
|
908
|
+
padding: number;
|
|
909
|
+
width: string | number;
|
|
910
|
+
'&:focus .webchat__toast__dismissButtonFocus': {
|
|
911
|
+
borderColor: string;
|
|
912
|
+
};
|
|
913
|
+
'&:hover .webchat__toast__dismissButtonFocus': {
|
|
914
|
+
backgroundColor: string;
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
'& .webchat__toast__dismissButtonFocus': {
|
|
918
|
+
alignItems: string;
|
|
919
|
+
borderColor: string;
|
|
920
|
+
borderStyle: string;
|
|
921
|
+
borderWidth: number;
|
|
922
|
+
borderRadius: number;
|
|
923
|
+
display: string;
|
|
924
|
+
height: number;
|
|
925
|
+
justifyContent: string;
|
|
926
|
+
width: number;
|
|
927
|
+
};
|
|
928
|
+
'& .webchat__toast__text': {
|
|
929
|
+
alignSelf: string;
|
|
930
|
+
paddingBottom: string | number;
|
|
931
|
+
paddingTop: string | number;
|
|
932
|
+
};
|
|
933
|
+
};
|
|
934
|
+
toaster: {
|
|
935
|
+
overflowY: string;
|
|
936
|
+
'&:not(.webchat__toaster--expandable)': {
|
|
937
|
+
maxHeight: string | number;
|
|
938
|
+
};
|
|
939
|
+
'&.webchat__toaster--expandable:not(.webchat__toaster--expanded) > ul': {
|
|
940
|
+
height: number;
|
|
941
|
+
};
|
|
942
|
+
'&.webchat__toaster--expandable.webchat__toaster--expanded': {
|
|
943
|
+
maxHeight: string | number;
|
|
944
|
+
};
|
|
945
|
+
'& .webchat__toaster__header': {
|
|
946
|
+
alignItems: string;
|
|
947
|
+
alignSelf: string;
|
|
948
|
+
appearance: string;
|
|
949
|
+
backgroundColor: string;
|
|
950
|
+
border: number;
|
|
951
|
+
display: string;
|
|
952
|
+
fontFamily: string;
|
|
953
|
+
fontSize: string | number;
|
|
954
|
+
minHeight: string | number;
|
|
955
|
+
outline: number;
|
|
956
|
+
padding: number;
|
|
957
|
+
textAlign: string;
|
|
958
|
+
'&:focus .webchat__toaster__expandIconFocus': {
|
|
959
|
+
borderColor: string;
|
|
960
|
+
};
|
|
961
|
+
'&:hover .webchat__toaster__expandIconFocus': {
|
|
962
|
+
backgroundColor: string;
|
|
963
|
+
};
|
|
964
|
+
};
|
|
965
|
+
'& .webchat__toaster__expandIconFocus': {
|
|
966
|
+
alignItems: string;
|
|
967
|
+
borderColor: string;
|
|
968
|
+
borderStyle: string;
|
|
969
|
+
borderWidth: number;
|
|
970
|
+
borderRadius: number;
|
|
971
|
+
display: string;
|
|
972
|
+
height: number;
|
|
973
|
+
justifyContent: string;
|
|
974
|
+
width: number;
|
|
975
|
+
};
|
|
976
|
+
'&.webchat__toaster--error': {
|
|
977
|
+
'&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
|
|
978
|
+
backgroundColor: string;
|
|
979
|
+
};
|
|
980
|
+
'& .webchat__toaster__header': {
|
|
981
|
+
color: string;
|
|
982
|
+
fill: string;
|
|
983
|
+
};
|
|
984
|
+
};
|
|
985
|
+
'&.webchat__toaster--info': {
|
|
986
|
+
'&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
|
|
987
|
+
backgroundColor: string;
|
|
988
|
+
};
|
|
989
|
+
'& .webchat__toaster__header': {
|
|
990
|
+
color: string;
|
|
991
|
+
fill: string;
|
|
992
|
+
};
|
|
993
|
+
};
|
|
994
|
+
'&.webchat__toaster--success': {
|
|
995
|
+
'&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
|
|
996
|
+
backgroundColor: string;
|
|
997
|
+
};
|
|
998
|
+
'& .webchat__toaster__header': {
|
|
999
|
+
color: string;
|
|
1000
|
+
fill: string;
|
|
1001
|
+
};
|
|
1002
|
+
};
|
|
1003
|
+
'&.webchat__toaster--warn': {
|
|
1004
|
+
'&:not(.webchat__toaster--expandable), & .webchat__toaster__header': {
|
|
1005
|
+
backgroundColor: string;
|
|
1006
|
+
};
|
|
1007
|
+
'& .webchat__toaster__header': {
|
|
1008
|
+
color: string;
|
|
1009
|
+
fill: string;
|
|
1010
|
+
};
|
|
1011
|
+
};
|
|
1012
|
+
'& .webchat__toaster__expandLevelIconBox': {
|
|
1013
|
+
height: string | number;
|
|
1014
|
+
width: string | number;
|
|
1015
|
+
};
|
|
1016
|
+
'& .webchat__toaster__expandIcon': {
|
|
1017
|
+
height: string | number;
|
|
1018
|
+
width: string | number;
|
|
1019
|
+
};
|
|
1020
|
+
'& .webchat__toaster__expandText': {
|
|
1021
|
+
padding: string;
|
|
1022
|
+
};
|
|
1023
|
+
'& .webchat__toaster__expandLevelIconBox, & .webchat__toaster__expandIcon': {
|
|
1024
|
+
alignItems: string;
|
|
1025
|
+
display: string;
|
|
1026
|
+
justifyContent: string;
|
|
1027
|
+
};
|
|
1028
|
+
'& .webchat__toaster__list': {
|
|
1029
|
+
margin: number;
|
|
1030
|
+
overflowY: string;
|
|
1031
|
+
padding: number;
|
|
1032
|
+
};
|
|
1033
|
+
'& .webchat__toaster__listItem:first-child:last-child': {
|
|
1034
|
+
overflow: string;
|
|
1035
|
+
};
|
|
1036
|
+
'& .webchat__toaster__listItem:not(:first-child), & .webchat__toaster__listItem:not(:last-child)': {
|
|
1037
|
+
borderBottomColor: string;
|
|
1038
|
+
borderBottomStyle: string;
|
|
1039
|
+
borderBottomWidth: number;
|
|
1040
|
+
minHeight: number;
|
|
1041
|
+
};
|
|
1042
|
+
};
|
|
1043
|
+
typingAnimation: {
|
|
1044
|
+
backgroundImage: string;
|
|
1045
|
+
backgroundRepeat: string;
|
|
1046
|
+
height: string | number;
|
|
1047
|
+
width: string | number;
|
|
1048
|
+
};
|
|
1049
|
+
typingIndicator: {
|
|
1050
|
+
paddingBottom: number;
|
|
1051
|
+
'&:not(.webchat__typingIndicator--rtl)': {
|
|
1052
|
+
paddingLeft: number;
|
|
1053
|
+
};
|
|
1054
|
+
'&.webchat__typingIndicator--rtl': {
|
|
1055
|
+
paddingRight: number;
|
|
1056
|
+
};
|
|
1057
|
+
};
|
|
1058
|
+
uploadButton: {
|
|
1059
|
+
width: string | number;
|
|
1060
|
+
'& > .icon > svg': {
|
|
1061
|
+
fill: string;
|
|
1062
|
+
};
|
|
1063
|
+
'& > input:hover + .icon > svg': {
|
|
1064
|
+
fill: string;
|
|
1065
|
+
};
|
|
1066
|
+
'& > input:focus + .icon > svg': {
|
|
1067
|
+
fill: string;
|
|
1068
|
+
};
|
|
1069
|
+
};
|
|
1070
|
+
videoAttachment: {};
|
|
1071
|
+
videoContent: {
|
|
1072
|
+
height: string | number;
|
|
1073
|
+
width: string;
|
|
1074
|
+
};
|
|
1075
|
+
vimeoContent: {
|
|
1076
|
+
border: number;
|
|
1077
|
+
height: string | number;
|
|
1078
|
+
width: string;
|
|
1079
|
+
};
|
|
1080
|
+
warningNotification: {
|
|
1081
|
+
alignItems: string;
|
|
1082
|
+
color: string;
|
|
1083
|
+
display: string;
|
|
1084
|
+
fontFamily: string;
|
|
1085
|
+
fontSize: string | number;
|
|
1086
|
+
marginBottom: number;
|
|
1087
|
+
marginLeft: number;
|
|
1088
|
+
marginRight: number;
|
|
1089
|
+
marginTop: number;
|
|
1090
|
+
'& > svg': {
|
|
1091
|
+
fill: string;
|
|
1092
|
+
'&:not(webchat__warning--rtl)': {
|
|
1093
|
+
paddingRight: number;
|
|
1094
|
+
};
|
|
1095
|
+
'&.webchat__warning--rtl': {
|
|
1096
|
+
paddingLeft: number;
|
|
1097
|
+
};
|
|
1098
|
+
};
|
|
1099
|
+
};
|
|
1100
|
+
youTubeContent: {
|
|
1101
|
+
border: number;
|
|
1102
|
+
height: string | number;
|
|
1103
|
+
width: string;
|
|
1104
|
+
};
|
|
1105
|
+
};
|
|
1106
|
+
//# sourceMappingURL=createFullStyleSet.d.ts.map
|