pushfeedback 0.1.36 → 0.1.37
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 +8238 -1
- package/dist/cjs/index-d64bfb06.js +1547 -1
- package/dist/cjs/index.cjs.js +2 -1
- package/dist/cjs/loader.cjs.js +22 -1
- package/dist/cjs/pushfeedback.cjs.js +23 -1
- package/dist/collection/components/feedback-button/feedback-button.js +620 -1
- package/dist/collection/components/feedback-modal/feedback-modal.js +814 -1
- package/dist/collection/index.js +1 -1
- package/dist/components/feedback-button.js +160 -1
- package/dist/components/feedback-modal.js +6 -1
- package/dist/components/feedback-modal2.js +8183 -1
- package/dist/components/index.js +3 -1
- package/dist/esm/feedback-button_2.entry.js +8233 -1
- package/dist/esm/index-b07fba3a.js +1519 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +18 -1
- package/dist/esm/polyfills/core-js.js +11 -1
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/polyfills/dom.js +79 -1
- package/dist/esm/polyfills/es5-html-element.js +1 -1
- package/dist/esm/polyfills/index.js +34 -1
- package/dist/esm/polyfills/system.js +6 -1
- package/dist/esm/pushfeedback.js +18 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/pushfeedback/p-a0681be3.js +2 -1
- package/dist/pushfeedback/p-ea59cbec.entry.js +22 -1
- package/dist/pushfeedback/pushfeedback.esm.js +1 -1
- package/package.json +5 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import{p as e,b as t}from"./p-a0681be3.js";export{s as setNonce}from"./p-a0681be3.js";(()=>{const t=import.meta.url,o={};return""!==t&&(o.resourcesUrl=new URL(".",t).href),e(o)})().then((e=>t([["p-ea59cbec",[[1,"feedback-button",{customFont:[4,"custom-font"],errorMessage:[1,"error-message"],errorMessage403:[1,"error-message-4-0-3"],errorMessage404:[1,"error-message-4-0-4"],modalTitle:[1,"modal-title"],modalTitleSuccess:[1,"modal-title-success"],modalTitleError:[1,"modal-title-error"],modalPosition:[1,"modal-position"],sendButtonText:[1,"send-button-text"],successMessage:[1,"success-message"],project:[1],screenshotButtonText:[1,"screenshot-button-text"],screenshotTopbarText:[1,"screenshot-topbar-text"],hideEmail:[4,"hide-email"],emailAddress:[1,"email-address"],emailPlaceholder:[1,"email-placeholder"],messagePlaceholder:[1,"message-placeholder"],hideRating:[4,"hide-rating"],ratingMode:[1,"rating-mode"],ratingPlaceholder:[1,"rating-placeholder"],ratingStarsPlaceholder:[1,"rating-stars-placeholder"],buttonStyle:[1,"button-style"],buttonPosition:[1,"button-position"],hideIcon:[4,"hide-icon"],hideScreenshotButton:[4,"hide-screenshot-button"],hidePrivacyPolicy:[4,"hide-privacy-policy"],privacyPolicyText:[1,"privacy-policy-text"],fetchData:[4,"fetch-data"]}],[1,"feedback-modal",{errorMessage:[1,"error-message"],errorMessage403:[1,"error-message-4-0-3"],errorMessage404:[1,"error-message-4-0-4"],modalTitle:[1,"modal-title"],modalTitleSuccess:[1,"modal-title-success"],modalTitleError:[1,"modal-title-error"],modalPosition:[1,"modal-position"],sendButtonText:[1,"send-button-text"],successMessage:[1,"success-message"],project:[1],screenshotButtonText:[1,"screenshot-button-text"],screenshotTopbarText:[1,"screenshot-topbar-text"],hideEmail:[4,"hide-email"],emailAddress:[1,"email-address"],emailPlaceholder:[1,"email-placeholder"],messagePlaceholder:[1,"message-placeholder"],hideRating:[4,"hide-rating"],ratingMode:[1,"rating-mode"],ratingPlaceholder:[1,"rating-placeholder"],ratingStarsPlaceholder:[1,"rating-stars-placeholder"],showModal:[1540,"show-modal"],showScreenshotMode:[1540,"show-screenshot-mode"],showScreenshotTopBar:[1540,"show-screenshot-top-bar"],hasSelectedElement:[1540,"has-selected-element"],hideScreenshotButton:[4,"hide-screenshot-button"],hidePrivacyPolicy:[4,"hide-privacy-policy"],privacyPolicyText:[1,"privacy-policy-text"],fetchData:[4,"fetch-data"],sending:[32],formMessage:[32],formEmail:[32],formSuccess:[32],formError:[32],formErrorStatus:[32],encodedScreenshot:[32],isPrivacyChecked:[32],whitelabel:[32],selectedRating:[32]}]]]],e)));
|
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pushfeedback",
|
|
3
|
-
"
|
|
3
|
+
"author": "David Garcia <hi@davidgarcia.dev>",
|
|
4
|
+
"homepage": "https://pushfeedback.com/",
|
|
5
|
+
"version": "0.1.37",
|
|
4
6
|
"description": "Feedback widget for websites.",
|
|
5
7
|
"main": "dist/index.cjs.js",
|
|
6
8
|
"module": "dist/index.js",
|
|
@@ -12,14 +14,14 @@
|
|
|
12
14
|
"unpkg": "dist/pushfeedback/pushfeedback.esm.js",
|
|
13
15
|
"repository": {
|
|
14
16
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/PushLabsHQ/pushfeedback.git"
|
|
16
18
|
},
|
|
17
19
|
"files": [
|
|
18
20
|
"dist/",
|
|
19
21
|
"loader/"
|
|
20
22
|
],
|
|
21
23
|
"scripts": {
|
|
22
|
-
"build": "stencil build --docs
|
|
24
|
+
"build": "stencil build --docs",
|
|
23
25
|
"start": "stencil build --dev --watch --serve",
|
|
24
26
|
"test": "stencil test --spec --e2e",
|
|
25
27
|
"test.watch": "stencil test --spec --e2e --watchAll",
|
|
@@ -32,7 +34,6 @@
|
|
|
32
34
|
"devDependencies": {
|
|
33
35
|
"@stencil/react-output-target": "^0.5.3",
|
|
34
36
|
"@types/jest": "^27.0.3",
|
|
35
|
-
"javascript-obfuscator": "^4.0.2",
|
|
36
37
|
"jest": "^27.4.5",
|
|
37
38
|
"jest-cli": "^27.4.5",
|
|
38
39
|
"puppeteer": "^10.0.0"
|