@fullsession.io/fs-feedback-widget 1.2.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/App.svelte +1 -1
- package/src/widgetPages/App.css +2 -0
- package/src/widgetPages/reactionpage.css +14 -0
package/package.json
CHANGED
package/src/App.svelte
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
$:document.documentElement.style.setProperty('--widgetColor', widgetColor);
|
|
10
10
|
let widgetTextColor="";
|
|
11
11
|
let iconColor = "";
|
|
12
|
-
let widgetName="
|
|
12
|
+
let widgetName="Feedback"
|
|
13
13
|
if(feedback.wgLanguage == "en"){
|
|
14
14
|
widgetName = "feedback"
|
|
15
15
|
} else if(feedback.wgLanguage == "ar"){
|
package/src/widgetPages/App.css
CHANGED
|
@@ -45,6 +45,7 @@ container{
|
|
|
45
45
|
box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
|
|
46
46
|
}
|
|
47
47
|
.cont {
|
|
48
|
+
pointer-events: auto;
|
|
48
49
|
width: 320px;
|
|
49
50
|
height: fit-content;
|
|
50
51
|
background-color: rgb(255, 255, 255);
|
|
@@ -72,6 +73,7 @@ container{
|
|
|
72
73
|
|
|
73
74
|
}
|
|
74
75
|
.closeCont{
|
|
76
|
+
pointer-events: auto;
|
|
75
77
|
background-color: #4d5167;
|
|
76
78
|
width: 27px;
|
|
77
79
|
height: 27px;
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.iconTextCont {
|
|
23
|
+
pointer-events: auto;
|
|
23
24
|
display: flex;
|
|
24
25
|
flex-direction: column;
|
|
25
26
|
align-items: center;
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
display: none;
|
|
32
33
|
}
|
|
33
34
|
.iconTextCont:hover{
|
|
35
|
+
pointer-events: auto;
|
|
34
36
|
cursor: pointer;
|
|
35
37
|
}
|
|
36
38
|
.reactionIcon:hover + .reactionText {
|
|
@@ -39,12 +41,14 @@
|
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
.commentContainer{
|
|
44
|
+
pointer-events: auto;
|
|
42
45
|
display: flex;
|
|
43
46
|
flex-direction: column;
|
|
44
47
|
height: 291px;
|
|
45
48
|
pointer-events: auto;
|
|
46
49
|
}
|
|
47
50
|
.textAreaCont{
|
|
51
|
+
pointer-events: auto;
|
|
48
52
|
width: 100%;
|
|
49
53
|
height: 140px;
|
|
50
54
|
background-color: #eaeaeb;
|
|
@@ -62,6 +66,7 @@
|
|
|
62
66
|
|
|
63
67
|
}
|
|
64
68
|
.SendButtonCommentComponent{
|
|
69
|
+
pointer-events: auto;
|
|
65
70
|
color: #ffff;
|
|
66
71
|
font-size: 12px;
|
|
67
72
|
text-align: center;
|
|
@@ -69,6 +74,7 @@
|
|
|
69
74
|
|
|
70
75
|
}
|
|
71
76
|
.sendButtonContCommentComp{
|
|
77
|
+
pointer-events: auto;
|
|
72
78
|
background-color: var(--buttonColor);
|
|
73
79
|
width: 50px;
|
|
74
80
|
height: 29px;
|
|
@@ -82,6 +88,7 @@
|
|
|
82
88
|
}
|
|
83
89
|
|
|
84
90
|
.CommentButtonContDisable{
|
|
91
|
+
pointer-events: auto;
|
|
85
92
|
background-color: #cccccc;
|
|
86
93
|
width: 50px;
|
|
87
94
|
height: 29px;
|
|
@@ -93,17 +100,20 @@
|
|
|
93
100
|
border: 0px;
|
|
94
101
|
}
|
|
95
102
|
.CommentButtonTxtDisable{
|
|
103
|
+
pointer-events: auto;
|
|
96
104
|
color: black;
|
|
97
105
|
font-size: 12px;
|
|
98
106
|
text-align: center;
|
|
99
107
|
margin-top: 2px;
|
|
100
108
|
}
|
|
101
109
|
.footer{
|
|
110
|
+
pointer-events: auto;
|
|
102
111
|
display: flex;
|
|
103
112
|
justify-content: flex-end;
|
|
104
113
|
}
|
|
105
114
|
|
|
106
115
|
.icons-second{
|
|
116
|
+
|
|
107
117
|
display: flex;
|
|
108
118
|
flex-direction: row;
|
|
109
119
|
justify-content: space-evenly;
|
|
@@ -136,11 +146,13 @@
|
|
|
136
146
|
display: var(--loveDisplay);
|
|
137
147
|
}
|
|
138
148
|
.emailContainer{
|
|
149
|
+
pointer-events: auto;
|
|
139
150
|
display: flex;
|
|
140
151
|
flex-direction: column;
|
|
141
152
|
height: 220px;
|
|
142
153
|
}
|
|
143
154
|
#emailInputCont{
|
|
155
|
+
pointer-events: auto;
|
|
144
156
|
pointer-events: auto;
|
|
145
157
|
width: 100%;
|
|
146
158
|
height: 46px;
|
|
@@ -152,6 +164,7 @@
|
|
|
152
164
|
|
|
153
165
|
}
|
|
154
166
|
#EmailTextArea{
|
|
167
|
+
pointer-events: auto;
|
|
155
168
|
text-align: center;
|
|
156
169
|
border: 0px;
|
|
157
170
|
background-color: #eaeaeb;
|
|
@@ -167,6 +180,7 @@
|
|
|
167
180
|
font-size: 17px;
|
|
168
181
|
}
|
|
169
182
|
.emailFooter{
|
|
183
|
+
pointer-events: auto;
|
|
170
184
|
display: flex;
|
|
171
185
|
justify-content: flex-end;
|
|
172
186
|
flex-direction: row;
|