@fullsession.io/fs-feedback-widget 1.1.8 → 1.2.1
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 +2 -2
- package/src/main.js +1 -1
- package/src/widgetPages/App.css +5 -5
package/package.json
CHANGED
package/src/App.svelte
CHANGED
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
</script>
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
<
|
|
106
|
+
<container>
|
|
107
107
|
|
|
108
108
|
{#if buttonVisible}
|
|
109
109
|
<div class="widget" on:click={openWidget}>
|
|
@@ -138,5 +138,5 @@
|
|
|
138
138
|
margin-left: 20%;">{feedback.wgThanksMsg}</div>
|
|
139
139
|
</div>
|
|
140
140
|
{/if}
|
|
141
|
-
</
|
|
141
|
+
</container>
|
|
142
142
|
|
package/src/main.js
CHANGED
|
@@ -21,7 +21,7 @@ export function feedbackCreator(response) {
|
|
|
21
21
|
// SiteId: 98,
|
|
22
22
|
// UserId: 262,
|
|
23
23
|
// wgLanguage: "en",
|
|
24
|
-
// wgPosition: "
|
|
24
|
+
// wgPosition: "0",
|
|
25
25
|
// wgAccentColor: "#51797b",
|
|
26
26
|
// wgAlternateColor: true,
|
|
27
27
|
// wgQuestion: "How would you rate your experience?" ,
|
package/src/widgetPages/App.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
width:
|
|
1
|
+
container{
|
|
2
|
+
width: fit-content;
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: var(--wgPositionVertical);
|
|
5
|
-
position:
|
|
5
|
+
position: fixed;
|
|
6
6
|
top: 0; right: 0; bottom: 0; left: 0;
|
|
7
|
-
|
|
8
|
-
height: 100%;
|
|
7
|
+
height: fit-content;
|
|
9
8
|
align-items: var(--wgPositionHorizintal);
|
|
10
9
|
padding: 0;
|
|
10
|
+
z-index: 100000;
|
|
11
11
|
}
|
|
12
12
|
.widget {
|
|
13
13
|
background-color: var(--widgetColor);
|