pushfeedback 0.1.67 → 0.1.68
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 +724 -186
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/pushfeedback.cjs.js +1 -1
- package/dist/collection/components/feedback-button/feedback-button.js +60 -0
- package/dist/collection/components/feedback-modal/feedback-modal.css +419 -11
- package/dist/collection/components/feedback-modal/feedback-modal.js +747 -158
- package/dist/components/feedback-button.js +9 -0
- package/dist/components/feedback-modal2.js +739 -186
- package/dist/esm/feedback-button_2.entry.js +724 -186
- package/dist/esm/loader.js +1 -1
- package/dist/esm/pushfeedback.js +1 -1
- package/dist/pushfeedback/p-7406f7be.entry.js +7 -0
- package/dist/pushfeedback/pushfeedback.css +1 -1
- package/dist/pushfeedback/pushfeedback.esm.js +1 -1
- package/dist/types/components/feedback-button/feedback-button.d.ts +3 -0
- package/dist/types/components/feedback-modal/feedback-modal.d.ts +77 -21
- package/dist/types/components.d.ts +12 -0
- package/package.json +1 -1
- package/dist/pushfeedback/p-51e790c7.entry.js +0 -22
|
@@ -29,6 +29,9 @@ const FeedbackButton$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
29
29
|
this.project = '';
|
|
30
30
|
this.rating = undefined;
|
|
31
31
|
this.ratingMode = 'thumbs';
|
|
32
|
+
this.canvasEditorTitle = 'Edit screenshot';
|
|
33
|
+
this.canvasEditorCancelText = 'Cancel';
|
|
34
|
+
this.canvasEditorSaveText = 'Save';
|
|
32
35
|
this.emailPlaceholder = 'Email address (optional)';
|
|
33
36
|
this.errorMessage = 'Please try again later.';
|
|
34
37
|
this.errorMessage403 = 'The request URL does not match the one defined in PushFeedback for this project.';
|
|
@@ -89,6 +92,9 @@ const FeedbackButton$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
89
92
|
'project',
|
|
90
93
|
'rating',
|
|
91
94
|
'ratingMode',
|
|
95
|
+
'canvasEditorTitle',
|
|
96
|
+
'canvasEditorCancelText',
|
|
97
|
+
'canvasEditorSaveText',
|
|
92
98
|
'emailPlaceholder',
|
|
93
99
|
'errorMessage',
|
|
94
100
|
'errorMessage403',
|
|
@@ -202,6 +208,9 @@ const FeedbackButton$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
202
208
|
"project": [1],
|
|
203
209
|
"rating": [2],
|
|
204
210
|
"ratingMode": [1, "rating-mode"],
|
|
211
|
+
"canvasEditorTitle": [1, "canvas-editor-title"],
|
|
212
|
+
"canvasEditorCancelText": [1, "canvas-editor-cancel-text"],
|
|
213
|
+
"canvasEditorSaveText": [1, "canvas-editor-save-text"],
|
|
205
214
|
"emailPlaceholder": [1, "email-placeholder"],
|
|
206
215
|
"errorMessage": [1, "error-message"],
|
|
207
216
|
"errorMessage403": [1, "error-message-4-0-3"],
|