pushfeedback 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/feedback-button_2.cjs.entry.js +1 -8111
- package/dist/cjs/index-fb471064.js +1 -0
- package/dist/cjs/index.cjs.js +1 -2
- package/dist/cjs/loader.cjs.js +1 -22
- package/dist/cjs/pushfeedback.cjs.js +1 -23
- package/dist/collection/components/feedback-button/feedback-button.js +1 -343
- package/dist/collection/components/feedback-modal/feedback-modal.js +1 -529
- package/dist/collection/index.js +1 -1
- package/dist/components/feedback-button.js +1 -104
- package/dist/components/feedback-modal.js +1 -6
- package/dist/components/feedback-modal2.js +1 -8085
- package/dist/components/index.js +1 -3
- package/dist/esm/feedback-button_2.entry.js +1 -8106
- package/dist/esm/index-16e15d67.js +1 -0
- package/dist/esm/index.js +0 -1
- package/dist/esm/loader.js +1 -18
- package/dist/esm/polyfills/core-js.js +1 -11
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/polyfills/dom.js +1 -79
- package/dist/esm/polyfills/es5-html-element.js +1 -1
- package/dist/esm/polyfills/index.js +1 -34
- package/dist/esm/polyfills/system.js +1 -6
- package/dist/esm/pushfeedback.js +1 -18
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/pushfeedback/p-61c1ea51.entry.js +1 -0
- package/dist/pushfeedback/p-63230cb5.js +1 -0
- package/dist/pushfeedback/pushfeedback.esm.js +1 -1
- package/dist/types/components/feedback-modal/feedback-modal.d.ts +2 -0
- package/package.json +2 -2
- package/dist/cjs/index-d5ac8167.js +0 -1469
- package/dist/esm/index-74109694.js +0 -1441
- package/dist/pushfeedback/p-38d135e1.js +0 -2
- package/dist/pushfeedback/p-73488a64.entry.js +0 -22
|
@@ -1,104 +1 @@
|
|
|
1
|
-
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
|
|
2
|
-
import { d as defineCustomElement$2 } from './feedback-modal2.js';
|
|
3
|
-
|
|
4
|
-
const feedbackButtonCss = ".feedback-button-content{cursor:pointer;z-index:300}.feedback-button-content--light{align-items:center;background-color:var(--feedback-white-color);border-radius:20px;box-shadow:rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;box-sizing:border-box;display:flex;font-family:var(--feedback-font-family);color:var(--feedback-primary-color);font-weight:bold;padding:8px 15px;font-size:var(--feedback-text-font-size)}.feedback-button-content--dark{align-items:center;background-color:var(--feedback-primary-color);border-radius:20px;box-shadow:rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;box-sizing:border-box;display:flex;font-family:var(--feedback-font-family);color:var(--feedback-white-color);font-weight:bold;padding:8px 15px;font-size:16px}.feedback-button-content--bottom-right{position:fixed;bottom:10px;right:10px}.feedback-button-content--center-right{position:fixed;top:50%;transform:rotate(-90deg) translateY(-50%)}.feedback-button-content--center-right.feedback-button-content--dark,.feedback-button-content--center-right.feedback-button-content--light{border-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px}.feedback-button-content-icon{margin-right:5px;height:16px;width:16px}";
|
|
5
|
-
|
|
6
|
-
const FeedbackButton$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
7
|
-
constructor() {
|
|
8
|
-
super();
|
|
9
|
-
this.__registerHost();
|
|
10
|
-
this.__attachShadow();
|
|
11
|
-
this.modalTitle = 'Share your feedback';
|
|
12
|
-
this.successModalTitle = 'Thanks for your feedback!';
|
|
13
|
-
this.errorModalTitle = "Oops! We didn't receive your feedback. Please try again later.";
|
|
14
|
-
this.modalPosition = 'center';
|
|
15
|
-
this.sendButtonText = 'Send';
|
|
16
|
-
this.project = '';
|
|
17
|
-
this.screenshotButtonTooltipText = 'Take a Screenshot';
|
|
18
|
-
this.screenshotTopbarText = 'SELECT AN ELEMENT ON THE PAGE';
|
|
19
|
-
this.email = '';
|
|
20
|
-
this.emailPlaceholder = 'Email address (optional)';
|
|
21
|
-
this.messagePlaceholder = 'How could this page be more helpful?';
|
|
22
|
-
this.buttonStyle = 'default';
|
|
23
|
-
this.buttonPosition = 'default';
|
|
24
|
-
this.hideIcon = false;
|
|
25
|
-
this.hideScreenshotButton = false;
|
|
26
|
-
}
|
|
27
|
-
connectedCallback() {
|
|
28
|
-
this.feedbackModal = document.createElement('feedback-modal');
|
|
29
|
-
const props = [
|
|
30
|
-
'modalTitle',
|
|
31
|
-
'successModalTitle',
|
|
32
|
-
'errorModalTitle',
|
|
33
|
-
'modalPosition',
|
|
34
|
-
'sendButtonText',
|
|
35
|
-
'project',
|
|
36
|
-
'screenshotButtonTooltipText',
|
|
37
|
-
'screenshotTopbarText',
|
|
38
|
-
'email',
|
|
39
|
-
'emailPlaceholder',
|
|
40
|
-
'messagePlaceholder',
|
|
41
|
-
'hideScreenshotButton'
|
|
42
|
-
];
|
|
43
|
-
props.forEach(prop => {
|
|
44
|
-
this.feedbackModal[prop] = this[prop];
|
|
45
|
-
});
|
|
46
|
-
document.body.appendChild(this.feedbackModal);
|
|
47
|
-
}
|
|
48
|
-
disconnectedCallback() {
|
|
49
|
-
document.body.removeChild(this.feedbackModal);
|
|
50
|
-
}
|
|
51
|
-
componentDidLoad() {
|
|
52
|
-
if (this.buttonPosition === 'center-right') {
|
|
53
|
-
const buttonContent = this.el.shadowRoot.querySelector('.feedback-button-content');
|
|
54
|
-
buttonContent.style.right = `${buttonContent.offsetWidth / 2 * -1}px`;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
showModal() {
|
|
58
|
-
this.feedbackModal.showModal = true;
|
|
59
|
-
}
|
|
60
|
-
render() {
|
|
61
|
-
return (h(Host, null, h("a", { class: `feedback-button-content feedback-button-content--${this.buttonStyle} feedback-button-content--${this.buttonPosition}`, onClick: () => this.showModal() }, !this.hideIcon && this.buttonStyle === 'dark' && (h("span", { class: "feedback-button-content-icon" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 24 24", fill: "none", stroke: "#fff", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-repeat" }, h("polyline", { points: "17 1 21 5 17 9" }), h("path", { d: "M3 11V9a4 4 0 0 1 4-4h14" }), h("polyline", { points: "7 23 3 19 7 15" }), h("path", { d: "M21 13v2a4 4 0 0 1-4 4H3" })))), !this.hideIcon && this.buttonStyle === 'light' && (h("span", { class: "feedback-button-content-icon" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 24 24", fill: "none", stroke: "#0070F4", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round", class: "feather feather-repeat" }, h("polyline", { points: "17 1 21 5 17 9" }), h("path", { d: "M3 11V9a4 4 0 0 1 4-4h14" }), h("polyline", { points: "7 23 3 19 7 15" }), h("path", { d: "M21 13v2a4 4 0 0 1-4 4H3" })))), h("slot", null))));
|
|
62
|
-
}
|
|
63
|
-
get el() { return this; }
|
|
64
|
-
static get style() { return feedbackButtonCss; }
|
|
65
|
-
}, [1, "feedback-button", {
|
|
66
|
-
"modalTitle": [1, "modal-title"],
|
|
67
|
-
"successModalTitle": [1, "success-modal-title"],
|
|
68
|
-
"errorModalTitle": [1, "error-modal-title"],
|
|
69
|
-
"modalPosition": [1, "modal-position"],
|
|
70
|
-
"sendButtonText": [1, "send-button-text"],
|
|
71
|
-
"project": [1],
|
|
72
|
-
"screenshotButtonTooltipText": [1, "screenshot-button-tooltip-text"],
|
|
73
|
-
"screenshotTopbarText": [1, "screenshot-topbar-text"],
|
|
74
|
-
"email": [1],
|
|
75
|
-
"emailPlaceholder": [1, "email-placeholder"],
|
|
76
|
-
"messagePlaceholder": [1, "message-placeholder"],
|
|
77
|
-
"buttonStyle": [1, "button-style"],
|
|
78
|
-
"buttonPosition": [1, "button-position"],
|
|
79
|
-
"hideIcon": [4, "hide-icon"],
|
|
80
|
-
"hideScreenshotButton": [4, "hide-screenshot-button"]
|
|
81
|
-
}]);
|
|
82
|
-
function defineCustomElement$1() {
|
|
83
|
-
if (typeof customElements === "undefined") {
|
|
84
|
-
return;
|
|
85
|
-
}
|
|
86
|
-
const components = ["feedback-button", "feedback-modal"];
|
|
87
|
-
components.forEach(tagName => { switch (tagName) {
|
|
88
|
-
case "feedback-button":
|
|
89
|
-
if (!customElements.get(tagName)) {
|
|
90
|
-
customElements.define(tagName, FeedbackButton$1);
|
|
91
|
-
}
|
|
92
|
-
break;
|
|
93
|
-
case "feedback-modal":
|
|
94
|
-
if (!customElements.get(tagName)) {
|
|
95
|
-
defineCustomElement$2();
|
|
96
|
-
}
|
|
97
|
-
break;
|
|
98
|
-
} });
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
const FeedbackButton = FeedbackButton$1;
|
|
102
|
-
const defineCustomElement = defineCustomElement$1;
|
|
103
|
-
|
|
104
|
-
export { FeedbackButton, defineCustomElement };
|
|
1
|
+
function _0x3dcc(){const _0x182f70=['sQijh','default','round','GPPKI','Take\x20a\x20Screenshot','modalPosition','.feedback-button-content','LnOno','polyline','169752PHIpKI','__attachShadow','buttonPosition','screenshot-topbar-text','sendButtonText','vpblm','M21\x2013v2a4\x204\x200\x200\x201-4\x204H3','7\x2023\x203\x2019\x207\x2015','kEecT','messagePlaceholder','modal-position','17605wxUYmR','dvDyg','componentDidLoad','wmHqT','http://www.w3.org/2000/svg','0\x200\x2024\x2024','split','ZvGQu','hide-screenshot-button','successModalTitle','wwghC','172731wKosYA','hideScreenshotButton','12|10|4|16|8|11|9|2|14|0|1|3|17|13|6|5|7|15','dark','tflza','hideIcon','email','JHATq','svg','createElement','forEach','GqlfW','YOesH','path','ZHnzs','LwmES','zdchP','buttonStyle','showModal','VTwLK','How\x20could\x20this\x20page\x20be\x20more\x20helpful?','M3\x2011V9a4\x204\x200\x200\x201\x204-4h14','feedback-modal','Thanks\x20for\x20your\x20feedback!','feedback-button-content-icon','TYbmO','rnYlL','656802iZERbu','UFKez','__registerHost','IhMsj','hxeqr','light','luXyI','message-placeholder','style','appendChild','email-placeholder','body','wOFCO','right','none','get','17\x201\x2021\x205\x2017\x209','errorModalTitle','#fff','#0070F4','error-modal-title','qpzEV','emailPlaceholder','vNMaV','feedback-button','button-position','screenshotButtonTooltipText','screenshot-button-tooltip-text','slot','span','disconnectedCallback','QDhZO','wtWKi','KbMOK','306162fzLGtb','oHQqN','203pexeGX','project','feather\x20feather-repeat','huhxF','102298YXnEGV','screenshotTopbarText','10088UlpKLS','mRGSC','connectedCallback','querySelector','mqHEK','difrl','Send','center','Kgyur','GbiUR','cVJvT','feedback-button-content\x20feedback-button-content--','button-style','center-right','fznKJ','76hLkXTO','TCjdj','Share\x20your\x20feedback','dlvXI','feedbackModal','modal-title'];_0x3dcc=function(){return _0x182f70;};return _0x3dcc();}const _0x38f236=_0x31e7;(function(_0x46f075,_0x134ad2){const _0x4f49d3=_0x31e7,_0x1edc4a=_0x46f075();while(!![]){try{const _0x4fd029=-parseInt(_0x4f49d3(0x113))/0x1+-parseInt(_0x4f49d3(0x133))/0x2+parseInt(_0x4f49d3(0x149))/0x3+parseInt(_0x4f49d3(0x124))/0x4*(parseInt(_0x4f49d3(0x13e))/0x5)+parseInt(_0x4f49d3(0x164))/0x6+parseInt(_0x4f49d3(0x10f))/0x7*(parseInt(_0x4f49d3(0x115))/0x8)+parseInt(_0x4f49d3(0x10d))/0x9;if(_0x4fd029===_0x134ad2)break;else _0x1edc4a['push'](_0x1edc4a['shift']());}catch(_0x2703f3){_0x1edc4a['push'](_0x1edc4a['shift']());}}}(_0x3dcc,0x1ca6c));import{proxyCustomElement,HTMLElement,h,Host}from'@stencil/core/internal/client';import{d as _0xddde54}from'./feedback-modal2.js';const feedbackButtonCss='.feedback-button-content{cursor:pointer;z-index:300}.feedback-button-content--light{align-items:center;background-color:var(--feedback-white-color);border-radius:20px;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;display:flex;font-family:var(--feedback-font-family);color:var(--feedback-primary-color);font-weight:bold;padding:8px\x2015px;font-size:var(--feedback-text-font-size)}.feedback-button-content--dark{align-items:center;background-color:var(--feedback-primary-color);border-radius:20px;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;display:flex;font-family:var(--feedback-font-family);color:var(--feedback-white-color);font-weight:bold;padding:8px\x2015px;font-size:16px}.feedback-button-content--bottom-right{position:fixed;bottom:10px;right:10px}.feedback-button-content--center-right{position:fixed;top:50%;transform:rotate(-90deg)\x20translateY(-50%)}.feedback-button-content--center-right.feedback-button-content--dark,.feedback-button-content--center-right.feedback-button-content--light{border-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px}.feedback-button-content-icon{margin-right:5px;height:16px;width:16px}',FeedbackButton$1=proxyCustomElement(class extends HTMLElement{constructor(){const _0x299724=_0x31e7,_0x258f35={'GbiUR':_0x299724(0x14b),'LwmES':_0x299724(0x12e),'KbMOK':_0x299724(0x11b),'IoRYZ':_0x299724(0x12b),'zdchP':_0x299724(0x11c),'GqlfW':'Oops!\x20We\x20didn\x27t\x20receive\x20your\x20feedback.\x20Please\x20try\x20again\x20later.','huhxF':_0x299724(0x15d),'UFKez':_0x299724(0x126)},_0x451e18=_0x258f35[_0x299724(0x11e)][_0x299724(0x144)]('|');let _0x22a3fe=0x0;while(!![]){switch(_0x451e18[_0x22a3fe++]){case'0':this['screenshotButtonTooltipText']=_0x258f35[_0x299724(0x158)];continue;case'1':this[_0x299724(0x114)]='SELECT\x20AN\x20ELEMENT\x20ON\x20THE\x20PAGE';continue;case'2':this['sendButtonText']=_0x258f35[_0x299724(0x10c)];continue;case'3':this[_0x299724(0x14f)]='';continue;case'4':this[_0x299724(0x134)]();continue;case'5':this[_0x299724(0x135)]='default';continue;case'6':this[_0x299724(0x15a)]=_0x258f35['IoRYZ'];continue;case'7':this[_0x299724(0x14e)]=![];continue;case'8':this['successModalTitle']=_0x299724(0x160);continue;case'9':this[_0x299724(0x12f)]=_0x258f35[_0x299724(0x159)];continue;case'10':this[_0x299724(0x166)]();continue;case'11':this[_0x299724(0xfc)]=_0x258f35[_0x299724(0x154)];continue;case'12':super();continue;case'13':this[_0x299724(0x13c)]=_0x258f35[_0x299724(0x112)];continue;case'14':this[_0x299724(0x110)]='';continue;case'15':this[_0x299724(0x14a)]=![];continue;case'16':this['modalTitle']=_0x258f35[_0x299724(0x165)];continue;case'17':this['emailPlaceholder']='Email\x20address\x20(optional)';continue;}break;}}[_0x38f236(0x117)](){const _0x2b4a48=_0x38f236,_0x52b146={'hxeqr':'feedback-modal','llecz':_0x2b4a48(0x147),'FbAZy':_0x2b4a48(0x137),'vpblm':'project','QDhZO':_0x2b4a48(0x105),'tflza':_0x2b4a48(0x114),'wmHqT':_0x2b4a48(0x13c),'amGzG':'hideScreenshotButton'};this[_0x2b4a48(0x128)]=document[_0x2b4a48(0x152)](_0x52b146[_0x2b4a48(0xef)]);const _0x4f2dd4=['modalTitle',_0x52b146['llecz'],'errorModalTitle',_0x2b4a48(0x12f),_0x52b146['FbAZy'],_0x52b146[_0x2b4a48(0x138)],_0x52b146[_0x2b4a48(0x10a)],_0x52b146[_0x2b4a48(0x14d)],_0x2b4a48(0x14f),_0x2b4a48(0x101),_0x52b146[_0x2b4a48(0x141)],_0x52b146['amGzG']];_0x4f2dd4[_0x2b4a48(0x153)](_0xced1e3=>{const _0x482a45=_0x2b4a48;this[_0x482a45(0x128)][_0xced1e3]=this[_0xced1e3];}),document[_0x2b4a48(0xf6)][_0x2b4a48(0xf4)](this[_0x2b4a48(0x128)]);}[_0x38f236(0x109)](){const _0x99d50d=_0x38f236;document[_0x99d50d(0xf6)]['removeChild'](this[_0x99d50d(0x128)]);}[_0x38f236(0x140)](){const _0x416851=_0x38f236,_0x50d57f={'kEecT':function(_0x5e31c3,_0x294259){return _0x5e31c3===_0x294259;},'fznKJ':_0x416851(0x122),'rnYlL':_0x416851(0x130),'VTwLK':function(_0x1d7852,_0x146d18){return _0x1d7852*_0x146d18;},'wtWKi':function(_0x291b51,_0x5eb29d){return _0x291b51/_0x5eb29d;}};if(_0x50d57f[_0x416851(0x13b)](this[_0x416851(0x135)],_0x50d57f[_0x416851(0x123)])){const _0x45a787=this['el']['shadowRoot'][_0x416851(0x118)](_0x50d57f[_0x416851(0x163)]);_0x45a787[_0x416851(0xf3)][_0x416851(0xf8)]=_0x50d57f[_0x416851(0x15c)](_0x50d57f[_0x416851(0x10b)](_0x45a787['offsetWidth'],0x2),-0x1)+'px';}}['showModal'](){const _0x578dad=_0x38f236;this[_0x578dad(0x128)][_0x578dad(0x15b)]=!![];}['render'](){const _0xc5cab8=_0x38f236,_0x964433={'Kgyur':function(_0x338a25,_0x1c3ea8,_0x787380,_0x5d16e2){return _0x338a25(_0x1c3ea8,_0x787380,_0x5d16e2);},'mRGSC':function(_0x14871b,_0x1ae648,_0x436aba,_0x2a2ab7,_0x5b2580,_0x301138){return _0x14871b(_0x1ae648,_0x436aba,_0x2a2ab7,_0x5b2580,_0x301138);},'difrl':function(_0x11b676,_0x3ea3e9){return _0x11b676===_0x3ea3e9;},'rVjlt':_0xc5cab8(0x14c),'vNMaV':_0xc5cab8(0x108),'GPPKI':_0xc5cab8(0x142),'luXyI':_0xc5cab8(0x143),'LnOno':_0xc5cab8(0xf9),'wOFCO':_0xc5cab8(0xfd),'cVJvT':_0xc5cab8(0x12c),'ZvGQu':_0xc5cab8(0x111),'IhMsj':function(_0x543836,_0x501a9f,_0x4efe33){return _0x543836(_0x501a9f,_0x4efe33);},'dlvXI':'polyline','dvDyg':_0xc5cab8(0xfb),'mqHEK':_0xc5cab8(0x156),'bFXXo':_0xc5cab8(0x15e),'sQijh':function(_0x3b8688,_0x100c29,_0x17258a){return _0x3b8688(_0x100c29,_0x17258a);},'wwghC':_0xc5cab8(0x13a),'WJcWq':_0xc5cab8(0xf0),'TCjdj':_0xc5cab8(0x161),'eQzOS':'svg','qpzEV':_0xc5cab8(0xfe),'ZHnzs':function(_0x3e2033,_0x24a541,_0x4c80c3){return _0x3e2033(_0x24a541,_0x4c80c3);},'mJigT':'M21\x2013v2a4\x204\x200\x200\x201-4\x204H3','TYbmO':_0xc5cab8(0x107)};return _0x964433[_0xc5cab8(0x11d)](h,Host,null,_0x964433[_0xc5cab8(0x116)](h,'a',{'class':_0xc5cab8(0x120)+this[_0xc5cab8(0x15a)]+'\x20feedback-button-content--'+this['buttonPosition'],'onClick':()=>this[_0xc5cab8(0x15b)]()},!this[_0xc5cab8(0x14e)]&&_0x964433[_0xc5cab8(0x11a)](this[_0xc5cab8(0x15a)],_0x964433['rVjlt'])&&h(_0x964433[_0xc5cab8(0x102)],{'class':'feedback-button-content-icon'},h(_0xc5cab8(0x151),{'xmlns':_0x964433[_0xc5cab8(0x12d)],'width':'16','height':'16','viewBox':_0x964433[_0xc5cab8(0xf1)],'fill':_0x964433[_0xc5cab8(0x131)],'stroke':_0x964433[_0xc5cab8(0xf7)],'stroke-width':'2','stroke-linecap':_0x964433['cVJvT'],'stroke-linejoin':_0x964433[_0xc5cab8(0x11f)],'class':_0x964433[_0xc5cab8(0x145)]},_0x964433[_0xc5cab8(0xee)](h,_0x964433[_0xc5cab8(0x127)],{'points':_0x964433[_0xc5cab8(0x13f)]}),_0x964433['IhMsj'](h,_0x964433[_0xc5cab8(0x119)],{'d':_0x964433['bFXXo']}),_0x964433['sQijh'](h,_0x964433['dlvXI'],{'points':_0x964433[_0xc5cab8(0x148)]}),_0x964433[_0xc5cab8(0x12a)](h,_0x964433['mqHEK'],{'d':_0xc5cab8(0x139)}))),!this[_0xc5cab8(0x14e)]&&_0x964433[_0xc5cab8(0x11a)](this[_0xc5cab8(0x15a)],_0x964433['WJcWq'])&&_0x964433['Kgyur'](h,_0xc5cab8(0x108),{'class':_0x964433[_0xc5cab8(0x125)]},h(_0x964433['eQzOS'],{'xmlns':_0x964433['GPPKI'],'width':'16','height':'16','viewBox':_0x964433['luXyI'],'fill':_0x964433[_0xc5cab8(0x131)],'stroke':_0x964433[_0xc5cab8(0x100)],'stroke-width':'2','stroke-linecap':_0x964433['cVJvT'],'stroke-linejoin':_0x964433[_0xc5cab8(0x11f)],'class':_0x964433[_0xc5cab8(0x145)]},_0x964433[_0xc5cab8(0x12a)](h,_0xc5cab8(0x132),{'points':_0xc5cab8(0xfb)}),_0x964433[_0xc5cab8(0xee)](h,_0x964433['mqHEK'],{'d':_0x964433['bFXXo']}),_0x964433[_0xc5cab8(0x157)](h,_0xc5cab8(0x132),{'points':_0x964433[_0xc5cab8(0x148)]}),h(_0xc5cab8(0x156),{'d':_0x964433['mJigT']}))),_0x964433[_0xc5cab8(0x157)](h,_0x964433[_0xc5cab8(0x162)],null)));}get['el'](){return this;}static get[_0x38f236(0xf3)](){return feedbackButtonCss;}},[0x1,'feedback-button',{'modalTitle':[0x1,_0x38f236(0x129)],'successModalTitle':[0x1,'success-modal-title'],'errorModalTitle':[0x1,_0x38f236(0xff)],'modalPosition':[0x1,_0x38f236(0x13d)],'sendButtonText':[0x1,'send-button-text'],'project':[0x1],'screenshotButtonTooltipText':[0x1,_0x38f236(0x106)],'screenshotTopbarText':[0x1,_0x38f236(0x136)],'email':[0x1],'emailPlaceholder':[0x1,_0x38f236(0xf5)],'messagePlaceholder':[0x1,_0x38f236(0xf2)],'buttonStyle':[0x1,_0x38f236(0x121)],'buttonPosition':[0x1,_0x38f236(0x104)],'hideIcon':[0x4,'hide-icon'],'hideScreenshotButton':[0x4,_0x38f236(0x146)]}]);function defineCustomElement$1(){const _0x144da6=_0x38f236,_0x551ca5={'YOesH':_0x144da6(0x103),'oHQqN':_0x144da6(0x15f),'JHATq':function(_0x1c064a){return _0x1c064a();}};if(typeof customElements==='undefined')return;const _0x4898d9=[_0x551ca5[_0x144da6(0x155)],_0x551ca5[_0x144da6(0x10e)]];_0x4898d9['forEach'](_0x54edae=>{const _0x3c1f46=_0x144da6;switch(_0x54edae){case _0x551ca5[_0x3c1f46(0x155)]:!customElements[_0x3c1f46(0xfa)](_0x54edae)&&customElements['define'](_0x54edae,FeedbackButton$1);break;case _0x551ca5['oHQqN']:!customElements['get'](_0x54edae)&&_0x551ca5[_0x3c1f46(0x150)](_0xddde54);break;}});}const FeedbackButton=FeedbackButton$1,defineCustomElement=defineCustomElement$1;function _0x31e7(_0x46deb2,_0x552969){const _0x3dccce=_0x3dcc();return _0x31e7=function(_0x31e7a6,_0x4057de){_0x31e7a6=_0x31e7a6-0xee;let _0x13be78=_0x3dccce[_0x31e7a6];return _0x13be78;},_0x31e7(_0x46deb2,_0x552969);}export{FeedbackButton,defineCustomElement};
|
|
@@ -1,6 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const FeedbackModal = FeedbackModal$1;
|
|
4
|
-
const defineCustomElement = defineCustomElement$1;
|
|
5
|
-
|
|
6
|
-
export { FeedbackModal, defineCustomElement };
|
|
1
|
+
(function(_0xd30151,_0x3c5db6){const _0x4cc01a=_0x4029,_0x8eee05=_0xd30151();while(!![]){try{const _0x317143=-parseInt(_0x4cc01a(0xae))/0x1*(parseInt(_0x4cc01a(0xb6))/0x2)+-parseInt(_0x4cc01a(0xb1))/0x3*(parseInt(_0x4cc01a(0xb2))/0x4)+-parseInt(_0x4cc01a(0xb4))/0x5*(-parseInt(_0x4cc01a(0xb7))/0x6)+parseInt(_0x4cc01a(0xb3))/0x7+parseInt(_0x4cc01a(0xaf))/0x8+parseInt(_0x4cc01a(0xb5))/0x9+-parseInt(_0x4cc01a(0xb0))/0xa;if(_0x317143===_0x3c5db6)break;else _0x8eee05['push'](_0x8eee05['shift']());}catch(_0x3f8b73){_0x8eee05['push'](_0x8eee05['shift']());}}}(_0x5a49,0x69f21));function _0x5a49(){const _0x2b7f33=['100EmTsLw','3141677rUnFVD','85hsKGmu','5023890bIEdqI','619762ZZwaLd','216780lffmwo','1zMNSTd','3943944WiUgJa','13435150dKzyTp','3225XRyqMW'];_0x5a49=function(){return _0x2b7f33;};return _0x5a49();}function _0x4029(_0x4d720a,_0x32a281){const _0x5a49ae=_0x5a49();return _0x4029=function(_0x4029f8,_0x42fb2b){_0x4029f8=_0x4029f8-0xae;let _0x12633c=_0x5a49ae[_0x4029f8];return _0x12633c;},_0x4029(_0x4d720a,_0x32a281);}import{F as _0x394e76,d as _0x513c98}from'./feedback-modal2.js';const FeedbackModal=_0x394e76,defineCustomElement=_0x513c98;export{FeedbackModal,defineCustomElement};
|