pushfeedback 0.1.19 → 0.1.21

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.
@@ -8,6 +8,16 @@
8
8
  z-index: var(--feedback-modal-wrapper-z-index);
9
9
  }
10
10
 
11
+ .feedback-overlay {
12
+ background-color: var(--feedback-modal-screenshot-bg-color);
13
+ height: 100%;
14
+ left: 0;
15
+ position: fixed;
16
+ top: 0;
17
+ width: 100%;
18
+ z-index: var(--feedback-modal-screnshot-z-index);
19
+ }
20
+
11
21
  .feedback-modal {
12
22
  display: inline-block;
13
23
  position: relative;
@@ -60,7 +70,40 @@
60
70
  left: var(--feedback-modal-content-position-left);
61
71
  top: var(--feedback-modal-content-position-top);
62
72
  transform: initial;
63
- }
73
+ }
74
+
75
+ .feedback-modal-content.feedback-modal-content--center-left {
76
+ left: 5px;
77
+ right: auto;
78
+ top: 50%;
79
+ transform: translateY(-50%);
80
+ }
81
+
82
+ .feedback-modal-content.feedback-modal-content--center-right {
83
+ left: auto;
84
+ right: 5px;
85
+ top: 50%;
86
+ transform: translateY(-50%);
87
+ }
88
+
89
+ .feedback-modal-content.feedback-modal-content--sidebar-left {
90
+ left: 0;
91
+ right: auto;
92
+ height: 100vh;
93
+ top: 0;
94
+ transform: initial;
95
+ border-radius: 0;
96
+ }
97
+
98
+ .feedback-modal-content.feedback-modal-content--sidebar-right {
99
+ left: auto;
100
+ right: 0;
101
+ height: 100vh;
102
+ top: 0;
103
+ transform: initial;
104
+ border-radius: 0;
105
+ }
106
+
64
107
  }
65
108
 
66
109
  .feedback-modal-header {
@@ -71,38 +114,38 @@
71
114
  font-size: var(--feedback-header-font-size);
72
115
  font-weight: var(--feedback-modal-header-font-weight);
73
116
  justify-content: space-between;
74
- margin-bottom: 10px;
117
+ margin-bottom: 20px;
75
118
  }
76
119
 
77
- .feedback-modal-text {
78
- margin-bottom: 10px;
79
- }
80
120
 
81
121
  .feedback-modal-text textarea {
122
+ background-color: var(--feedback-modal-input-bg-color);
82
123
  border: 1px solid var(--feedback-modal-input-border-color);
83
- border-radius: 4px;
124
+ border-radius: var(--feedback-modal-input-border-radius);
84
125
  box-sizing: border-box;
85
126
  font-family: var(--feedback-modal-content-font-family);
86
127
  font-size: var(--feedback-modal-input-font-size);
87
- height: 100px;
128
+ margin-bottom: 20px;
129
+ height: 150px;
130
+ min-height: 150px;
88
131
  padding: 10px;
89
- resize: none;
132
+ resize: vertical;
90
133
  width: 100%;
91
134
  }
92
135
 
93
- .feedback-modal-email {
94
- margin-bottom: 20px;
95
- }
96
136
 
97
137
  .feedback-modal-email input {
138
+ background-color: var(--feedback-modal-input-bg-color);
98
139
  border: 1px solid var(--feedback-modal-input-border-color);
99
- border-radius: 4px;
140
+ border-radius: var(--feedback-modal-input-border-radius);
100
141
  box-sizing: border-box;
101
142
  font-family: var(--feedback-modal-content-font-family);
102
143
  font-size: var(--feedback-modal-input-font-size);
144
+ margin-bottom: 20px;
103
145
  height: 40px;
104
146
  padding: 10px;
105
147
  width: 100%;
148
+ margin-bottom: 20px;
106
149
  }
107
150
 
