@microsoft/omnichannel-chat-components 0.1.0-main.3e712be → 0.1.0-main.cf54410
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/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/defaultCurrentCallStyleProps.js +5 -5
- package/lib/cjs/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/defaultIncomingCallStyleProps.js +8 -8
- package/lib/cjs/components/postchatsurveypane/PostChatSurveyPane.js +2 -2
- package/lib/esm/components/callingcontainer/subcomponents/CurrentCall/common/defaultStyles/defaultCurrentCallStyleProps.js +5 -5
- package/lib/esm/components/callingcontainer/subcomponents/IncomingCall/common/defaultStyles/defaultIncomingCallStyleProps.js +8 -8
- package/lib/esm/components/postchatsurveypane/PostChatSurveyPane.js +2 -2
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ const defaultCurrentCallStyleProps = {
|
|
|
13
13
|
},
|
|
14
14
|
micButtonStyleProps: {
|
|
15
15
|
borderRadius: "2px",
|
|
16
|
-
color: "
|
|
16
|
+
color: "#FFFFFF",
|
|
17
17
|
backgroundColor: "#3d3c3c",
|
|
18
18
|
height: "45px",
|
|
19
19
|
width: "50px",
|
|
@@ -24,7 +24,7 @@ const defaultCurrentCallStyleProps = {
|
|
|
24
24
|
},
|
|
25
25
|
videoOffButtonStyleProps: {
|
|
26
26
|
borderRadius: "2px",
|
|
27
|
-
color: "
|
|
27
|
+
color: "#FFFFFF",
|
|
28
28
|
backgroundColor: "#3d3c3c",
|
|
29
29
|
height: "45px",
|
|
30
30
|
width: "50px",
|
|
@@ -38,8 +38,8 @@ const defaultCurrentCallStyleProps = {
|
|
|
38
38
|
},
|
|
39
39
|
endCallButtonStyleProps: {
|
|
40
40
|
borderRadius: "2px",
|
|
41
|
-
color: "
|
|
42
|
-
backgroundColor: "
|
|
41
|
+
color: "#FFFFFF",
|
|
42
|
+
backgroundColor: "#DC0000",
|
|
43
43
|
lineHeight: "50px",
|
|
44
44
|
height: "45px",
|
|
45
45
|
width: "50px",
|
|
@@ -48,7 +48,7 @@ const defaultCurrentCallStyleProps = {
|
|
|
48
48
|
currentCallTimerStyleProps: {
|
|
49
49
|
borderRadius: "2px",
|
|
50
50
|
margin: "1px",
|
|
51
|
-
color: "
|
|
51
|
+
color: "#FFFFFF",
|
|
52
52
|
paddingTop: "18px",
|
|
53
53
|
fontSize: 12,
|
|
54
54
|
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
@@ -12,8 +12,8 @@ const defaultIncomingCallStyleProps = {
|
|
|
12
12
|
},
|
|
13
13
|
audioCallButtonStyleProps: {
|
|
14
14
|
borderRadius: "50%",
|
|
15
|
-
color: "
|
|
16
|
-
backgroundColor: "
|
|
15
|
+
color: "#FFFFFF",
|
|
16
|
+
backgroundColor: "#008000",
|
|
17
17
|
lineHeight: "40px",
|
|
18
18
|
height: "40px",
|
|
19
19
|
width: "40px",
|
|
@@ -24,8 +24,8 @@ const defaultIncomingCallStyleProps = {
|
|
|
24
24
|
},
|
|
25
25
|
videoCallButtonStyleProps: {
|
|
26
26
|
borderRadius: "50%",
|
|
27
|
-
color: "
|
|
28
|
-
backgroundColor: "
|
|
27
|
+
color: "#FFFFFF",
|
|
28
|
+
backgroundColor: "#008000",
|
|
29
29
|
lineHeight: "40px",
|
|
30
30
|
height: "40px",
|
|
31
31
|
width: "40px",
|
|
@@ -40,8 +40,8 @@ const defaultIncomingCallStyleProps = {
|
|
|
40
40
|
},
|
|
41
41
|
declineCallButtonStyleProps: {
|
|
42
42
|
borderRadius: "50%",
|
|
43
|
-
color: "
|
|
44
|
-
backgroundColor: "
|
|
43
|
+
color: "#FFFFFF",
|
|
44
|
+
backgroundColor: "#DC0000",
|
|
45
45
|
lineHeight: "40px",
|
|
46
46
|
height: "40px",
|
|
47
47
|
width: "40px",
|
|
@@ -50,12 +50,12 @@ const defaultIncomingCallStyleProps = {
|
|
|
50
50
|
},
|
|
51
51
|
incomingCallTitleStyleProps: {
|
|
52
52
|
margin: "0 5px",
|
|
53
|
-
color: "
|
|
53
|
+
color: "#FFFFFF",
|
|
54
54
|
fontSize: 12,
|
|
55
55
|
fontFamily: "Segoe UI, Arial, sans-serif"
|
|
56
56
|
},
|
|
57
57
|
itemFocusStyleProps: {
|
|
58
|
-
outline: "2px solid
|
|
58
|
+
outline: "2px solid #FFFFFF"
|
|
59
59
|
}
|
|
60
60
|
};
|
|
61
61
|
exports.defaultIncomingCallStyleProps = defaultIncomingCallStyleProps;
|
|
@@ -27,8 +27,8 @@ function PostChatSurveyPane(props) {
|
|
|
27
27
|
};
|
|
28
28
|
const iframeStyles = {
|
|
29
29
|
height: "100vh",
|
|
30
|
-
width: "
|
|
31
|
-
|
|
30
|
+
width: "100%",
|
|
31
|
+
display: "block"
|
|
32
32
|
};
|
|
33
33
|
return /*#__PURE__*/_react2.default.createElement(_react2.default.Fragment, null, /*#__PURE__*/_react2.default.createElement(_react.Stack, {
|
|
34
34
|
id: elementId,
|
|
@@ -7,7 +7,7 @@ export const defaultCurrentCallStyleProps = {
|
|
|
7
7
|
},
|
|
8
8
|
micButtonStyleProps: {
|
|
9
9
|
borderRadius: "2px",
|
|
10
|
-
color: "
|
|
10
|
+
color: "#FFFFFF",
|
|
11
11
|
backgroundColor: "#3d3c3c",
|
|
12
12
|
height: "45px",
|
|
13
13
|
width: "50px",
|
|
@@ -18,7 +18,7 @@ export const defaultCurrentCallStyleProps = {
|
|
|
18
18
|
},
|
|
19
19
|
videoOffButtonStyleProps: {
|
|
20
20
|
borderRadius: "2px",
|
|
21
|
-
color: "
|
|
21
|
+
color: "#FFFFFF",
|
|
22
22
|
backgroundColor: "#3d3c3c",
|
|
23
23
|
height: "45px",
|
|
24
24
|
width: "50px",
|
|
@@ -32,8 +32,8 @@ export const defaultCurrentCallStyleProps = {
|
|
|
32
32
|
},
|
|
33
33
|
endCallButtonStyleProps: {
|
|
34
34
|
borderRadius: "2px",
|
|
35
|
-
color: "
|
|
36
|
-
backgroundColor: "
|
|
35
|
+
color: "#FFFFFF",
|
|
36
|
+
backgroundColor: "#DC0000",
|
|
37
37
|
lineHeight: "50px",
|
|
38
38
|
height: "45px",
|
|
39
39
|
width: "50px",
|
|
@@ -42,7 +42,7 @@ export const defaultCurrentCallStyleProps = {
|
|
|
42
42
|
currentCallTimerStyleProps: {
|
|
43
43
|
borderRadius: "2px",
|
|
44
44
|
margin: "1px",
|
|
45
|
-
color: "
|
|
45
|
+
color: "#FFFFFF",
|
|
46
46
|
paddingTop: "18px",
|
|
47
47
|
fontSize: 12,
|
|
48
48
|
fontFamily: "Segoe UI, Arial, sans-serif",
|
|
@@ -6,8 +6,8 @@ export const defaultIncomingCallStyleProps = {
|
|
|
6
6
|
},
|
|
7
7
|
audioCallButtonStyleProps: {
|
|
8
8
|
borderRadius: "50%",
|
|
9
|
-
color: "
|
|
10
|
-
backgroundColor: "
|
|
9
|
+
color: "#FFFFFF",
|
|
10
|
+
backgroundColor: "#008000",
|
|
11
11
|
lineHeight: "40px",
|
|
12
12
|
height: "40px",
|
|
13
13
|
width: "40px",
|
|
@@ -18,8 +18,8 @@ export const defaultIncomingCallStyleProps = {
|
|
|
18
18
|
},
|
|
19
19
|
videoCallButtonStyleProps: {
|
|
20
20
|
borderRadius: "50%",
|
|
21
|
-
color: "
|
|
22
|
-
backgroundColor: "
|
|
21
|
+
color: "#FFFFFF",
|
|
22
|
+
backgroundColor: "#008000",
|
|
23
23
|
lineHeight: "40px",
|
|
24
24
|
height: "40px",
|
|
25
25
|
width: "40px",
|
|
@@ -34,8 +34,8 @@ export const defaultIncomingCallStyleProps = {
|
|
|
34
34
|
},
|
|
35
35
|
declineCallButtonStyleProps: {
|
|
36
36
|
borderRadius: "50%",
|
|
37
|
-
color: "
|
|
38
|
-
backgroundColor: "
|
|
37
|
+
color: "#FFFFFF",
|
|
38
|
+
backgroundColor: "#DC0000",
|
|
39
39
|
lineHeight: "40px",
|
|
40
40
|
height: "40px",
|
|
41
41
|
width: "40px",
|
|
@@ -44,11 +44,11 @@ export const defaultIncomingCallStyleProps = {
|
|
|
44
44
|
},
|
|
45
45
|
incomingCallTitleStyleProps: {
|
|
46
46
|
margin: "0 5px",
|
|
47
|
-
color: "
|
|
47
|
+
color: "#FFFFFF",
|
|
48
48
|
fontSize: 12,
|
|
49
49
|
fontFamily: "Segoe UI, Arial, sans-serif"
|
|
50
50
|
},
|
|
51
51
|
itemFocusStyleProps: {
|
|
52
|
-
outline: "2px solid
|
|
52
|
+
outline: "2px solid #FFFFFF"
|
|
53
53
|
}
|
|
54
54
|
};
|
|
@@ -14,8 +14,8 @@ function PostChatSurveyPane(props) {
|
|
|
14
14
|
};
|
|
15
15
|
const iframeStyles = {
|
|
16
16
|
height: "100vh",
|
|
17
|
-
width: "
|
|
18
|
-
|
|
17
|
+
width: "100%",
|
|
18
|
+
display: "block"
|
|
19
19
|
};
|
|
20
20
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Stack, {
|
|
21
21
|
id: elementId,
|
package/package.json
CHANGED