pushfeedback 0.0.11 → 0.0.13
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/cjs/feedback-button_2.cjs.entry.js +1 -1049
- package/dist/cjs/index-fb471064.js +1 -0
- package/dist/cjs/index.cjs.js +1 -2
- package/dist/cjs/loader.cjs.js +1 -22
- package/dist/cjs/pushfeedback.cjs.js +1 -23
- package/dist/collection/components/feedback-button/feedback-button.js +1 -343
- package/dist/collection/components/feedback-modal/feedback-modal.js +1 -529
- package/dist/collection/index.js +1 -1
- package/dist/components/feedback-button.js +1 -104
- package/dist/components/feedback-modal.js +1 -6
- package/dist/components/feedback-modal2.js +1 -1023
- package/dist/components/index.js +1 -3
- package/dist/esm/feedback-button_2.entry.js +1 -1044
- package/dist/esm/index-16e15d67.js +1 -0
- package/dist/esm/index.js +0 -1
- package/dist/esm/loader.js +1 -18
- package/dist/esm/polyfills/core-js.js +1 -11
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/polyfills/dom.js +1 -79
- package/dist/esm/polyfills/es5-html-element.js +1 -1
- package/dist/esm/polyfills/index.js +1 -34
- package/dist/esm/polyfills/system.js +1 -6
- package/dist/esm/pushfeedback.js +1 -18
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/pushfeedback/p-61c1ea51.entry.js +1 -0
- package/dist/pushfeedback/p-63230cb5.js +1 -0
- package/dist/pushfeedback/pushfeedback.esm.js +1 -1
- package/dist/types/components/feedback-modal/feedback-modal.d.ts +2 -0
- package/package.json +3 -3
- package/dist/cjs/index-d5ac8167.js +0 -1469
- package/dist/esm/index-74109694.js +0 -1441
- package/dist/pushfeedback/p-38d135e1.js +0 -2
- package/dist/pushfeedback/p-9ac3c49b.entry.js +0 -1
|
@@ -1,529 +1 @@
|
|
|
1
|
-
import { h } from '@stencil/core';
|
|
2
|
-
import domtoimage from 'dom-to-image';
|
|
3
|
-
export class FeedbackModal {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.handleSubmit = async (event) => {
|
|
6
|
-
event.preventDefault();
|
|
7
|
-
this.resetOverflow();
|
|
8
|
-
this.showScreenshotMode = false;
|
|
9
|
-
this.showModal = false;
|
|
10
|
-
this.sending = true;
|
|
11
|
-
let encodedScreenshot = "";
|
|
12
|
-
if (this.encodedScreenshot) {
|
|
13
|
-
await this.encodedScreenshot.then((data) => {
|
|
14
|
-
encodedScreenshot = data;
|
|
15
|
-
}).catch((error) => {
|
|
16
|
-
console.log(error);
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
try {
|
|
20
|
-
const res = await fetch('https://app.pushfeedback.com/api/feedback/', {
|
|
21
|
-
method: 'POST',
|
|
22
|
-
body: JSON.stringify({
|
|
23
|
-
url: window.location.href,
|
|
24
|
-
message: this.formMessage,
|
|
25
|
-
email: this.formEmail,
|
|
26
|
-
project: this.project,
|
|
27
|
-
screenshot: encodedScreenshot
|
|
28
|
-
}),
|
|
29
|
-
headers: {
|
|
30
|
-
'Content-Type': 'application/json'
|
|
31
|
-
}
|
|
32
|
-
});
|
|
33
|
-
if (res.status === 201) {
|
|
34
|
-
this.formSuccess = true;
|
|
35
|
-
this.formError = false;
|
|
36
|
-
}
|
|
37
|
-
else {
|
|
38
|
-
this.formSuccess = false;
|
|
39
|
-
this.formError = true;
|
|
40
|
-
this.formErrorStatus = res.status;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
catch (error) {
|
|
44
|
-
console.log(error);
|
|
45
|
-
this.formSuccess = false;
|
|
46
|
-
this.formError = true;
|
|
47
|
-
this.formErrorStatus = 500;
|
|
48
|
-
}
|
|
49
|
-
finally {
|
|
50
|
-
this.sending = false;
|
|
51
|
-
this.showModal = true;
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
this.close = () => {
|
|
55
|
-
this.sending = false;
|
|
56
|
-
this.showModal = false;
|
|
57
|
-
this.showScreenshotMode = false;
|
|
58
|
-
this.hasSelectedElement = false;
|
|
59
|
-
this.encodedScreenshot = null;
|
|
60
|
-
this.formSuccess = false;
|
|
61
|
-
this.formError = false;
|
|
62
|
-
this.formErrorStatus = 500;
|
|
63
|
-
this.formMessage = '';
|
|
64
|
-
this.formEmail = '';
|
|
65
|
-
this.resetOverflow();
|
|
66
|
-
};
|
|
67
|
-
this.openScreenShot = () => {
|
|
68
|
-
this.hasSelectedElement = false;
|
|
69
|
-
this.showModal = false;
|
|
70
|
-
this.showScreenshotMode = true;
|
|
71
|
-
this.encodedScreenshot = null;
|
|
72
|
-
this.resetOverflow();
|
|
73
|
-
};
|
|
74
|
-
this.closeScreenShot = () => {
|
|
75
|
-
this.showModal = false;
|
|
76
|
-
this.showScreenshotMode = false;
|
|
77
|
-
this.hasSelectedElement = false;
|
|
78
|
-
this.encodedScreenshot = null;
|
|
79
|
-
this.overlay.style.display = 'none';
|
|
80
|
-
this.resetOverflow();
|
|
81
|
-
};
|
|
82
|
-
this.handleMouseOverScreenShot = (event) => {
|
|
83
|
-
event.preventDefault();
|
|
84
|
-
if (this.hasSelectedElement)
|
|
85
|
-
return;
|
|
86
|
-
this.overlay.style.display = 'none';
|
|
87
|
-
this.screenshotModal.style.display = 'none';
|
|
88
|
-
const elementUnder = document.elementFromPoint(event.clientX, event.clientY);
|
|
89
|
-
const rect = elementUnder.getBoundingClientRect();
|
|
90
|
-
this.screenshotModal.style.display = '';
|
|
91
|
-
// Get the bounding box of the element selected
|
|
92
|
-
this.elementSelected.style.position = "absolute";
|
|
93
|
-
this.elementSelected.style.left = `${rect.left}px`;
|
|
94
|
-
this.elementSelected.style.top = `${rect.top}px`;
|
|
95
|
-
this.elementSelected.style.width = `${rect.width}px`;
|
|
96
|
-
this.elementSelected.style.height = `${rect.height}px`;
|
|
97
|
-
this.elementSelected.classList.add('feedback-modal-element-hover');
|
|
98
|
-
// Set the background color of nonselected areas
|
|
99
|
-
// Top
|
|
100
|
-
this.topSide.style.position = "absolute";
|
|
101
|
-
this.topSide.style.left = `${rect.left}px`;
|
|
102
|
-
this.topSide.style.top = '0px';
|
|
103
|
-
this.topSide.style.width = `${rect.width + 8}px`;
|
|
104
|
-
this.topSide.style.height = `${rect.top}px`;
|
|
105
|
-
this.topSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
106
|
-
// Left
|
|
107
|
-
this.leftSide.style.position = "absolute";
|
|
108
|
-
this.leftSide.style.left = '0px';
|
|
109
|
-
this.leftSide.style.top = '0px';
|
|
110
|
-
this.leftSide.style.width = `${rect.left}px`;
|
|
111
|
-
this.leftSide.style.height = '100vh';
|
|
112
|
-
this.leftSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
113
|
-
// Bottom
|
|
114
|
-
this.bottomSide.style.position = "absolute";
|
|
115
|
-
this.bottomSide.style.left = `${rect.left}px`;
|
|
116
|
-
this.bottomSide.style.top = `${rect.bottom + 8}px`;
|
|
117
|
-
this.bottomSide.style.width = `${rect.width + 8}px`;
|
|
118
|
-
this.bottomSide.style.height = '100vh';
|
|
119
|
-
this.bottomSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
120
|
-
// Right
|
|
121
|
-
this.rightSide.style.position = "absolute";
|
|
122
|
-
this.rightSide.style.left = `${rect.right + 8}px`;
|
|
123
|
-
;
|
|
124
|
-
this.rightSide.style.top = '0px';
|
|
125
|
-
this.rightSide.style.width = '100%';
|
|
126
|
-
this.rightSide.style.height = '100vh';
|
|
127
|
-
this.rightSide.style.backgroundColor = "rgba(0, 0, 0, 0.3)";
|
|
128
|
-
// Restore the visibility of the screenshot-modal
|
|
129
|
-
this.screenshotModal.style.backgroundColor = 'transparent';
|
|
130
|
-
};
|
|
131
|
-
this.handleMouseClickedSelectedElement = (event) => {
|
|
132
|
-
event.preventDefault();
|
|
133
|
-
if (this.elementSelected)
|
|
134
|
-
this.elementSelected.classList.add('feedback-modal-element-selected');
|
|
135
|
-
let top = this.elementSelected.getBoundingClientRect().top;
|
|
136
|
-
this.elementSelected.style.top = `${top + window.pageYOffset}px`;
|
|
137
|
-
const clonedElementSelected = this.elementSelected.cloneNode(true);
|
|
138
|
-
document.body.appendChild(clonedElementSelected);
|
|
139
|
-
this.elementSelected.style.top = `${top}px`;
|
|
140
|
-
this.encodedScreenshot = domtoimage.toPng(document.body, { cacheBust: true })
|
|
141
|
-
.then(function (dataUrl) {
|
|
142
|
-
document.body.removeChild(clonedElementSelected);
|
|
143
|
-
return dataUrl;
|
|
144
|
-
})
|
|
145
|
-
.catch(function (error) {
|
|
146
|
-
console.error('Oops, something went wrong!', error);
|
|
147
|
-
return "";
|
|
148
|
-
});
|
|
149
|
-
const page = document.getElementsByTagName('html')[0];
|
|
150
|
-
page.style.overflow = 'hidden';
|
|
151
|
-
this.hasSelectedElement = true;
|
|
152
|
-
this.overlay.style.display = 'block';
|
|
153
|
-
this.showModal = true;
|
|
154
|
-
};
|
|
155
|
-
this.sending = false;
|
|
156
|
-
this.formMessage = '';
|
|
157
|
-
this.formEmail = '';
|
|
158
|
-
this.formSuccess = false;
|
|
159
|
-
this.formError = false;
|
|
160
|
-
this.formErrorStatus = 500;
|
|
161
|
-
this.encodedScreenshot = undefined;
|
|
162
|
-
this.modalTitle = 'Share your feedback';
|
|
163
|
-
this.modalTitleSuccess = 'Thanks for your feedback!';
|
|
164
|
-
this.modalTitleError = "Oops! We didn't receive your feedback. Please try again later.";
|
|
165
|
-
this.modalTitleError403 = "Oops! The request URL does not match the one defined in PushFeedback for this project.";
|
|
166
|
-
this.modalTitleError404 = "Oops! We could not find the provided project id in PushFeedback.";
|
|
167
|
-
this.modalPosition = 'center';
|
|
168
|
-
this.sendButtonText = 'Send';
|
|
169
|
-
this.project = '';
|
|
170
|
-
this.screenshotButtonTooltipText = 'Take a Screenshot';
|
|
171
|
-
this.screenshotTopbarText = 'SELECT AN ELEMENT ON THE PAGE';
|
|
172
|
-
this.email = '';
|
|
173
|
-
this.emailPlaceholder = 'Email address (optional)';
|
|
174
|
-
this.messagePlaceholder = 'How could this page be more helpful?';
|
|
175
|
-
this.showModal = false;
|
|
176
|
-
this.showScreenshotMode = false;
|
|
177
|
-
this.hasSelectedElement = false;
|
|
178
|
-
this.hideScreenshotButton = false;
|
|
179
|
-
}
|
|
180
|
-
componentWillLoad() {
|
|
181
|
-
this.formEmail = this.email;
|
|
182
|
-
}
|
|
183
|
-
resetOverflow() {
|
|
184
|
-
const page = document.getElementsByTagName('html')[0];
|
|
185
|
-
page.style.overflow = 'inherit';
|
|
186
|
-
}
|
|
187
|
-
handleMessageInput(event) {
|
|
188
|
-
this.formMessage = event.target.value;
|
|
189
|
-
}
|
|
190
|
-
handleEmailInput(event) {
|
|
191
|
-
this.formEmail = event.target.value;
|
|
192
|
-
}
|
|
193
|
-
render() {
|
|
194
|
-
return (h("div", { class: "feedback-modal-wrapper" }, this.showScreenshotMode && (h("div", { class: "feedback-modal-screenshot", ref: el => (this.screenshotModal = el), onMouseMove: this.handleMouseOverScreenShot }, h("div", { class: "feedback-modal-screenshot-element-selected", ref: el => (this.elementSelected = el), onClick: this.handleMouseClickedSelectedElement }), h("div", { class: "top-side", ref: el => (this.topSide = el) }), h("div", { class: "left-side", ref: el => (this.leftSide = el) }), h("div", { class: "bottom-side", ref: el => (this.bottomSide = el) }), h("div", { class: "right-side", ref: el => (this.rightSide = el) }), h("div", { class: "feedback-modal-screenshot-header", onClick: this.closeScreenShot }, h("span", null, this.screenshotTopbarText), h("span", { class: "feedback-modal-screenshot-close" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#fff", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-x" }, h("line", { x1: "18", y1: "6", x2: "6", y2: "18" }), h("line", { x1: "6", y1: "6", x2: "18", y2: "18" })))), h("div", { class: "feedback-modal-screenshot-overlay", ref: el => (this.overlay = el) }))), this.showModal && (h("div", { class: `feedback-modal-content feedback-modal-content--${this.modalPosition}`, ref: el => (this.modalContent = el) }, h("div", { class: "feedback-modal-header" }, !this.formSuccess && !this.formError ? (h("span", null, this.modalTitle)) : this.formSuccess ? (h("span", { class: "text-center" }, this.modalTitleSuccess)) : this.formError && this.formErrorStatus == 500 ? (h("span", { class: "text-center" }, this.modalTitleError)) : this.formError && this.formErrorStatus == 403 ? (h("span", { class: "text-center" }, this.modalTitleError403)) : this.formError && this.formErrorStatus == 404 ? (h("span", { class: "text-center" }, this.modalTitleError404)) : h("span", null), h("button", { class: "feedback-modal-close", onClick: this.close }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#ccc", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-x" }, h("line", { x1: "18", y1: "6", x2: "6", y2: "18" }), h("line", { x1: "6", y1: "6", x2: "18", y2: "18" })))), h("div", { class: "feedback-modal-body" }, !this.formSuccess && !this.formError ? (h("form", { onSubmit: this.handleSubmit }, h("div", { class: "feedback-modal-text" }, h("textarea", { placeholder: this.messagePlaceholder, value: this.formMessage, onInput: (event) => this.handleMessageInput(event), required: true })), !this.email && (h("div", { class: "feedback-modal-email" }, h("input", { type: "email", placeholder: this.emailPlaceholder, onInput: (event) => this.handleEmailInput(event), value: this.formEmail }))), h("div", { class: `feedback-modal-buttons ${this.hideScreenshotButton ? 'single' : ''}` }, !this.hideScreenshotButton && (h("button", { type: "button", class: `button${this.encodedScreenshot ? " active" : ""}`, title: this.screenshotButtonTooltipText, onClick: this.openScreenShot, disabled: this.sending }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-camera" }, h("path", { d: "M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" }), h("circle", { cx: "12", cy: "13", r: "4" })))), h("button", { class: "button", type: "submit", disabled: this.sending }, this.sendButtonText)))) : h("span", null)), h("div", { class: "feedback-modal-footer" }, h("div", { class: "feedback-logo" }, h("svg", { class: "w-8 h-8", viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg" }, h("defs", null, h("radialGradient", { cx: "21.152%", cy: "86.063%", fx: "21.152%", fy: "86.063%", r: "79.941%", id: "footer-logo" }, h("stop", { "stop-color": "#4FD1C5", offset: "0%" }), h("stop", { "stop-color": "#81E6D9", offset: "25.871%" }), h("stop", { "stop-color": "#338CF5", offset: "100%" }))), h("rect", { width: "32", height: "32", rx: "16", fill: "url(#footer-logo)", "fill-rule": "nonzero" })), " ", h("a", { href: "https://pushfeedback.com" }, "PushFeedback")))))));
|
|
195
|
-
}
|
|
196
|
-
static get is() { return "feedback-modal"; }
|
|
197
|
-
static get encapsulation() { return "shadow"; }
|
|
198
|
-
static get originalStyleUrls() {
|
|
199
|
-
return {
|
|
200
|
-
"$": ["feedback-modal.css"]
|
|
201
|
-
};
|
|
202
|
-
}
|
|
203
|
-
static get styleUrls() {
|
|
204
|
-
return {
|
|
205
|
-
"$": ["feedback-modal.css"]
|
|
206
|
-
};
|
|
207
|
-
}
|
|
208
|
-
static get properties() {
|
|
209
|
-
return {
|
|
210
|
-
"modalTitle": {
|
|
211
|
-
"type": "string",
|
|
212
|
-
"mutable": false,
|
|
213
|
-
"complexType": {
|
|
214
|
-
"original": "string",
|
|
215
|
-
"resolved": "string",
|
|
216
|
-
"references": {}
|
|
217
|
-
},
|
|
218
|
-
"required": false,
|
|
219
|
-
"optional": false,
|
|
220
|
-
"docs": {
|
|
221
|
-
"tags": [],
|
|
222
|
-
"text": ""
|
|
223
|
-
},
|
|
224
|
-
"attribute": "modal-title",
|
|
225
|
-
"reflect": false,
|
|
226
|
-
"defaultValue": "'Share your feedback'"
|
|
227
|
-
},
|
|
228
|
-
"modalTitleSuccess": {
|
|
229
|
-
"type": "string",
|
|
230
|
-
"mutable": false,
|
|
231
|
-
"complexType": {
|
|
232
|
-
"original": "string",
|
|
233
|
-
"resolved": "string",
|
|
234
|
-
"references": {}
|
|
235
|
-
},
|
|
236
|
-
"required": false,
|
|
237
|
-
"optional": false,
|
|
238
|
-
"docs": {
|
|
239
|
-
"tags": [],
|
|
240
|
-
"text": ""
|
|
241
|
-
},
|
|
242
|
-
"attribute": "modal-title-success",
|
|
243
|
-
"reflect": false,
|
|
244
|
-
"defaultValue": "'Thanks for your feedback!'"
|
|
245
|
-
},
|
|
246
|
-
"modalTitleError": {
|
|
247
|
-
"type": "string",
|
|
248
|
-
"mutable": false,
|
|
249
|
-
"complexType": {
|
|
250
|
-
"original": "string",
|
|
251
|
-
"resolved": "string",
|
|
252
|
-
"references": {}
|
|
253
|
-
},
|
|
254
|
-
"required": false,
|
|
255
|
-
"optional": false,
|
|
256
|
-
"docs": {
|
|
257
|
-
"tags": [],
|
|
258
|
-
"text": ""
|
|
259
|
-
},
|
|
260
|
-
"attribute": "modal-title-error",
|
|
261
|
-
"reflect": false,
|
|
262
|
-
"defaultValue": "\"Oops! We didn't receive your feedback. Please try again later.\""
|
|
263
|
-
},
|
|
264
|
-
"modalTitleError403": {
|
|
265
|
-
"type": "string",
|
|
266
|
-
"mutable": false,
|
|
267
|
-
"complexType": {
|
|
268
|
-
"original": "string",
|
|
269
|
-
"resolved": "string",
|
|
270
|
-
"references": {}
|
|
271
|
-
},
|
|
272
|
-
"required": false,
|
|
273
|
-
"optional": false,
|
|
274
|
-
"docs": {
|
|
275
|
-
"tags": [],
|
|
276
|
-
"text": ""
|
|
277
|
-
},
|
|
278
|
-
"attribute": "modal-title-error-4-0-3",
|
|
279
|
-
"reflect": false,
|
|
280
|
-
"defaultValue": "\"Oops! The request URL does not match the one defined in PushFeedback for this project.\""
|
|
281
|
-
},
|
|
282
|
-
"modalTitleError404": {
|
|
283
|
-
"type": "string",
|
|
284
|
-
"mutable": false,
|
|
285
|
-
"complexType": {
|
|
286
|
-
"original": "string",
|
|
287
|
-
"resolved": "string",
|
|
288
|
-
"references": {}
|
|
289
|
-
},
|
|
290
|
-
"required": false,
|
|
291
|
-
"optional": false,
|
|
292
|
-
"docs": {
|
|
293
|
-
"tags": [],
|
|
294
|
-
"text": ""
|
|
295
|
-
},
|
|
296
|
-
"attribute": "modal-title-error-4-0-4",
|
|
297
|
-
"reflect": false,
|
|
298
|
-
"defaultValue": "\"Oops! We could not find the provided project id in PushFeedback.\""
|
|
299
|
-
},
|
|
300
|
-
"modalPosition": {
|
|
301
|
-
"type": "string",
|
|
302
|
-
"mutable": false,
|
|
303
|
-
"complexType": {
|
|
304
|
-
"original": "string",
|
|
305
|
-
"resolved": "string",
|
|
306
|
-
"references": {}
|
|
307
|
-
},
|
|
308
|
-
"required": false,
|
|
309
|
-
"optional": false,
|
|
310
|
-
"docs": {
|
|
311
|
-
"tags": [],
|
|
312
|
-
"text": ""
|
|
313
|
-
},
|
|
314
|
-
"attribute": "modal-position",
|
|
315
|
-
"reflect": false,
|
|
316
|
-
"defaultValue": "'center'"
|
|
317
|
-
},
|
|
318
|
-
"sendButtonText": {
|
|
319
|
-
"type": "string",
|
|
320
|
-
"mutable": false,
|
|
321
|
-
"complexType": {
|
|
322
|
-
"original": "string",
|
|
323
|
-
"resolved": "string",
|
|
324
|
-
"references": {}
|
|
325
|
-
},
|
|
326
|
-
"required": false,
|
|
327
|
-
"optional": false,
|
|
328
|
-
"docs": {
|
|
329
|
-
"tags": [],
|
|
330
|
-
"text": ""
|
|
331
|
-
},
|
|
332
|
-
"attribute": "send-button-text",
|
|
333
|
-
"reflect": false,
|
|
334
|
-
"defaultValue": "'Send'"
|
|
335
|
-
},
|
|
336
|
-
"project": {
|
|
337
|
-
"type": "string",
|
|
338
|
-
"mutable": false,
|
|
339
|
-
"complexType": {
|
|
340
|
-
"original": "string",
|
|
341
|
-
"resolved": "string",
|
|
342
|
-
"references": {}
|
|
343
|
-
},
|
|
344
|
-
"required": false,
|
|
345
|
-
"optional": false,
|
|
346
|
-
"docs": {
|
|
347
|
-
"tags": [],
|
|
348
|
-
"text": ""
|
|
349
|
-
},
|
|
350
|
-
"attribute": "project",
|
|
351
|
-
"reflect": false,
|
|
352
|
-
"defaultValue": "''"
|
|
353
|
-
},
|
|
354
|
-
"screenshotButtonTooltipText": {
|
|
355
|
-
"type": "string",
|
|
356
|
-
"mutable": false,
|
|
357
|
-
"complexType": {
|
|
358
|
-
"original": "string",
|
|
359
|
-
"resolved": "string",
|
|
360
|
-
"references": {}
|
|
361
|
-
},
|
|
362
|
-
"required": false,
|
|
363
|
-
"optional": false,
|
|
364
|
-
"docs": {
|
|
365
|
-
"tags": [],
|
|
366
|
-
"text": ""
|
|
367
|
-
},
|
|
368
|
-
"attribute": "screenshot-button-tooltip-text",
|
|
369
|
-
"reflect": false,
|
|
370
|
-
"defaultValue": "'Take a Screenshot'"
|
|
371
|
-
},
|
|
372
|
-
"screenshotTopbarText": {
|
|
373
|
-
"type": "string",
|
|
374
|
-
"mutable": false,
|
|
375
|
-
"complexType": {
|
|
376
|
-
"original": "string",
|
|
377
|
-
"resolved": "string",
|
|
378
|
-
"references": {}
|
|
379
|
-
},
|
|
380
|
-
"required": false,
|
|
381
|
-
"optional": false,
|
|
382
|
-
"docs": {
|
|
383
|
-
"tags": [],
|
|
384
|
-
"text": ""
|
|
385
|
-
},
|
|
386
|
-
"attribute": "screenshot-topbar-text",
|
|
387
|
-
"reflect": false,
|
|
388
|
-
"defaultValue": "'SELECT AN ELEMENT ON THE PAGE'"
|
|
389
|
-
},
|
|
390
|
-
"email": {
|
|
391
|
-
"type": "string",
|
|
392
|
-
"mutable": false,
|
|
393
|
-
"complexType": {
|
|
394
|
-
"original": "string",
|
|
395
|
-
"resolved": "string",
|
|
396
|
-
"references": {}
|
|
397
|
-
},
|
|
398
|
-
"required": false,
|
|
399
|
-
"optional": false,
|
|
400
|
-
"docs": {
|
|
401
|
-
"tags": [],
|
|
402
|
-
"text": ""
|
|
403
|
-
},
|
|
404
|
-
"attribute": "email",
|
|
405
|
-
"reflect": false,
|
|
406
|
-
"defaultValue": "''"
|
|
407
|
-
},
|
|
408
|
-
"emailPlaceholder": {
|
|
409
|
-
"type": "string",
|
|
410
|
-
"mutable": false,
|
|
411
|
-
"complexType": {
|
|
412
|
-
"original": "string",
|
|
413
|
-
"resolved": "string",
|
|
414
|
-
"references": {}
|
|
415
|
-
},
|
|
416
|
-
"required": false,
|
|
417
|
-
"optional": false,
|
|
418
|
-
"docs": {
|
|
419
|
-
"tags": [],
|
|
420
|
-
"text": ""
|
|
421
|
-
},
|
|
422
|
-
"attribute": "email-placeholder",
|
|
423
|
-
"reflect": false,
|
|
424
|
-
"defaultValue": "'Email address (optional)'"
|
|
425
|
-
},
|
|
426
|
-
"messagePlaceholder": {
|
|
427
|
-
"type": "string",
|
|
428
|
-
"mutable": false,
|
|
429
|
-
"complexType": {
|
|
430
|
-
"original": "string",
|
|
431
|
-
"resolved": "string",
|
|
432
|
-
"references": {}
|
|
433
|
-
},
|
|
434
|
-
"required": false,
|
|
435
|
-
"optional": false,
|
|
436
|
-
"docs": {
|
|
437
|
-
"tags": [],
|
|
438
|
-
"text": ""
|
|
439
|
-
},
|
|
440
|
-
"attribute": "message-placeholder",
|
|
441
|
-
"reflect": false,
|
|
442
|
-
"defaultValue": "'How could this page be more helpful?'"
|
|
443
|
-
},
|
|
444
|
-
"showModal": {
|
|
445
|
-
"type": "boolean",
|
|
446
|
-
"mutable": true,
|
|
447
|
-
"complexType": {
|
|
448
|
-
"original": "boolean",
|
|
449
|
-
"resolved": "boolean",
|
|
450
|
-
"references": {}
|
|
451
|
-
},
|
|
452
|
-
"required": false,
|
|
453
|
-
"optional": false,
|
|
454
|
-
"docs": {
|
|
455
|
-
"tags": [],
|
|
456
|
-
"text": ""
|
|
457
|
-
},
|
|
458
|
-
"attribute": "show-modal",
|
|
459
|
-
"reflect": true,
|
|
460
|
-
"defaultValue": "false"
|
|
461
|
-
},
|
|
462
|
-
"showScreenshotMode": {
|
|
463
|
-
"type": "boolean",
|
|
464
|
-
"mutable": true,
|
|
465
|
-
"complexType": {
|
|
466
|
-
"original": "boolean",
|
|
467
|
-
"resolved": "boolean",
|
|
468
|
-
"references": {}
|
|
469
|
-
},
|
|
470
|
-
"required": false,
|
|
471
|
-
"optional": false,
|
|
472
|
-
"docs": {
|
|
473
|
-
"tags": [],
|
|
474
|
-
"text": ""
|
|
475
|
-
},
|
|
476
|
-
"attribute": "show-screenshot-mode",
|
|
477
|
-
"reflect": true,
|
|
478
|
-
"defaultValue": "false"
|
|
479
|
-
},
|
|
480
|
-
"hasSelectedElement": {
|
|
481
|
-
"type": "boolean",
|
|
482
|
-
"mutable": true,
|
|
483
|
-
"complexType": {
|
|
484
|
-
"original": "boolean",
|
|
485
|
-
"resolved": "boolean",
|
|
486
|
-
"references": {}
|
|
487
|
-
},
|
|
488
|
-
"required": false,
|
|
489
|
-
"optional": false,
|
|
490
|
-
"docs": {
|
|
491
|
-
"tags": [],
|
|
492
|
-
"text": ""
|
|
493
|
-
},
|
|
494
|
-
"attribute": "has-selected-element",
|
|
495
|
-
"reflect": true,
|
|
496
|
-
"defaultValue": "false"
|
|
497
|
-
},
|
|
498
|
-
"hideScreenshotButton": {
|
|
499
|
-
"type": "boolean",
|
|
500
|
-
"mutable": false,
|
|
501
|
-
"complexType": {
|
|
502
|
-
"original": "boolean",
|
|
503
|
-
"resolved": "boolean",
|
|
504
|
-
"references": {}
|
|
505
|
-
},
|
|
506
|
-
"required": false,
|
|
507
|
-
"optional": false,
|
|
508
|
-
"docs": {
|
|
509
|
-
"tags": [],
|
|
510
|
-
"text": ""
|
|
511
|
-
},
|
|
512
|
-
"attribute": "hide-screenshot-button",
|
|
513
|
-
"reflect": false,
|
|
514
|
-
"defaultValue": "false"
|
|
515
|
-
}
|
|
516
|
-
};
|
|
517
|
-
}
|
|
518
|
-
static get states() {
|
|
519
|
-
return {
|
|
520
|
-
"sending": {},
|
|
521
|
-
"formMessage": {},
|
|
522
|
-
"formEmail": {},
|
|
523
|
-
"formSuccess": {},
|
|
524
|
-
"formError": {},
|
|
525
|
-
"formErrorStatus": {},
|
|
526
|
-
"encodedScreenshot": {}
|
|
527
|
-
};
|
|
528
|
-
}
|
|
529
|
-
}
|
|
1
|
+
const _0x58b3d6=_0x4fc1;(function(_0x75e4b5,_0x3fc1ba){const _0xda23d9=_0x4fc1,_0x435665=_0x75e4b5();while(!![]){try{const _0x1e47fa=parseInt(_0xda23d9(0x1f2))/0x1*(parseInt(_0xda23d9(0x1ba))/0x2)+parseInt(_0xda23d9(0x1fc))/0x3+-parseInt(_0xda23d9(0x1af))/0x4*(-parseInt(_0xda23d9(0x1d0))/0x5)+-parseInt(_0xda23d9(0x1de))/0x6*(-parseInt(_0xda23d9(0x229))/0x7)+-parseInt(_0xda23d9(0x185))/0x8*(-parseInt(_0xda23d9(0x1d9))/0x9)+-parseInt(_0xda23d9(0x17d))/0xa*(-parseInt(_0xda23d9(0x1fb))/0xb)+parseInt(_0xda23d9(0x163))/0xc*(-parseInt(_0xda23d9(0x207))/0xd);if(_0x1e47fa===_0x3fc1ba)break;else _0x435665['push'](_0x435665['shift']());}catch(_0x2a2fc8){_0x435665['push'](_0x435665['shift']());}}}(_0x30c8,0xb24d9));import{h}from'@stencil/core';function _0x30c8(){const _0x94a0e3=['LSugq','screenshot-button-tooltip-text','ynHtN','modalContent','w-8\x20h-8','Unlha','ICyMh','Thanks\x20for\x20your\x20feedback!','peXtX','#338CF5','CbDrC','feedback-modal','sending','iAONk','add','UKLpR','EJzoD','fStbZ','viMYs','display','feedback-modal-element-selected','GgbqT','Lnnoz','feedback-modal.css','hqnkJ','oroCa','ytBXt','styleUrls','ZEQIm','footer-logo','render','formMessage','HrFOE','xyeOz','false','VLcMa','modalPosition','elementSelected','57108lfBoIE','zwPIM','bottom-side','modalTitleError404','showScreenshotMode','then','0\x200\x2032\x2032','rect','formSuccess','html','feedback-modal-screenshot-header','feedback-modal-screenshot','handleMouseOverScreenShot','oSZhT','StXHS','RrmpX','GoFmA','clientX','\x27Thanks\x20for\x20your\x20feedback!\x27','tPyyF','sendButtonText','email-placeholder','Hmplz','submit','emailPlaceholder','\x27Send\x27','2807040gEyCPD','path','encapsulation','ffErP','modalTitleError403','getElementsByTagName','hidden','Oops!\x20We\x20didn\x27t\x20receive\x20your\x20feedback.\x20Please\x20try\x20again\x20later.','1049320QOPoHC','LvjXb','screenshotTopbarText','split','error','modal-title-success','0px','GRnCC','closeScreenShot','\x20active','has-selected-element','\x27How\x20could\x20this\x20page\x20be\x20more\x20helpful?\x27','jhuMi','jmqGa','bottomSide','screenshotModal','fsINv','rightSide','yDtDJ','openScreenShot','\x27Take\x20a\x20Screenshot\x27','jenvG','IImtc','boolean','Take\x20a\x20Screenshot','resetOverflow','rkVrA','screenshotButtonTooltipText','modalTitleSuccess','GzOtc','modalTitleError','VwuMx','top','21.152%','href','xyAYR','log','right-side','XXrNe','gSTFf','formErrorStatus','right','3762636udScFv','url(#footer-logo)','input','sqxmJ','show-screenshot-mode','AIlOf','whitelabel','feather\x20feather-x','xlGZn','modal-title-error','PushFeedback','438394tdctpk','application/json','feedback-modal-footer','block','Send','86.063%','inherit','rSrEM','100%','POST','preventDefault','button','encodedScreenshot','NVoMl','feedback-modal-element-hover','KOmIn','target','messagePlaceholder','removeChild','ZxJKE','https://pushfeedback.com','shadow','5hCzNaQ','circle','SdabG','FYtJa','modal-title','fDZsh','100vh','single','NibyQ','9WIQWqo','svg','feedback-modal-email','feedback-modal-wrapper','json','3765786SqkebA','SMObo','radialGradient','hDfFs','rgba(0,\x200,\x200,\x200.3)','hasSelectedElement','overflow','hide-screenshot-button','getBoundingClientRect','0\x200\x2024\x2024','UPnAa','fheke','feedback-modal-screenshot-close','QcOGf','height','string','Mjfsh','stop','showModal','backgroundColor','5pXgPHu','feedback-modal-body','feedback-modal-screenshot-overlay','eYnGp','cloneNode','properties','VNORo','states','https://app.pushfeedback.com/api/projects/','55rWMrIe','1872327VHdomA','toDataURL','style','defs','gRuXB','leftSide','tFGIr','ClAkR','feedback-modal-header','YSgKg','fetchProjectData','11180QYhXPr','Vlfna','div','Share\x20your\x20feedback','project','ehcaE','FSzjM','How\x20could\x20this\x20page\x20be\x20more\x20helpful?','hqgGj','http://www.w3.org/2000/svg','componentWillLoad','handleSubmit','vwvIY','kZpey','handleMessageInput','feedback-logo','formEmail','aAkYv','bRZKW','YzgbI','screenshot-topbar-text','tJQWv','fnnDq','ddrIq','handleEmailInput','jAhDQ','onidM','kWEPu','none','https://app.pushfeedback.com/api/feedback/','text-center','STbsL','left-side','bottom','7DZvgcc','\x22Oops!\x20We\x20didn\x27t\x20receive\x20your\x20feedback.\x20Please\x20try\x20again\x20later.\x22','round','left','Oops!\x20We\x20could\x20not\x20find\x20the\x20provided\x20project\x20id\x20in\x20PushFeedback.','topSide','#ccc','body','Email\x20address\x20(optional)','BFWxl','bDquB','nonzero','email','transparent','aIdPE','KdDiR','close','hytqs','#fff','feedback-modal-buttons\x20','width','goDFN','iYeMc','formError','overlay','QeyzZ','IseBY','position','appendChild','absolute','\x27Email\x20address\x20(optional)\x27','pnRnm','bLjvd','catch','REksr','79.941%','feedback-modal-screenshot-element-selected','25.871%','handleMouseClickedSelectedElement','xVufE','classList','feedback-modal-text','value','span','ztkrP','hideScreenshotButton','BBalN','fyfqz','jqwVS','textarea','kRxnp','clientY','form','line','modal-title-error-4-0-4','UQEzZ','status','top-side','OiLDX','\x27Share\x20your\x20feedback\x27'];_0x30c8=function(){return _0x94a0e3;};return _0x30c8();}function _0x4fc1(_0x2941f3,_0xc5e1d3){const _0x30c810=_0x30c8();return _0x4fc1=function(_0x4fc1b6,_0xdcf8fc){_0x4fc1b6=_0x4fc1b6-0x107;let _0xd03d2b=_0x30c810[_0x4fc1b6];return _0xd03d2b;},_0x4fc1(_0x2941f3,_0xc5e1d3);}import _0xc8242c from'html2canvas';export class FeedbackModal{constructor(){const _0x1084d3=_0x4fc1,_0x393773={'ICyMh':function(_0x1ee1ba,_0x30dd33,_0x2fc997){return _0x1ee1ba(_0x30dd33,_0x2fc997);},'zwPIM':_0x1084d3(0x224),'Mjfsh':function(_0x2e41ba,_0xd3f1c0){return _0x2e41ba===_0xd3f1c0;},'QcOGf':'0|3|4|2|1','fDZsh':_0x1084d3(0x223),'oSZhT':_0x1084d3(0x11e),'GzOtc':_0x1084d3(0x1c8),'KdDiR':_0x1084d3(0x18b),'jAhDQ':_0x1084d3(0x1e2),'jmqGa':_0x1084d3(0x1d6),'qgMjN':function(_0x556b18,_0x51d815){return _0x556b18+_0x51d815;},'ehcaE':function(_0x2563fb,_0x3ad476){return _0x2563fb+_0x3ad476;},'CbDrC':_0x1084d3(0x1c2),'SdabG':_0x1084d3(0x10e),'jlcWO':_0x1084d3(0x151),'ddrIq':function(_0x7bf1fa,_0x106a0d){return _0x7bf1fa+_0x106a0d;},'FyrRH':function(_0x5653c0,_0x565d41){return _0x5653c0(_0x565d41);},'vwvIY':_0x1084d3(0x183),'oroCa':_0x1084d3(0x1bd),'tFGIr':_0x1084d3(0x20a),'TggZM':_0x1084d3(0x184),'bLjvd':'Oops!\x20The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.','BFWxl':_0x1084d3(0x22d),'rtMFS':_0x1084d3(0x19d),'eySpQ':'SELECT\x20AN\x20ELEMENT\x20ON\x20THE\x20PAGE','IImtc':_0x1084d3(0x109),'JkBpH':_0x1084d3(0x20e)};this[_0x1084d3(0x212)]=async _0x34d4c3=>{const _0x463d95=_0x1084d3;_0x34d4c3[_0x463d95(0x1c4)](),this['resetOverflow'](),this[_0x463d95(0x167)]=![],this[_0x463d95(0x1f0)]=![],this['sending']=!![];let _0x389b24='';this[_0x463d95(0x1c6)]&&await this['encodedScreenshot']['then'](_0xfd2ada=>{_0x389b24=_0xfd2ada;})[_0x463d95(0x122)](_0x5d7a62=>{const _0xcf742f=_0x463d95;console[_0xcf742f(0x1a9)](_0x5d7a62);});try{const _0x5f5850=await _0x393773[_0x463d95(0x143)](fetch,_0x393773[_0x463d95(0x164)],{'method':_0x463d95(0x1c3),'body':JSON['stringify']({'url':window['location'][_0x463d95(0x1a7)],'message':this[_0x463d95(0x15c)],'email':this[_0x463d95(0x217)],'project':this[_0x463d95(0x20b)],'screenshot':_0x389b24}),'headers':{'Content-Type':_0x463d95(0x1bb)}});_0x393773[_0x463d95(0x1ee)](_0x5f5850[_0x463d95(0x139)],0xc9)?(this[_0x463d95(0x16b)]=!![],this[_0x463d95(0x118)]=![]):(this[_0x463d95(0x16b)]=![],this[_0x463d95(0x118)]=!![],this[_0x463d95(0x1ad)]=_0x5f5850['status']);}catch(_0xaab56d){console[_0x463d95(0x1a9)](_0xaab56d),this[_0x463d95(0x16b)]=![],this[_0x463d95(0x118)]=!![],this[_0x463d95(0x1ad)]=0x1f4;}finally{this['sending']=![],this[_0x463d95(0x1f0)]=!![];}},this[_0x1084d3(0x111)]=()=>{const _0x82c837=_0x1084d3;this[_0x82c837(0x149)]=![],this[_0x82c837(0x1f0)]=![],this[_0x82c837(0x167)]=![],this['hasSelectedElement']=![],this[_0x82c837(0x1c6)]=null,this['formSuccess']=![],this[_0x82c837(0x118)]=![],this[_0x82c837(0x1ad)]=0x1f4,this['formMessage']='',this[_0x82c837(0x217)]='',this['resetOverflow']();},this[_0x1084d3(0x198)]=()=>{const _0x282625=_0x1084d3,_0xcc61f9=_0x393773[_0x282625(0x1eb)][_0x282625(0x188)]('|');let _0x20294b=0x0;while(!![]){switch(_0xcc61f9[_0x20294b++]){case'0':this[_0x282625(0x1e3)]=![];continue;case'1':this['resetOverflow']();continue;case'2':this[_0x282625(0x1c6)]=null;continue;case'3':this[_0x282625(0x1f0)]=![];continue;case'4':this[_0x282625(0x167)]=!![];continue;}break;}},this[_0x1084d3(0x18d)]=()=>{const _0x20dd4a=_0x1084d3;this[_0x20dd4a(0x1f0)]=![],this[_0x20dd4a(0x167)]=![],this['hasSelectedElement']=![],this[_0x20dd4a(0x1c6)]=null,this[_0x20dd4a(0x119)][_0x20dd4a(0x1fe)][_0x20dd4a(0x150)]=_0x393773['fDZsh'],this[_0x20dd4a(0x19e)]();},this[_0x1084d3(0x16f)]=_0x22989e=>{const _0xbccefb=_0x1084d3;_0x22989e['preventDefault']();if(this['hasSelectedElement'])return;this[_0xbccefb(0x119)][_0xbccefb(0x1fe)]['display']=_0x393773[_0xbccefb(0x1d5)],this['screenshotModal'][_0xbccefb(0x1fe)][_0xbccefb(0x150)]=_0x393773[_0xbccefb(0x1d5)];const _0x1fad39=document['elementFromPoint'](_0x22989e[_0xbccefb(0x174)],_0x22989e[_0xbccefb(0x134)]),_0x2209e2=_0x1fad39[_0xbccefb(0x1e6)]();this[_0xbccefb(0x194)][_0xbccefb(0x1fe)]['display']='',this[_0xbccefb(0x162)][_0xbccefb(0x1fe)][_0xbccefb(0x11c)]=_0x393773['oSZhT'],this[_0xbccefb(0x162)]['style']['left']=_0x2209e2[_0xbccefb(0x22c)]+'px',this[_0xbccefb(0x162)]['style'][_0xbccefb(0x1a5)]=_0x2209e2[_0xbccefb(0x1a5)]+'px',this[_0xbccefb(0x162)][_0xbccefb(0x1fe)][_0xbccefb(0x115)]=_0x2209e2[_0xbccefb(0x115)]+'px',this[_0xbccefb(0x162)][_0xbccefb(0x1fe)][_0xbccefb(0x1ec)]=_0x2209e2[_0xbccefb(0x1ec)]+'px',this[_0xbccefb(0x162)][_0xbccefb(0x129)][_0xbccefb(0x14b)](_0x393773[_0xbccefb(0x1a2)]),this[_0xbccefb(0x22e)][_0xbccefb(0x1fe)][_0xbccefb(0x11c)]=_0x393773['oSZhT'],this[_0xbccefb(0x22e)]['style']['left']=_0x2209e2[_0xbccefb(0x22c)]+'px',this[_0xbccefb(0x22e)]['style'][_0xbccefb(0x1a5)]=_0x393773[_0xbccefb(0x110)],this['topSide'][_0xbccefb(0x1fe)][_0xbccefb(0x115)]=_0x2209e2[_0xbccefb(0x115)]+0x8+'px',this[_0xbccefb(0x22e)][_0xbccefb(0x1fe)][_0xbccefb(0x1ec)]=_0x2209e2[_0xbccefb(0x1a5)]+'px',this[_0xbccefb(0x22e)][_0xbccefb(0x1fe)][_0xbccefb(0x1f1)]=_0x393773[_0xbccefb(0x220)],this[_0xbccefb(0x201)][_0xbccefb(0x1fe)][_0xbccefb(0x11c)]=_0x393773[_0xbccefb(0x170)],this['leftSide'][_0xbccefb(0x1fe)][_0xbccefb(0x22c)]='0px',this[_0xbccefb(0x201)][_0xbccefb(0x1fe)]['top']=_0x393773[_0xbccefb(0x110)],this['leftSide'][_0xbccefb(0x1fe)][_0xbccefb(0x115)]=_0x2209e2[_0xbccefb(0x22c)]+'px',this['leftSide'][_0xbccefb(0x1fe)]['height']=_0x393773['jmqGa'],this[_0xbccefb(0x201)][_0xbccefb(0x1fe)][_0xbccefb(0x1f1)]=_0x393773[_0xbccefb(0x220)],this['bottomSide'][_0xbccefb(0x1fe)][_0xbccefb(0x11c)]=_0x393773[_0xbccefb(0x170)],this['bottomSide'][_0xbccefb(0x1fe)][_0xbccefb(0x22c)]=_0x2209e2[_0xbccefb(0x22c)]+'px',this['bottomSide'][_0xbccefb(0x1fe)][_0xbccefb(0x1a5)]=_0x393773['qgMjN'](_0x2209e2[_0xbccefb(0x228)],0x8)+'px',this['bottomSide'][_0xbccefb(0x1fe)][_0xbccefb(0x115)]=_0x2209e2['width']+0x8+'px',this[_0xbccefb(0x193)]['style'][_0xbccefb(0x1ec)]=_0x393773[_0xbccefb(0x192)],this[_0xbccefb(0x193)][_0xbccefb(0x1fe)][_0xbccefb(0x1f1)]=_0x393773['jAhDQ'],this[_0xbccefb(0x196)]['style'][_0xbccefb(0x11c)]=_0x393773[_0xbccefb(0x170)],this['rightSide'][_0xbccefb(0x1fe)][_0xbccefb(0x22c)]=_0x393773[_0xbccefb(0x20c)](_0x2209e2[_0xbccefb(0x1ae)],0x8)+'px';;this[_0xbccefb(0x196)][_0xbccefb(0x1fe)]['top']=_0x393773[_0xbccefb(0x110)],this['rightSide'][_0xbccefb(0x1fe)]['width']=_0x393773[_0xbccefb(0x147)],this[_0xbccefb(0x196)][_0xbccefb(0x1fe)][_0xbccefb(0x1ec)]=_0x393773[_0xbccefb(0x192)],this['rightSide']['style'][_0xbccefb(0x1f1)]=_0x393773[_0xbccefb(0x220)],this[_0xbccefb(0x194)]['style'][_0xbccefb(0x1f1)]=_0x393773[_0xbccefb(0x1d2)];},this[_0x1084d3(0x127)]=_0x19ea27=>{const _0x41d191=_0x1084d3;_0x19ea27[_0x41d191(0x1c4)]();if(this[_0x41d191(0x162)])this['elementSelected'][_0x41d191(0x129)][_0x41d191(0x14b)](_0x393773['jlcWO']);let _0x1e309d=this[_0x41d191(0x162)][_0x41d191(0x1e6)]()[_0x41d191(0x1a5)];this['elementSelected'][_0x41d191(0x1fe)]['top']=_0x393773[_0x41d191(0x21e)](_0x1e309d,window['pageYOffset'])+'px';const _0x272493=this[_0x41d191(0x162)][_0x41d191(0x1f6)](!![]);document['body'][_0x41d191(0x11d)](_0x272493),this[_0x41d191(0x162)][_0x41d191(0x1fe)][_0x41d191(0x1a5)]=_0x1e309d+'px',this[_0x41d191(0x1c6)]=_0x393773['FyrRH'](_0xc8242c,document[_0x41d191(0x108)])[_0x41d191(0x168)](_0x125674=>{const _0x47a240=_0x41d191,_0x2c0d75=_0x125674[_0x47a240(0x1fd)]();return document[_0x47a240(0x108)][_0x47a240(0x1cc)](_0x272493),_0x2c0d75;})[_0x41d191(0x122)](function(_0xf90c8c){const _0x1cd4a4=_0x41d191;return console[_0x1cd4a4(0x189)](_0xf90c8c),'';});const _0x43d133=document[_0x41d191(0x182)](_0x41d191(0x16c))[0x0];_0x43d133['style'][_0x41d191(0x1e4)]=_0x393773[_0x41d191(0x213)],this[_0x41d191(0x1e3)]=!![],this[_0x41d191(0x119)][_0x41d191(0x1fe)]['display']=_0x393773[_0x41d191(0x156)],this[_0x41d191(0x1f0)]=!![];},this['sending']=![],this[_0x1084d3(0x15c)]='',this[_0x1084d3(0x217)]='',this[_0x1084d3(0x16b)]=![],this[_0x1084d3(0x118)]=![],this[_0x1084d3(0x1ad)]=0x1f4,this[_0x1084d3(0x1c6)]=undefined,this['modalTitle']=_0x393773[_0x1084d3(0x202)],this[_0x1084d3(0x1a1)]=_0x1084d3(0x144),this[_0x1084d3(0x1a3)]=_0x393773['TggZM'],this[_0x1084d3(0x181)]=_0x393773[_0x1084d3(0x121)],this[_0x1084d3(0x166)]=_0x393773[_0x1084d3(0x10a)],this[_0x1084d3(0x161)]='center',this[_0x1084d3(0x177)]=_0x1084d3(0x1be),this[_0x1084d3(0x20b)]='',this[_0x1084d3(0x1a0)]=_0x393773['rtMFS'],this[_0x1084d3(0x187)]=_0x393773['eySpQ'],this[_0x1084d3(0x10d)]='',this[_0x1084d3(0x17b)]=_0x393773[_0x1084d3(0x19b)],this[_0x1084d3(0x1cb)]=_0x393773['JkBpH'],this[_0x1084d3(0x1f0)]=![],this[_0x1084d3(0x167)]=![],this[_0x1084d3(0x1e3)]=![],this['hideScreenshotButton']=![],this[_0x1084d3(0x1b5)]=![];}[_0x58b3d6(0x211)](){const _0x461d45=_0x58b3d6;this[_0x461d45(0x206)](),this['formEmail']=this[_0x461d45(0x10d)];}async[_0x58b3d6(0x206)](){const _0x157f31=_0x58b3d6,_0x116f88={'jenvG':function(_0xef75f7,_0x132f93){return _0xef75f7(_0x132f93);},'RrmpX':function(_0x1b4a54,_0x59a277){return _0x1b4a54+_0x59a277;},'ufRMp':function(_0x482d26,_0x4f1005){return _0x482d26+_0x4f1005;}};try{const _0x33d05c=await _0x116f88[_0x157f31(0x19a)](fetch,_0x116f88[_0x157f31(0x172)](_0x116f88['ufRMp'](_0x157f31(0x1fa),this[_0x157f31(0x20b)]),'/')),_0x1fdbc4=await _0x33d05c[_0x157f31(0x1dd)]();this['whitelabel']=_0x1fdbc4[_0x157f31(0x1b5)];}catch(_0x451dad){console[_0x157f31(0x1a9)](_0x451dad);}}['resetOverflow'](){const _0x42b333=_0x58b3d6,_0x357f9b={'fyfqz':_0x42b333(0x16c),'fnnDq':_0x42b333(0x1c0)},_0x272be2=document[_0x42b333(0x182)](_0x357f9b[_0x42b333(0x130)])[0x0];_0x272be2[_0x42b333(0x1fe)][_0x42b333(0x1e4)]=_0x357f9b[_0x42b333(0x21d)];}[_0x58b3d6(0x215)](_0x31a7b9){const _0xfe464f=_0x58b3d6;this[_0xfe464f(0x15c)]=_0x31a7b9[_0xfe464f(0x1ca)][_0xfe464f(0x12b)];}[_0x58b3d6(0x21f)](_0xd582ba){const _0x3a0d7f=_0x58b3d6;this[_0x3a0d7f(0x217)]=_0xd582ba[_0x3a0d7f(0x1ca)][_0x3a0d7f(0x12b)];}[_0x58b3d6(0x15b)](){const _0x361257=_0x58b3d6,_0x1f387d={'LSugq':function(_0x240504,_0x7c967f,_0x3f66e0,_0x521724,_0x9cbcc2){return _0x240504(_0x7c967f,_0x3f66e0,_0x521724,_0x9cbcc2);},'tJQWv':_0x361257(0x209),'UJflr':_0x361257(0x1dc),'Vlfna':function(_0x51caee,_0x3f92cb,_0x2ed935,_0x43539f,_0x3c1aa9,_0x5d6b81,_0x7a4916,_0x2acf4c,_0x55c8f7,_0x4d546b){return _0x51caee(_0x3f92cb,_0x2ed935,_0x43539f,_0x3c1aa9,_0x5d6b81,_0x7a4916,_0x2acf4c,_0x55c8f7,_0x4d546b);},'viMYs':function(_0x527c2f,_0x1ae6a3,_0x5df1ce){return _0x527c2f(_0x1ae6a3,_0x5df1ce);},'aAkYv':_0x361257(0x125),'fStbZ':_0x361257(0x13a),'FkBrA':_0x361257(0x227),'bKsqh':_0x361257(0x165),'hqnkJ':function(_0xdb97ce,_0x226f60,_0x4a6603,_0x58bcff,_0x5ced96){return _0xdb97ce(_0x226f60,_0x4a6603,_0x58bcff,_0x5ced96);},'QeyzZ':_0x361257(0x16d),'iAONk':_0x361257(0x12c),'NibyQ':function(_0x1c1318,_0x1e9f4f,_0x43e5ac,_0x39b7b6){return _0x1c1318(_0x1e9f4f,_0x43e5ac,_0x39b7b6);},'fheke':function(_0x293988,_0x18f357,_0x551d8f,_0x758cba,_0x2ef5bc){return _0x293988(_0x18f357,_0x551d8f,_0x758cba,_0x2ef5bc);},'kWEPu':_0x361257(0x1da),'fsINv':_0x361257(0x210),'HrFOE':_0x361257(0x1e7),'STbsL':'none','OiLDX':_0x361257(0x113),'Unlha':_0x361257(0x22b),'REksr':_0x361257(0x1b6),'ztkrP':_0x361257(0x136),'ytBXt':function(_0x35d087,_0x2163cc,_0x5cd8d2){return _0x35d087(_0x2163cc,_0x5cd8d2);},'pnRnm':function(_0x3914eb,_0x5019d0,_0x18b023){return _0x3914eb(_0x5019d0,_0x18b023);},'jqwVS':function(_0x212a97,_0x323b01,_0x3a9350,_0x54741e){return _0x212a97(_0x323b01,_0x3a9350,_0x54741e);},'Hmplz':_0x361257(0x225),'ffErP':function(_0x240cb8,_0x57d2e2){return _0x240cb8==_0x57d2e2;},'LvjXb':function(_0x8a87d4,_0x67671f,_0x3fcf1c,_0x1613b9){return _0x8a87d4(_0x67671f,_0x3fcf1c,_0x1613b9);},'FSzjM':function(_0x31f7f2,_0x11549f,_0x138221,_0x5d5414){return _0x31f7f2(_0x11549f,_0x138221,_0x5d5414);},'GoFmA':_0x361257(0x1c5),'xyeOz':'feedback-modal-close','BXKie':function(_0x4f3a67,_0x7f38f5,_0x31ad34,_0x357955,_0x1bee4b){return _0x4f3a67(_0x7f38f5,_0x31ad34,_0x357955,_0x1bee4b);},'BBalN':_0x361257(0x107),'yDtDJ':function(_0x1286d1,_0x2496c1,_0x34673b){return _0x1286d1(_0x2496c1,_0x34673b);},'ZEQIm':function(_0x3b77f3,_0x5895e1,_0x356ce5,_0x39747b){return _0x3b77f3(_0x5895e1,_0x356ce5,_0x39747b);},'UQEzZ':function(_0x1b86d9,_0x749a09,_0x126070,_0x1f0224,_0x211568,_0x5416bb){return _0x1b86d9(_0x749a09,_0x126070,_0x1f0224,_0x211568,_0x5416bb);},'kZpey':_0x361257(0x135),'bRHUD':function(_0x5f3020,_0x57da2e,_0x245ad0,_0x18e6e1){return _0x5f3020(_0x57da2e,_0x245ad0,_0x18e6e1);},'xyAYR':_0x361257(0x12a),'nPFFI':_0x361257(0x1db),'iYeMc':_0x361257(0x1b1),'LeAWk':_0x361257(0x1d7),'nvena':'currentColor','Lnnoz':'feather\x20feather-camera','hytqs':function(_0x5ecd74,_0x355fe0,_0x13f540){return _0x5ecd74(_0x355fe0,_0x13f540);},'QfyiK':_0x361257(0x17e),'bDquB':'M23\x2019a2\x202\x200\x200\x201-2\x202H3a2\x202\x200\x200\x201-2-2V8a2\x202\x200\x200\x201\x202-2h4l2-3h6l2\x203h4a2\x202\x200\x200\x201\x202\x202z','jhuMi':_0x361257(0x1d1),'fkMyd':function(_0x39bf5e,_0x5678d5,_0x589399,_0x1d1184){return _0x39bf5e(_0x5678d5,_0x589399,_0x1d1184);},'SMObo':_0x361257(0x1bc),'ClAkR':_0x361257(0x216),'GgbqT':function(_0xe8624c,_0x494684,_0xb25db1,_0x16a5d8,_0x4b4145){return _0xe8624c(_0x494684,_0xb25db1,_0x16a5d8,_0x4b4145);},'FYtJa':_0x361257(0x141),'FTSKa':_0x361257(0x169),'EJzoD':function(_0x55a91a,_0x3fa1fd,_0x5b2416,_0x3cc3dd,_0x18f11b,_0x4ceba8){return _0x55a91a(_0x3fa1fd,_0x5b2416,_0x3cc3dd,_0x18f11b,_0x4ceba8);},'eYnGp':_0x361257(0x1e0),'onidM':_0x361257(0x1a6),'gRuXB':_0x361257(0x1bf),'hDfFs':_0x361257(0x124),'eAcCm':_0x361257(0x15a),'ynHtN':_0x361257(0x1ef),'aWlmG':'#4FD1C5','YzgbI':_0x361257(0x126),'sqxmJ':_0x361257(0x146),'GRnCC':_0x361257(0x1c2),'hqgGj':_0x361257(0x16a),'YSgKg':_0x361257(0x1b0),'WytmO':_0x361257(0x10c),'VLcMa':_0x361257(0x1b9)};return _0x1f387d[_0x361257(0x13d)](h,_0x1f387d['tJQWv'],{'class':_0x1f387d['UJflr']},this[_0x361257(0x167)]&&_0x1f387d[_0x361257(0x208)](h,_0x1f387d['tJQWv'],{'class':_0x361257(0x16e),'ref':_0x4db006=>this[_0x361257(0x194)]=_0x4db006,'onMouseMove':this[_0x361257(0x16f)]},_0x1f387d['viMYs'](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x1f387d[_0x361257(0x218)],'ref':_0x158bb9=>this[_0x361257(0x162)]=_0x158bb9,'onClick':this[_0x361257(0x127)]}),_0x1f387d[_0x361257(0x14f)](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x1f387d[_0x361257(0x14e)],'ref':_0x35741d=>this[_0x361257(0x22e)]=_0x35741d}),_0x1f387d[_0x361257(0x14f)](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x1f387d['FkBrA'],'ref':_0x26aecb=>this[_0x361257(0x201)]=_0x26aecb}),h(_0x361257(0x209),{'class':_0x1f387d['bKsqh'],'ref':_0x1374d0=>this[_0x361257(0x193)]=_0x1374d0}),h(_0x1f387d[_0x361257(0x21c)],{'class':_0x361257(0x1aa),'ref':_0x43549f=>this[_0x361257(0x196)]=_0x43549f}),_0x1f387d[_0x361257(0x155)](h,_0x1f387d['tJQWv'],{'class':_0x1f387d[_0x361257(0x11a)],'onClick':this[_0x361257(0x18d)]},h(_0x1f387d['iAONk'],null,this['screenshotTopbarText']),_0x1f387d[_0x361257(0x1d8)](h,_0x1f387d[_0x361257(0x14a)],{'class':_0x361257(0x1ea)},_0x1f387d[_0x361257(0x1e9)](h,_0x1f387d['kWEPu'],{'xmlns':_0x1f387d[_0x361257(0x195)],'width':'24','height':'24','viewBox':_0x1f387d[_0x361257(0x15d)],'fill':_0x1f387d[_0x361257(0x226)],'stroke':_0x1f387d[_0x361257(0x13b)],'stroke-width':'2','stroke-linecap':_0x361257(0x22b),'stroke-linejoin':_0x1f387d[_0x361257(0x142)],'class':_0x1f387d[_0x361257(0x123)]},h(_0x1f387d[_0x361257(0x12d)],{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x1f387d[_0x361257(0x157)](h,_0x1f387d[_0x361257(0x12d)],{'x1':'6','y1':'6','x2':'18','y2':'18'})))),_0x1f387d[_0x361257(0x120)](h,_0x1f387d['tJQWv'],{'class':_0x361257(0x1f4),'ref':_0x1e3bc2=>this[_0x361257(0x119)]=_0x1e3bc2})),this[_0x361257(0x1f0)]&&h(_0x1f387d[_0x361257(0x21c)],{'class':'feedback-modal-content\x20feedback-modal-content--'+this[_0x361257(0x161)],'ref':_0x1d930d=>this[_0x361257(0x140)]=_0x1d930d},_0x1f387d[_0x361257(0x1e9)](h,_0x361257(0x209),{'class':_0x361257(0x204)},!this[_0x361257(0x16b)]&&!this['formError']?_0x1f387d[_0x361257(0x131)](h,_0x1f387d['iAONk'],null,this['modalTitle']):this[_0x361257(0x16b)]?h(_0x1f387d[_0x361257(0x14a)],{'class':_0x1f387d[_0x361257(0x179)]},this[_0x361257(0x1a1)]):this['formError']&&_0x1f387d['ffErP'](this[_0x361257(0x1ad)],0x1f4)?_0x1f387d[_0x361257(0x131)](h,_0x1f387d[_0x361257(0x14a)],{'class':_0x1f387d[_0x361257(0x179)]},this[_0x361257(0x1a3)]):this['formError']&&this['formErrorStatus']==0x193?_0x1f387d[_0x361257(0x131)](h,_0x1f387d['iAONk'],{'class':_0x1f387d[_0x361257(0x179)]},this[_0x361257(0x181)]):this[_0x361257(0x118)]&&_0x1f387d[_0x361257(0x180)](this[_0x361257(0x1ad)],0x194)?_0x1f387d['LvjXb'](h,_0x1f387d[_0x361257(0x14a)],{'class':_0x1f387d[_0x361257(0x179)]},this[_0x361257(0x166)]):_0x1f387d[_0x361257(0x120)](h,_0x1f387d[_0x361257(0x14a)],null),_0x1f387d[_0x361257(0x20d)](h,_0x1f387d[_0x361257(0x173)],{'class':_0x1f387d[_0x361257(0x15e)],'onClick':this[_0x361257(0x111)]},_0x1f387d['BXKie'](h,_0x1f387d[_0x361257(0x222)],{'xmlns':_0x1f387d[_0x361257(0x195)],'width':'24','height':'24','viewBox':_0x1f387d[_0x361257(0x15d)],'fill':_0x1f387d[_0x361257(0x226)],'stroke':_0x1f387d[_0x361257(0x12f)],'stroke-width':'2','stroke-linecap':_0x1f387d[_0x361257(0x142)],'stroke-linejoin':_0x1f387d[_0x361257(0x142)],'class':_0x1f387d[_0x361257(0x123)]},h(_0x1f387d[_0x361257(0x12d)],{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x1f387d[_0x361257(0x197)](h,_0x1f387d[_0x361257(0x12d)],{'x1':'6','y1':'6','x2':'18','y2':'18'})))),_0x1f387d[_0x361257(0x159)](h,_0x361257(0x209),{'class':_0x361257(0x1f3)},!this[_0x361257(0x16b)]&&!this['formError']?_0x1f387d['UQEzZ'](h,_0x1f387d[_0x361257(0x214)],{'onSubmit':this[_0x361257(0x212)]},_0x1f387d['bRHUD'](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x1f387d[_0x361257(0x1a8)]},_0x1f387d['viMYs'](h,_0x361257(0x132),{'placeholder':this[_0x361257(0x1cb)],'value':this[_0x361257(0x15c)],'onInput':_0x93a39c=>this[_0x361257(0x215)](_0x93a39c),'required':!![]})),!this[_0x361257(0x10d)]&&_0x1f387d[_0x361257(0x131)](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x1f387d['nPFFI']},_0x1f387d[_0x361257(0x157)](h,_0x1f387d[_0x361257(0x117)],{'type':'email','placeholder':this['emailPlaceholder'],'onInput':_0x42b294=>this['handleEmailInput'](_0x42b294),'value':this[_0x361257(0x217)]})),_0x1f387d[_0x361257(0x155)](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x361257(0x114)+(this[_0x361257(0x12e)]?_0x1f387d['LeAWk']:'')},!this[_0x361257(0x12e)]&&h(_0x1f387d[_0x361257(0x173)],{'type':_0x361257(0x1c5),'class':_0x361257(0x1c5)+(this['encodedScreenshot']?_0x361257(0x18e):''),'title':this[_0x361257(0x1a0)],'onClick':this[_0x361257(0x198)],'disabled':this['sending']},_0x1f387d[_0x361257(0x13d)](h,_0x1f387d[_0x361257(0x222)],{'xmlns':_0x1f387d['fsINv'],'width':'24','height':'24','viewBox':_0x1f387d['HrFOE'],'fill':_0x361257(0x223),'stroke':_0x1f387d['nvena'],'stroke-width':'2','stroke-linecap':_0x361257(0x22b),'stroke-linejoin':_0x1f387d['Unlha'],'class':_0x1f387d[_0x361257(0x153)]},_0x1f387d['hytqs'](h,_0x1f387d['QfyiK'],{'d':_0x1f387d[_0x361257(0x10b)]}),_0x1f387d[_0x361257(0x157)](h,_0x1f387d[_0x361257(0x191)],{'cx':'12','cy':'13','r':'4'}))),_0x1f387d[_0x361257(0x186)](h,_0x1f387d[_0x361257(0x173)],{'class':_0x1f387d[_0x361257(0x173)],'type':_0x361257(0x17a),'disabled':this[_0x361257(0x149)]},this[_0x361257(0x177)]))):_0x1f387d[_0x361257(0x14f)](h,_0x361257(0x12c),null)),_0x1f387d['fkMyd'](h,_0x1f387d[_0x361257(0x21c)],{'class':_0x1f387d[_0x361257(0x1df)],'style':{'display':this[_0x361257(0x1b5)]?_0x1f387d[_0x361257(0x226)]:_0x361257(0x1bd)}},_0x1f387d[_0x361257(0x138)](h,'div',{'class':_0x1f387d[_0x361257(0x203)]},_0x1f387d[_0x361257(0x152)](h,_0x1f387d['kWEPu'],{'class':_0x1f387d[_0x361257(0x1d3)],'viewBox':_0x1f387d['FTSKa'],'xmlns':_0x1f387d[_0x361257(0x195)]},_0x1f387d[_0x361257(0x159)](h,_0x361257(0x1ff),null,_0x1f387d[_0x361257(0x14d)](h,_0x1f387d[_0x361257(0x1f5)],{'cx':_0x1f387d[_0x361257(0x221)],'cy':_0x1f387d[_0x361257(0x200)],'fx':_0x1f387d['onidM'],'fy':_0x1f387d[_0x361257(0x200)],'r':_0x1f387d[_0x361257(0x1e1)],'id':_0x1f387d['eAcCm']},_0x1f387d['hytqs'](h,_0x1f387d[_0x361257(0x13f)],{'stop-color':_0x1f387d['aWlmG'],'offset':'0%'}),_0x1f387d[_0x361257(0x157)](h,_0x1f387d[_0x361257(0x13f)],{'stop-color':'#81E6D9','offset':_0x1f387d[_0x361257(0x21a)]}),_0x1f387d[_0x361257(0x112)](h,_0x1f387d[_0x361257(0x13f)],{'stop-color':_0x1f387d[_0x361257(0x1b2)],'offset':_0x1f387d[_0x361257(0x18c)]}))),_0x1f387d[_0x361257(0x197)](h,_0x1f387d[_0x361257(0x20f)],{'width':'32','height':'32','rx':'16','fill':_0x1f387d[_0x361257(0x205)],'fill-rule':_0x1f387d['WytmO']})),'\x20',h('a',{'href':_0x361257(0x1ce)},_0x1f387d[_0x361257(0x160)])))));}static get['is'](){const _0x208daa=_0x58b3d6,_0x3891f3={'NVoMl':_0x208daa(0x148)};return _0x3891f3[_0x208daa(0x1c7)];}static get[_0x58b3d6(0x17f)](){const _0x44241d=_0x58b3d6,_0x1cb269={'rkVrA':_0x44241d(0x1cf)};return _0x1cb269[_0x44241d(0x19f)];}static get['originalStyleUrls'](){const _0x1b8ee1=_0x58b3d6;return{'$':[_0x1b8ee1(0x154)]};}static get[_0x58b3d6(0x158)](){const _0x9dd6ef=_0x58b3d6,_0x5c61ac={'XXrNe':_0x9dd6ef(0x154)};return{'$':[_0x5c61ac[_0x9dd6ef(0x1ab)]]};}static get[_0x58b3d6(0x1f7)](){const _0x486aa7=_0x58b3d6,_0x2016be={'StXHS':_0x486aa7(0x1ed),'PTAGG':_0x486aa7(0x1d4),'UPnAa':_0x486aa7(0x13c),'aIdPE':_0x486aa7(0x18a),'oYZwx':_0x486aa7(0x175),'rSrEM':'modal-title-error-4-0-3','KOmIn':'\x22Oops!\x20The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.\x22','peXtX':_0x486aa7(0x137),'VwuMx':'\x22Oops!\x20We\x20could\x20not\x20find\x20the\x20provided\x20project\x20id\x20in\x20PushFeedback.\x22','bRZKW':'modal-position','ZxJKE':'\x27center\x27','gSTFf':_0x486aa7(0x17c),'tjggY':_0x486aa7(0x20b),'wASlD':_0x486aa7(0x13e),'tPyyF':_0x486aa7(0x199),'LxwSU':_0x486aa7(0x21b),'UKLpR':'email','AIlOf':_0x486aa7(0x178),'iGTFD':'message-placeholder','goDFN':_0x486aa7(0x19c),'xlGZn':'show-modal','kRxnp':_0x486aa7(0x15f),'IseBY':_0x486aa7(0x1b3),'xVufE':_0x486aa7(0x18f),'VNORo':_0x486aa7(0x1e5)};return{'modalTitle':{'type':_0x2016be[_0x486aa7(0x171)],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':_0x2016be[_0x486aa7(0x171)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be['PTAGG'],'reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x1e8)]},'modalTitleSuccess':{'type':_0x2016be[_0x486aa7(0x171)],'mutable':![],'complexType':{'original':_0x486aa7(0x1ed),'resolved':_0x486aa7(0x1ed),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x10f)],'reflect':![],'defaultValue':_0x2016be['oYZwx']},'modalTitleError':{'type':_0x2016be[_0x486aa7(0x171)],'mutable':![],'complexType':{'original':_0x486aa7(0x1ed),'resolved':_0x486aa7(0x1ed),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x486aa7(0x1b8),'reflect':![],'defaultValue':_0x486aa7(0x22a)},'modalTitleError403':{'type':_0x2016be['StXHS'],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':_0x486aa7(0x1ed),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x1c1)],'reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x1c9)]},'modalTitleError404':{'type':_0x2016be['StXHS'],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':_0x2016be[_0x486aa7(0x171)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x145)],'reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x1a4)]},'modalPosition':{'type':_0x2016be['StXHS'],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':_0x2016be[_0x486aa7(0x171)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x219)],'reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x1cd)]},'sendButtonText':{'type':_0x2016be[_0x486aa7(0x171)],'mutable':![],'complexType':{'original':_0x486aa7(0x1ed),'resolved':_0x2016be[_0x486aa7(0x171)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':'send-button-text','reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x1ac)]},'project':{'type':'string','mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':'string','references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be['tjggY'],'reflect':![],'defaultValue':'\x27\x27'},'screenshotButtonTooltipText':{'type':_0x486aa7(0x1ed),'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':_0x2016be['StXHS'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be['wASlD'],'reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x176)]},'screenshotTopbarText':{'type':_0x2016be[_0x486aa7(0x171)],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':_0x486aa7(0x1ed),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be['LxwSU'],'reflect':![],'defaultValue':'\x27SELECT\x20AN\x20ELEMENT\x20ON\x20THE\x20PAGE\x27'},'email':{'type':_0x486aa7(0x1ed),'mutable':![],'complexType':{'original':'string','resolved':_0x2016be['StXHS'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x14c)],'reflect':![],'defaultValue':'\x27\x27'},'emailPlaceholder':{'type':_0x2016be['StXHS'],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x171)],'resolved':'string','references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x1b4)],'reflect':![],'defaultValue':_0x486aa7(0x11f)},'messagePlaceholder':{'type':_0x2016be['StXHS'],'mutable':![],'complexType':{'original':_0x2016be['StXHS'],'resolved':'string','references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be['iGTFD'],'reflect':![],'defaultValue':_0x486aa7(0x190)},'showModal':{'type':_0x2016be[_0x486aa7(0x116)],'mutable':!![],'complexType':{'original':_0x2016be[_0x486aa7(0x116)],'resolved':_0x2016be[_0x486aa7(0x116)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x1b7)],'reflect':!![],'defaultValue':_0x2016be[_0x486aa7(0x133)]},'showScreenshotMode':{'type':_0x2016be[_0x486aa7(0x116)],'mutable':!![],'complexType':{'original':_0x2016be[_0x486aa7(0x116)],'resolved':_0x2016be[_0x486aa7(0x116)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x11b)],'reflect':!![],'defaultValue':'false'},'hasSelectedElement':{'type':_0x2016be[_0x486aa7(0x116)],'mutable':!![],'complexType':{'original':_0x2016be[_0x486aa7(0x116)],'resolved':_0x2016be[_0x486aa7(0x116)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x128)],'reflect':!![],'defaultValue':_0x2016be['kRxnp']},'hideScreenshotButton':{'type':_0x2016be[_0x486aa7(0x116)],'mutable':![],'complexType':{'original':_0x2016be[_0x486aa7(0x116)],'resolved':_0x2016be[_0x486aa7(0x116)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x2016be[_0x486aa7(0x1f8)],'reflect':![],'defaultValue':_0x2016be[_0x486aa7(0x133)]}};}static get[_0x58b3d6(0x1f9)](){return{'sending':{},'formMessage':{},'formEmail':{},'formSuccess':{},'formError':{},'formErrorStatus':{},'encodedScreenshot':{},'whitelabel':{}};}}
|
package/dist/collection/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
function _0x453e(_0x386861,_0x4c38b5){var _0x50751e=_0x5075();return _0x453e=function(_0x453e59,_0x10fdc6){_0x453e59=_0x453e59-0x6e;var _0x3f5de6=_0x50751e[_0x453e59];return _0x3f5de6;},_0x453e(_0x386861,_0x4c38b5);}function _0x5075(){var _0x252679=['2644945TPxGJv','21bhKHPq','138796cNZpzO','11737935cJrxmN','428601unwZPC','329eMqQiy','1325418oXNLqx','216468BjlSYz','55152DwjKly'];_0x5075=function(){return _0x252679;};return _0x5075();}(function(_0x5c0e2a,_0x231490){var _0x1267e0=_0x453e,_0x15806e=_0x5c0e2a();while(!![]){try{var _0x5b3d06=parseInt(_0x1267e0(0x70))/0x1+-parseInt(_0x1267e0(0x73))/0x2+parseInt(_0x1267e0(0x76))/0x3*(-parseInt(_0x1267e0(0x6e))/0x4)+-parseInt(_0x1267e0(0x75))/0x5+-parseInt(_0x1267e0(0x72))/0x6+-parseInt(_0x1267e0(0x71))/0x7*(parseInt(_0x1267e0(0x74))/0x8)+parseInt(_0x1267e0(0x6f))/0x9;if(_0x5b3d06===_0x231490)break;else _0x15806e['push'](_0x15806e['shift']());}catch(_0x5d1f9f){_0x15806e['push'](_0x15806e['shift']());}}}(_0x5075,0x4b243));export*from'./components';
|