108
151
  .feedback-modal-text textarea:focus, .feedback-modal-email input:focus {
@@ -112,33 +155,70 @@
112
155
 
113
156
  .feedback-modal-buttons {
114
157
  display: flex;
115
- justify-content: space-between;
158
+ flex-direction: column;
116
159
  }
117
160
 
118
- .feedback-modal-buttons.single {
119
- justify-content: flex-end;
161
+ .feedback-modal-buttons .feedback-modal-button {
162
+ margin-bottom: 20px;
120
163
  }
121
164
 
122
- .button {
165
+ .feedback-modal-button {
166
+ align-items: center;
123
167
  background-color: transparent;
124
168
  border: 1px solid var(--feedback-modal-button-border-color);
125
169
  border-radius: var(--feedback-modal-button-border-radius);
126
170
  color: var(--feedback-modal-button-text-color);
127
171
  cursor: pointer;
172
+ display: flex;
128
173
  font-size: var(--feedback-modal-button-font-size);
129
174
  font-family: var(--feedback-modal-content-font-family);
130
175
  font-weight: 500;
131
- min-height: 20px;
176
+ justify-content: center;
177
+ min-height: 40px;
132
178
  padding: 5px 10px;
133
179
  }
134
180
 
135
- .button:hover,
136
- .button.active {
181
+ .feedback-modal-button svg {
182
+ margin-right: 6px;
183
+ }
184
+
185
+ .feedback-modal-button path {
186
+ fill: var(--feedback-modal-button-icon-fill);
187
+ }
188
+
189
+ .feedback-modal-button:hover path,
190
+ .feedback-modal-button--active path {
191
+ fill: var(--feedback-modal-button-icon-fill-active);
192
+ }
193
+
194
+ .feedback-modal-button--submit {
195
+ background-color: var(--feedback-modal-button-submit-bg-color);
196
+ border: 1px solid var(--feedback-modal-button-border-color-active);
197
+ color: var(--feedback-modal-button-submit-text-color);
198
+ }
199
+
200
+ .feedback-modal-button:hover,
201
+ .feedback-modal-button--active {
137
202
  background-color: var(--feedback-modal-button-bg-color-active);
138
203
  border: 1px solid var(--feedback-modal-button-border-color-active);
139
204
  color: var(--feedback-modal-button-text-color-active);
140
205
  }
141
206
 
207
+ .feedback-modal-button--submit:hover{
208
+ background-color: var(--feedback-modal-button-submit-bg-color-hover);
209
+ border: 1px solid var(--feedback-modal-button-submit-border-color-hover);
210
+ color: var(--feedback-modal-button-submit-text-color-hover);
211
+ }
212
+
213
+
214
+ .feedback-modal-input-heading{
215
+ display: block;
216
+ font-size: 14px;
217
+ font-weight: 300;
218
+ padding-bottom: 10px;
219
+ font-family: var(--feedback-modal-content-font-family);
220
+ }
221
+
142
222
  .feedback-modal-footer {
143
223
  font-size: 12px;
144
224
  text-align: center;
@@ -157,20 +237,19 @@
157
237
  margin-top: 5px;
158
238
  }
159
239
 
160
- .feedback-logo svg {
161
- margin-right: 5px;
162
- max-width: 12px;
163
- }
240
+ .feedback-logo a {
241
+ margin-left: 3px;
242
+ }
164
243
 
165
244
  .feedback-modal-close {
166
245
  background-color: var(--feedback-modal-close-bg-color);
167
246
  border: 0;
168
247
  border-radius: 50%;
169
248
  cursor: pointer;
170
- height: 24px;
249
+ height: 22px;
171
250
  margin-left: auto;
172
251
  padding: 0;
173
- width: 24px;
252
+ width: 22px;
174
253
  }
175
254
 
176
255
  .feedback-modal-screenshot {
@@ -203,9 +282,9 @@
203
282
  }
204
283
 
205
284
  .feedback-modal-screenshot-close {
206
- height: 18px;
285
+ height: 24px;
207
286
  padding-left: 10px;
208
- width: 18px;
287
+ width: 24px;
209
288
  }
210
289
 
211
290
 
@@ -1 +1 @@
1
- const _0x1a210f=_0x178d;(function(_0x1c55cd,_0x3a5e0d){const _0x4dce11=_0x178d,_0x5515ce=_0x1c55cd();while(!![]){try{const _0xa824b=parseInt(_0x4dce11(0x26e))/0x1*(parseInt(_0x4dce11(0x190))/0x2)+-parseInt(_0x4dce11(0x1fa))/0x3+parseInt(_0x4dce11(0x1b9))/0x4*(-parseInt(_0x4dce11(0x26c))/0x5)+parseInt(_0x4dce11(0x291))/0x6*(-parseInt(_0x4dce11(0x25f))/0x7)+parseInt(_0x4dce11(0x23f))/0x8*(-parseInt(_0x4dce11(0x29f))/0x9)+-parseInt(_0x4dce11(0x226))/0xa+parseInt(_0x4dce11(0x265))/0xb;if(_0xa824b===_0x3a5e0d)break;else _0x5515ce['push'](_0x5515ce['shift']());}catch(_0x2d6e19){_0x5515ce['push'](_0x5515ce['shift']());}}}(_0x39ca,0x78ccb));import{h}from'@stencil/core';function _0x39ca(){const _0x39775e=['elementSelected','\x27Send\x27','left','rgba(0,\x200,\x200,\x200.4)','rBntD','close','scrollTimeout','https://app.pushfeedback.com/api/projects/','RKGwB','\x27Select\x20an\x20element\x20on\x20this\x20page\x27','errorMessage403','RUbFE','WCnjx','nZwLg','Zuyft','dTfnu','978069mbzmmh','line','UfnaQ','application/json','rzQru','transparent','split','formSuccess','XAgJG','false','lYVOu','OajiC','stop','gZArQ','ZmRoO','HhWYv','sMWos','emailPlaceholder','show-modal','feedback-modal-email','currentColor','oELqo','AAwAo','modal-title-success','qLIQq','pNoHx','showScreenshotTopBar','NXlLr','yWTYW','errorMessage404','gkDhn','100%','scrollX','removeChild','hDMwN','message-placeholder','OuXRU','Unoet','top','Please\x20try\x20again\x20later.','project','absolute','height','IkVIM','279000GBaRPB','86.063%','bottomSide','GZcvL','WnZmZ','scrollTo','modalTitle','defs','Bwtit','BJAAV','#ccc','fgQYf','YimFs','Take\x20a\x20Screenshot','value','states','feedback-modal-buttons\x20','cloneNode','block','\x27Email\x20address\x20(optional)\x27','rYqoM','boolean','input','appendChild','screenshot-button-tooltip-text','168RQBUuL','button','FIZfq','mllQW','handleMouseClickedSelectedElement','whitelabel','round','FZrQC','url(#footer-logo)','handleEmailInput','screenshotTopbarText','removeEventListener','UiWNe','showScreenshotMode','PushFeedback','addEventListener','modalContent','openScreenShot','iscUJ','HYzPE','modalPosition','scrollY','messagePlaceholder','\x22We\x20could\x20not\x20find\x20the\x20provided\x20project\x20ID\x20in\x20PushFeedback.\x22','GynJW','innerHeight','\x27center\x27','modal-title','feedback-modal-close','innerWidth','add','feedback-modal-screenshot','7PSCDax','trrYV','position','wWRYl','https://app.pushfeedback.com/api/feedback/','documentElement','25823501cAGMsI','single','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','xoyVc','rightSide','send-button-text','LqVvH','30ozlaqD','render','2uaWdjE','COgOh','feather\x20feather-camera','display','BQNnn','eGVMn','closeScreenShot','feedback-modal-element-hover','HcTbf','screenshot-topbar-text','btWpT','fetchProjectData','NiqgC','FNNbI','adqtq','#191919','Cuato','Rpzxk','radialGradient','show-screenshot-top-bar','bottom','feedback-modal-wrapper','BKZiX','cOniU','\x22Please\x20try\x20again\x20later.\x22','21.152%','clientX','width','ygeqp','GwZHi','modalTitleSuccess','showModal','eEjub','then','How\x20could\x20this\x20page\x20be\x20more\x20helpful?','3092952dNDOmE','pxGZg','toDataURL','scroll','SGanV','sbmpx','error','Select\x20an\x20element\x20on\x20this\x20page','http://www.w3.org/2000/svg','yjSRj','mtDMP','w-8\x20h-8','right-side','email-placeholder','330021BHgqWq','coPkJ','handleSubmit','hasSelectedElement','HgEvD','feedback-modal-screenshot-element-selected','sending','span','OsBKU','feedback-modal-text','sendButtonText','right','#338CF5','catch','backgroundColor','email','formError','show-screenshot-mode','KmJKl','feedback-logo','eMeWN','modal-title-error','nKFVj','text-center','feedback-modal-body','div','feedback-modal-footer','has-selected-element','PBStI','json','string','ZXvZq','jSmxS','pdvld','0\x200\x2032\x2032','POST','\x22The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.\x22','RTHhQ','vsPMj','SULdG','zfLCa','fhhCQ','target','mKGDo','feedback-modal-screenshot-closing','preventDefault','757564BpmrCZ','textarea','Email\x20address\x20(optional)','feedback-modal-screenshot-header','jUKHf','captureScreenshot','gPwZv','WNvmE','remove','\x27Share\x20your\x20feedback\x27','gmeTD','kbFsE','ehEAE','CNIgJ','status','MACDJ','https://pushfeedback.com','handleMouseOverScreenShot','screenshotButtonTooltipText','handleMessageInput','leftSide','rFmEl','encodedScreenshot','BFUFm','11|10|9|5|4|0|1|7|8|2|6|3','footer-logo','bhZsx','qRxZP','elementFromPoint','FHGel','feedback-modal.css','feedback-modal-content\x20feedback-modal-content--','shadow','feedback-modal-element-selected','none','rect','\x27How\x20could\x20this\x20page\x20be\x20more\x20helpful?\x27','PeoyY','feedback-modal-header','feedback-modal-message','topSide','647264lqCQST','formEmail','vfkdg','vJKtG','Oops!','style','100vh','JjKVA','uIEBG','tmGsp','onScrollDebounced','getBoundingClientRect','ZtAvQ','top-side','We\x20could\x20not\x20find\x20the\x20provided\x20project\x20ID\x20in\x20PushFeedback.','79.941%','LmkOi','rSPiM','error-message-4-0-4','feedback-modal','The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.','XcXue','circle','Share\x20your\x20feedback','Tnivz','YYBum','formErrorStatus','body','styleUrls','screenshotModal','classList','feedback-modal-screenshot-open--scroll','\x27Take\x20a\x20Screenshot\x27','log','qyYCL','resetOverflow','HDUaB','ZHQoP','wuFyV','eNtYa','atgTo','hideScreenshotButton','errorMessage','formMessage','feedback-modal-screenshot-open','cfnJt','WWbsR','svg','etqcd'];_0x39ca=function(){return _0x39775e;};return _0x39ca();}function _0x178d(_0x102bda,_0x3474d6){const _0x39cac7=_0x39ca();return _0x178d=function(_0x178d92,_0x5ca126){_0x178d92=_0x178d92-0x18e;let _0x2f0afd=_0x39cac7[_0x178d92];return _0x2f0afd;},_0x178d(_0x102bda,_0x3474d6);}import _0x355708 from'html2canvas';export class FeedbackModal{constructor(){const _0x551584=_0x178d,_0x52e746={'WnZmZ':_0x551584(0x294),'FIZfq':function(_0x57831d,_0x21eaa6,_0x476b83){return _0x57831d(_0x21eaa6,_0x476b83);},'qRxZP':function(_0x590cf3,_0x2c732e,_0x20e202){return _0x590cf3(_0x2c732e,_0x20e202);},'KmJKl':_0x551584(0x2c2),'mllQW':_0x551584(0x1fd),'HDmIy':_0x551584(0x1a8),'LmkOi':function(_0x3b2051,_0x4553f4){return _0x3b2051>_0x4553f4;},'RKGwB':function(_0x47cb0e,_0x115ed1){return _0x47cb0e*_0x115ed1;},'HcTbf':function(_0x25f9f5,_0x4869ab){return _0x25f9f5(_0x4869ab);},'XVPis':_0x551584(0x1e5),'NomCG':_0x551584(0x1b2),'AAwAo':_0x551584(0x223),'fgQYf':_0x551584(0x275),'uIEBG':'0px','WKPfz':function(_0x427875,_0x37c1f5){return _0x427875+_0x37c1f5;},'coPkJ':_0x551584(0x1ed),'rFmEl':_0x551584(0x1bf),'dTfnu':function(_0x47019a,_0x37a216){return _0x47019a+_0x37a216;},'GwZHi':function(_0x2e95bf,_0x3f4d7f){return _0x2e95bf+_0x3f4d7f;},'JjKVA':_0x551584(0x219),'NXlLr':_0x551584(0x1ff),'bhZsx':function(_0xe5b081,_0x34d696){return _0xe5b081+_0x34d696;},'YSWOJ':'Screenshot\x20captured','TUSMp':'Failed\x20to\x20capture\x20screenshot:','vsPMj':_0x551584(0x221),'SULdG':_0x551584(0x1cd),'vJKtG':_0x551584(0x1d0),'IkVIM':_0x551584(0x1bd),'atgTo':'center','iscUJ':'Send','pdvld':_0x551584(0x298),'lYVOu':_0x551584(0x192),'GdIlE':_0x551584(0x290)};this['onScrollDebounced']=()=>{const _0x45bb32=_0x551584;clearTimeout(this['scrollTimeout']),this[_0x45bb32(0x1f0)]=_0x52e746[_0x45bb32(0x241)](setTimeout,()=>{const _0x4be60f=_0x45bb32;document[_0x4be60f(0x264)]['classList']['remove'](_0x4be60f(0x18e)),document[_0x4be60f(0x264)]['style'][_0x4be60f(0x220)]='',window[_0x4be60f(0x24a)](_0x52e746[_0x4be60f(0x22a)],this[_0x4be60f(0x1c3)]);},0xc8);},this['handleSubmit']=async _0x2c70b1=>{const _0x10f464=_0x551584;_0x2c70b1[_0x10f464(0x18f)](),this['resetOverflow'](),this['showScreenshotMode']=![],this[_0x10f464(0x214)]=![],this['showModal']=![],this['sending']=!![];try{const _0x2f4736=await _0x52e746[_0x10f464(0x1ab)](fetch,_0x10f464(0x263),{'method':_0x52e746[_0x10f464(0x2b1)],'body':JSON['stringify']({'url':window['location']['href'],'message':this[_0x10f464(0x1e4)],'email':this[_0x10f464(0x1ba)],'project':this[_0x10f464(0x222)],'screenshot':this['encodedScreenshot']}),'headers':{'Content-Type':_0x52e746[_0x10f464(0x242)]}});_0x2f4736[_0x10f464(0x19e)]===0xc9?(this[_0x10f464(0x201)]=!![],this[_0x10f464(0x2af)]=![]):(this['formSuccess']=![],this[_0x10f464(0x2af)]=!![],this['formErrorStatus']=_0x2f4736[_0x10f464(0x19e)]);}catch(_0x40bf55){console['log'](_0x40bf55),this[_0x10f464(0x201)]=![],this['formError']=!![],this[_0x10f464(0x1d3)]=0x1f4;}finally{this['sending']=![],this[_0x10f464(0x28d)]=!![];}},this['close']=()=>{const _0x22cd7c=_0x551584,_0x445be3=_0x52e746['HDmIy'][_0x22cd7c(0x200)]('|');let _0x3aefdf=0x0;while(!![]){switch(_0x445be3[_0x3aefdf++]){case'0':this[_0x22cd7c(0x1a6)]=null;continue;case'1':this[_0x22cd7c(0x201)]=![];continue;case'2':this[_0x22cd7c(0x1e4)]='';continue;case'3':this[_0x22cd7c(0x1dc)]();continue;case'4':this[_0x22cd7c(0x2a2)]=![];continue;case'5':this[_0x22cd7c(0x214)]=![];continue;case'6':this[_0x22cd7c(0x1ba)]='';continue;case'7':this['formError']=![];continue;case'8':this[_0x22cd7c(0x1d3)]=0x1f4;continue;case'9':this[_0x22cd7c(0x24c)]=![];continue;case'10':this[_0x22cd7c(0x28d)]=![];continue;case'11':this[_0x22cd7c(0x2a5)]=![];continue;}break;}},this['openScreenShot']=()=>{const _0x58ea4e=_0x551584;this['hasSelectedElement']=![],this[_0x58ea4e(0x28d)]=![],this[_0x58ea4e(0x24c)]=!![],this[_0x58ea4e(0x214)]=!![],this[_0x58ea4e(0x1a6)]=null;_0x52e746[_0x58ea4e(0x1c9)](window[_0x58ea4e(0x25c)],document[_0x58ea4e(0x264)]['clientWidth'])&&document[_0x58ea4e(0x264)][_0x58ea4e(0x1d7)]['add']('feedback-modal-screenshot-open--scroll');const _0x4a8180=window[_0x58ea4e(0x254)];document[_0x58ea4e(0x264)][_0x58ea4e(0x1be)][_0x58ea4e(0x220)]='-'+_0x4a8180+'px',window[_0x58ea4e(0x22b)](0x0,_0x52e746[_0x58ea4e(0x1f2)](_0x52e746[_0x58ea4e(0x276)](parseInt,document['documentElement'][_0x58ea4e(0x1be)][_0x58ea4e(0x220)]||'0'),-0x1)),document[_0x58ea4e(0x264)][_0x58ea4e(0x1d7)]['add'](_0x52e746['XVPis']);},this[_0x551584(0x274)]=()=>{const _0x361153=_0x551584;this['showModal']=![],this['showScreenshotMode']=![],this[_0x361153(0x214)]=![],this[_0x361153(0x2a2)]=![],this[_0x361153(0x1a6)]=null,this['resetOverflow']();},this[_0x551584(0x1a1)]=_0x1b03fc=>{const _0x467c52=_0x551584;_0x1b03fc[_0x467c52(0x18f)]();if(this[_0x467c52(0x2a2)])return;const _0xba8d=0x2;this['screenshotModal'][_0x467c52(0x1be)][_0x467c52(0x271)]=_0x52e746['NomCG'];const _0x4d4f15=document[_0x467c52(0x1ac)](_0x1b03fc[_0x467c52(0x288)],_0x1b03fc['clientY']),_0x2a18cc=_0x4d4f15[_0x467c52(0x1c4)]();this[_0x467c52(0x1d6)][_0x467c52(0x1be)][_0x467c52(0x271)]='',this[_0x467c52(0x1ea)][_0x467c52(0x1be)][_0x467c52(0x261)]=_0x52e746[_0x467c52(0x210)],this[_0x467c52(0x1ea)]['style'][_0x467c52(0x1ec)]=_0x2a18cc[_0x467c52(0x1ec)]+'px',this[_0x467c52(0x1ea)][_0x467c52(0x1be)][_0x467c52(0x220)]=_0x2a18cc[_0x467c52(0x220)]+'px',this[_0x467c52(0x1ea)][_0x467c52(0x1be)][_0x467c52(0x289)]=_0x2a18cc[_0x467c52(0x289)]+'px',this['elementSelected'][_0x467c52(0x1be)][_0x467c52(0x224)]=_0x2a18cc['height']+'px',this[_0x467c52(0x1ea)][_0x467c52(0x1d7)][_0x467c52(0x25d)](_0x52e746[_0x467c52(0x231)]),this[_0x467c52(0x1b8)][_0x467c52(0x1be)][_0x467c52(0x261)]=_0x52e746['AAwAo'],this[_0x467c52(0x1b8)][_0x467c52(0x1be)]['left']=_0x2a18cc[_0x467c52(0x1ec)]+'px',this['topSide']['style'][_0x467c52(0x220)]=_0x52e746['uIEBG'],this[_0x467c52(0x1b8)][_0x467c52(0x1be)][_0x467c52(0x289)]=_0x52e746['WKPfz'](_0x2a18cc[_0x467c52(0x289)],_0xba8d)+'px',this[_0x467c52(0x1b8)]['style']['height']=_0x2a18cc[_0x467c52(0x220)]+'px',this[_0x467c52(0x1b8)][_0x467c52(0x1be)][_0x467c52(0x2ad)]=_0x52e746[_0x467c52(0x2a0)],this['leftSide'][_0x467c52(0x1be)][_0x467c52(0x261)]=_0x52e746['AAwAo'],this[_0x467c52(0x1a4)]['style']['left']=_0x52e746[_0x467c52(0x1c1)],this[_0x467c52(0x1a4)][_0x467c52(0x1be)][_0x467c52(0x220)]=_0x52e746[_0x467c52(0x1c1)],this[_0x467c52(0x1a4)][_0x467c52(0x1be)][_0x467c52(0x289)]=_0x2a18cc['left']+'px',this[_0x467c52(0x1a4)][_0x467c52(0x1be)][_0x467c52(0x224)]=_0x52e746[_0x467c52(0x1a5)],this['leftSide']['style'][_0x467c52(0x2ad)]=_0x52e746[_0x467c52(0x2a0)],this[_0x467c52(0x228)][_0x467c52(0x1be)]['position']=_0x52e746['AAwAo'],this[_0x467c52(0x228)][_0x467c52(0x1be)][_0x467c52(0x1ec)]=_0x2a18cc[_0x467c52(0x1ec)]+'px',this[_0x467c52(0x228)]['style'][_0x467c52(0x220)]=_0x52e746[_0x467c52(0x1f9)](_0x2a18cc[_0x467c52(0x282)],_0xba8d)+'px',this[_0x467c52(0x228)][_0x467c52(0x1be)]['width']=_0x52e746[_0x467c52(0x1f9)](_0x2a18cc[_0x467c52(0x289)],_0xba8d)+'px',this[_0x467c52(0x228)][_0x467c52(0x1be)][_0x467c52(0x224)]=_0x52e746[_0x467c52(0x1a5)],this[_0x467c52(0x228)][_0x467c52(0x1be)]['backgroundColor']=_0x52e746[_0x467c52(0x2a0)],this[_0x467c52(0x269)][_0x467c52(0x1be)][_0x467c52(0x261)]=_0x52e746[_0x467c52(0x210)],this[_0x467c52(0x269)]['style']['left']=_0x52e746[_0x467c52(0x28b)](_0x2a18cc[_0x467c52(0x2aa)],_0xba8d)+'px';;this[_0x467c52(0x269)][_0x467c52(0x1be)][_0x467c52(0x220)]=_0x52e746['uIEBG'],this[_0x467c52(0x269)][_0x467c52(0x1be)][_0x467c52(0x289)]=_0x52e746[_0x467c52(0x1c0)],this['rightSide']['style'][_0x467c52(0x224)]=_0x52e746[_0x467c52(0x1a5)],this['rightSide'][_0x467c52(0x1be)][_0x467c52(0x2ad)]=_0x52e746[_0x467c52(0x2a0)],this[_0x467c52(0x1d6)]['style'][_0x467c52(0x2ad)]=_0x52e746[_0x467c52(0x215)];},this['handleMouseClickedSelectedElement']=async _0x1c63b3=>{const _0x5d3606=_0x551584;_0x1c63b3[_0x5d3606(0x18f)]();if(!this[_0x5d3606(0x1ea)])return;this[_0x5d3606(0x2a2)]=!![],this[_0x5d3606(0x1ea)][_0x5d3606(0x1d7)][_0x5d3606(0x25d)](_0x5d3606(0x1b1));const _0x5e47ad=this[_0x5d3606(0x1ea)]['getBoundingClientRect']()[_0x5d3606(0x220)],_0x244fa3=_0x52e746[_0x5d3606(0x1aa)](_0x5e47ad,window[_0x5d3606(0x254)]);this[_0x5d3606(0x1ea)][_0x5d3606(0x1be)][_0x5d3606(0x220)]=_0x244fa3+'px';const _0x1ee293=this[_0x5d3606(0x1ea)][_0x5d3606(0x237)](!![]);document[_0x5d3606(0x1d4)][_0x5d3606(0x23d)](_0x1ee293),this[_0x5d3606(0x1ea)]['style']['top']=_0x5e47ad+'px',this[_0x5d3606(0x214)]=![],this['showModal']=![];try{const _0x55cf2a=await this[_0x5d3606(0x195)]();console[_0x5d3606(0x1da)](_0x52e746['YSWOJ']),this['encodedScreenshot']=_0x55cf2a;}catch(_0x4a479e){console[_0x5d3606(0x297)](_0x52e746['TUSMp'],_0x4a479e),this[_0x5d3606(0x2a2)]=![];}finally{document['body'][_0x5d3606(0x21b)](_0x1ee293),this[_0x5d3606(0x28d)]=!![];}},this[_0x551584(0x2a5)]=![],this['formMessage']='',this[_0x551584(0x1ba)]='',this[_0x551584(0x201)]=![],this['formError']=![],this[_0x551584(0x1d3)]=0x1f4,this[_0x551584(0x1a6)]=undefined,this[_0x551584(0x1e3)]=_0x52e746[_0x551584(0x2c5)],this[_0x551584(0x1f4)]=_0x52e746[_0x551584(0x2c6)],this['errorMessage404']=_0x551584(0x1c7),this[_0x551584(0x22c)]=_0x52e746[_0x551584(0x1bc)],this[_0x551584(0x28c)]='Thanks\x20for\x20your\x20feedback!',this['modalTitleError']=_0x52e746[_0x551584(0x225)],this[_0x551584(0x253)]=_0x52e746[_0x551584(0x1e1)],this[_0x551584(0x2a9)]=_0x52e746[_0x551584(0x251)],this[_0x551584(0x222)]='',this[_0x551584(0x1a2)]=_0x551584(0x233),this[_0x551584(0x249)]=_0x52e746[_0x551584(0x2c0)],this['email']='',this['emailPlaceholder']=_0x52e746[_0x551584(0x204)],this[_0x551584(0x255)]=_0x52e746['GdIlE'],this[_0x551584(0x28d)]=![],this['showScreenshotMode']=![],this[_0x551584(0x214)]=![],this[_0x551584(0x2a2)]=![],this[_0x551584(0x1e2)]=![],this[_0x551584(0x244)]=![];}['componentWillLoad'](){const _0xf7ccb5=_0x178d;this[_0xf7ccb5(0x279)](),this[_0xf7ccb5(0x1ba)]=this['email'];}async[_0x1a210f(0x279)](){const _0x298da3=_0x1a210f,_0x29f613={'ETFJi':function(_0x3dbfae,_0x20200d){return _0x3dbfae(_0x20200d);},'oELqo':function(_0x329829,_0xc3754d){return _0x329829+_0xc3754d;},'UiWNe':function(_0x3105fc,_0x4ecd84){return _0x3105fc+_0x4ecd84;},'mtDMP':_0x298da3(0x1f1)};try{const _0x4da5e7=await _0x29f613['ETFJi'](fetch,_0x29f613[_0x298da3(0x20f)](_0x29f613[_0x298da3(0x24b)](_0x29f613[_0x298da3(0x29b)],this['project']),'/')),_0x3f779f=await _0x4da5e7[_0x298da3(0x2bc)]();this[_0x298da3(0x244)]=_0x3f779f[_0x298da3(0x244)];}catch(_0x4906c4){console[_0x298da3(0x1da)](_0x4906c4);}}[_0x1a210f(0x1dc)](){const _0x42da78=_0x1a210f,_0x3fae05={'hcVES':_0x42da78(0x1e5),'CNIgJ':function(_0x2c7363,_0x110383){return _0x2c7363*_0x110383;},'FHGel':function(_0x2ca7e3,_0x284df0){return _0x2ca7e3(_0x284df0);},'trrYV':'scroll'};document[_0x42da78(0x264)]['classList'][_0x42da78(0x198)](_0x3fae05['hcVES']),document[_0x42da78(0x264)]['classList'][_0x42da78(0x198)](_0x42da78(0x1d8)),document[_0x42da78(0x264)]['classList'][_0x42da78(0x25d)](_0x42da78(0x18e)),window['scrollTo'](0x0,_0x3fae05[_0x42da78(0x19d)](_0x3fae05[_0x42da78(0x1ad)](parseInt,document['documentElement'][_0x42da78(0x1be)][_0x42da78(0x220)]||'0'),-0x1)),window[_0x42da78(0x24e)](_0x3fae05[_0x42da78(0x260)],this[_0x42da78(0x1c3)]);}['handleMessageInput'](_0x85cc52){const _0x23e15f=_0x1a210f;this[_0x23e15f(0x1e4)]=_0x85cc52[_0x23e15f(0x2c9)][_0x23e15f(0x234)];}[_0x1a210f(0x248)](_0x1545cf){const _0x5208ce=_0x1a210f;this[_0x5208ce(0x1ba)]=_0x1545cf[_0x5208ce(0x2c9)]['value'];}['captureScreenshot'](){const _0x36df77={'PeoyY':function(_0x5b0d9f,_0x54035d){return _0x5b0d9f(_0x54035d);}};return new Promise((_0x4a1515,_0x4421e1)=>{const _0x5280eb=_0x178d,_0x56de28={'ZXvZq':function(_0x6c75c5,_0x4ce08d){const _0x52bfe1=_0x178d;return _0x36df77[_0x52bfe1(0x1b5)](_0x6c75c5,_0x4ce08d);}};_0x36df77[_0x5280eb(0x1b5)](requestAnimationFrame,()=>{const _0x23ad0e=_0x5280eb;_0x355708(document[_0x23ad0e(0x1d4)],{'x':window[_0x23ad0e(0x21a)],'y':window[_0x23ad0e(0x254)],'width':window[_0x23ad0e(0x25c)],'height':window[_0x23ad0e(0x258)]})[_0x23ad0e(0x28f)](_0x1190d8=>{const _0x3a816d=_0x23ad0e,_0x2fbec3=_0x1190d8[_0x3a816d(0x293)]();_0x4a1515(_0x2fbec3);})[_0x23ad0e(0x2ac)](_0x4393b8=>{const _0x231aa7=_0x23ad0e;console['error'](_0x4393b8),_0x56de28[_0x231aa7(0x2be)](_0x4421e1,_0x4393b8);});});});}[_0x1a210f(0x26d)](){const _0x26ba87=_0x1a210f,_0x4543f9={'BFUFm':function(_0x59ecd9,_0x38170a,_0x2444b3,_0xe72d6f,_0x1d22f1){return _0x59ecd9(_0x38170a,_0x2444b3,_0xe72d6f,_0x1d22f1);},'cOniU':function(_0x305cc7,_0x39d7a6,_0x3c01f7,_0x489b18,_0x22821b,_0x9901eb,_0x28f92f,_0x11300d,_0x156b82){return _0x305cc7(_0x39d7a6,_0x3c01f7,_0x489b18,_0x22821b,_0x9901eb,_0x28f92f,_0x11300d,_0x156b82);},'Tnivz':_0x26ba87(0x2b8),'BQNnn':_0x26ba87(0x25e),'Cuato':function(_0x5e4d1e,_0x38e2a1,_0xc439ab){return _0x5e4d1e(_0x38e2a1,_0xc439ab);},'HDUaB':_0x26ba87(0x1c6),'GZcvL':function(_0x885df1,_0x2ffa1f,_0x54af5f){return _0x885df1(_0x2ffa1f,_0x54af5f);},'nGxqu':'left-side','ehEAE':function(_0x34d6af,_0x3b7b03,_0x13274f){return _0x34d6af(_0x3b7b03,_0x13274f);},'vbdoV':'bottom-side','LqVvH':_0x26ba87(0x29d),'HgEvD':_0x26ba87(0x193),'fhhCQ':_0x26ba87(0x2a6),'xoRDV':'feedback-modal-screenshot-close','eEjub':function(_0x1f434a,_0x447a5b,_0x4cf536,_0xbfacc5,_0x378771){return _0x1f434a(_0x447a5b,_0x4cf536,_0xbfacc5,_0x378771);},'gmeTD':_0x26ba87(0x1e8),'WNvmE':'0\x200\x2024\x2024','qLIQq':_0x26ba87(0x1b2),'sBkMN':_0x26ba87(0x27d),'NiqgC':_0x26ba87(0x245),'pxGZg':'feather\x20feather-x','WCnjx':function(_0x3124ad,_0x559d70,_0x92ee6f){return _0x3124ad(_0x559d70,_0x92ee6f);},'eMeWN':_0x26ba87(0x1fb),'FZrQC':function(_0x16e3c5,_0xaa6c00,_0x1b2611){return _0x16e3c5(_0xaa6c00,_0x1b2611);},'ZtAvQ':function(_0x3a5789,_0xa88143,_0x24052c,_0x100c08,_0xf00029,_0x1d7e5e){return _0x3a5789(_0xa88143,_0x24052c,_0x100c08,_0xf00029,_0x1d7e5e);},'wuFyV':_0x26ba87(0x1b6),'vfkdg':function(_0x3ddc4a,_0x555fb8,_0xc6d053,_0x135dcb){return _0x3ddc4a(_0x555fb8,_0xc6d053,_0x135dcb);},'vtfoY':_0x26ba87(0x2b6),'etqcd':_0x26ba87(0x25b),'Bwtit':function(_0x33098e,_0x330232,_0x558aef,_0x1da450,_0x129247){return _0x33098e(_0x330232,_0x558aef,_0x1da450,_0x129247);},'FNNbI':_0x26ba87(0x299),'sMWos':function(_0x3240c6,_0x241396,_0x35b49b){return _0x3240c6(_0x241396,_0x35b49b);},'GynJW':function(_0x351b83,_0x47a0b7,_0x5e91a1,_0x41aaa8){return _0x351b83(_0x47a0b7,_0x5e91a1,_0x41aaa8);},'SGanV':_0x26ba87(0x2b7),'WWbsR':'form','HYzPE':function(_0x39fb2a,_0x2d5353,_0x257064,_0x49c107){return _0x39fb2a(_0x2d5353,_0x257064,_0x49c107);},'ZHQoP':function(_0x3eccb7,_0x29e9d5,_0x909b3b){return _0x3eccb7(_0x29e9d5,_0x909b3b);},'ZmRoO':_0x26ba87(0x191),'xjddQ':_0x26ba87(0x20d),'adqtq':function(_0x273c5e,_0x413a2d,_0x478b59){return _0x273c5e(_0x413a2d,_0x478b59);},'Unoet':_0x26ba87(0x23c),'XcXue':_0x26ba87(0x2ae),'jUKHf':_0x26ba87(0x266),'tmGsp':function(_0xd0709b,_0x447be7,_0x4de3b1,_0x564815){return _0xd0709b(_0x447be7,_0x4de3b1,_0x564815);},'HhWYv':_0x26ba87(0x240),'nRMUb':'\x20active','MACDJ':_0x26ba87(0x20e),'XAgJG':_0x26ba87(0x270),'yxdda':'path','MczJI':_0x26ba87(0x267),'nadnS':function(_0x3d9e7e,_0x5828be,_0x59ff38){return _0x3d9e7e(_0x5828be,_0x59ff38);},'jNFOR':_0x26ba87(0x1cf),'zfLCa':'submit','UfnaQ':function(_0x2c8312,_0x39e018){return _0x2c8312==_0x39e018;},'COgOh':function(_0x44110c,_0x2750af,_0x55cbe4,_0x51b873){return _0x44110c(_0x2750af,_0x55cbe4,_0x51b873);},'sbmpx':_0x26ba87(0x1b7),'Zuyft':function(_0x766a13,_0x43d5a4,_0x377a2c,_0xd5ea0e){return _0x766a13(_0x43d5a4,_0x377a2c,_0xd5ea0e);},'pNoHx':function(_0x3f8653,_0x14e4f4,_0x4910fe,_0x137d60){return _0x3f8653(_0x14e4f4,_0x4910fe,_0x137d60);},'xoyVc':_0x26ba87(0x2b9),'OajiC':_0x26ba87(0x238),'BJAAV':function(_0x5bbedf,_0xca3286,_0x331931,_0x96785b,_0x573ed8,_0x1088ac){return _0x5bbedf(_0xca3286,_0x331931,_0x96785b,_0x573ed8,_0x1088ac);},'YimFs':_0x26ba87(0x29c),'BKZiX':_0x26ba87(0x2c1),'pmwcB':_0x26ba87(0x22d),'PBStI':'21.152%','qyYCL':_0x26ba87(0x227),'vxLHA':_0x26ba87(0x1a9),'DVleS':'stop','HuRUZ':'#81E6D9','btWpT':'25.871%','cfnJt':function(_0x4e2e3f,_0x59b8ff,_0x4bf48e){return _0x4e2e3f(_0x59b8ff,_0x4bf48e);},'hDMwN':_0x26ba87(0x2ab),'RbyWd':_0x26ba87(0x219),'YYBum':_0x26ba87(0x1b3),'jSmxS':'nonzero','hPJoX':function(_0x5a373a,_0x201d5d,_0x5a608f,_0x1f4485){return _0x5a373a(_0x201d5d,_0x5a608f,_0x1f4485);},'RUbFE':'_blank','gPwZv':_0x26ba87(0x1a0),'BMQya':_0x26ba87(0x24d)};return _0x4543f9[_0x26ba87(0x1a7)](h,'div',{'class':_0x26ba87(0x283)},this[_0x26ba87(0x24c)]&&_0x4543f9[_0x26ba87(0x285)](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x4543f9[_0x26ba87(0x272)],'ref':_0x5382fd=>this[_0x26ba87(0x1d6)]=_0x5382fd,'onMouseMove':this[_0x26ba87(0x1a1)]},_0x4543f9['Cuato'](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x26ba87(0x2a4),'ref':_0x2ae0d6=>this[_0x26ba87(0x1ea)]=_0x2ae0d6,'onClick':this[_0x26ba87(0x243)]}),_0x4543f9[_0x26ba87(0x27e)](h,_0x4543f9['Tnivz'],{'class':_0x4543f9[_0x26ba87(0x1dd)],'ref':_0x16df2c=>this[_0x26ba87(0x1b8)]=_0x16df2c}),_0x4543f9[_0x26ba87(0x229)](h,_0x26ba87(0x2b8),{'class':_0x4543f9['nGxqu'],'ref':_0x583622=>this[_0x26ba87(0x1a4)]=_0x583622}),_0x4543f9[_0x26ba87(0x19c)](h,_0x4543f9['Tnivz'],{'class':_0x4543f9['vbdoV'],'ref':_0x1eaed5=>this[_0x26ba87(0x228)]=_0x1eaed5}),h(_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x4543f9[_0x26ba87(0x26b)],'ref':_0x5d7b36=>this[_0x26ba87(0x269)]=_0x5d7b36}),this[_0x26ba87(0x214)]&&h(_0x26ba87(0x2b8),{'class':_0x4543f9[_0x26ba87(0x2a3)],'onClick':this[_0x26ba87(0x274)]},h(_0x4543f9[_0x26ba87(0x2c8)],null,this['screenshotTopbarText']),h(_0x26ba87(0x2a6),{'class':_0x4543f9['xoRDV']},_0x4543f9[_0x26ba87(0x28e)](h,_0x4543f9[_0x26ba87(0x19a)],{'xmlns':_0x26ba87(0x299),'width':'18','height':'18','viewBox':_0x4543f9['WNvmE'],'fill':_0x4543f9['qLIQq'],'stroke':_0x4543f9['sBkMN'],'stroke-width':'2','stroke-linecap':_0x4543f9[_0x26ba87(0x27a)],'stroke-linejoin':_0x26ba87(0x245),'class':_0x4543f9[_0x26ba87(0x292)]},_0x4543f9[_0x26ba87(0x1f6)](h,_0x4543f9[_0x26ba87(0x2b3)],{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x4543f9[_0x26ba87(0x246)](h,'line',{'x1':'6','y1':'6','x2':'18','y2':'18'}))))),this[_0x26ba87(0x28d)]&&_0x4543f9[_0x26ba87(0x1c5)](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x26ba87(0x1af)+this['modalPosition'],'ref':_0x5a4406=>this[_0x26ba87(0x24f)]=_0x5a4406},h(_0x26ba87(0x2b8),{'class':_0x4543f9[_0x26ba87(0x1df)]},!this['formSuccess']&&!this['formError']?h(_0x4543f9[_0x26ba87(0x2c8)],null,this['modalTitle']):this[_0x26ba87(0x201)]?_0x4543f9[_0x26ba87(0x1bb)](h,_0x4543f9[_0x26ba87(0x2c8)],{'class':_0x4543f9['vtfoY']},this[_0x26ba87(0x28c)]):_0x4543f9[_0x26ba87(0x1bb)](h,_0x4543f9[_0x26ba87(0x2c8)],null,this['modalTitleError']),h(_0x26ba87(0x240),{'class':_0x4543f9[_0x26ba87(0x1e9)],'onClick':this[_0x26ba87(0x1ef)]},_0x4543f9[_0x26ba87(0x22e)](h,_0x26ba87(0x1e8),{'xmlns':_0x4543f9[_0x26ba87(0x27b)],'width':'18','height':'18','viewBox':'0\x200\x2024\x2024','fill':_0x4543f9['qLIQq'],'stroke':_0x26ba87(0x230),'stroke-width':'2','stroke-linecap':_0x4543f9['NiqgC'],'stroke-linejoin':_0x26ba87(0x245),'class':_0x4543f9[_0x26ba87(0x292)]},_0x4543f9['FZrQC'](h,'line',{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x4543f9[_0x26ba87(0x20a)](h,_0x4543f9[_0x26ba87(0x2b3)],{'x1':'6','y1':'6','x2':'18','y2':'18'})))),_0x4543f9[_0x26ba87(0x257)](h,_0x26ba87(0x2b8),{'class':_0x4543f9[_0x26ba87(0x295)]},!this['formSuccess']&&!this['formError']?_0x4543f9[_0x26ba87(0x1c5)](h,_0x4543f9[_0x26ba87(0x1e7)],{'onSubmit':this[_0x26ba87(0x2a1)]},_0x4543f9[_0x26ba87(0x252)](h,_0x26ba87(0x2b8),{'class':_0x26ba87(0x2a8)},_0x4543f9[_0x26ba87(0x1de)](h,_0x4543f9[_0x26ba87(0x208)],{'placeholder':this[_0x26ba87(0x255)],'value':this['formMessage'],'onInput':_0x2d556f=>this[_0x26ba87(0x1a3)](_0x2d556f),'required':!![]})),!this[_0x26ba87(0x2ae)]&&_0x4543f9[_0x26ba87(0x257)](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x4543f9['xjddQ']},_0x4543f9[_0x26ba87(0x27c)](h,_0x4543f9[_0x26ba87(0x21f)],{'type':_0x4543f9[_0x26ba87(0x1ce)],'placeholder':this[_0x26ba87(0x20b)],'onInput':_0x4ba8a2=>this[_0x26ba87(0x248)](_0x4ba8a2),'value':this[_0x26ba87(0x1ba)]})),_0x4543f9[_0x26ba87(0x1a7)](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x26ba87(0x236)+(this['hideScreenshotButton']?_0x4543f9[_0x26ba87(0x194)]:'')},!this[_0x26ba87(0x1e2)]&&_0x4543f9[_0x26ba87(0x1c2)](h,_0x26ba87(0x240),{'type':_0x4543f9[_0x26ba87(0x209)],'class':_0x26ba87(0x240)+(this[_0x26ba87(0x1a6)]?_0x4543f9['nRMUb']:''),'title':this[_0x26ba87(0x1a2)],'onClick':this[_0x26ba87(0x250)],'disabled':this[_0x26ba87(0x2a5)]},_0x4543f9['Bwtit'](h,_0x4543f9['gmeTD'],{'xmlns':_0x4543f9[_0x26ba87(0x27b)],'width':'24','height':'24','viewBox':_0x4543f9[_0x26ba87(0x197)],'fill':_0x4543f9[_0x26ba87(0x212)],'stroke':_0x4543f9[_0x26ba87(0x19f)],'stroke-width':'2','stroke-linecap':_0x4543f9[_0x26ba87(0x27a)],'stroke-linejoin':_0x4543f9[_0x26ba87(0x27a)],'class':_0x4543f9[_0x26ba87(0x202)]},_0x4543f9[_0x26ba87(0x1f6)](h,_0x4543f9['yxdda'],{'d':_0x4543f9['MczJI']}),_0x4543f9['nadnS'](h,_0x4543f9['jNFOR'],{'cx':'12','cy':'13','r':'4'}))),_0x4543f9[_0x26ba87(0x257)](h,_0x4543f9['HhWYv'],{'class':'button','type':_0x4543f9[_0x26ba87(0x2c7)],'disabled':this['sending']},this[_0x26ba87(0x2a9)]))):this['formError']&&_0x4543f9[_0x26ba87(0x1fc)](this[_0x26ba87(0x1d3)],0x194)?_0x4543f9[_0x26ba87(0x26f)](h,'p',{'class':_0x4543f9[_0x26ba87(0x296)]},this[_0x26ba87(0x217)]):this[_0x26ba87(0x2af)]&&_0x4543f9['UfnaQ'](this[_0x26ba87(0x1d3)],0x193)?h('p',{'class':_0x4543f9[_0x26ba87(0x296)]},this[_0x26ba87(0x1f4)]):this['formError']?_0x4543f9[_0x26ba87(0x1f8)](h,'p',{'class':_0x26ba87(0x1b7)},this[_0x26ba87(0x1e3)]):_0x4543f9['Cuato'](h,_0x4543f9[_0x26ba87(0x2c8)],null)),_0x4543f9[_0x26ba87(0x213)](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x4543f9[_0x26ba87(0x268)],'style':{'display':this[_0x26ba87(0x244)]?_0x4543f9[_0x26ba87(0x212)]:_0x4543f9[_0x26ba87(0x205)]}},_0x4543f9[_0x26ba87(0x22f)](h,_0x4543f9[_0x26ba87(0x1d1)],{'class':_0x26ba87(0x2b2)},h(_0x4543f9[_0x26ba87(0x19a)],{'class':_0x4543f9[_0x26ba87(0x232)],'viewBox':_0x4543f9[_0x26ba87(0x284)],'xmlns':_0x4543f9[_0x26ba87(0x27b)]},h(_0x4543f9['pmwcB'],null,h(_0x26ba87(0x280),{'cx':_0x26ba87(0x287),'cy':_0x26ba87(0x227),'fx':_0x4543f9[_0x26ba87(0x2bb)],'fy':_0x4543f9[_0x26ba87(0x1db)],'r':_0x26ba87(0x1c8),'id':_0x4543f9['vxLHA']},h(_0x4543f9['DVleS'],{'stop-color':'#4FD1C5','offset':'0%'}),h(_0x26ba87(0x206),{'stop-color':_0x4543f9['HuRUZ'],'offset':_0x4543f9[_0x26ba87(0x278)]}),_0x4543f9[_0x26ba87(0x1e6)](h,_0x4543f9['DVleS'],{'stop-color':_0x4543f9[_0x26ba87(0x21c)],'offset':_0x4543f9['RbyWd']}))),_0x4543f9[_0x26ba87(0x229)](h,_0x4543f9[_0x26ba87(0x1d2)],{'width':'32','height':'32','rx':'16','fill':_0x26ba87(0x247),'fill-rule':_0x4543f9[_0x26ba87(0x2bf)]})),'\x20',_0x4543f9['hPJoX'](h,'a',{'target':_0x4543f9[_0x26ba87(0x1f5)],'href':_0x4543f9[_0x26ba87(0x196)]},_0x4543f9['BMQya'])))));}static get['is'](){const _0x1df939=_0x1a210f,_0x4c4b26={'gZArQ':_0x1df939(0x1cc)};return _0x4c4b26[_0x1df939(0x207)];}static get['encapsulation'](){const _0x169214=_0x1a210f;return _0x169214(0x1b0);}static get['originalStyleUrls'](){const _0xf4b488=_0x1a210f;return{'$':[_0xf4b488(0x1ae)]};}static get[_0x1a210f(0x1d5)](){const _0x22644b=_0x1a210f,_0x1d2d9b={'gkDhn':_0x22644b(0x1ae)};return{'$':[_0x1d2d9b[_0x22644b(0x218)]]};}static get['properties'](){const _0x541ddc=_0x1a210f,_0x33362f={'rYqoM':'string','OsBKU':_0x541ddc(0x286),'SSAYW':'error-message-4-0-3','rBntD':_0x541ddc(0x2c3),'rSPiM':_0x541ddc(0x256),'rzQru':_0x541ddc(0x25a),'nZwLg':_0x541ddc(0x211),'OuXRU':'\x27Thanks\x20for\x20your\x20feedback!\x27','eGVMn':_0x541ddc(0x2b4),'vQpkQ':'\x22Oops!\x22','lEyDF':_0x541ddc(0x259),'yjSRj':_0x541ddc(0x26a),'GdfuE':_0x541ddc(0x1eb),'wWRYl':_0x541ddc(0x222),'eAkEr':_0x541ddc(0x23e),'eNtYa':_0x541ddc(0x277),'ygeqp':_0x541ddc(0x2ae),'mKGDo':_0x541ddc(0x239),'yWTYW':_0x541ddc(0x1b4),'kbFsE':_0x541ddc(0x23b),'Wvkso':_0x541ddc(0x20c),'Rpzxk':_0x541ddc(0x203),'RTHhQ':_0x541ddc(0x281),'nKFVj':_0x541ddc(0x2ba),'HQVBQ':'hide-screenshot-button'};return{'errorMessage':{'type':_0x33362f['rYqoM'],'mutable':![],'complexType':{'original':_0x541ddc(0x2bd),'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':'error-message','reflect':![],'defaultValue':_0x33362f[_0x541ddc(0x2a7)]},'errorMessage403':{'type':_0x541ddc(0x2bd),'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f['SSAYW'],'reflect':![],'defaultValue':_0x33362f[_0x541ddc(0x1ee)]},'errorMessage404':{'type':_0x541ddc(0x2bd),'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':_0x541ddc(0x2bd),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x541ddc(0x1cb),'reflect':![],'defaultValue':_0x33362f[_0x541ddc(0x1ca)]},'modalTitle':{'type':_0x541ddc(0x2bd),'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':_0x33362f['rYqoM'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x1fe)],'reflect':![],'defaultValue':_0x541ddc(0x199)},'modalTitleSuccess':{'type':_0x33362f['rYqoM'],'mutable':![],'complexType':{'original':_0x33362f['rYqoM'],'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x1f7)],'reflect':![],'defaultValue':_0x33362f[_0x541ddc(0x21e)]},'modalTitleError':{'type':_0x33362f[_0x541ddc(0x23a)],'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x273)],'reflect':![],'defaultValue':_0x33362f['vQpkQ']},'modalPosition':{'type':_0x541ddc(0x2bd),'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':_0x33362f['rYqoM'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':'modal-position','reflect':![],'defaultValue':_0x33362f['lEyDF']},'sendButtonText':{'type':_0x33362f[_0x541ddc(0x23a)],'mutable':![],'complexType':{'original':'string','resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x29a)],'reflect':![],'defaultValue':_0x33362f['GdfuE']},'project':{'type':_0x33362f[_0x541ddc(0x23a)],'mutable':![],'complexType':{'original':_0x33362f['rYqoM'],'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x262)],'reflect':![],'defaultValue':'\x27\x27'},'screenshotButtonTooltipText':{'type':_0x33362f['rYqoM'],'mutable':![],'complexType':{'original':_0x33362f['rYqoM'],'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f['eAkEr'],'reflect':![],'defaultValue':_0x541ddc(0x1d9)},'screenshotTopbarText':{'type':_0x541ddc(0x2bd),'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':'string','references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x1e0)],'reflect':![],'defaultValue':_0x541ddc(0x1f3)},'email':{'type':_0x33362f[_0x541ddc(0x23a)],'mutable':![],'complexType':{'original':_0x33362f[_0x541ddc(0x23a)],'resolved':_0x541ddc(0x2bd),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x28a)],'reflect':![],'defaultValue':'\x27\x27'},'emailPlaceholder':{'type':_0x33362f['rYqoM'],'mutable':![],'complexType':{'original':_0x33362f['rYqoM'],'resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x541ddc(0x29e),'reflect':![],'defaultValue':_0x33362f[_0x541ddc(0x2ca)]},'messagePlaceholder':{'type':_0x33362f[_0x541ddc(0x23a)],'mutable':![],'complexType':{'original':'string','resolved':_0x33362f[_0x541ddc(0x23a)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x541ddc(0x21d),'reflect':![],'defaultValue':_0x33362f[_0x541ddc(0x216)]},'showModal':{'type':_0x541ddc(0x23b),'mutable':!![],'complexType':{'original':_0x33362f[_0x541ddc(0x19b)],'resolved':_0x33362f[_0x541ddc(0x19b)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f['Wvkso'],'reflect':!![],'defaultValue':_0x33362f['Rpzxk']},'showScreenshotMode':{'type':_0x33362f[_0x541ddc(0x19b)],'mutable':!![],'complexType':{'original':_0x33362f[_0x541ddc(0x19b)],'resolved':'boolean','references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x541ddc(0x2b0),'reflect':!![],'defaultValue':_0x33362f['Rpzxk']},'showScreenshotTopBar':{'type':_0x33362f[_0x541ddc(0x19b)],'mutable':!![],'complexType':{'original':_0x33362f[_0x541ddc(0x19b)],'resolved':_0x33362f['kbFsE'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x2c4)],'reflect':!![],'defaultValue':_0x33362f[_0x541ddc(0x27f)]},'hasSelectedElement':{'type':_0x33362f[_0x541ddc(0x19b)],'mutable':!![],'complexType':{'original':_0x33362f[_0x541ddc(0x19b)],'resolved':_0x33362f[_0x541ddc(0x19b)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f[_0x541ddc(0x2b5)],'reflect':!![],'defaultValue':'false'},'hideScreenshotButton':{'type':_0x33362f['kbFsE'],'mutable':![],'complexType':{'original':_0x541ddc(0x23b),'resolved':_0x33362f['kbFsE'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x33362f['HQVBQ'],'reflect':![],'defaultValue':'false'}};}static get[_0x1a210f(0x235)](){return{'sending':{},'formMessage':{},'formEmail':{},'formSuccess':{},'formError':{},'formErrorStatus':{},'encodedScreenshot':{},'whitelabel':{}};}}
1
+ const _0x16ed9f=_0x4daa;(function(_0x1f6f35,_0x387571){const _0x254584=_0x4daa,_0x38ed5d=_0x1f6f35();while(!![]){try{const _0x4c26b4=parseInt(_0x254584(0x143))/0x1+parseInt(_0x254584(0x1a6))/0x2+parseInt(_0x254584(0xe6))/0x3+parseInt(_0x254584(0x14e))/0x4+parseInt(_0x254584(0xd2))/0x5*(-parseInt(_0x254584(0x1af))/0x6)+-parseInt(_0x254584(0x14d))/0x7*(-parseInt(_0x254584(0x12e))/0x8)+-parseInt(_0x254584(0xc3))/0x9;if(_0x4c26b4===_0x387571)break;else _0x38ed5d['push'](_0x38ed5d['shift']());}catch(_0x5635f5){_0x38ed5d['push'](_0x38ed5d['shift']());}}}(_0x43c1,0xa972f));import{h}from'@stencil/core';import _0x5e0f30 from'html2canvas';function _0x43c1(){const _0x36db95=['errorMessage403','emailPlaceholder','SkpcL','openScreenShot','formError','16QevQNi','screenshotModal','elementFromPoint','heNuz','imFtC','transparent','Screenshot\x20captured','ezzHU','ThxiQ','Sjfkr','status','email','How\x20could\x20this\x20page\x20be\x20more\x20helpful?','Oaulg','formEmail','elementSelected','left','IUHez','feedback-modal-header','then','The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.','371387CkPGaR','BgXfX','feedback-modal-screenshot-element-selected','#191919','feedback-modal-footer','0\x200\x2024\x2024','RQVkp','eleJc','errorMessage','\x22We\x20could\x20not\x20find\x20the\x20provided\x20project\x20ID\x20in\x20PushFeedback.\x22','2006431CTQTLl','3152692kOGPjT','lGErA','innerWidth','backgroundColor','NridI','batKp','ksBzt','Oops!','div','left-side','zKdOA','show-modal','huwVb','NDCAc','feedback-modal-element-selected','sNXJT','rightSide','EqiSe','pyelI','project','shadow','100vh','IPWoM','showModal','_blank','scroll','Kblpp','application/json','screenshotButtonTooltipText','style','VOWBd','formSuccess','kBTxd','\x27Select\x20an\x20element\x20on\x20this\x20page\x27','handleMouseOverScreenShot','split','button','boolean','feedback-logo','error-message','0px','textarea','position','feedback-modal-screenshot-open','documentElement','string','feedback-modal-email','Jejct','href','show-screenshot-mode','feedback-modal-text','SbrSc','shNKs','AsGPh','gRVSP','messagePlaceholder','cloneNode','2|4|0|3|1','span','qnSmD','ztGji','PDeKj','preventDefault','Send','TENlx','send-button-text','email-placeholder','cFmYw','feedback-modal-button\x20feedback-modal-button--screenshot\x20','fetchProjectData','https://app.pushfeedback.com/api/projects/','rqbtq','Select\x20an\x20element\x20on\x20this\x20page','XxKCj','QwVwZ','Email\x20address\x20(optional)','KVMns','error','encodedScreenshot','gAGYj','YjJCM','WQVUZ','resetOverflow','\x22The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.\x22','qfzYu','scrollTimeout','has-selected-element','DaHHl','1642040FoXdQX','absolute','https://pushfeedback.com','feedback-modal','LhmoP','screenshotTopbarText','PWZeB','https://app.pushfeedback.com/api/feedback/','remove','2652798idysxo','vMNcg','xIecm','\x27How\x20could\x20this\x20page\x20be\x20more\x20helpful?\x27','yLDRf','body','message-placeholder','VdUhQ','log','BsOae','round','EITcT','modalPosition','bottom-side','Failed\x20to\x20capture\x20screenshot:','xXwjQ','hide-screenshot-button','modal-title-success','bUkOa','GWsmi','lAEnY','feedback-modal-screenshot-open--scroll','stringify','bottomSide','UrpTt','showScreenshotTopBar','modalTitle','kmsUj','tIRoL','EpPrc','addEventListener','styleUrls','VJxLi','DwzkT','BIyOS','sCHnb','100%','hasSelectedElement','M680-80v-120H560v-80h120v-120h80v120h120v80H760v120h-80ZM200-200v-200h80v120h120v80H200Zm0-360v-200h200v80H280v120h-80Zm480\x200v-120H560v-80h200v200h-80Z','handleSubmit','zVstk','modal-title','false','close','removeChild','HicwR','submit','NnUFi','topSide','feedback-modal-element-hover','scrollY','ErEvF','Take\x20a\x20Screenshot','YJRwk','right','vmsvD','Share\x20your\x20feedback','cNMyb','xGKJy','feedback-modal.css','feedback-modal-input-heading','18654345zYQGyP','clientX','ufigV','mKrRz','XRiWQ','feedback-modal-content\x20feedback-modal-content--','line','LbNOh','xigPJ','hideScreenshotButton','YzhFt','feedback-modal-buttons\x20','target','\x27Share\x20your\x20feedback\x27','lYzrG','5ZFQNzm','ITrFk','xamQZ','captureScreenshot','error-message-4-0-4','display','wgTux','modalTitleError','innerHeight','scrollTo','add','sending','lcKZa','gBJfR','catch','feedback-modal-screenshot-closing','removeEventListener','form','PushFeedback.com','Powered\x20by\x20','1965165uAtSMz','errorMessage404','formMessage','feedback-modal-screenshot','none','modalTitleSuccess','VKfMh','SCAqo','handleMessageInput','height','\x27center\x27','iYFDj','rUYzg','\x27Thanks\x20for\x20your\x20feedback!\x27','feedback-modal-close','EQTwr','kTDyM','width','sendButtonText','vxhcA','encapsulation','leftSide','onScrollDebounced','error-message-4-0-3','formErrorStatus','StgsG','top','\x22Oops!\x22','modal-title-error','GtNfx','usDbK','modal-position','getBoundingClientRect','screenshot-topbar-text','qovwm','classList','location','VOzxy','feedback-modal-message','rgba(0,\x200,\x200,\x200.4)','properties','handleMouseClickedSelectedElement','\x22Please\x20try\x20again\x20later.\x22','appendChild','right-side','mpwiB','RXhuo','feather\x20feather-x','input','jCHWE','AztvW','feedback-modal-body','show-screenshot-top-bar','showScreenshotMode','scrollX','http://www.w3.org/2000/svg','oYVEq','icFfJ','json','closeScreenShot','clientWidth','whitelabel','Rjang','gNjmj','DgUuh','center','qcZnh'];_0x43c1=function(){return _0x36db95;};return _0x43c1();}function _0x4daa(_0x14a0fd,_0x1921d3){const _0x43c176=_0x43c1();return _0x4daa=function(_0x4daaed,_0x36d8c8){_0x4daaed=_0x4daaed-0xb5;let _0x123ed0=_0x43c176[_0x4daaed];return _0x123ed0;},_0x4daa(_0x14a0fd,_0x1921d3);}export class FeedbackModal{constructor(){const _0x34ae16=_0x4daa,_0x3e46a2={'cNMyb':function(_0x13fb9c,_0x5986aa,_0x3b84c7){return _0x13fb9c(_0x5986aa,_0x3b84c7);},'IaVvF':_0x34ae16(0x1ad),'XeWkX':'POST','imFtC':_0x34ae16(0x169),'qwVnu':function(_0x113154,_0x67cda2){return _0x113154===_0x67cda2;},'vxhcA':function(_0x2bc7e8,_0xd6fda0){return _0x2bc7e8>_0xd6fda0;},'lXCbg':_0x34ae16(0x1c4),'qovwm':function(_0x13e32e,_0x52972d){return _0x13e32e*_0x52972d;},'XxKCj':function(_0x49eeca,_0x1fd4ac){return _0x49eeca(_0x1fd4ac);},'QwVwZ':'feedback-modal-screenshot-open','LbNOh':'none','xamQZ':_0x34ae16(0x1a7),'wgTux':_0x34ae16(0x10d),'ezzHU':_0x34ae16(0x176),'usDbK':_0x34ae16(0x163),'gNjmj':function(_0x29ad28,_0x112212){return _0x29ad28+_0x112212;},'sCHnb':function(_0x36ec9f,_0x1c6dd6){return _0x36ec9f+_0x1c6dd6;},'yvsXl':_0x34ae16(0x1d3),'uqcaq':_0x34ae16(0x15c),'kTDyM':_0x34ae16(0x134),'jrXxr':_0x34ae16(0x1bd),'UBBZu':'Please\x20try\x20again\x20later.','Rjang':'We\x20could\x20not\x20find\x20the\x20provided\x20project\x20ID\x20in\x20PushFeedback.','BsOae':'Thanks\x20for\x20your\x20feedback!','VOzxy':_0x34ae16(0x155),'rUYzg':_0x34ae16(0x127),'huwVb':_0x34ae16(0xba),'reLIW':_0x34ae16(0x196),'rxkKs':_0x34ae16(0x199),'cFmYw':_0x34ae16(0x13a)};this['onScrollDebounced']=()=>{const _0x5ef2b8=_0x34ae16,_0x49fd26={'CzvDG':_0x5ef2b8(0x167)};clearTimeout(this[_0x5ef2b8(0x1a3)]),this[_0x5ef2b8(0x1a3)]=_0x3e46a2['cNMyb'](setTimeout,()=>{const _0x3a0a12=_0x5ef2b8;document['documentElement'][_0x3a0a12(0x109)][_0x3a0a12(0x1ae)](_0x3a0a12(0xe1)),document[_0x3a0a12(0x17a)][_0x3a0a12(0x16b)]['top']='',window[_0x3a0a12(0xe2)](_0x49fd26['CzvDG'],this[_0x3a0a12(0xfc)]);},0xc8);},this[_0x34ae16(0x1d6)]=async _0x276a56=>{const _0x4bc002=_0x34ae16;_0x276a56['preventDefault'](),this[_0x4bc002(0x1a0)](),this[_0x4bc002(0x11b)]=![],this[_0x4bc002(0x1c8)]=![],this['showModal']=![],this[_0x4bc002(0xdd)]=!![];try{const _0x6843ea=await _0x3e46a2[_0x4bc002(0xbf)](fetch,_0x3e46a2['IaVvF'],{'method':_0x3e46a2['XeWkX'],'body':JSON[_0x4bc002(0x1c5)]({'url':window[_0x4bc002(0x10a)][_0x4bc002(0x17e)],'message':this[_0x4bc002(0xe8)],'email':this[_0x4bc002(0x13c)],'project':this['project'],'screenshot':this['encodedScreenshot']}),'headers':{'Content-Type':_0x3e46a2[_0x4bc002(0x132)]}});_0x3e46a2['qwVnu'](_0x6843ea[_0x4bc002(0x138)],0xc9)?(this[_0x4bc002(0x16d)]=!![],this[_0x4bc002(0x12d)]=![]):(this[_0x4bc002(0x16d)]=![],this[_0x4bc002(0x12d)]=!![],this['formErrorStatus']=_0x6843ea[_0x4bc002(0x138)]);}catch(_0x52838d){console[_0x4bc002(0x1b7)](_0x52838d),this['formSuccess']=![],this['formError']=!![],this[_0x4bc002(0xfe)]=0x1f4;}finally{this[_0x4bc002(0xdd)]=![],this['showModal']=!![];}},this['close']=()=>{const _0xa82b0=_0x34ae16;this['sending']=![],this[_0xa82b0(0x165)]=![],this[_0xa82b0(0x11b)]=![],this[_0xa82b0(0x1c8)]=![],this[_0xa82b0(0x1d4)]=![],this[_0xa82b0(0x19c)]=null,this[_0xa82b0(0x16d)]=![],this[_0xa82b0(0x12d)]=![],this[_0xa82b0(0xfe)]=0x1f4,this[_0xa82b0(0xe8)]='',this[_0xa82b0(0x13c)]='',this[_0xa82b0(0x1a0)]();},this[_0x34ae16(0x12c)]=()=>{const _0x564ce9=_0x34ae16;this['hasSelectedElement']=![],this[_0x564ce9(0x165)]=![],this['showScreenshotMode']=!![],this[_0x564ce9(0x1c8)]=!![],this['encodedScreenshot']=null;_0x3e46a2[_0x564ce9(0xf9)](window['innerWidth'],document[_0x564ce9(0x17a)][_0x564ce9(0x122)])&&document[_0x564ce9(0x17a)][_0x564ce9(0x109)][_0x564ce9(0xdc)](_0x3e46a2['lXCbg']);const _0xb5d69e=window[_0x564ce9(0xb8)];document[_0x564ce9(0x17a)][_0x564ce9(0x16b)][_0x564ce9(0x100)]='-'+_0xb5d69e+'px',window[_0x564ce9(0xdb)](0x0,_0x3e46a2[_0x564ce9(0x108)](_0x3e46a2[_0x564ce9(0x197)](parseInt,document['documentElement'][_0x564ce9(0x16b)]['top']||'0'),-0x1)),document[_0x564ce9(0x17a)]['classList'][_0x564ce9(0xdc)](_0x3e46a2[_0x564ce9(0x198)]);},this['closeScreenShot']=()=>{const _0x322025=_0x34ae16,_0x198c53='4|5|2|1|3|0'[_0x322025(0x171)]('|');let _0x1a3883=0x0;while(!![]){switch(_0x198c53[_0x1a3883++]){case'0':this['resetOverflow']();continue;case'1':this[_0x322025(0x1d4)]=![];continue;case'2':this[_0x322025(0x1c8)]=![];continue;case'3':this['encodedScreenshot']=null;continue;case'4':this[_0x322025(0x165)]=![];continue;case'5':this[_0x322025(0x11b)]=![];continue;}break;}},this[_0x34ae16(0x170)]=_0x578e87=>{const _0x3fbcd8=_0x34ae16;_0x578e87[_0x3fbcd8(0x18c)]();if(this[_0x3fbcd8(0x1d4)])return;const _0x25d04f=0x2;this[_0x3fbcd8(0x12f)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xd7)]=_0x3e46a2[_0x3fbcd8(0xca)];const _0x2e7ce3=document[_0x3fbcd8(0x130)](_0x578e87[_0x3fbcd8(0xc4)],_0x578e87['clientY']),_0x489cdd=_0x2e7ce3[_0x3fbcd8(0x106)]();this[_0x3fbcd8(0x12f)][_0x3fbcd8(0x16b)]['display']='',this['elementSelected'][_0x3fbcd8(0x16b)][_0x3fbcd8(0x178)]=_0x3e46a2[_0x3fbcd8(0xd4)],this[_0x3fbcd8(0x13d)][_0x3fbcd8(0x16b)]['left']=_0x489cdd[_0x3fbcd8(0x13e)]+'px',this[_0x3fbcd8(0x13d)]['style']['top']=_0x489cdd[_0x3fbcd8(0x100)]+'px',this[_0x3fbcd8(0x13d)]['style']['width']=_0x489cdd[_0x3fbcd8(0xf7)]+'px',this[_0x3fbcd8(0x13d)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xef)]=_0x489cdd[_0x3fbcd8(0xef)]+'px',this[_0x3fbcd8(0x13d)]['classList'][_0x3fbcd8(0xdc)](_0x3fbcd8(0xb7)),this[_0x3fbcd8(0xb6)]['style'][_0x3fbcd8(0x178)]='absolute',this[_0x3fbcd8(0xb6)]['style'][_0x3fbcd8(0x13e)]=_0x489cdd['left']+'px',this[_0x3fbcd8(0xb6)][_0x3fbcd8(0x16b)][_0x3fbcd8(0x100)]=_0x3fbcd8(0x176),this[_0x3fbcd8(0xb6)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xf7)]=_0x489cdd[_0x3fbcd8(0xf7)]+_0x25d04f+'px',this[_0x3fbcd8(0xb6)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xef)]=_0x489cdd[_0x3fbcd8(0x100)]+'px',this[_0x3fbcd8(0xb6)][_0x3fbcd8(0x16b)][_0x3fbcd8(0x151)]=_0x3e46a2['wgTux'],this['leftSide'][_0x3fbcd8(0x16b)][_0x3fbcd8(0x178)]=_0x3fbcd8(0x1a7),this[_0x3fbcd8(0xfb)]['style'][_0x3fbcd8(0x13e)]=_0x3e46a2[_0x3fbcd8(0x135)],this[_0x3fbcd8(0xfb)][_0x3fbcd8(0x16b)][_0x3fbcd8(0x100)]=_0x3e46a2[_0x3fbcd8(0x135)],this[_0x3fbcd8(0xfb)][_0x3fbcd8(0x16b)]['width']=_0x489cdd[_0x3fbcd8(0x13e)]+'px',this[_0x3fbcd8(0xfb)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xef)]=_0x3e46a2[_0x3fbcd8(0x104)],this['leftSide'][_0x3fbcd8(0x16b)]['backgroundColor']=_0x3e46a2['wgTux'],this[_0x3fbcd8(0x1c6)]['style'][_0x3fbcd8(0x178)]=_0x3e46a2['xamQZ'],this['bottomSide'][_0x3fbcd8(0x16b)][_0x3fbcd8(0x13e)]=_0x489cdd[_0x3fbcd8(0x13e)]+'px',this[_0x3fbcd8(0x1c6)][_0x3fbcd8(0x16b)]['top']=_0x3e46a2[_0x3fbcd8(0x125)](_0x489cdd['bottom'],_0x25d04f)+'px',this[_0x3fbcd8(0x1c6)][_0x3fbcd8(0x16b)]['width']=_0x3e46a2[_0x3fbcd8(0x125)](_0x489cdd[_0x3fbcd8(0xf7)],_0x25d04f)+'px',this[_0x3fbcd8(0x1c6)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xef)]=_0x3e46a2[_0x3fbcd8(0x104)],this['bottomSide']['style'][_0x3fbcd8(0x151)]=_0x3e46a2[_0x3fbcd8(0xd8)],this[_0x3fbcd8(0x15e)]['style'][_0x3fbcd8(0x178)]=_0x3e46a2['xamQZ'],this[_0x3fbcd8(0x15e)][_0x3fbcd8(0x16b)][_0x3fbcd8(0x13e)]=_0x3e46a2[_0x3fbcd8(0x1d2)](_0x489cdd[_0x3fbcd8(0xbc)],_0x25d04f)+'px';;this[_0x3fbcd8(0x15e)][_0x3fbcd8(0x16b)]['top']='0px',this[_0x3fbcd8(0x15e)][_0x3fbcd8(0x16b)][_0x3fbcd8(0xf7)]=_0x3e46a2['yvsXl'],this[_0x3fbcd8(0x15e)][_0x3fbcd8(0x16b)]['height']=_0x3fbcd8(0x163),this[_0x3fbcd8(0x15e)][_0x3fbcd8(0x16b)][_0x3fbcd8(0x151)]=_0x3fbcd8(0x10d),this[_0x3fbcd8(0x12f)]['style'][_0x3fbcd8(0x151)]=_0x3fbcd8(0x133);},this[_0x34ae16(0x10f)]=async _0x4e3cb0=>{const _0x484f88=_0x34ae16;_0x4e3cb0['preventDefault']();if(!this[_0x484f88(0x13d)])return;this['hasSelectedElement']=!![],this[_0x484f88(0x13d)][_0x484f88(0x109)][_0x484f88(0xdc)](_0x3e46a2['uqcaq']);const _0x15cac6=this[_0x484f88(0x13d)][_0x484f88(0x106)]()[_0x484f88(0x100)],_0x121244=_0x15cac6+window['scrollY'];this['elementSelected'][_0x484f88(0x16b)]['top']=_0x121244+'px';const _0x4962eb=this[_0x484f88(0x13d)][_0x484f88(0x186)](!![]);document['body'][_0x484f88(0x111)](_0x4962eb),this[_0x484f88(0x13d)][_0x484f88(0x16b)][_0x484f88(0x100)]=_0x15cac6+'px',this[_0x484f88(0x1c8)]=![],this[_0x484f88(0x165)]=![];try{const _0x236b4e=await this[_0x484f88(0xd5)]();console[_0x484f88(0x1b7)](_0x3e46a2[_0x484f88(0xf6)]),this[_0x484f88(0x19c)]=_0x236b4e;}catch(_0x265d0a){console[_0x484f88(0x19b)](_0x3e46a2['jrXxr'],_0x265d0a),this[_0x484f88(0x1d4)]=![];}finally{document[_0x484f88(0x1b4)][_0x484f88(0x1db)](_0x4962eb),this[_0x484f88(0x165)]=!![];}},this[_0x34ae16(0xdd)]=![],this[_0x34ae16(0xe8)]='',this['formEmail']='',this['formSuccess']=![],this['formError']=![],this['formErrorStatus']=0x1f4,this[_0x34ae16(0x19c)]=undefined,this[_0x34ae16(0x14b)]=_0x3e46a2['UBBZu'],this[_0x34ae16(0x129)]=_0x34ae16(0x142),this[_0x34ae16(0xe7)]=_0x3e46a2[_0x34ae16(0x124)],this[_0x34ae16(0x1c9)]=_0x34ae16(0xbe),this[_0x34ae16(0xeb)]=_0x3e46a2[_0x34ae16(0x1b8)],this['modalTitleError']=_0x3e46a2[_0x34ae16(0x10b)],this[_0x34ae16(0x1bb)]=_0x3e46a2[_0x34ae16(0xf2)],this[_0x34ae16(0xf8)]=_0x34ae16(0x18d),this['project']='',this['screenshotButtonTooltipText']=_0x3e46a2[_0x34ae16(0x15a)],this[_0x34ae16(0x1ab)]=_0x3e46a2['reLIW'],this[_0x34ae16(0x139)]='',this[_0x34ae16(0x12a)]=_0x3e46a2['rxkKs'],this['messagePlaceholder']=_0x3e46a2[_0x34ae16(0x191)],this['showModal']=![],this[_0x34ae16(0x11b)]=![],this[_0x34ae16(0x1c8)]=![],this[_0x34ae16(0x1d4)]=![],this[_0x34ae16(0xcc)]=![],this['whitelabel']=![];}['componentWillLoad'](){const _0x4c4358=_0x4daa;this[_0x4c4358(0x193)](),this[_0x4c4358(0x13c)]=this['email'];}async['fetchProjectData'](){const _0x1b6307=_0x4daa,_0x33cfb3={'xXwjQ':function(_0x564b62,_0x1d1434){return _0x564b62(_0x1d1434);},'zVstk':function(_0x1e2e0d,_0x286fae){return _0x1e2e0d+_0x286fae;},'NnUFi':_0x1b6307(0x194)};try{const _0x566e42=await _0x33cfb3[_0x1b6307(0x1be)](fetch,_0x33cfb3[_0x1b6307(0x1d7)](_0x33cfb3[_0x1b6307(0xb5)],this[_0x1b6307(0x161)])+'/'),_0x2587f3=await _0x566e42[_0x1b6307(0x120)]();this[_0x1b6307(0x123)]=_0x2587f3[_0x1b6307(0x123)];}catch(_0x5ab94b){console[_0x1b6307(0x1b7)](_0x5ab94b);}}['resetOverflow'](){const _0x6c4cf4=_0x4daa,_0x3a257c={'gRVSP':_0x6c4cf4(0x187),'NDCAc':_0x6c4cf4(0xe1),'vmsvD':_0x6c4cf4(0x167),'yLDRf':_0x6c4cf4(0x179),'lcKZa':function(_0x2a15d3,_0x25f69f){return _0x2a15d3*_0x25f69f;},'Sjfkr':function(_0x17fab,_0x5dc424){return _0x17fab(_0x5dc424);},'RXhuo':_0x6c4cf4(0x1c4)},_0x5d83d4=_0x3a257c[_0x6c4cf4(0x184)][_0x6c4cf4(0x171)]('|');let _0x54f9ca=0x0;while(!![]){switch(_0x5d83d4[_0x54f9ca++]){case'0':document[_0x6c4cf4(0x17a)][_0x6c4cf4(0x109)]['add'](_0x3a257c[_0x6c4cf4(0x15b)]);continue;case'1':window[_0x6c4cf4(0x1cd)](_0x3a257c[_0x6c4cf4(0xbd)],this[_0x6c4cf4(0xfc)]);continue;case'2':document['documentElement'][_0x6c4cf4(0x109)][_0x6c4cf4(0x1ae)](_0x3a257c[_0x6c4cf4(0x1b3)]);continue;case'3':window['scrollTo'](0x0,_0x3a257c[_0x6c4cf4(0xde)](_0x3a257c[_0x6c4cf4(0x137)](parseInt,document['documentElement'][_0x6c4cf4(0x16b)]['top']||'0'),-0x1));continue;case'4':document['documentElement'][_0x6c4cf4(0x109)][_0x6c4cf4(0x1ae)](_0x3a257c[_0x6c4cf4(0x114)]);continue;}break;}}[_0x16ed9f(0xee)](_0x247ac3){this['formMessage']=_0x247ac3['target']['value'];}['handleEmailInput'](_0x2a2734){const _0x2d36de=_0x16ed9f;this[_0x2d36de(0x13c)]=_0x2a2734[_0x2d36de(0xcf)]['value'];}[_0x16ed9f(0xd5)](){const _0x6763ce={'EITcT':function(_0xbb4eee,_0x4a679f,_0xa264ef){return _0xbb4eee(_0x4a679f,_0xa264ef);},'ksBzt':function(_0x11c48d,_0x5c64e6){return _0x11c48d(_0x5c64e6);}};return new Promise((_0x401a4b,_0x491fc5)=>{const _0x3e6a19={'nlKBi':function(_0x23fe5b,_0x5656be){const _0x42bf26=_0x4daa;return _0x6763ce[_0x42bf26(0x154)](_0x23fe5b,_0x5656be);}};requestAnimationFrame(()=>{const _0x296179=_0x4daa;_0x6763ce[_0x296179(0x1ba)](_0x5e0f30,document['body'],{'x':window[_0x296179(0x11c)],'y':window['scrollY'],'width':window[_0x296179(0x150)],'height':window[_0x296179(0xda)]})[_0x296179(0x141)](_0x5eea3b=>{const _0x4a8298=_0x5eea3b['toDataURL']();_0x3e6a19['nlKBi'](_0x401a4b,_0x4a8298);})[_0x296179(0xe0)](_0x446d73=>{const _0x525181=_0x296179;console[_0x525181(0x19b)](_0x446d73),_0x491fc5(_0x446d73);});});});}['render'](){const _0x331ffa=_0x16ed9f,_0x56e4bf={'RQVkp':function(_0x52f678,_0x251d14,_0x1ddece,_0x14881d,_0x3b1673,_0x3de9cb){return _0x52f678(_0x251d14,_0x1ddece,_0x14881d,_0x3b1673,_0x3de9cb);},'bUkOa':'feedback-modal-wrapper','LhmoP':function(_0x3c6bea,_0xab8064,_0x46120a,_0x4acd17,_0x1584ba,_0x50058e,_0x31eba7,_0x47446f,_0x498ba4){return _0x3c6bea(_0xab8064,_0x46120a,_0x4acd17,_0x1584ba,_0x50058e,_0x31eba7,_0x47446f,_0x498ba4);},'lGErA':'div','pXzCx':_0x331ffa(0xe9),'xIecm':function(_0x20cb47,_0x29cdf5,_0x155810){return _0x20cb47(_0x29cdf5,_0x155810);},'pyelI':_0x331ffa(0x145),'NXaDB':'top-side','iJiDy':_0x331ffa(0x157),'SbrSc':function(_0x869092,_0x40f6e6,_0x309638){return _0x869092(_0x40f6e6,_0x309638);},'lAEnY':_0x331ffa(0x112),'oYVEq':function(_0x155ac8,_0x1063f4,_0x26f3c4,_0x2c114c,_0x38ef7b){return _0x155ac8(_0x1063f4,_0x26f3c4,_0x2c114c,_0x38ef7b);},'VJxLi':function(_0x429564,_0x875736,_0x557be1,_0x5c8f96){return _0x429564(_0x875736,_0x557be1,_0x5c8f96);},'BIyOS':_0x331ffa(0x188),'tIRoL':function(_0x555a26,_0x4b7d56,_0x16a66e,_0x484c90){return _0x555a26(_0x4b7d56,_0x16a66e,_0x484c90);},'SkpcL':function(_0x47a1c2,_0x5782d5,_0x32c226,_0xe940bc,_0x17e115){return _0x47a1c2(_0x5782d5,_0x32c226,_0xe940bc,_0x17e115);},'qfzYu':_0x331ffa(0x11d),'zKdOA':_0x331ffa(0x148),'mKrRz':_0x331ffa(0xea),'xGKJy':_0x331ffa(0x1b9),'HicwR':function(_0x170b82,_0x5ba5de,_0x7080f1){return _0x170b82(_0x5ba5de,_0x7080f1);},'aAQAi':'feedback-overlay','iYFDj':function(_0xd2b971,_0x58f8ec,_0x19f8b3,_0x388a41,_0x1642b9){return _0xd2b971(_0x58f8ec,_0x19f8b3,_0x388a41,_0x1642b9);},'Kblpp':_0x331ffa(0x140),'ITrFk':'text-center','gBJfR':'button','shNKs':_0x331ffa(0xf4),'buimg':'svg','EqiSe':'#191919','ErEvF':_0x331ffa(0x115),'IXdQx':function(_0x546225,_0x2d0bf7,_0x382f79){return _0x546225(_0x2d0bf7,_0x382f79);},'xigPJ':function(_0x505d2f,_0x586977,_0x825c3b){return _0x505d2f(_0x586977,_0x825c3b);},'IPWoM':_0x331ffa(0xc9),'rqbtq':_0x331ffa(0x119),'kBTxd':function(_0x2d796a,_0x13e561,_0x1c605e,_0x4b344b,_0x57c875,_0x299175){return _0x2d796a(_0x13e561,_0x1c605e,_0x4b344b,_0x57c875,_0x299175);},'qcZnh':_0x331ffa(0xe3),'AlRKV':_0x331ffa(0x180),'VOWBd':function(_0x391aa7,_0x2a7646,_0x25a7ae,_0x1a80c9){return _0x391aa7(_0x2a7646,_0x25a7ae,_0x1a80c9);},'AztvW':_0x331ffa(0x17c),'qnSmD':'feedback-modal-input-heading','KVejg':function(_0x169e10,_0x4984f9,_0x5c91bd){return _0x169e10(_0x4984f9,_0x5c91bd);},'UrpTt':_0x331ffa(0x116),'GWsmi':_0x331ffa(0x139),'IUHez':'single','DaHHl':'feedback-modal-button--active','batKp':function(_0x18a4c2,_0x4a075e,_0x4fa300,_0x1bb416){return _0x18a4c2(_0x4a075e,_0x4fa300,_0x1bb416);},'NridI':'0\x20-960\x20960\x20960','KVMns':function(_0x468472,_0xf5e903,_0xa3cc04){return _0x468472(_0xf5e903,_0xa3cc04);},'pZQTC':'path','YzhFt':_0x331ffa(0x1d5),'gAGYj':'\x20Add\x20screenshot','eleJc':'feedback-modal-button\x20feedback-modal-button--submit','Jejct':function(_0x2acdde,_0x37751e){return _0x2acdde==_0x37751e;},'YjJCM':_0x331ffa(0x10c),'NgMsA':function(_0x2d3056,_0x23c843){return _0x2d3056==_0x23c843;},'TENlx':function(_0x32f348,_0x4c8900,_0x2d7450){return _0x32f348(_0x4c8900,_0x2d7450);},'icFfJ':function(_0x10344b,_0x4ff6e5,_0x4afbfe,_0x326077){return _0x10344b(_0x4ff6e5,_0x4afbfe,_0x326077);},'BgXfX':_0x331ffa(0x147),'PWZeB':_0x331ffa(0x174),'AsGPh':_0x331ffa(0xe5),'vMNcg':_0x331ffa(0x166),'ufigV':_0x331ffa(0x1a8)};return _0x56e4bf['RQVkp'](h,_0x331ffa(0x156),{'class':_0x56e4bf[_0x331ffa(0x1c1)]},this[_0x331ffa(0x11b)]&&_0x56e4bf[_0x331ffa(0x1aa)](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf['pXzCx'],'ref':_0x62929a=>this[_0x331ffa(0x12f)]=_0x62929a,'onMouseMove':this[_0x331ffa(0x170)]},_0x56e4bf[_0x331ffa(0x1b1)](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf[_0x331ffa(0x160)],'ref':_0x4c9593=>this['elementSelected']=_0x4c9593,'onClick':this[_0x331ffa(0x10f)]}),h(_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf['NXaDB'],'ref':_0x1cd85b=>this[_0x331ffa(0xb6)]=_0x1cd85b}),_0x56e4bf[_0x331ffa(0x1b1)](h,_0x56e4bf['lGErA'],{'class':_0x56e4bf['iJiDy'],'ref':_0x41c27d=>this[_0x331ffa(0xfb)]=_0x41c27d}),_0x56e4bf[_0x331ffa(0x181)](h,'div',{'class':_0x331ffa(0x1bc),'ref':_0x918aa0=>this['bottomSide']=_0x918aa0}),_0x56e4bf[_0x331ffa(0x181)](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf[_0x331ffa(0x1c3)],'ref':_0x34d2e3=>this[_0x331ffa(0x15e)]=_0x34d2e3}),this[_0x331ffa(0x1c8)]&&_0x56e4bf[_0x331ffa(0x11e)](h,_0x56e4bf['lGErA'],{'class':'feedback-modal-screenshot-header','onClick':this[_0x331ffa(0x121)]},_0x56e4bf['VJxLi'](h,_0x56e4bf[_0x331ffa(0x1d1)],null,this[_0x331ffa(0x1ab)]),_0x56e4bf[_0x331ffa(0x1cb)](h,_0x56e4bf[_0x331ffa(0x1d1)],{'class':'feedback-modal-screenshot-close'},_0x56e4bf[_0x331ffa(0x12b)](h,'svg',{'xmlns':_0x56e4bf[_0x331ffa(0x1a2)],'width':'22','height':'22','viewBox':_0x56e4bf['zKdOA'],'fill':_0x56e4bf[_0x331ffa(0xc6)],'stroke':_0x331ffa(0x146),'stroke-width':'2','stroke-linecap':_0x56e4bf[_0x331ffa(0xc0)],'stroke-linejoin':_0x56e4bf['xGKJy'],'class':_0x331ffa(0x115)},_0x56e4bf[_0x331ffa(0x1b1)](h,_0x331ffa(0xc9),{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x56e4bf[_0x331ffa(0x181)](h,'line',{'x1':'6','y1':'6','x2':'18','y2':'18'}))))),this['showModal']&&_0x56e4bf[_0x331ffa(0x1dc)](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf['aAQAi']}),this[_0x331ffa(0x165)]&&_0x56e4bf[_0x331ffa(0x149)](h,_0x56e4bf['lGErA'],{'class':_0x331ffa(0xc8)+this[_0x331ffa(0x1bb)],'ref':_0x2f2571=>this['modalContent']=_0x2f2571},_0x56e4bf[_0x331ffa(0xf1)](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf[_0x331ffa(0x168)]},!this[_0x331ffa(0x16d)]&&!this[_0x331ffa(0x12d)]?_0x56e4bf[_0x331ffa(0x1cb)](h,'span',null,this['modalTitle']):this[_0x331ffa(0x16d)]?_0x56e4bf[_0x331ffa(0x1cb)](h,'span',{'class':_0x56e4bf[_0x331ffa(0xd3)]},this[_0x331ffa(0xeb)]):_0x56e4bf[_0x331ffa(0x1cf)](h,_0x56e4bf['BIyOS'],null,this[_0x331ffa(0xd9)]),_0x56e4bf[_0x331ffa(0x1cf)](h,_0x56e4bf[_0x331ffa(0xdf)],{'class':_0x56e4bf[_0x331ffa(0x182)],'onClick':this[_0x331ffa(0x1da)]},h(_0x56e4bf['buimg'],{'xmlns':_0x56e4bf[_0x331ffa(0x1a2)],'width':'22','height':'22','viewBox':_0x56e4bf[_0x331ffa(0x158)],'fill':_0x56e4bf['mKrRz'],'stroke':_0x56e4bf[_0x331ffa(0x15f)],'stroke-width':'2','stroke-linecap':_0x331ffa(0x1b9),'stroke-linejoin':_0x56e4bf['xGKJy'],'class':_0x56e4bf[_0x331ffa(0xb9)]},_0x56e4bf['IXdQx'](h,_0x331ffa(0xc9),{'x1':'18','y1':'6','x2':'6','y2':'18'}),_0x56e4bf[_0x331ffa(0xcb)](h,_0x56e4bf[_0x331ffa(0x164)],{'x1':'6','y1':'6','x2':'18','y2':'18'})))),_0x56e4bf[_0x331ffa(0x1cb)](h,_0x56e4bf['lGErA'],{'class':_0x56e4bf[_0x331ffa(0x195)]},!this[_0x331ffa(0x16d)]&&!this[_0x331ffa(0x12d)]?_0x56e4bf[_0x331ffa(0x16e)](h,_0x56e4bf[_0x331ffa(0x128)],{'onSubmit':this[_0x331ffa(0x1d6)]},_0x56e4bf[_0x331ffa(0x11e)](h,_0x56e4bf['lGErA'],{'class':_0x56e4bf['AlRKV']},_0x56e4bf[_0x331ffa(0x16c)](h,_0x56e4bf[_0x331ffa(0x1d1)],{'class':_0x331ffa(0xc2)},this[_0x331ffa(0x185)]),_0x56e4bf['xIecm'](h,_0x331ffa(0x177),{'value':this[_0x331ffa(0xe8)],'onInput':_0x29368a=>this['handleMessageInput'](_0x29368a),'required':!![]})),!this[_0x331ffa(0x139)]&&_0x56e4bf['SkpcL'](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf[_0x331ffa(0x118)]},_0x56e4bf[_0x331ffa(0x1cf)](h,_0x56e4bf[_0x331ffa(0x1d1)],{'class':_0x56e4bf[_0x331ffa(0x189)]},this['emailPlaceholder']),_0x56e4bf['KVejg'](h,_0x56e4bf[_0x331ffa(0x1c7)],{'type':_0x56e4bf[_0x331ffa(0x1c2)],'onInput':_0x116ff3=>this['handleEmailInput'](_0x116ff3),'value':this[_0x331ffa(0x13c)]})),_0x56e4bf['SkpcL'](h,_0x331ffa(0x156),{'class':_0x331ffa(0xce)+(this[_0x331ffa(0xcc)]?_0x56e4bf[_0x331ffa(0x13f)]:'')},!this[_0x331ffa(0xcc)]&&h(_0x56e4bf[_0x331ffa(0xdf)],{'type':_0x56e4bf[_0x331ffa(0xdf)],'class':_0x331ffa(0x192)+(this[_0x331ffa(0x19c)]?_0x56e4bf[_0x331ffa(0x1a5)]:''),'title':this[_0x331ffa(0x16a)],'onClick':this[_0x331ffa(0x12c)],'disabled':this[_0x331ffa(0xdd)]},_0x56e4bf[_0x331ffa(0x153)](h,_0x56e4bf['buimg'],{'xmlns':_0x56e4bf[_0x331ffa(0x1a2)],'height':'24','viewBox':_0x56e4bf[_0x331ffa(0x152)],'width':'24'},_0x56e4bf[_0x331ffa(0x19a)](h,_0x56e4bf['pZQTC'],{'d':_0x56e4bf[_0x331ffa(0xcd)]})),_0x56e4bf[_0x331ffa(0x19d)]),h(_0x331ffa(0x172),{'class':_0x56e4bf[_0x331ffa(0x14a)],'type':_0x331ffa(0x1dd),'disabled':this[_0x331ffa(0xdd)]},this['sendButtonText']))):this[_0x331ffa(0x12d)]&&_0x56e4bf[_0x331ffa(0x17d)](this[_0x331ffa(0xfe)],0x194)?h('p',{'class':_0x56e4bf['YjJCM']},this['errorMessage404']):this[_0x331ffa(0x12d)]&&_0x56e4bf['NgMsA'](this[_0x331ffa(0xfe)],0x193)?_0x56e4bf['batKp'](h,'p',{'class':_0x56e4bf[_0x331ffa(0x19e)]},this[_0x331ffa(0x129)]):this['formError']?h('p',{'class':_0x331ffa(0x10c)},this[_0x331ffa(0x14b)]):_0x56e4bf[_0x331ffa(0x18e)](h,_0x56e4bf[_0x331ffa(0x1d1)],null)),_0x56e4bf[_0x331ffa(0x11f)](h,_0x56e4bf[_0x331ffa(0x14f)],{'class':_0x56e4bf[_0x331ffa(0x144)],'style':{'display':this['whitelabel']?_0x331ffa(0xea):'block'}},h(_0x56e4bf['lGErA'],{'class':_0x56e4bf[_0x331ffa(0x1ac)]},_0x56e4bf[_0x331ffa(0x183)],_0x56e4bf[_0x331ffa(0x153)](h,'a',{'target':_0x56e4bf[_0x331ffa(0x1b0)],'href':_0x56e4bf[_0x331ffa(0xc5)]},_0x331ffa(0xe4))))));}static get['is'](){const _0x254bdc=_0x16ed9f,_0x1d0032={'TMzsr':_0x254bdc(0x1a9)};return _0x1d0032['TMzsr'];}static get[_0x16ed9f(0xfa)](){const _0x59e6ae=_0x16ed9f,_0x290c7b={'mpwiB':_0x59e6ae(0x162)};return _0x290c7b[_0x59e6ae(0x113)];}static get['originalStyleUrls'](){const _0xc44209=_0x16ed9f,_0x4a54b8={'XRiWQ':_0xc44209(0xc1)};return{'$':[_0x4a54b8[_0xc44209(0xc7)]]};}static get[_0x16ed9f(0x1ce)](){const _0x53db62=_0x16ed9f,_0x301305={'kiwVh':_0x53db62(0xc1)};return{'$':[_0x301305['kiwVh']]};}static get[_0x16ed9f(0x10e)](){const _0x4f22af=_0x16ed9f,_0xe2d540={'WQVUZ':'string','olESe':_0x4f22af(0x110),'heNuz':_0x4f22af(0x14c),'EpPrc':_0x4f22af(0x1d8),'IpOMX':_0x4f22af(0xd0),'DwzkT':_0x4f22af(0x1c0),'IQEuL':_0x4f22af(0xf3),'ztGji':_0x4f22af(0x101),'lYzrG':_0x4f22af(0x105),'SCAqo':_0x4f22af(0xf0),'ThxiQ':'\x27Send\x27','AsTlH':'project','VdUhQ':'screenshot-button-tooltip-text','PDeKj':'\x27Take\x20a\x20Screenshot\x27','VKfMh':_0x4f22af(0x107),'NWUch':_0x4f22af(0x16f),'kmsUj':_0x4f22af(0x1b5),'jCHWE':_0x4f22af(0x1b2),'sNXJT':_0x4f22af(0x173),'StgsG':_0x4f22af(0x159),'YJRwk':_0x4f22af(0x1d9),'DgUuh':_0x4f22af(0x17f),'GtNfx':_0x4f22af(0x11a),'Oaulg':_0x4f22af(0x1a4),'EQTwr':_0x4f22af(0x1bf)};return{'errorMessage':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0x4f22af(0x17b),'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0x175),'reflect':![],'defaultValue':_0xe2d540['olESe']},'errorMessage403':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0xe2d540['WQVUZ'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0xfd),'reflect':![],'defaultValue':_0x4f22af(0x1a1)},'errorMessage404':{'type':_0x4f22af(0x17b),'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0x4f22af(0x17b),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0xd6),'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0x131)]},'modalTitle':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0x4f22af(0x17b),'resolved':_0xe2d540['WQVUZ'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x1cc)],'reflect':![],'defaultValue':_0xe2d540['IpOMX']},'modalTitleSuccess':{'type':_0xe2d540['WQVUZ'],'mutable':![],'complexType':{'original':_0x4f22af(0x17b),'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x1d0)],'reflect':![],'defaultValue':_0xe2d540['IQEuL']},'modalTitleError':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0x4f22af(0x17b),'resolved':_0xe2d540['WQVUZ'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0x102),'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0x18a)]},'modalPosition':{'type':'string','mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0xd1)],'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0xed)]},'sendButtonText':{'type':_0xe2d540['WQVUZ'],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0x18f),'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0x136)]},'project':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0x4f22af(0x17b),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540['AsTlH'],'reflect':![],'defaultValue':'\x27\x27'},'screenshotButtonTooltipText':{'type':_0xe2d540['WQVUZ'],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x1b6)],'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0x18b)]},'screenshotTopbarText':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0x4f22af(0x17b),'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0xec)],'reflect':![],'defaultValue':_0xe2d540['NWUch']},'email':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0xe2d540['WQVUZ'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0x139),'reflect':![],'defaultValue':'\x27\x27'},'emailPlaceholder':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x19f)],'resolved':_0xe2d540[_0x4f22af(0x19f)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0x4f22af(0x190),'reflect':![],'defaultValue':'\x27Email\x20address\x20(optional)\x27'},'messagePlaceholder':{'type':_0xe2d540[_0x4f22af(0x19f)],'mutable':![],'complexType':{'original':_0xe2d540['WQVUZ'],'resolved':_0x4f22af(0x17b),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x1ca)],'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0x117)]},'showModal':{'type':_0xe2d540['sNXJT'],'mutable':!![],'complexType':{'original':_0xe2d540[_0x4f22af(0x15d)],'resolved':_0xe2d540[_0x4f22af(0x15d)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0xff)],'reflect':!![],'defaultValue':_0xe2d540[_0x4f22af(0xbb)]},'showScreenshotMode':{'type':_0xe2d540[_0x4f22af(0x15d)],'mutable':!![],'complexType':{'original':'boolean','resolved':_0x4f22af(0x173),'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x126)],'reflect':!![],'defaultValue':_0xe2d540[_0x4f22af(0xbb)]},'showScreenshotTopBar':{'type':_0xe2d540[_0x4f22af(0x15d)],'mutable':!![],'complexType':{'original':_0x4f22af(0x173),'resolved':_0xe2d540[_0x4f22af(0x15d)],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x103)],'reflect':!![],'defaultValue':_0x4f22af(0x1d9)},'hasSelectedElement':{'type':_0xe2d540[_0x4f22af(0x15d)],'mutable':!![],'complexType':{'original':_0xe2d540[_0x4f22af(0x15d)],'resolved':_0xe2d540['sNXJT'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0x13b)],'reflect':!![],'defaultValue':_0xe2d540[_0x4f22af(0xbb)]},'hideScreenshotButton':{'type':_0xe2d540['sNXJT'],'mutable':![],'complexType':{'original':_0xe2d540[_0x4f22af(0x15d)],'resolved':_0xe2d540['sNXJT'],'references':{}},'required':![],'optional':![],'docs':{'tags':[],'text':''},'attribute':_0xe2d540[_0x4f22af(0xf5)],'reflect':![],'defaultValue':_0xe2d540[_0x4f22af(0xbb)]}};}static get['states'](){return{'sending':{},'formMessage':{},'formEmail':{},'formSuccess':{},'formError':{},'formErrorStatus':{},'encodedScreenshot':{},'whitelabel':{}};}}
@@ -1 +1 @@
1
- function _0x42d3(_0x4dfa91,_0x1f8557){var _0x163dea=_0x163d();return _0x42d3=function(_0x42d339,_0x4b370c){_0x42d339=_0x42d339-0x105;var _0x52dd3f=_0x163dea[_0x42d339];return _0x52dd3f;},_0x42d3(_0x4dfa91,_0x1f8557);}function _0x163d(){var _0x28a306=['3nILrPX','4093056cdoYTz','13607487DJIBPH','7105100EKMmFm','1332081jOQExc','7oPjVvn','4fXkmPP','10050540JpEbpq','4956872gVglNs','190496PYEyKe'];_0x163d=function(){return _0x28a306;};return _0x163d();}(function(_0x29e020,_0xaad03a){var _0x3b4358=_0x42d3,_0x2e167a=_0x29e020();while(!![]){try{var _0x4aa9c2=-parseInt(_0x3b4358(0x108))/0x1+-parseInt(_0x3b4358(0x10d))/0x2*(parseInt(_0x3b4358(0x10e))/0x3)+-parseInt(_0x3b4358(0x10a))/0x4*(-parseInt(_0x3b4358(0x107))/0x5)+parseInt(_0x3b4358(0x105))/0x6+parseInt(_0x3b4358(0x109))/0x7*(parseInt(_0x3b4358(0x10c))/0x8)+-parseInt(_0x3b4358(0x106))/0x9+parseInt(_0x3b4358(0x10b))/0xa;if(_0x4aa9c2===_0xaad03a)break;else _0x2e167a['push'](_0x2e167a['shift']());}catch(_0x138c96){_0x2e167a['push'](_0x2e167a['shift']());}}}(_0x163d,0xc086b));export*from'./components';
1
+ function _0xfb74(_0x4373d7,_0xd722a3){var _0x4aeffb=_0x4aef();return _0xfb74=function(_0xfb7486,_0x171d0d){_0xfb7486=_0xfb7486-0x9f;var _0x4db499=_0x4aeffb[_0xfb7486];return _0x4db499;},_0xfb74(_0x4373d7,_0xd722a3);}function _0x4aef(){var _0x12fc25=['151ECDbzA','6495dualgb','1636978iHvvIZ','494985ZsdDJb','5658232uJbZYy','11558vEokks','894RXctgo','4991463iCRWZG','20TrgQre','9475310TSKrdT'];_0x4aef=function(){return _0x12fc25;};return _0x4aef();}(function(_0x19f21c,_0x788663){var _0x3de31a=_0xfb74,_0x33359e=_0x19f21c();while(!![]){try{var _0x2004cf=parseInt(_0x3de31a(0x9f))/0x1*(-parseInt(_0x3de31a(0xa4))/0x2)+parseInt(_0x3de31a(0xa2))/0x3*(-parseInt(_0x3de31a(0xa7))/0x4)+-parseInt(_0x3de31a(0xa0))/0x5*(parseInt(_0x3de31a(0xa5))/0x6)+parseInt(_0x3de31a(0xa1))/0x7+parseInt(_0x3de31a(0xa3))/0x8+parseInt(_0x3de31a(0xa6))/0x9+parseInt(_0x3de31a(0xa8))/0xa;if(_0x2004cf===_0x788663)break;else _0x33359e['push'](_0x33359e['shift']());}catch(_0x2e7a8b){_0x33359e['push'](_0x33359e['shift']());}}}(_0x4aef,0x86cb4));export*from'./components';
@@ -1 +1 @@
1
- function _0x1087(){const _0x1a3c31=['Email\x20address\x20(optional)','ltMdM','hide-screenshot-button','slot','0|12|13|15|1|5|3|9|6|19|18|2|4|16|21|17|10|8|14|20|7|11','hideIcon','querySelector','__attachShadow','gRxYe','errorMessage403','body','Select\x20an\x20element\x20on\x20this\x20page','lcVzD','buttonStyle','http://www.w3.org/2000/svg','0\x200\x2024\x2024','errorMessage','Please\x20try\x20again\x20later.','How\x20could\x20this\x20page\x20be\x20more\x20helpful?','send-button-text','mRyEL','buttonPosition','offsetWidth','AGIxQ','NNUyC','yhjgl','project','default','light','screenshotButtonTooltipText','Send','250MlyqMj','SRnCB','#0070F4','290FoyATB','sendButtonText','QYwsM','modalTitle','M16.5\x203.5a2.121\x202.121\x200\x200\x201\x203\x203L7\x2019l-4\x201\x201-4L16.5\x203.5z','get','kFYUS','disconnectedCallback','feedback-button-content\x20feedback-button-content--','8YGJsuc','zbFZH','errorMessage404','zstNt','center','hideScreenshotButton','4552485zrkWsO','round','Share\x20your\x20feedback','vjpyG','connectedCallback','cpuyJ','undefined','eCHpT','DKcRp','style','iajka','#fff','customFont','ccgxb','LFfjc','svg','XBSZo','messagePlaceholder','stylesheet','error-message-4-0-3','Thanks\x20for\x20your\x20feedback!','showModal','GEufS','utHfu','4926411FEtyOS','modal-title-success','error-message-4-0-4','split','dngNT','qtFIu','BnWKa','neeEO','head','error-message','screenshot-topbar-text','Oops!','kVrtq','hide-icon','We\x20could\x20not\x20find\x20the\x20provided\x20project\x20id\x20in\x20PushFeedback.','custom-font','createElement','1372860GLOtrr','screenshot-button-tooltip-text','link','8915220kLmsrK','PJKnK','define','path','CjYOs','FyamT','602580aFDVxb','shadowRoot','modalPosition','appendChild','6pMiRaX','href','email','feedback-button-content-icon','modalTitleSuccess','__registerHost','SoQvC','LLUgi','The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.','M12\x2020h9','ReMZb','message-placeholder','Rbnvj','211PKCTwv','feedback-button','screenshotTopbarText','.feedback-button-content{cursor:pointer;z-index:var(--feedback-button-z-index)}.feedback-button-content--light{align-items:center;background-color:var(--feedback-button-light-bg-color);border-radius:var(--feedback-button-border-radius);box-shadow:rgba(60,\x2064,\x2067,\x200.3)\x200px\x201px\x202px\x200px,\x20rgba(60,\x2064,\x2067,\x200.15)\x200px\x202px\x206px\x202px;box-sizing:border-box;color:var(--feedback-button-light-text-color);display:flex;font-family:var(--feedback-font-family);font-size:var(--feedback-button-text-font-size);font-weight:var(--feedback-button-text-font-weight);padding:8px\x2015px}.feedback-button-content--dark{align-items:center;background-color:var(--feedback-button-dark-bg-color);border-radius:var(--feedback-button-border-radius);box-shadow:rgba(60,\x2064,\x2067,\x200.3)\x200px\x201px\x202px\x200px,\x20rgba(60,\x2064,\x2067,\x200.15)\x200px\x202px\x206px\x202px;box-sizing:border-box;color:var(--feedback-button-dark-text-color);display:flex;font-family:var(--feedback-font-family);font-weight:var(--feedback-button-text-font-weight);font-size:var(--feedback-button-text-font-size);padding:8px\x2015px}.feedback-button-content--bottom-right{bottom:10px;position:fixed;right:10px}.feedback-button-content--center-right{position:fixed;transform:rotate(-90deg)\x20translateY(-50%);top:50%}.feedback-button-content--center-right.feedback-button-content--dark,.feedback-button-content--center-right.feedback-button-content--light{border-radius:4px;border-bottom-left-radius:0px;border-bottom-right-radius:0px}.feedback-button-content-icon{height:16px;margin-right:5px;width:16px}.feedback-button-content--center-right\x20.feedback-button-content-icon{rotate:90deg}','1524eWEvNi','NkVls','forEach','3260ZJaNWx','SmJKJ','span','email-placeholder','emailPlaceholder','https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap','feedbackModal','jmgYk','iWxYU'];_0x1087=function(){return _0x1a3c31;};return _0x1087();}const _0x35a78c=_0x3b68;function _0x3b68(_0xf03eb4,_0x21d5e6){const _0x1087f9=_0x1087();return _0x3b68=function(_0x3b686e,_0x4fc666){_0x3b686e=_0x3b686e-0x1df;let _0x5c7320=_0x1087f9[_0x3b686e];return _0x5c7320;},_0x3b68(_0xf03eb4,_0x21d5e6);}(function(_0x43a2c0,_0x124670){const _0x12b984=_0x3b68,_0x46328a=_0x43a2c0();while(!![]){try{const _0x1458e0=-parseInt(_0x12b984(0x1ee))/0x1*(-parseInt(_0x12b984(0x220))/0x2)+-parseInt(_0x12b984(0x1f2))/0x3*(-parseInt(_0x12b984(0x1f5))/0x4)+parseInt(_0x12b984(0x22f))/0x5*(-parseInt(_0x12b984(0x1e1))/0x6)+parseInt(_0x12b984(0x247))/0x7+-parseInt(_0x12b984(0x229))/0x8*(parseInt(_0x12b984(0x25b))/0x9)+parseInt(_0x12b984(0x21d))/0xa*(parseInt(_0x12b984(0x261))/0xb)+parseInt(_0x12b984(0x258))/0xc;if(_0x1458e0===_0x124670)break;else _0x46328a['push'](_0x46328a['shift']());}catch(_0x9f0a94){_0x46328a['push'](_0x46328a['shift']());}}}(_0x1087,0xb2850));import{proxyCustomElement,HTMLElement,h,Host}from'@stencil/core/internal/client';import{d as _0x275385}from'./feedback-modal2.js';const feedbackButtonCss=_0x35a78c(0x1f1),FeedbackButton$1=proxyCustomElement(class extends HTMLElement{constructor(){const _0x1d1627=_0x35a78c,_0x45a811={'lcVzD':_0x1d1627(0x202),'zstNt':_0x1d1627(0x20f),'AGIxQ':_0x1d1627(0x21c),'WPtAh':_0x1d1627(0x255),'utHfu':_0x1d1627(0x1e9),'DKcRp':_0x1d1627(0x243),'kQRGa':_0x1d1627(0x210),'sASNq':_0x1d1627(0x1fe),'SJnef':'default','JsrcU':'Take\x20a\x20Screenshot','YcNOd':_0x1d1627(0x22d),'gRxYe':_0x1d1627(0x252),'PJKnK':_0x1d1627(0x209)},_0x53d12d=_0x45a811[_0x1d1627(0x20a)][_0x1d1627(0x24a)]('|');let _0x405e81=0x0;while(!![]){switch(_0x53d12d[_0x405e81++]){case'0':super();continue;case'1':this[_0x1d1627(0x20e)]=_0x45a811[_0x1d1627(0x22c)];continue;case'2':this['sendButtonText']=_0x45a811[_0x1d1627(0x215)];continue;case'3':this['errorMessage404']=_0x45a811['WPtAh'];continue;case'4':this[_0x1d1627(0x218)]='';continue;case'5':this[_0x1d1627(0x207)]=_0x45a811[_0x1d1627(0x246)];continue;case'6':this[_0x1d1627(0x1e5)]=_0x45a811[_0x1d1627(0x237)];continue;case'7':this[_0x1d1627(0x203)]=![];continue;case'8':this[_0x1d1627(0x240)]=_0x45a811['kQRGa'];continue;case'9':this[_0x1d1627(0x223)]=_0x1d1627(0x231);continue;case'10':this['emailPlaceholder']=_0x45a811['sASNq'];continue;case'11':this[_0x1d1627(0x22e)]=![];continue;case'12':this[_0x1d1627(0x1e6)]();continue;case'13':this[_0x1d1627(0x205)]();continue;case'14':this[_0x1d1627(0x20b)]=_0x45a811['SJnef'];continue;case'15':this[_0x1d1627(0x23b)]=![];continue;case'16':this[_0x1d1627(0x21b)]=_0x45a811['JsrcU'];continue;case'17':this[_0x1d1627(0x1e3)]='';continue;case'18':this[_0x1d1627(0x1df)]=_0x45a811['YcNOd'];continue;case'19':this['modalTitleError']=_0x45a811[_0x1d1627(0x206)];continue;case'20':this[_0x1d1627(0x213)]=_0x1d1627(0x219);continue;case'21':this['screenshotTopbarText']=_0x45a811[_0x1d1627(0x25c)];continue;}break;}}[_0x35a78c(0x233)](){const _0x4e7c56=_0x35a78c,_0x43a037={'eCHpT':'feedback-modal','LLUgi':'errorMessage','unLft':_0x4e7c56(0x207),'nYDSv':_0x4e7c56(0x22b),'cpuyJ':'modalTitle','GEufS':'modalTitleSuccess','SRnCB':_0x4e7c56(0x1df),'kVrtq':_0x4e7c56(0x221),'kFYUS':_0x4e7c56(0x218),'iajka':_0x4e7c56(0x1e3),'Rbnvj':_0x4e7c56(0x1f9),'Vlseg':_0x4e7c56(0x240),'zbFZH':'hideScreenshotButton'};this[_0x4e7c56(0x1fb)]=document[_0x4e7c56(0x257)](_0x43a037[_0x4e7c56(0x236)]);const _0x4d8fa3=[_0x4e7c56(0x23b),_0x43a037[_0x4e7c56(0x1e8)],_0x43a037['unLft'],_0x43a037['nYDSv'],_0x43a037[_0x4e7c56(0x234)],_0x43a037[_0x4e7c56(0x245)],'modalTitleError',_0x43a037[_0x4e7c56(0x21e)],_0x43a037[_0x4e7c56(0x253)],_0x43a037[_0x4e7c56(0x226)],_0x4e7c56(0x21b),_0x4e7c56(0x1f0),_0x43a037[_0x4e7c56(0x239)],_0x43a037[_0x4e7c56(0x1ed)],_0x43a037['Vlseg'],_0x43a037[_0x4e7c56(0x22a)]];_0x4d8fa3[_0x4e7c56(0x1f4)](_0x35a12c=>{const _0x4d0bcf=_0x4e7c56;this[_0x4d0bcf(0x1fb)][_0x35a12c]=this[_0x35a12c];}),document[_0x4e7c56(0x208)]['appendChild'](this[_0x4e7c56(0x1fb)]);}[_0x35a78c(0x227)](){const _0x17f47a=_0x35a78c;document['body']['removeChild'](this[_0x17f47a(0x1fb)]);}['componentDidLoad'](){const _0x25b029=_0x35a78c,_0x54ccff={'QYwsM':function(_0x1b0c88,_0x548fac){return _0x1b0c88===_0x548fac;},'VJKdO':'center-right','XBSZo':function(_0x1c202e,_0x5eacde){return _0x1c202e*_0x5eacde;},'qtFIu':function(_0x4f219d,_0x115940){return _0x4f219d/_0x115940;}};if(_0x54ccff[_0x25b029(0x222)](this[_0x25b029(0x213)],_0x54ccff['VJKdO'])){const _0x5b1ba4=this['el'][_0x25b029(0x262)][_0x25b029(0x204)]('.feedback-button-content');_0x5b1ba4[_0x25b029(0x238)]['right']=_0x54ccff[_0x25b029(0x23f)](_0x54ccff[_0x25b029(0x24c)](_0x5b1ba4[_0x25b029(0x214)],0x2),-0x1)+'px';}!this[_0x25b029(0x23b)]&&this['loadInterFont']();}['loadInterFont'](){const _0x4fa433=_0x35a78c,_0xea0855={'CjYOs':_0x4fa433(0x25a)},_0xca3bd0=document[_0x4fa433(0x257)](_0xea0855[_0x4fa433(0x25f)]);_0xca3bd0[_0x4fa433(0x1e2)]=_0x4fa433(0x1fa),_0xca3bd0['rel']=_0x4fa433(0x241),document[_0x4fa433(0x24f)][_0x4fa433(0x1e0)](_0xca3bd0);}[_0x35a78c(0x244)](){const _0x1d5d1f=_0x35a78c;this[_0x1d5d1f(0x1fb)]['showModal']=!![];}['render'](){const _0x3e4240=_0x35a78c,_0x2a87ba={'gNcXs':function(_0x3ac6e6,_0x6c38fd,_0x38a147,_0x4fd0e4){return _0x3ac6e6(_0x6c38fd,_0x38a147,_0x4fd0e4);},'vjpyG':function(_0xb4180b,_0x27121e){return _0xb4180b===_0x27121e;},'ltMdM':_0x3e4240(0x1f7),'LFfjc':_0x3e4240(0x23e),'neeEO':_0x3e4240(0x20c),'yhjgl':_0x3e4240(0x20d),'ccgxb':'none','dngNT':_0x3e4240(0x23a),'jmgYk':_0x3e4240(0x230),'iWxYU':function(_0x555204,_0x3c262f,_0x971f32){return _0x555204(_0x3c262f,_0x971f32);},'NkVls':_0x3e4240(0x25e),'mRyEL':_0x3e4240(0x1ea),'ReMZb':_0x3e4240(0x224),'NNUyC':function(_0x450d58,_0x358f44){return _0x450d58===_0x358f44;},'FyamT':function(_0x35756c,_0x40ab20,_0x2156ca,_0x2c32f5){return _0x35756c(_0x40ab20,_0x2156ca,_0x2c32f5);},'pkedC':function(_0x487ef0,_0x59e045,_0x2aaab5,_0x537221,_0x31325d){return _0x487ef0(_0x59e045,_0x2aaab5,_0x537221,_0x31325d);},'LivLp':_0x3e4240(0x21f),'SmJKJ':'feather\x20feather-edit-3','BnWKa':function(_0x406a04,_0xdc9521,_0x16314f){return _0x406a04(_0xdc9521,_0x16314f);},'SoQvC':_0x3e4240(0x201)};return _0x2a87ba['gNcXs'](h,Host,null,h('a',{'class':_0x3e4240(0x228)+this[_0x3e4240(0x20b)]+'\x20feedback-button-content--'+this[_0x3e4240(0x213)],'onClick':()=>this['showModal']()},!this[_0x3e4240(0x203)]&&_0x2a87ba[_0x3e4240(0x232)](this[_0x3e4240(0x20b)],'dark')&&h(_0x2a87ba[_0x3e4240(0x1ff)],{'class':'feedback-button-content-icon'},h(_0x2a87ba[_0x3e4240(0x23d)],{'xmlns':_0x2a87ba[_0x3e4240(0x24e)],'width':'16','height':'16','viewBox':_0x2a87ba[_0x3e4240(0x217)],'fill':_0x2a87ba[_0x3e4240(0x23c)],'stroke':_0x2a87ba[_0x3e4240(0x24b)],'stroke-width':'2','stroke-linecap':_0x2a87ba[_0x3e4240(0x1fc)],'stroke-linejoin':_0x2a87ba['jmgYk'],'class':'feather\x20feather-edit-3'},_0x2a87ba['iWxYU'](h,_0x2a87ba[_0x3e4240(0x1f3)],{'d':_0x2a87ba[_0x3e4240(0x212)]}),_0x2a87ba[_0x3e4240(0x1fd)](h,_0x2a87ba[_0x3e4240(0x1f3)],{'d':_0x2a87ba[_0x3e4240(0x1eb)]}))),!this['hideIcon']&&_0x2a87ba[_0x3e4240(0x216)](this[_0x3e4240(0x20b)],_0x3e4240(0x21a))&&_0x2a87ba[_0x3e4240(0x260)](h,_0x2a87ba['ltMdM'],{'class':_0x3e4240(0x1e4)},_0x2a87ba['pkedC'](h,_0x2a87ba[_0x3e4240(0x23d)],{'xmlns':_0x3e4240(0x20c),'width':'16','height':'16','viewBox':_0x2a87ba[_0x3e4240(0x217)],'fill':'none','stroke':_0x2a87ba['LivLp'],'stroke-width':'2','stroke-linecap':_0x2a87ba['jmgYk'],'stroke-linejoin':_0x2a87ba['jmgYk'],'class':_0x2a87ba[_0x3e4240(0x1f6)]},_0x2a87ba[_0x3e4240(0x1fd)](h,_0x2a87ba[_0x3e4240(0x1f3)],{'d':_0x3e4240(0x1ea)}),_0x2a87ba[_0x3e4240(0x24d)](h,_0x2a87ba[_0x3e4240(0x1f3)],{'d':_0x3e4240(0x224)}))),_0x2a87ba[_0x3e4240(0x1fd)](h,_0x2a87ba[_0x3e4240(0x1e7)],null)));}get['el'](){return this;}static get['style'](){return feedbackButtonCss;}},[0x1,_0x35a78c(0x1ef),{'customFont':[0x4,_0x35a78c(0x256)],'errorMessage':[0x1,_0x35a78c(0x250)],'errorMessage403':[0x1,_0x35a78c(0x242)],'errorMessage404':[0x1,_0x35a78c(0x249)],'modalTitle':[0x1,'modal-title'],'modalTitleSuccess':[0x1,_0x35a78c(0x248)],'modalTitleError':[0x1,'modal-title-error'],'modalPosition':[0x1,'modal-position'],'sendButtonText':[0x1,_0x35a78c(0x211)],'project':[0x1],'screenshotButtonTooltipText':[0x1,_0x35a78c(0x259)],'screenshotTopbarText':[0x1,_0x35a78c(0x251)],'email':[0x1],'emailPlaceholder':[0x1,_0x35a78c(0x1f8)],'messagePlaceholder':[0x1,_0x35a78c(0x1ec)],'buttonStyle':[0x1,'button-style'],'buttonPosition':[0x1,'button-position'],'hideIcon':[0x4,_0x35a78c(0x254)],'hideScreenshotButton':[0x4,_0x35a78c(0x200)]}]);function defineCustomElement$1(){const _0x48d79b=_0x35a78c,_0x2f4f3f={'HlSWL':_0x48d79b(0x1ef),'rwIXF':function(_0xb9d553){return _0xb9d553();},'ATvew':function(_0x311743,_0x11b5d8){return _0x311743===_0x11b5d8;}};if(_0x2f4f3f['ATvew'](typeof customElements,_0x48d79b(0x235)))return;const _0x401430=[_0x2f4f3f['HlSWL'],'feedback-modal'];_0x401430[_0x48d79b(0x1f4)](_0x48de24=>{const _0x1f1d4f=_0x48d79b;switch(_0x48de24){case _0x2f4f3f['HlSWL']:!customElements[_0x1f1d4f(0x225)](_0x48de24)&&customElements[_0x1f1d4f(0x25d)](_0x48de24,FeedbackButton$1);break;case'feedback-modal':!customElements[_0x1f1d4f(0x225)](_0x48de24)&&_0x2f4f3f['rwIXF'](_0x275385);break;}});}const FeedbackButton=FeedbackButton$1,defineCustomElement=defineCustomElement$1;export{FeedbackButton,defineCustomElement};
1
+ const _0x4dd185=_0x2638;(function(_0x130e54,_0x1cabb3){const _0x4c115f=_0x2638,_0x363da0=_0x130e54();while(!![]){try{const _0x1ec5d4=-parseInt(_0x4c115f(0x218))/0x1+-parseInt(_0x4c115f(0x24c))/0x2+-parseInt(_0x4c115f(0x216))/0x3+parseInt(_0x4c115f(0x23d))/0x4*(parseInt(_0x4c115f(0x22e))/0x5)+-parseInt(_0x4c115f(0x22f))/0x6+-parseInt(_0x4c115f(0x21b))/0x7*(-parseInt(_0x4c115f(0x207))/0x8)+parseInt(_0x4c115f(0x211))/0x9;if(_0x1ec5d4===_0x1cabb3)break;else _0x363da0['push'](_0x363da0['shift']());}catch(_0x16bfb0){_0x363da0['push'](_0x363da0['shift']());}}}(_0xf7cc,0xc301a));import{proxyCustomElement,HTMLElement,h,Host}from'@stencil/core/internal/client';function _0x2638(_0x55654d,_0x13de46){const _0xf7cca2=_0xf7cc();return _0x2638=function(_0x263807,_0xaf7285){_0x263807=_0x263807-0x1e0;let _0x16414b=_0xf7cca2[_0x263807];return _0x16414b;},_0x2638(_0x55654d,_0x13de46);}import{d as _0x4b7fdb}from'./feedback-modal2.js';const feedbackButtonCss=_0x4dd185(0x228),FeedbackButton$1=proxyCustomElement(class extends HTMLElement{constructor(){const _0x3d0449=_0x4dd185,_0x109493={'cAFQu':_0x3d0449(0x260),'ryruj':_0x3d0449(0x231),'DsTiX':'How\x20could\x20this\x20page\x20be\x20more\x20helpful?','rhCNK':_0x3d0449(0x1f5),'RNeLS':_0x3d0449(0x249),'DzAue':_0x3d0449(0x201),'mXyXk':'Send','XPHnZ':_0x3d0449(0x26a),'gkLQe':_0x3d0449(0x217),'GXtgN':'Please\x20try\x20again\x20later.','Nifuy':_0x3d0449(0x267)},_0x5a400a=_0x109493[_0x3d0449(0x245)][_0x3d0449(0x225)]('|');let _0x178252=0x0;while(!![]){switch(_0x5a400a[_0x178252++]){case'0':this[_0x3d0449(0x241)]=_0x3d0449(0x22c);continue;case'1':this[_0x3d0449(0x259)]=_0x3d0449(0x22c);continue;case'2':this[_0x3d0449(0x250)]();continue;case'3':this[_0x3d0449(0x21c)]=_0x109493['ryruj'];continue;case'4':this[_0x3d0449(0x243)]=_0x109493[_0x3d0449(0x1e4)];continue;case'5':this[_0x3d0449(0x248)]=_0x109493[_0x3d0449(0x25d)];continue;case'6':this[_0x3d0449(0x25f)]=![];continue;case'7':this['modalTitleError']=_0x109493[_0x3d0449(0x23c)];continue;case'8':this[_0x3d0449(0x24b)]=_0x109493[_0x3d0449(0x1e8)];continue;case'9':this['sendButtonText']=_0x109493['mXyXk'];continue;case'10':this[_0x3d0449(0x26b)]='';continue;case'11':this[_0x3d0449(0x26c)]=![];continue;case'12':this[_0x3d0449(0x200)]=_0x3d0449(0x266);continue;case'13':this['modalTitle']=_0x109493[_0x3d0449(0x1f9)];continue;case'14':this[_0x3d0449(0x1ec)]();continue;case'15':super();continue;case'16':this['errorMessage404']=_0x3d0449(0x203);continue;case'17':this[_0x3d0449(0x20b)]='';continue;case'18':this[_0x3d0449(0x20f)]=_0x109493[_0x3d0449(0x239)];continue;case'19':this['errorMessage']=_0x109493['GXtgN'];continue;case'20':this['hideScreenshotButton']=![];continue;case'21':this['emailPlaceholder']=_0x109493[_0x3d0449(0x21e)];continue;}break;}}[_0x4dd185(0x1f4)](){const _0x430158=_0x4dd185,_0x3ab733={'IIFFo':_0x430158(0x247),'pLOUO':_0x430158(0x25b),'wPaUR':'errorMessage403','zUxNp':_0x430158(0x1ed),'dPWuB':_0x430158(0x240),'AbTwk':_0x430158(0x20b),'oPjmT':'screenshotButtonTooltipText','iTMNi':_0x430158(0x200),'bMeTI':_0x430158(0x26b),'KuAHC':_0x430158(0x24d),'OnZEO':_0x430158(0x243),'QUOzp':_0x430158(0x205)};this['feedbackModal']=document[_0x430158(0x1fc)](_0x3ab733[_0x430158(0x24a)]);const _0x202652=[_0x430158(0x26c),_0x3ab733[_0x430158(0x1fa)],_0x3ab733[_0x430158(0x210)],_0x3ab733[_0x430158(0x232)],_0x3ab733[_0x430158(0x223)],_0x430158(0x248),_0x430158(0x1f1),_0x430158(0x21c),_0x430158(0x226),_0x3ab733[_0x430158(0x224)],_0x3ab733[_0x430158(0x25a)],_0x3ab733[_0x430158(0x256)],_0x3ab733['bMeTI'],_0x3ab733[_0x430158(0x212)],_0x3ab733[_0x430158(0x1f6)],_0x3ab733[_0x430158(0x235)]];_0x202652[_0x430158(0x258)](_0x60cfe8=>{const _0x5d979f=_0x430158;this[_0x5d979f(0x1fe)][_0x60cfe8]=this[_0x60cfe8];}),document[_0x430158(0x23a)][_0x430158(0x25e)](this[_0x430158(0x1fe)]);}[_0x4dd185(0x24e)](){const _0x586f38=_0x4dd185;document[_0x586f38(0x23a)][_0x586f38(0x208)](this['feedbackModal']);}[_0x4dd185(0x1e1)](){const _0x2b6231=_0x4dd185,_0x3d3437={'SdtrQ':function(_0x396c7c,_0x4eb1c1){return _0x396c7c===_0x4eb1c1;},'brytL':_0x2b6231(0x1e3),'dUoZK':_0x2b6231(0x20a),'uTjaR':function(_0x4f490b,_0x422d52){return _0x4f490b*_0x422d52;},'ejMuP':function(_0x5ebcc7,_0x46c8fc){return _0x5ebcc7/_0x46c8fc;}};if(_0x3d3437['SdtrQ'](this[_0x2b6231(0x259)],_0x3d3437[_0x2b6231(0x23e)])){const _0x2e7173=this['el'][_0x2b6231(0x1f8)][_0x2b6231(0x220)](_0x3d3437[_0x2b6231(0x1f2)]);_0x2e7173[_0x2b6231(0x202)][_0x2b6231(0x1ef)]=_0x3d3437['uTjaR'](_0x3d3437[_0x2b6231(0x238)](_0x2e7173['offsetWidth'],0x2),-0x1)+'px';}!this[_0x2b6231(0x26c)]&&this['loadInterFont']();}[_0x4dd185(0x251)](){const _0x484aaa=_0x4dd185,_0x4b4a1d={'TlRrx':_0x484aaa(0x219),'CljxN':_0x484aaa(0x213)},_0x2372d1=document['createElement'](_0x484aaa(0x269));_0x2372d1[_0x484aaa(0x236)]=_0x4b4a1d[_0x484aaa(0x214)],_0x2372d1[_0x484aaa(0x262)]=_0x4b4a1d[_0x484aaa(0x227)],document['head'][_0x484aaa(0x25e)](_0x2372d1);}[_0x4dd185(0x22a)](){const _0x46fdca=_0x4dd185;this[_0x46fdca(0x1fe)][_0x46fdca(0x22a)]=!![];}[_0x4dd185(0x25c)](){const _0x22033c=_0x4dd185,_0x39141b={'hVcaH':function(_0x1c6c25,_0x1922ba,_0x3d08c1,_0x1bb100){return _0x1c6c25(_0x1922ba,_0x3d08c1,_0x1bb100);},'XtmIZ':function(_0xca6681,_0x932bc6,_0x151f0e,_0x2567a5,_0x54ec38,_0x266ec7){return _0xca6681(_0x932bc6,_0x151f0e,_0x2567a5,_0x54ec38,_0x266ec7);},'XHZDq':function(_0x1ca3a1,_0xc3ab3e){return _0x1ca3a1===_0xc3ab3e;},'YoPqO':_0x22033c(0x263),'xhSyX':_0x22033c(0x209),'qCwPV':function(_0x54a4cc,_0x40eb57,_0x147100,_0x209d62,_0x44327c){return _0x54a4cc(_0x40eb57,_0x147100,_0x209d62,_0x44327c);},'ZqDlw':_0x22033c(0x1f3),'lYRph':_0x22033c(0x1fd),'zlKmv':'none','ujVSv':'#fff','vOtVg':'round','QmSNT':_0x22033c(0x253),'raFbD':function(_0x1cede7,_0x4eea66,_0x4c0b7c){return _0x1cede7(_0x4eea66,_0x4c0b7c);},'FQdaA':_0x22033c(0x244),'dLQzB':_0x22033c(0x230),'mYgrc':function(_0x1f05f7,_0x3ea994,_0x312d6f){return _0x1f05f7(_0x3ea994,_0x312d6f);},'anRgr':_0x22033c(0x254),'VbNVJ':_0x22033c(0x21a),'vaonX':_0x22033c(0x21d),'LlJIL':_0x22033c(0x23b),'QzXWp':_0x22033c(0x1fb)};return _0x39141b[_0x22033c(0x215)](h,Host,null,_0x39141b[_0x22033c(0x1eb)](h,'a',{'class':_0x22033c(0x1e6)+this[_0x22033c(0x241)]+'\x20feedback-button-content--'+this[_0x22033c(0x259)],'onClick':()=>this[_0x22033c(0x22a)]()},!this['hideIcon']&&_0x39141b['XHZDq'](this[_0x22033c(0x241)],_0x39141b[_0x22033c(0x20c)])&&h(_0x39141b[_0x22033c(0x1e7)],{'class':_0x22033c(0x21a)},_0x39141b[_0x22033c(0x242)](h,_0x39141b[_0x22033c(0x1e9)],{'xmlns':_0x22033c(0x21d),'width':'16','height':'16','viewBox':_0x39141b['lYRph'],'fill':_0x39141b[_0x22033c(0x20e)],'stroke':_0x39141b[_0x22033c(0x1ff)],'stroke-width':'2','stroke-linecap':_0x39141b[_0x22033c(0x255)],'stroke-linejoin':_0x39141b['vOtVg'],'class':_0x39141b[_0x22033c(0x1ea)]},_0x39141b[_0x22033c(0x206)](h,_0x39141b[_0x22033c(0x237)],{'d':_0x39141b[_0x22033c(0x229)]}),_0x39141b[_0x22033c(0x261)](h,_0x22033c(0x244),{'d':_0x39141b[_0x22033c(0x1e5)]}))),!this[_0x22033c(0x25f)]&&_0x39141b[_0x22033c(0x268)](this[_0x22033c(0x241)],_0x22033c(0x246))&&_0x39141b[_0x22033c(0x215)](h,_0x39141b[_0x22033c(0x1e7)],{'class':_0x39141b['VbNVJ']},_0x39141b[_0x22033c(0x242)](h,_0x39141b[_0x22033c(0x1e9)],{'xmlns':_0x39141b[_0x22033c(0x252)],'width':'16','height':'16','viewBox':_0x39141b[_0x22033c(0x26d)],'fill':_0x39141b[_0x22033c(0x20e)],'stroke':_0x39141b['LlJIL'],'stroke-width':'2','stroke-linecap':_0x39141b[_0x22033c(0x255)],'stroke-linejoin':_0x22033c(0x257),'class':_0x39141b[_0x22033c(0x1ea)]},_0x39141b[_0x22033c(0x261)](h,_0x39141b[_0x22033c(0x237)],{'d':_0x39141b[_0x22033c(0x229)]}),_0x39141b[_0x22033c(0x206)](h,_0x39141b['FQdaA'],{'d':_0x22033c(0x254)}))),_0x39141b[_0x22033c(0x261)](h,_0x39141b[_0x22033c(0x22d)],null)));}get['el'](){return this;}static get[_0x4dd185(0x202)](){return feedbackButtonCss;}},[0x1,_0x4dd185(0x1e0),{'customFont':[0x4,_0x4dd185(0x234)],'errorMessage':[0x1,_0x4dd185(0x1f0)],'errorMessage403':[0x1,_0x4dd185(0x233)],'errorMessage404':[0x1,'error-message-4-0-4'],'modalTitle':[0x1,'modal-title'],'modalTitleSuccess':[0x1,_0x4dd185(0x1ee)],'modalTitleError':[0x1,_0x4dd185(0x204)],'modalPosition':[0x1,_0x4dd185(0x1e2)],'sendButtonText':[0x1,_0x4dd185(0x24f)],'project':[0x1],'screenshotButtonTooltipText':[0x1,'screenshot-button-tooltip-text'],'screenshotTopbarText':[0x1,'screenshot-topbar-text'],'email':[0x1],'emailPlaceholder':[0x1,'email-placeholder'],'messagePlaceholder':[0x1,_0x4dd185(0x21f)],'buttonStyle':[0x1,_0x4dd185(0x1f7)],'buttonPosition':[0x1,'button-position'],'hideIcon':[0x4,_0x4dd185(0x265)],'hideScreenshotButton':[0x4,_0x4dd185(0x221)]}]);function defineCustomElement$1(){const _0x28e8ba=_0x4dd185,_0x3b3d8b={'Zlnid':function(_0xe98a99){return _0xe98a99();},'jzYWG':function(_0x1d6b12,_0x1e24a9){return _0x1d6b12===_0x1e24a9;},'gsmqT':_0x28e8ba(0x23f),'VCgEN':_0x28e8ba(0x1e0),'HcXyb':_0x28e8ba(0x247)};if(_0x3b3d8b[_0x28e8ba(0x20d)](typeof customElements,_0x3b3d8b['gsmqT']))return;const _0x12b48d=[_0x3b3d8b['VCgEN'],_0x3b3d8b[_0x28e8ba(0x222)]];_0x12b48d['forEach'](_0x1d39b5=>{const _0x2f24db=_0x28e8ba;switch(_0x1d39b5){case _0x2f24db(0x1e0):!customElements[_0x2f24db(0x264)](_0x1d39b5)&&customElements['define'](_0x1d39b5,FeedbackButton$1);break;case'feedback-modal':!customElements['get'](_0x1d39b5)&&_0x3b3d8b[_0x2f24db(0x22b)](_0x4b7fdb);break;}});}const FeedbackButton=FeedbackButton$1,defineCustomElement=defineCustomElement$1;function _0xf7cc(){const _0x1a35c8=['email','customFont','lYRph','feedback-button','componentDidLoad','modal-position','center-right','DsTiX','anRgr','feedback-button-content\x20feedback-button-content--','xhSyX','DzAue','ZqDlw','QmSNT','XtmIZ','__attachShadow','errorMessage404','modal-title-success','right','error-message','modalTitleError','dUoZK','svg','connectedCallback','Thanks\x20for\x20your\x20feedback!','OnZEO','button-style','shadowRoot','XPHnZ','pLOUO','slot','createElement','0\x200\x2024\x2024','feedbackModal','ujVSv','screenshotTopbarText','The\x20request\x20URL\x20does\x20not\x20match\x20the\x20one\x20defined\x20in\x20PushFeedback\x20for\x20this\x20project.','style','We\x20could\x20not\x20find\x20the\x20provided\x20project\x20id\x20in\x20PushFeedback.','modal-title-error','hideScreenshotButton','raFbD','7057464tyMSEa','removeChild','span','.feedback-button-content','project','YoPqO','jzYWG','zlKmv','screenshotButtonTooltipText','wPaUR','4355172kjoKCh','KuAHC','stylesheet','TlRrx','hVcaH','3521346ZdyrNn','Take\x20a\x20Screenshot','226434CLvJCi','https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap','feedback-button-content-icon','7exYkGH','modalPosition','http://www.w3.org/2000/svg','Nifuy','message-placeholder','querySelector','hide-screenshot-button','HcXyb','dPWuB','AbTwk','split','sendButtonText','CljxN','.feedback-button-content{cursor:pointer;z-index:var(--feedback-button-z-index)}.feedback-button-content--light{align-items:center;background-color:var(--feedback-button-light-bg-color);border-radius:var(--feedback-button-border-radius);box-shadow:rgba(60,\x2064,\x2067,\x200.3)\x200px\x201px\x202px\x200px,\x20rgba(60,\x2064,\x2067,\x200.15)\x200px\x202px\x206px\x202px;box-sizing:border-box;color:var(--feedback-button-light-text-color);display:flex;font-family:var(--feedback-font-family);font-size:var(--feedback-button-text-font-size);font-weight:var(--feedback-button-text-font-weight);padding:8px\x2015px}.feedback-button-content--dark{align-items:center;background-color:var(--feedback-button-dark-bg-color);border-radius:var(--feedback-button-border-radius);box-shadow:rgba(60,\x2064,\x2067,\x200.3)\x200px\x201px\x202px\x200px,\x20rgba(60,\x2064,\x2067,\x200.15)\x200px\x202px\x206px\x202px;box-sizing:border-box;color:var(--feedback-button-dark-text-color);display:flex;font-family:var(--feedback-font-family);font-weight:var(--feedback-button-text-font-weight);font-size:var(--feedback-button-text-font-size);padding:8px\x2015px}.feedback-button-content--bottom-right{bottom:10px;position:fixed;right:10px}.feedback-button-content--center-right{position:fixed;transform:rotate(-90deg)\x20translateY(-50%);top:50%}.feedback-button-content--center-right.feedback-button-content--dark,.feedback-button-content--center-right.feedback-button-content--light{border-radius:4px;border-bottom-left-radius:0px;border-bottom-right-radius:0px}.feedback-button-content-icon{height:16px;margin-right:5px;width:16px}.feedback-button-content--center-right\x20.feedback-button-content-icon{rotate:90deg}','dLQzB','showModal','Zlnid','default','QzXWp','85SYITQG','1471674ONorYH','M12\x2020h9','center','zUxNp','error-message-4-0-3','custom-font','QUOzp','href','FQdaA','ejMuP','gkLQe','body','#0070F4','RNeLS','299608hYGuyd','brytL','undefined','modalTitle','buttonStyle','qCwPV','messagePlaceholder','path','cAFQu','light','feedback-modal','modalTitleSuccess','Oops!','IIFFo','errorMessage403','390368jHQjwg','emailPlaceholder','disconnectedCallback','send-button-text','__registerHost','loadInterFont','vaonX','feather\x20feather-edit-3','M16.5\x203.5a2.121\x202.121\x200\x200\x201\x203\x203L7\x2019l-4\x201\x201-4L16.5\x203.5z','vOtVg','iTMNi','round','forEach','buttonPosition','oPjmT','errorMessage','render','rhCNK','appendChild','hideIcon','15|2|14|11|19|8|16|13|5|7|3|9|17|18|12|10|21|4|0|1|6|20','mYgrc','rel','dark','get','hide-icon','Select\x20an\x20element\x20on\x20this\x20page','Email\x20address\x20(optional)','XHZDq','link','Share\x20your\x20feedback'];_0xf7cc=function(){return _0x1a35c8;};return _0xf7cc();}export{FeedbackButton,defineCustomElement};
@@ -1 +1 @@
1
- function _0x2d5b(_0x37d6a0,_0x19ff11){const _0x35b926=_0x35b9();return _0x2d5b=function(_0x2d5b82,_0x3c6b28){_0x2d5b82=_0x2d5b82-0x1f0;let _0x492060=_0x35b926[_0x2d5b82];return _0x492060;},_0x2d5b(_0x37d6a0,_0x19ff11);}(function(_0x411a7d,_0x51540b){const _0x4a7611=_0x2d5b,_0x5b67d9=_0x411a7d();while(!![]){try{const _0x5d3179=-parseInt(_0x4a7611(0x1f6))/0x1*(-parseInt(_0x4a7611(0x1f8))/0x2)+-parseInt(_0x4a7611(0x1f0))/0x3+parseInt(_0x4a7611(0x1f2))/0x4+parseInt(_0x4a7611(0x1f1))/0x5+-parseInt(_0x4a7611(0x1f4))/0x6*(parseInt(_0x4a7611(0x1f7))/0x7)+parseInt(_0x4a7611(0x1f5))/0x8+-parseInt(_0x4a7611(0x1f3))/0x9;if(_0x5d3179===_0x51540b)break;else _0x5b67d9['push'](_0x5b67d9['shift']());}catch(_0x1976db){_0x5b67d9['push'](_0x5b67d9['shift']());}}}(_0x35b9,0x1ff76));import{F as _0x3b5fa6,d as _0x3c8582}from'./feedback-modal2.js';const FeedbackModal=_0x3b5fa6,defineCustomElement=_0x3c8582;function _0x35b9(){const _0x193c96=['1YtIPJF','353591ZXTBiP','97132iESmSS','210906AAqdOD','1123220wJPDQT','254572mHgLEm','2396610dWVJmR','6eDxnyl','1449488yGKXOC'];_0x35b9=function(){return _0x193c96;};return _0x35b9();}export{FeedbackModal,defineCustomElement};
1
+ (function(_0x5be395,_0x40f6f1){const _0x4a90c6=_0x2973,_0x41b2f0=_0x5be395();while(!![]){try{const _0x6bac14=-parseInt(_0x4a90c6(0xb1))/0x1+parseInt(_0x4a90c6(0xb3))/0x2*(-parseInt(_0x4a90c6(0xb2))/0x3)+parseInt(_0x4a90c6(0xb6))/0x4+parseInt(_0x4a90c6(0xaf))/0x5*(-parseInt(_0x4a90c6(0xb4))/0x6)+-parseInt(_0x4a90c6(0xb0))/0x7+-parseInt(_0x4a90c6(0xb8))/0x8*(parseInt(_0x4a90c6(0xb7))/0x9)+parseInt(_0x4a90c6(0xb5))/0xa;if(_0x6bac14===_0x40f6f1)break;else _0x41b2f0['push'](_0x41b2f0['shift']());}catch(_0x2fa60f){_0x41b2f0['push'](_0x41b2f0['shift']());}}}(_0x1375,0x4d004));import{F as _0x3880c7,d as _0x2e8a86}from'./feedback-modal2.js';const FeedbackModal=_0x3880c7,defineCustomElement=_0x2e8a86;export{FeedbackModal,defineCustomElement};function _0x2973(_0x1e1356,_0x36eacc){const _0x137590=_0x1375();return _0x2973=function(_0x297301,_0x256f7a){_0x297301=_0x297301-0xaf;let _0x39f496=_0x137590[_0x297301];return _0x39f496;},_0x2973(_0x1e1356,_0x36eacc);}function _0x1375(){const _0x2ef68d=['940632giAoka','255046OrAlIt','3sgmHQt','436300AXThim','366SsRBqB','11871150GSgbaB','1405604eUjDuv','873CGNBLi','46888CVfnMi','3855FLuJSy'];_0x1375=function(){return _0x2ef68d;};return _0x1375();}